Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typescript generated files errors - #475 #477

Merged
merged 9 commits into from
Mar 19, 2025
Merged

Conversation

s2imonovic
Copy link
Collaborator

@s2imonovic s2imonovic commented Mar 13, 2025

Fix TypeScript Generated Files Errors (#475)

This PR addresses various TypeScript compilation issues that have been occurring in auto-generated files across multiple PRs.

Changes

  • Updated ethers function calls to align with the latest ethers library update
  • Modified tasks/addresses.ts to be compatible with current ethers version
  • Removed duplicate exports in index.ts
  • Updated typechain command in package.json to prevent generation of duplicate types

Summary by CodeRabbit

  • New Features
    • Expanded supported parameter symbols with the addition of "USDC.SUI".
    • Introduced a script to remove duplicate export type statements in the index.ts file.
  • Chores
    • Upgraded the ethers dependency to version 6.13.5 for improved functionality.
  • Refactor
    • Streamlined provider initialization and standardized address handling for greater consistency.

@s2imonovic s2imonovic requested review from a team as code owners March 13, 2025 17:04
Copy link
Contributor

coderabbitai bot commented Mar 13, 2025

📝 Walkthrough

Walkthrough

This pull request introduces updates to various components of the codebase. In the lib/types.ts file, the ParamSymbol type is expanded to include the new value "USDC.SUI". The package.json file is modified to change the typechain script, adding a step to fix duplicate exports and updating the ethers dependency version from 5.6.8 to 6.13.5. The tasks/addresses.ts file reflects changes in how the ethers library is accessed, specifically updating the instantiation of the JSON RPC provider and the handling of zero addresses.

Changes

File Change Summary
lib/types.ts Updated ParamSymbol to include "USDC.SUI"; no changes to ParamChainName or ParamType.
package.json Modified the typechain script to append a TypeScript script for fixing duplicates; updated the ethers dependency version from 5.6.8 to 6.13.5.
tasks/addresses.ts Changed provider instantiation from ethers.providers.JsonRpcProvider to ethers.JsonRpcProvider and replaced ethers.constants.AddressZero with ethers.ZeroAddress in relevant functions.
src/fix-duplicates.ts Introduced a new script to remove duplicate export type statements from index.ts in the types directory.

Possibly related PRs

Suggested reviewers

  • fadeev
  • skosito
  • CharlieMc0
  • lumtis
  • andresaiello

Tip

⚡🧪 Multi-step agentic review comment chat (experimental)
  • We're introducing multi-step agentic chat in review comments. This experimental feature enhances review discussions with the CodeRabbit agentic chat by enabling advanced interactions, including the ability to create pull requests directly from comments.
    - To enable this feature, set early_access to true under in the settings.
✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@s2imonovic s2imonovic changed the title fix typescript generated files errors - #475 fix: typescript generated files errors - #475 Mar 13, 2025
@codecov-commenter
Copy link

codecov-commenter commented Mar 13, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 86.22%. Comparing base (693a55b) to head (f2088e3).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #477   +/-   ##
=======================================
  Coverage   86.22%   86.22%           
=======================================
  Files           9        9           
  Lines         559      559           
  Branches      129      129           
=======================================
  Hits          482      482           
  Misses         77       77           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@@ -29,6 +27,13 @@
"chain_name": "bsc_testnet",
"type": "zetaToken"
},
{
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just to double check changes in this file as they are not related to PR?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That also changed when running yarn generate

package.json Outdated
@@ -14,7 +14,7 @@
"lint:fix": "npx eslint . --fix --ignore-pattern coverage/ --ignore-pattern coverage.json --ignore-pattern lib/ --ignore-pattern out --ignore-pattern cache_forge/",
"test": "forge clean && forge test -vvv",
"coverage": "forge coverage --no-match-coverage \"(script|test|legacy)\" --report lcov",
"typechain": "npx typechain --target ethers-v6 \"out/**/!(*.t|test).sol/!(*.abi).json\" --out-dir types",
"typechain": "npx typechain --target ethers-v6 \"out/**/!(*.t|test|IERC20|ZetaConnectorBase|ZetaErrors|ZetaNonEthInterface).sol/!(*.abi).json\" --out-dir types",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could you please add some details on why is this excluded? is it because these are imported in other contracts and it is duplicated or something else? wondering if there is some configuration on typechain to exclude duplicates automatically

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, the duplicates happen because these interfaces (IERC20, ZetaConnectorBase, etc.) are imported in multiple places in our contracts.

When forge compiles, it creates JSON artifacts for these interfaces in different locations based on where they were imported from. That's why we see IERC20 both in the root directory and in the ERC20 subdirectory.

Typechain doesn't have a built-in config option to automatically detect and exclude duplicates. It just processes all JSON files that match the glob pattern.

My solution of explicitly excluding the problematic interfaces works for now, though we'll need to update it if we encounter more duplicates later.

examples:
export type { IERC20 } from "./IERC20";
export type { IERC20 } from "./ERC20/IERC20";

export type { ZetaConnectorBase } from "./ZetaConnectorBase";
export type { ZetaConnectorBase } from "./ZetaConnector.base.sol/ZetaConnectorBase";

export type { ZetaErrors } from "./ZetaErrors";
export type { ZetaErrors } from "./Zeta.non-eth.sol/ZetaErrors";

export type { ZetaNonEthInterface } from "./ZetaNonEthInterface";
export type { ZetaNonEthInterface } from "./Zeta.non-eth.sol/ZetaNonEthInterface";

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

got it, previously we had v1 and v2 directories and then they got merged into 1 repo, so probably some of these can be removed in the solidity code itself, and only have them on 1 place and import from that 1 place

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will check it

@@ -1,7 +1,6 @@
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
export * as erc20 from "./ERC20";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just to double check, did you remove these manually or it is now working fine with yarn generate?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that got removed when I ran yarn generate

@skosito skosito linked an issue Mar 13, 2025 that may be closed by this pull request
@s2imonovic
Copy link
Collaborator Author

@fadeev please review

Copy link
Member

@fadeev fadeev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm getting errors:

yarn generate
Generating protocol addresses...
An unexpected error occurred:
TypeError: ethers_1.ethers.JsonRpcProvider is not a constructor
    at fetchAthensAddresses (/Users/fadeev/github.com/zeta-chain/protocol-contracts/tasks/addresses.ts:146:20)
    at SimpleTaskDefinition.main [as action] (/Users/fadeev/github.com/zeta-chain/protocol-contracts/tasks/addresses.ts:306:9)
    at processTicksAndRejections (node:internal/process/task_queues:105:5)
    at async Environment._runTaskDefinition (/Users/fadeev/github.com/zeta-chain/protocol-contracts/node_modules/hardhat/src/internal/core/runtime-environment.ts:351:14)
    at async Environment.run (/Users/fadeev/github.com/zeta-chain/protocol-contracts/node_modules/hardhat/src/internal/core/runtime-environment.ts:184:14)
    at async main (/Users/fadeev/github.com/zeta-chain/protocol-contracts/node_modules/hardhat/src/internal/cli/cli.ts:322:7)
An unexpected error occurred:
TypeError: ethers_1.ethers.JsonRpcProvider is not a constructor
    at fetchAthensAddresses (/Users/fadeev/github.com/zeta-chain/protocol-contracts/tasks/addresses.ts:146:20)
    at SimpleTaskDefinition.main [as action] (/Users/fadeev/github.com/zeta-chain/protocol-contracts/tasks/addresses.ts:306:9)
    at processTicksAndRejections (node:internal/process/task_queues:105:5)
    at async Environment._runTaskDefinition (/Users/fadeev/github.com/zeta-chain/protocol-contracts/node_modules/hardhat/src/internal/core/runtime-environment.ts:351:14)
    at async Environment.run (/Users/fadeev/github.com/zeta-chain/protocol-contracts/node_modules/hardhat/src/internal/core/runtime-environment.ts:184:14)
    at async main (/Users/fadeev/github.com/zeta-chain/protocol-contracts/node_modules/hardhat/src/internal/cli/cli.ts:322:7)
Generating protocol addresses types...
SyntaxError: /Users/fadeev/github.com/zeta-chain/protocol-contracts/data/addresses.mainnet.json: Unexpected end of JSON input
    at parse (<anonymous>)
    at Object..json (node:internal/modules/cjs/loader:1718:39)
    at Module.load (node:internal/modules/cjs/loader:1289:32)
    at Function._load (node:internal/modules/cjs/loader:1108:12)
    at TracingChannel.traceSync (node:diagnostics_channel:322:14)
    at wrapModuleLoad (node:internal/modules/cjs/loader:220:24)
    at Module.require (node:internal/modules/cjs/loader:1311:12)
    at require (node:internal/modules/helpers:136:16)
    at Object.<anonymous> (/Users/fadeev/github.com/zeta-chain/protocol-contracts/scripts/generate_addresses_types.ts:1:1)
    at Module._compile (node:internal/modules/cjs/loader:1554:14)

@s2imonovic
Copy link
Collaborator Author

@fadeev I'm getting the exact same error on the main branch. Are you sure you checked out to fix/generate-action?

@fadeev
Copy link
Member

fadeev commented Mar 14, 2025

@s2imonovic I am, yes.

Screenshot 2025-03-14 at 13 11 01

@s2imonovic
Copy link
Collaborator Author

s2imonovic commented Mar 14, 2025

@fadeev just have pushed small fix. please pull, run yarn install and try again yarn generate.

@fadeev fadeev self-requested a review March 14, 2025 15:30
Copy link
Contributor

@skosito skosito left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

approved, but would be cleaner if we can find a way in future to not to have to exclude every duplicate generated type in package.json, since the list can grow and it is not practical

potential ideas, can be tackled in follow up issue or PR:

  • check if typechain has support for it
  • check if some duplicates actually can be removed due to v1/v2 previous split
  • write a script that would somehow handle duplicates
    ...

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (3)
src/fix-duplicates.ts (3)

1-36: Good implementation, but consider adding error handling

The script effectively handles the removal of duplicate export types from the generated index.ts file, which aligns with the PR objective of fixing TypeScript compilation issues. However, it lacks error handling for file operations.

Consider adding try-catch blocks for file operations to handle potential errors:

- const root = process.cwd();
- const indexPath = path.join(root, 'types', 'index.ts');
- let content = fs.readFileSync(indexPath, 'utf8');
+ const root = process.cwd();
+ const indexPath = path.join(root, 'types', 'index.ts');
+ let content;
+ try {
+   content = fs.readFileSync(indexPath, 'utf8');
+ } catch (error) {
+   console.error(`Error reading file ${indexPath}:`, error);
+   process.exit(1);
+ }

And similarly for the write operation:

- fs.writeFileSync(indexPath, filteredLines.join('\n'));
- console.log('Duplicate exports have been removed from index.ts');
+ try {
+   fs.writeFileSync(indexPath, filteredLines.join('\n'));
+   console.log('Duplicate exports have been removed from index.ts');
+ } catch (error) {
+   console.error(`Error writing to file ${indexPath}:`, error);
+   process.exit(1);
+ }

18-19: Improve regex pattern for more robust matching

The current regex pattern works for basic export type statements but might not catch all variations.

Consider a more comprehensive regex that handles whitespace variations:

- const match = line.match(/export type \{ ([^}]+) \} from/);
+ const match = line.match(/export\s+type\s+\{\s*([^}]+)\s*\}\s+from/);

4-9: Add configurability to make the script more reusable

The script currently has hardcoded paths, which limits its reusability.

Consider accepting configuration options through command-line arguments:

+ import { program } from 'commander';
+ 
+ // Set up command-line argument parsing
+ program
+   .option('-d, --dir <directory>', 'directory containing index.ts', 'types')
+   .parse(process.argv);
+ 
+ const options = program.opts();
+ 
  // get the project root directory
  const root = process.cwd();
  // path to index.ts file
- const indexPath = path.join(root, 'types', 'index.ts');
+ const indexPath = path.join(root, options.dir, 'index.ts');

This would require adding commander as a dependency, but makes the script more flexible for future use cases.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between ae2f8ba and f2088e3.

⛔ Files ignored due to path filters (2)
  • data/addresses.testnet.json is excluded by !data/**
  • types/index.ts is excluded by !types/**
📒 Files selected for processing (3)
  • lib/types.ts (1 hunks)
  • package.json (2 hunks)
  • src/fix-duplicates.ts (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (2)
  • lib/types.ts
  • package.json
🔇 Additional comments (1)
src/fix-duplicates.ts (1)

14-32:

✅ Verification successful

Consider handling multiple exports in a single line

The current implementation assumes each export type is on its own line, but TypeScript allows multiple types to be exported in a single statement.

Verify if the generated files might contain lines like export type { Type1, Type2 } from './module' and ensure your solution handles them correctly.


🏁 Script executed:

#!/bin/bash
# Check if the types/index.ts file contains lines with multiple exported types
if [ -f "types/index.ts" ]; then
  echo "Checking for multiple exports in a single line in types/index.ts:"
  grep -E "export type \{[^}]*,[^}]*\} from" types/index.ts | head -n 5
else
  echo "types/index.ts file not found"
fi

Length of output: 96


No Multiple Exports Found in Current Files

After running the verification script, the file types/index.ts (which was expected to contain potential multiple type export statements) wasn’t found, and there’s no evidence from the repository that a line matching the pattern export type { Type1, Type2 } from './module' exists. While the current implementation only handles single export types per line, it appears to be sufficient for the generated files at the moment.

Keep in mind that if future changes introduce multiline exports or single-line exports with multiple types, the duplicate removal logic in src/fix-duplicates.ts might need updating.

@s2imonovic s2imonovic merged commit 26f0708 into main Mar 19, 2025
13 checks passed
@s2imonovic s2imonovic deleted the fix/generate-action branch March 19, 2025 10:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Fix typescript generated files errors
4 participants