-
Couldn't load subscription status.
- Fork 75
feat: Plasma Deployments #1114
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
feat: Plasma Deployments #1114
Conversation
Signed-off-by: Faisal Usmani <faisal.of.usmani@gmail.com>
Signed-off-by: Faisal Usmani <faisal.of.usmani@gmail.com>
Signed-off-by: Faisal Usmani <faisal.of.usmani@gmail.com>
Signed-off-by: Faisal Usmani <faisal.of.usmani@gmail.com>
| "transaction_hash": "Unknown", | ||
| "block_number": 1552582 | ||
| }, | ||
| "SpokePoolVerifier": { |
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.
2 small questions:
- Why does the
transaction_hashresolve as unknown? If it's not important, then why even include it as part of thisdeployed-addresses.json? - Should we be deploying the spoke pool verifier or the spoke pool periphery, which should include the spoke pool verifier logic?
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
transaction_hashget populated if the contract has been deployed with foundry, I will have a follow up PR to populate all the missing fields fromdeployments - Good point, I wasn't familiar with SpokePoolPeriphery contract, I can deploy that as well
Signed-off-by: Faisal Usmani <faisal.of.usmani@gmail.com>
Signed-off-by: Faisal Usmani <faisal.of.usmani@gmail.com>
Signed-off-by: Faisal Usmani <faisal.of.usmani@gmail.com>
|
All alerts resolved. Learn more about Socket for GitHub. This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored. |
Signed-off-by: Faisal Usmani <faisal.of.usmani@gmail.com>
| plasma: { | ||
| chainId: CHAIN_IDs.PLASMA, | ||
| url: getNodeUrl(CHAIN_IDs.PLASMA), | ||
| saveDeployments: true, |
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.
Just a thought: I wonder if we can clean up this file by making a default config object function:
defaultConfig(chainId: number): {
return {
chainId,
url: getNodeUrl(chainId),
saveDeployments: true,
accounts: { mnemonic },
companionNetworks: { l1: "mainnet" },
}
}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.
Updates look good to me; OK pending the tsc fix.
Signed-off-by: Faisal Usmani <faisal.of.usmani@gmail.com>
Uh oh!
There was an error while loading. Please reload this page.