-
Notifications
You must be signed in to change notification settings - Fork 213
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
chore(target_chains/ethereum): add new networks #2138
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
2 Skipped Deployments
|
168b2b3
to
98a75c2
Compare
3a6156a
to
a73eeef
Compare
a73eeef
to
e082f76
Compare
@@ -96,6 +96,9 @@ export const RECEIVER_CHAINS = { | |||
fuel_mainnet: 60067, // Note: Currently deployed at 50084 (fuel_testnet) but we should use 60067 for future deployments | |||
hemi_mainnet: 60068, | |||
ton_mainnet: 60069, | |||
horse_dream: 60070, | |||
mathematician_in_heart: 60071, | |||
|
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.
Was this intentional?
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.
yes!
@@ -90,7 +90,8 @@ export default async function (hre: HardhatRuntimeEnvironment) { | |||
console.log("Entropy contract address:", entropyContractAddress); | |||
|
|||
console.log("Saving the contract in the store..."); | |||
const contract = new EvmEntropyContract(chainName, entropyContractAddress); | |||
const chain = DefaultStore.chains[chainName]; | |||
const contract = new EvmEntropyContract(chain, entropyContractAddress); |
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.
Thank you for adding this. I think we should add wormhole contracts as well to the store.
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.
I was too lazy to do it this time. I'll do it next time 😅
No description provided.