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

How to use zksync-ethers with typechain? #893

Open
NOOMA-42 opened this issue Feb 20, 2024 · 0 comments
Open

How to use zksync-ethers with typechain? #893

NOOMA-42 opened this issue Feb 20, 2024 · 0 comments

Comments

@NOOMA-42
Copy link

typechain generate __factory files and export in index.ts, and factory extend ContractFactory in ethers, like this:

export class TimelockController__factory extends ContractFactory {

however, I should use ContractFactory from zksync-ethers in the second argument of handleDeploy. Clearly mismatch the type. like below:

return this.multiProvider.handleDeploy(
      chain,
      new TimelockController__factory(),
      // delay, [proposers], [executors], admin
      [
        timelockConfig.delay,
        [timelockConfig.roles.proposer],
        [timelockConfig.roles.executor],
        ethers.constants.AddressZero,
      ],
    );

Should I use a wrapper to make the typechain generated factory compatible with zksync-ethers or there're other standardized way to handle such cases?

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

No branches or pull requests

1 participant