-
Notifications
You must be signed in to change notification settings - Fork 329
feat(CHAIN-548): Update script for SmartEscrow ownership transfer initiation #519
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
base: main
Are you sure you want to change the base?
Conversation
🟡 Heimdall Review Status
|
| @@ -0,0 +1,11 @@ | |||
| OP_COMMIT=d09c836f818c73ae139f60b717654c4e53712743 | |||
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.
Is there any reason that this OP commit is different from the 594bc933a38425f745b46399a3619bcdeb74965d that we've been using?
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 used the commit associated with u17 (op-contracts/v5.0.0-rc.2 if I'm not mistaken)
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.
Nice
jackchuma
left a comment
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 looks good to me - I think we just need to confirm if the l1 safe address is what we want to own it now that we have the security council involved
| bun run scripts/genValidationFile.ts --rpc-url $(RPC_URL) \ | ||
| --ledger-id $(LEDGER_ACCOUNT) \ | ||
| --workdir .. --forge-cmd 'forge script --rpc-url $(RPC_URL) \ | ||
| $(SCRIPT_NAME) --sig "sign(address[])" "[$(CB_SIGNER_SAFE_ADDR)]" --sender 0x6CD3850756b7894774Ab715D136F9dD02837De50' --out ../validations/cb-signer.json; |
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.
Can we name the output file coinbase-signer.json ? It'll help with readability in the signer tool
| bun run scripts/genValidationFile.ts --rpc-url $(RPC_URL) \ | ||
| --ledger-id $(LEDGER_ACCOUNT) \ | ||
| --workdir .. --forge-cmd 'forge script --rpc-url $(RPC_URL) \ | ||
| $(SCRIPT_NAME) --sig "sign(address[])" "[$(OP_SIGNER_SAFE_ADDR)]" --sender 0x4d494C5F61b60752D3A10062276a0eFC22596151' --out ../validations/op-signer.json; |
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.
and can the op file name be optimism-signer.json ?
Update the script written in #306 to work with our recent tooling.