We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfd4423 commit 7017920Copy full SHA for 7017920
apps/tx-builder/src/lib/getAbi.ts
@@ -82,6 +82,8 @@ export enum SUPPORTED_CHAINS {
82
VELAS = '106',
83
VELAS_TESTNET = '111',
84
ZETACHAIN_TESTNET = '7001',
85
+ ZKLINK_NOVA = '810180',
86
+ ZKLINK_NOVA_GOERLI = '810182',
87
ZKSYNC_ERA = '324',
88
ZKSYNC_ERA_TESTNET = '280',
89
}
@@ -249,6 +251,14 @@ const getScanAPIBaseURL = (chain: string): undefined | { link: string; apiKey?:
249
251
return {
250
252
link: 'https://explorer.testnet.immutable.com',
253
254
+ case SUPPORTED_CHAINS.ZKLINK_NOVA_GOERLI:
255
+ return {
256
+ link: 'https://goerli.explorer-api.zklink.io',
257
+ }
258
+ case SUPPORTED_CHAINS.ZKLINK_NOVA:
259
260
+ link: 'https://explorer-api.zklink.io',
261
262
default:
263
return
264
0 commit comments