File tree Expand file tree Collapse file tree 4 files changed +24
-1
lines changed
governance/xc_admin/packages/xc_admin_common/src Expand file tree Collapse file tree 4 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,11 @@ async function main() {
33
33
const argv = await parser . argv ;
34
34
const contract = DefaultStore . contracts [ argv . contract ] ;
35
35
if ( ! contract ) {
36
- throw new Error ( `Contract ${ argv . contract } not found` ) ;
36
+ throw new Error (
37
+ `Contract ${ argv . contract } not found. Contracts found: ${ Object . keys (
38
+ DefaultStore . contracts
39
+ ) } `
40
+ ) ;
37
41
}
38
42
const defaultEndpoint = contract . getChain ( ) . isMainnet ( )
39
43
? "https://xc-mainnet.pyth.network"
Original file line number Diff line number Diff line change 316
316
rpcUrl : https://sepolia-rpc.scroll.io/
317
317
networkId : 534351
318
318
type : EvmChain
319
+ - id : saigon
320
+ wormholeChainName : ronin
321
+ mainnet : false
322
+ rpcUrl : https://api-gateway.skymavis.com/rpc/testnet?apikey=put-me-here-from-ronin-wallet
323
+ networkId : 2021
324
+ type : EvmChain
325
+ - id : ronin
326
+ wormholeChainName : ronin
327
+ mainnet : true
328
+ rpcUrl : https://api-gateway.skymavis.com/rpc?apikey=put-me-here-from-ronin-wallet
329
+ networkId : 2020
330
+ type : EvmChain
Original file line number Diff line number Diff line change 157
157
- chain : scroll_sepolia
158
158
address : " 0xA2aa501b19aff244D90cc15a4Cf739D2725B5729"
159
159
type : EvmContract
160
+ - chain : saigon
161
+ address : " 0xA2aa501b19aff244D90cc15a4Cf739D2725B5729"
162
+ type : EvmContract
163
+ - chain : ronin
164
+ address : " 0x2880aB155794e7179c9eE2e38200202908C17B43"
165
+ type : EvmContract
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ export const RECEIVER_CHAINS = {
41
41
eos : 60026 ,
42
42
syndr : 60027 ,
43
43
scroll : 60028 ,
44
+ ronin : 60029 ,
44
45
} ;
45
46
46
47
// If there is any overlapping value the receiver chain will replace the wormhole
You can’t perform that action at this time.
0 commit comments