scripts: add arbitrum&optimism to governance script

This commit is contained in:
Csongor Kiss 2022-11-15 15:19:02 +00:00 committed by Csongor Kiss
parent f96f8083b3
commit 0fea135ebe
1 changed files with 10 additions and 0 deletions

View File

@ -174,6 +174,16 @@ case "$chain_name" in
chain=15
explorer="https://explorer.near.org/accounts/"
;;
arbitrum)
chain=23
explorer="https://arbiscan.io/address/"
evm=true
;;
optimism)
chain=24
explorer="https://optimistic.etherscan.io/address/"
evm=true
;;
*)
echo "Unknown chain: $chain_name" >&2
exit 1