-
Notifications
You must be signed in to change notification settings - Fork 61
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(eth-multisig-v4): add oas, coredao config #183
Conversation
829bd3d
to
7ef4e83
Compare
7ef4e83
to
b85e6ea
Compare
b85e6ea
to
a658293
Compare
a658293
to
f94c8d3
Compare
hardhat.config.ts
Outdated
@@ -134,6 +136,14 @@ const config: HardhatUserConfig = { | |||
url: `https://bartio.rpc.berachain.com/`, | |||
accounts: [`${PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT}`] | |||
}, | |||
toas: { | |||
url: `https://rpc.mainnet.oasys.games/`, |
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 seems to be mainnet rpc url
hardhat.config.ts
Outdated
accounts: [`${PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT}`] | ||
}, | ||
tcoredao: { | ||
url: `https://rpc.ankr.com/core`, |
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 also seems to be mainnet rpc url
hardhat.config.ts
Outdated
@@ -227,6 +241,22 @@ const config: HardhatUserConfig = { | |||
browserURL: 'https://bartio.beratrail.io' | |||
} | |||
}, | |||
{ | |||
network: 'oasSandVerse', | |||
chainId: 20197, |
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.
In this link, the chain id for oasis testnet is 9372. can you confirm which is correct
https://docs.sequence.xyz/solutions/chainlist/non-integrated/oasys-testnet/#rpc-urls
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.
the reference it taken from the docs https://docs.oasys.games/docs/staking/rpc-endpoint/1-1-rpc-endpoint
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.
got it, seems like there are multiple testnets
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 switched the the other testnet as that is the widely used one
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.
Also please try to use this script in local once to confirm it is working for both networks
hardhat.config.ts
Outdated
@@ -227,6 +241,22 @@ const config: HardhatUserConfig = { | |||
browserURL: 'https://bartio.beratrail.io' | |||
} | |||
}, | |||
{ | |||
network: 'oasSandVerse', | |||
chainId: 20197, |
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.
got it, seems like there are multiple testnets
hardhat.config.ts
Outdated
} | ||
}, | ||
{ | ||
network: 'coreDao testnet', |
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 think here the string should be same as above i.e. coredao
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.
Also make sure the explorer API keys are added to github secrets
9ead066
to
49498fa
Compare
49498fa
to
b3949f3
Compare
Ticket: WIN-3695