-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Sync interop tests #3156
Sync interop tests #3156
Conversation
Hey there! 👋🏼 We require pull request titles to follow the Conventional Commits specification and it looks like your proposed title needs to be adjusted.
Details:
|
interop2: string; | ||
}; | ||
}; | ||
let tokenB_details: { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tokenDetails struct should be used
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
export interface Token {
name: string;
symbol: string;
decimals: bigint;
l1Address: string;
l2Address_1: string;
l2Address_2:string;
assetId: string;
}
const timeout = 10000; | ||
|
||
// Interop1 (Main Chain) Variables | ||
let interop1_provider: zksync.Provider; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe chain1 is a better name? but its just a nit
to: interop2_wallet.address, | ||
approveERC20: true, | ||
approveBaseERC20: true, | ||
approveOverrides: { gasPrice }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
formatting weird here
l1Bridgehub = new ethers.Contract(l1BridgehubAddress, bridgehubInterface, l1Wallet); | ||
const chainAddress = await l1Bridgehub.getHyperchain(secondChainId); | ||
|
||
tokenDetails = testMaster.environment().erc20Token; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This tokenDetails
No description provided.