File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -127,6 +127,8 @@ export enum SUPPORTED_CHAINS {
127
127
VANA_MOKSHA_TESTNET = '14800' ,
128
128
SOPHON = '50104' ,
129
129
SOPHON_TESTNET = '531050104' ,
130
+ NIBIRU = 6900 ,
131
+ NIBIRU_TESTNET = 6911 ,
130
132
}
131
133
132
134
const getGatewayBaseUrl = ( chain : string ) => {
@@ -436,6 +438,14 @@ const getScanAPIBaseURL = (chain: string): undefined | { link: string; apiKey?:
436
438
link : 'https://api-testnet.abscan.org' ,
437
439
apiKey : process . env . REACT_APP_ABSTRACT_KEY
438
440
}
441
+ case SUPPORTED_CHAINS . NIBIRU :
442
+ return {
443
+ link : 'https://api.routescan.io/v2/network/mainnet/evm/6900/etherscan' ,
444
+ }
445
+ case SUPPORTED_CHAINS . NIBIRU_TESTNET :
446
+ return {
447
+ link : 'https://api.routescan.io/v2/network/testnet/evm/6911/etherscan' ,
448
+ }
439
449
default :
440
450
return
441
451
}
You can’t perform that action at this time.
0 commit comments