@tria-sdk/constants 1.0.30 → 1.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -2,3 +2,4 @@ export * from "./src/config";
2
2
  export * from "./src/chains";
3
3
  export * from "./src/txn";
4
4
  export * from "./src/connect";
5
+ // export * from "./src/gasToken";
@@ -1,17 +1,25 @@
1
+ export declare const mumbai = "MUMBAI";
2
+ export declare const polygon = "POLYGON";
3
+ export declare const ethereum = "ETH";
4
+ export declare const fuse = "FUSE";
5
+ export declare const fuseSpark = "FUSESPARK";
1
6
  export declare const zkLink: string;
2
7
  export declare const zkLinkTestnet: string;
3
8
  export declare const bitlayerTestnet: string;
4
9
  export declare const neoxTestnet: string;
5
10
  export declare const sepolia: string;
6
11
  export declare const polygonAmoy: string;
12
+ export declare const vanarTestnet: string;
7
13
  export type ZKLINK = "ZKLINK-NOVA";
8
14
  export type ZKLINK_TESTNET = "ZKLINK-NOVA-TESTNET";
9
15
  export type BITLAYER_TESTNET = "BITLAYER-TESTNET";
10
16
  export type NEOX_TESTNET = "NEOX-TESTNET";
11
17
  export type SEPOLIA = "SEPOLIA";
12
18
  export type AMOY = "AMOY";
19
+ export type VANGUARD_VANAR_TESTNET = "VANGUARD-VANAR-TESTNET";
13
20
  export declare const TESTNET_CHAINS: string[];
14
21
  export declare const SUPPORTED_EVM_CHAINS: string[];
22
+ export declare const GAS_ABS_ENABLED_CHAINS: string[];
15
23
  export declare const AA_SUPPORTED_EVM_CHAINS: string[];
16
24
  export declare const ALLCHAINS: string[];
17
25
  export declare const networks: {
@@ -1,10 +1,17 @@
1
+ export const mumbai = "MUMBAI";
2
+ export const polygon = "POLYGON";
3
+ export const ethereum = "ETH";
4
+ export const fuse = "FUSE";
5
+ export const fuseSpark = "FUSESPARK";
1
6
  export const zkLink = "ZKLINK-NOVA";
2
7
  export const zkLinkTestnet = "ZKLINK-NOVA-TESTNET";
3
8
  export const bitlayerTestnet = "BITLAYER-TESTNET";
4
9
  export const neoxTestnet = "NEOX-TESTNET";
5
10
  export const sepolia = "SEPOLIA";
6
11
  export const polygonAmoy = "AMOY";
12
+ export const vanarTestnet = "VANGUARD-VANAR-TESTNET";
7
13
  export const TESTNET_CHAINS = [
14
+ sepolia,
8
15
  "MUMBAI",
9
16
  "FUSESPARK",
10
17
  "MANTA-TESTNET",
@@ -15,6 +22,7 @@ export const TESTNET_CHAINS = [
15
22
  neoxTestnet,
16
23
  sepolia,
17
24
  polygonAmoy,
25
+ vanarTestnet,
18
26
  ];
19
27
  export const SUPPORTED_EVM_CHAINS = [
20
28
  "ETH",
@@ -27,6 +35,7 @@ export const SUPPORTED_EVM_CHAINS = [
27
35
  "FUSE",
28
36
  "FUSESPARK",
29
37
  "MUMBAI",
38
+ sepolia,
30
39
  "MANTA",
31
40
  "MANTA-TESTNET",
32
41
  "METIS",
@@ -39,10 +48,13 @@ export const SUPPORTED_EVM_CHAINS = [
39
48
  neoxTestnet,
40
49
  sepolia,
41
50
  polygonAmoy,
51
+ vanarTestnet,
42
52
  ];
53
+ export const GAS_ABS_ENABLED_CHAINS = [sepolia, "POLYGON"];
43
54
  export const AA_SUPPORTED_EVM_CHAINS = [
44
55
  // "ETH",
45
56
  "POLYGON",
57
+ sepolia,
46
58
  // "AVALANCHE",
47
59
  // "ARBITRUM",
48
60
  // "BINANCE",
@@ -67,6 +79,7 @@ export const ALLCHAINS = [
67
79
  "FUSE",
68
80
  "FUSESPARK",
69
81
  "MUMBAI",
82
+ sepolia,
70
83
  "MANTA",
71
84
  "MANTA-TESTNET",
72
85
  "METIS",
@@ -80,6 +93,7 @@ export const ALLCHAINS = [
80
93
  neoxTestnet,
81
94
  sepolia,
82
95
  polygonAmoy,
96
+ vanarTestnet,
83
97
  ];
84
98
  const baseLogoUrl = "https://static.tria.so/chain-logo-w";
85
99
  const baseLogoUrlBlack = "https://static.tria.so/chain-logo-b";
@@ -203,6 +217,11 @@ export const networks = [
203
217
  logo: `${baseLogoUrl}/Neo.webp`,
204
218
  type: "testnet",
205
219
  },
220
+ {
221
+ chainName: vanarTestnet,
222
+ logo: "https://vanguard.vanarchain.com/assets/vanry-logo.png", //`${baseLogoUrl}/Vanguard.webp`,
223
+ type: "testnet",
224
+ },
206
225
  ];
207
226
  export const chainNameToLogo = {
208
227
  ETH: `${baseLogoUrl}/Ethereum.webp`,
@@ -229,6 +248,7 @@ export const chainNameToLogo = {
229
248
  [zkLinkTestnet]: `${baseLogoUrl}/zklink.webp`,
230
249
  [bitlayerTestnet]: `${baseLogoUrl}/bitlayer.webp`,
231
250
  [neoxTestnet]: `${baseLogoUrl}/Neo.webp`,
251
+ [vanarTestnet]: "https://vanguard.vanarchain.com/assets/vanry-logo.png", //`${baseLogoUrl}/Vanguard.webp`,
232
252
  };
233
253
  export const chainNameToLogoBlack = {
234
254
  ETH: `${baseLogoUrlBlack}/Ethereum.webp`,
@@ -255,4 +275,5 @@ export const chainNameToLogoBlack = {
255
275
  [zkLinkTestnet]: `${baseLogoUrlBlack}/zklink.webp`,
256
276
  [bitlayerTestnet]: `${baseLogoUrlBlack}/bitlayer.webp`,
257
277
  [neoxTestnet]: `${baseLogoUrlBlack}/Neo.png`,
278
+ [vanarTestnet]: "https://vanguard.vanarchain.com/assets/vanry-logo.png", //`${baseLogoUrlBlack}/Vanguard.png`,
258
279
  };
@@ -3,3 +3,4 @@ export declare const isEvmChain: (chainName: string) => boolean;
3
3
  export declare const isAaSupportedChain: (chainName: string) => boolean;
4
4
  export declare const isChainSupported: (chainName: string) => boolean;
5
5
  export declare const isTestnetChain: (chainName: string) => boolean;
6
+ export declare const isGasAbsEnabled: (chainName: string) => boolean;
@@ -1,4 +1,4 @@
1
- import { AA_SUPPORTED_EVM_CHAINS, ALLCHAINS, SUPPORTED_EVM_CHAINS, TESTNET_CHAINS, } from "./chains";
1
+ import { AA_SUPPORTED_EVM_CHAINS, ALLCHAINS, GAS_ABS_ENABLED_CHAINS, SUPPORTED_EVM_CHAINS, TESTNET_CHAINS, } from "./chains";
2
2
  export const prodApiUrl = "https://prod.tria.so";
3
3
  export const isEvmChain = (chainName) => {
4
4
  return SUPPORTED_EVM_CHAINS.includes(chainName);
@@ -12,3 +12,6 @@ export const isChainSupported = (chainName) => {
12
12
  export const isTestnetChain = (chainName) => {
13
13
  return TESTNET_CHAINS.includes(chainName);
14
14
  };
15
+ export const isGasAbsEnabled = (chainName) => {
16
+ return GAS_ABS_ENABLED_CHAINS.includes(chainName);
17
+ };
File without changes
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ // import { polygonAmoy, sepolia } from "./chains";
3
+ // export const gasTokenAddresses = {
4
+ // [sepolia]: {
5
+ // USDC: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
6
+ // USDT: "",
7
+ // TST: "0xe2fDF4b113552A7bFaD5492D7E68F7479D7DFaCF",
8
+ // },
9
+ // [polygonAmoy]: {
10
+ // USDC: "",
11
+ // USDT: "",
12
+ // },
13
+ // };
package/dist/src/txn.d.ts CHANGED
@@ -171,9 +171,9 @@ export declare const chainNameToChainId: {
171
171
  "MANTLE-TESTNET": number;
172
172
  };
173
173
  export declare const chainIdToChainName: {
174
+ 11155111: string;
174
175
  80001: string;
175
176
  80002: string;
176
- 11155111: string;
177
177
  137: string;
178
178
  1: string;
179
179
  43114: string;
@@ -193,4 +193,5 @@ export declare const chainIdToChainName: {
193
193
  810182: string;
194
194
  200810: string;
195
195
  12227330: string;
196
+ 78600: string;
196
197
  };
package/dist/src/txn.js CHANGED
@@ -1,4 +1,4 @@
1
- import { bitlayerTestnet, neoxTestnet, polygonAmoy, sepolia, zkLink, zkLinkTestnet, } from "./chains";
1
+ import { bitlayerTestnet, neoxTestnet, polygonAmoy, sepolia, zkLink, zkLinkTestnet, vanarTestnet, } from "./chains";
2
2
  export const explorerBaseUrls = {
3
3
  ETH: "https://etherscan.io",
4
4
  [sepolia]: "https://sepolia.etherscan.io",
@@ -26,6 +26,7 @@ export const explorerBaseUrls = {
26
26
  [zkLinkTestnet]: "https://goerli.explorer.zklink.io",
27
27
  [bitlayerTestnet]: "https://testnet-scan.bitlayer.org/en-us",
28
28
  [neoxTestnet]: "https://xt2scan.ngd.network",
29
+ [vanarTestnet]: "https://explorer-vanguard.vanarchain.com",
29
30
  };
30
31
  export const txnBaseUrl = {
31
32
  ETH: `${explorerBaseUrls.ETH}/tx`, // /txHash
@@ -50,6 +51,7 @@ export const txnBaseUrl = {
50
51
  [zkLinkTestnet]: `${explorerBaseUrls[zkLinkTestnet]}/tx`,
51
52
  [bitlayerTestnet]: `${explorerBaseUrls[bitlayerTestnet]}/tx`,
52
53
  [neoxTestnet]: `${explorerBaseUrls[neoxTestnet]}/tx`,
54
+ [vanarTestnet]: `${explorerBaseUrls[vanarTestnet]}/tx`,
53
55
  };
54
56
  export const nativeTokenDetails = {
55
57
  ETH: {
@@ -167,6 +169,11 @@ export const nativeTokenDetails = {
167
169
  symbol: "GAS",
168
170
  logoUrl: "https://assets.coingecko.com/coins/images/858/standard/GAS_512_512.png?1696501992",
169
171
  },
172
+ [vanarTestnet]: {
173
+ name: "Vanry",
174
+ symbol: "VG",
175
+ logoUrl: "https://explorer-vanguard.vanarchain.com/assets/network_icon_dark.svg",
176
+ },
170
177
  };
171
178
  const alchemyKey = "kcuWVV9ss_iLWJ2Lw6xdHbmtZYixfY7Z";
172
179
  export const rpcUrls = {
@@ -174,6 +181,7 @@ export const rpcUrls = {
174
181
  [polygonAmoy]: `https://polygon-amoy.g.alchemy.com/v2/${alchemyKey}`,
175
182
  [sepolia]: `https://eth-sepolia.g.alchemy.com/v2/${alchemyKey}`,
176
183
  ETH: "https://eth.llamarpc.com",
184
+ [sepolia]: `https://eth-sepolia.g.alchemy.com/v2/${alchemyKey}`,
177
185
  POLYGON: `https://polygon-mainnet.g.alchemy.com/v2/${alchemyKey}`, // 'https://polygon.llamarpc.com',
178
186
  AVALANCHE: "https://avalanche-c-chain.publicnode.com",
179
187
  ARBITRUM: "https://arbitrum-one.publicnode.com",
@@ -192,6 +200,7 @@ export const rpcUrls = {
192
200
  [zkLinkTestnet]: "https://goerli.rpc.zklink.io",
193
201
  [bitlayerTestnet]: "https://testnet-rpc.bitlayer.org",
194
202
  [neoxTestnet]: "https://neoxseed1.ngd.network",
203
+ [vanarTestnet]: "http://rpc-partners-vanguard.vanarchain.com", // "https://rpc-vanguard.vanarchain.com",
195
204
  };
196
205
  export const chainNameToChainId = {
197
206
  MUMBAI: 80001,
@@ -216,11 +225,12 @@ export const chainNameToChainId = {
216
225
  [zkLinkTestnet]: 810182,
217
226
  [bitlayerTestnet]: 200810,
218
227
  [neoxTestnet]: 12227330,
228
+ [vanarTestnet]: 78600,
219
229
  };
220
230
  export const chainIdToChainName = {
231
+ 11155111: sepolia,
221
232
  80001: "MUMBAI",
222
233
  80002: polygonAmoy,
223
- 11155111: sepolia,
224
234
  137: "POLYGON",
225
235
  1: "ETH",
226
236
  43114: "AVALANCHE",
@@ -240,4 +250,5 @@ export const chainIdToChainName = {
240
250
  810182: zkLinkTestnet,
241
251
  200810: bitlayerTestnet,
242
252
  12227330: neoxTestnet,
253
+ 78600: vanarTestnet,
243
254
  };
package/index.ts CHANGED
@@ -2,3 +2,4 @@ export * from "./src/config";
2
2
  export * from "./src/chains";
3
3
  export * from "./src/txn";
4
4
  export * from "./src/connect";
5
+ // export * from "./src/gasToken";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tria-sdk/constants",
3
- "version": "1.0.30",
3
+ "version": "1.0.34",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/chains.ts CHANGED
@@ -1,9 +1,16 @@
1
+ export const mumbai = "MUMBAI";
2
+ export const polygon = "POLYGON";
3
+ export const ethereum = "ETH";
4
+ export const fuse = "FUSE";
5
+ export const fuseSpark = "FUSESPARK";
6
+
1
7
  export const zkLink: string = "ZKLINK-NOVA";
2
8
  export const zkLinkTestnet: string = "ZKLINK-NOVA-TESTNET";
3
9
  export const bitlayerTestnet: string = "BITLAYER-TESTNET";
4
10
  export const neoxTestnet: string = "NEOX-TESTNET";
5
11
  export const sepolia: string = "SEPOLIA";
6
12
  export const polygonAmoy: string = "AMOY";
13
+ export const vanarTestnet: string = "VANGUARD-VANAR-TESTNET";
7
14
 
8
15
  export type ZKLINK = "ZKLINK-NOVA";
9
16
  export type ZKLINK_TESTNET = "ZKLINK-NOVA-TESTNET";
@@ -11,8 +18,10 @@ export type BITLAYER_TESTNET = "BITLAYER-TESTNET";
11
18
  export type NEOX_TESTNET = "NEOX-TESTNET";
12
19
  export type SEPOLIA = "SEPOLIA";
13
20
  export type AMOY = "AMOY";
21
+ export type VANGUARD_VANAR_TESTNET = "VANGUARD-VANAR-TESTNET";
14
22
 
15
23
  export const TESTNET_CHAINS = [
24
+ sepolia,
16
25
  "MUMBAI",
17
26
  "FUSESPARK",
18
27
  "MANTA-TESTNET",
@@ -23,6 +32,7 @@ export const TESTNET_CHAINS = [
23
32
  neoxTestnet,
24
33
  sepolia,
25
34
  polygonAmoy,
35
+ vanarTestnet,
26
36
  ];
27
37
 
28
38
  export const SUPPORTED_EVM_CHAINS = [
@@ -36,6 +46,7 @@ export const SUPPORTED_EVM_CHAINS = [
36
46
  "FUSE",
37
47
  "FUSESPARK",
38
48
  "MUMBAI",
49
+ sepolia,
39
50
  "MANTA",
40
51
  "MANTA-TESTNET",
41
52
  "METIS",
@@ -48,11 +59,15 @@ export const SUPPORTED_EVM_CHAINS = [
48
59
  neoxTestnet,
49
60
  sepolia,
50
61
  polygonAmoy,
62
+ vanarTestnet,
51
63
  ];
52
64
 
65
+ export const GAS_ABS_ENABLED_CHAINS = [sepolia, "POLYGON"];
66
+
53
67
  export const AA_SUPPORTED_EVM_CHAINS = [
54
68
  // "ETH",
55
69
  "POLYGON",
70
+ sepolia,
56
71
  // "AVALANCHE",
57
72
  // "ARBITRUM",
58
73
  // "BINANCE",
@@ -78,6 +93,7 @@ export const ALLCHAINS = [
78
93
  "FUSE",
79
94
  "FUSESPARK",
80
95
  "MUMBAI",
96
+ sepolia,
81
97
  "MANTA",
82
98
  "MANTA-TESTNET",
83
99
  "METIS",
@@ -91,6 +107,7 @@ export const ALLCHAINS = [
91
107
  neoxTestnet,
92
108
  sepolia,
93
109
  polygonAmoy,
110
+ vanarTestnet,
94
111
  ];
95
112
 
96
113
  const baseLogoUrl = "https://static.tria.so/chain-logo-w";
@@ -216,6 +233,11 @@ export const networks = [
216
233
  logo: `${baseLogoUrl}/Neo.webp`,
217
234
  type: "testnet",
218
235
  },
236
+ {
237
+ chainName: vanarTestnet,
238
+ logo: "https://vanguard.vanarchain.com/assets/vanry-logo.png", //`${baseLogoUrl}/Vanguard.webp`,
239
+ type: "testnet",
240
+ },
219
241
  ];
220
242
 
221
243
  export const chainNameToLogo = {
@@ -243,6 +265,7 @@ export const chainNameToLogo = {
243
265
  [zkLinkTestnet]: `${baseLogoUrl}/zklink.webp`,
244
266
  [bitlayerTestnet]: `${baseLogoUrl}/bitlayer.webp`,
245
267
  [neoxTestnet]: `${baseLogoUrl}/Neo.webp`,
268
+ [vanarTestnet]: "https://vanguard.vanarchain.com/assets/vanry-logo.png", //`${baseLogoUrl}/Vanguard.webp`,
246
269
  };
247
270
 
248
271
  export const chainNameToLogoBlack = {
@@ -270,4 +293,5 @@ export const chainNameToLogoBlack = {
270
293
  [zkLinkTestnet]: `${baseLogoUrlBlack}/zklink.webp`,
271
294
  [bitlayerTestnet]: `${baseLogoUrlBlack}/bitlayer.webp`,
272
295
  [neoxTestnet]: `${baseLogoUrlBlack}/Neo.png`,
296
+ [vanarTestnet]: "https://vanguard.vanarchain.com/assets/vanry-logo.png", //`${baseLogoUrlBlack}/Vanguard.png`,
273
297
  };
package/src/config.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import {
2
2
  AA_SUPPORTED_EVM_CHAINS,
3
3
  ALLCHAINS,
4
+ GAS_ABS_ENABLED_CHAINS,
4
5
  SUPPORTED_EVM_CHAINS,
5
6
  TESTNET_CHAINS,
6
7
  } from "./chains";
@@ -22,3 +23,7 @@ export const isChainSupported = (chainName: string) => {
22
23
  export const isTestnetChain = (chainName: string) => {
23
24
  return TESTNET_CHAINS.includes(chainName);
24
25
  };
26
+
27
+ export const isGasAbsEnabled = (chainName: string) => {
28
+ return GAS_ABS_ENABLED_CHAINS.includes(chainName);
29
+ };
@@ -0,0 +1,13 @@
1
+ // import { polygonAmoy, sepolia } from "./chains";
2
+
3
+ // export const gasTokenAddresses = {
4
+ // [sepolia]: {
5
+ // USDC: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
6
+ // USDT: "",
7
+ // TST: "0xe2fDF4b113552A7bFaD5492D7E68F7479D7DFaCF",
8
+ // },
9
+ // [polygonAmoy]: {
10
+ // USDC: "",
11
+ // USDT: "",
12
+ // },
13
+ // };
package/src/txn.ts CHANGED
@@ -5,6 +5,7 @@ import {
5
5
  sepolia,
6
6
  zkLink,
7
7
  zkLinkTestnet,
8
+ vanarTestnet,
8
9
  } from "./chains";
9
10
 
10
11
  export const explorerBaseUrls = {
@@ -34,6 +35,7 @@ export const explorerBaseUrls = {
34
35
  [zkLinkTestnet]: "https://goerli.explorer.zklink.io",
35
36
  [bitlayerTestnet]: "https://testnet-scan.bitlayer.org/en-us",
36
37
  [neoxTestnet]: "https://xt2scan.ngd.network",
38
+ [vanarTestnet]: "https://explorer-vanguard.vanarchain.com",
37
39
  };
38
40
 
39
41
  export const txnBaseUrl = {
@@ -59,6 +61,7 @@ export const txnBaseUrl = {
59
61
  [zkLinkTestnet]: `${explorerBaseUrls[zkLinkTestnet]}/tx`,
60
62
  [bitlayerTestnet]: `${explorerBaseUrls[bitlayerTestnet]}/tx`,
61
63
  [neoxTestnet]: `${explorerBaseUrls[neoxTestnet]}/tx`,
64
+ [vanarTestnet]: `${explorerBaseUrls[vanarTestnet]}/tx`,
62
65
  };
63
66
 
64
67
  export const nativeTokenDetails = {
@@ -186,6 +189,12 @@ export const nativeTokenDetails = {
186
189
  logoUrl:
187
190
  "https://assets.coingecko.com/coins/images/858/standard/GAS_512_512.png?1696501992",
188
191
  },
192
+ [vanarTestnet]: {
193
+ name: "Vanry",
194
+ symbol: "VG",
195
+ logoUrl:
196
+ "https://explorer-vanguard.vanarchain.com/assets/network_icon_dark.svg",
197
+ },
189
198
  };
190
199
 
191
200
  const alchemyKey = "kcuWVV9ss_iLWJ2Lw6xdHbmtZYixfY7Z";
@@ -195,6 +204,7 @@ export const rpcUrls = {
195
204
  [polygonAmoy]: `https://polygon-amoy.g.alchemy.com/v2/${alchemyKey}`,
196
205
  [sepolia]: `https://eth-sepolia.g.alchemy.com/v2/${alchemyKey}`,
197
206
  ETH: "https://eth.llamarpc.com",
207
+ [sepolia]: `https://eth-sepolia.g.alchemy.com/v2/${alchemyKey}`,
198
208
  POLYGON: `https://polygon-mainnet.g.alchemy.com/v2/${alchemyKey}`, // 'https://polygon.llamarpc.com',
199
209
  AVALANCHE: "https://avalanche-c-chain.publicnode.com",
200
210
  ARBITRUM: "https://arbitrum-one.publicnode.com",
@@ -213,6 +223,7 @@ export const rpcUrls = {
213
223
  [zkLinkTestnet]: "https://goerli.rpc.zklink.io",
214
224
  [bitlayerTestnet]: "https://testnet-rpc.bitlayer.org",
215
225
  [neoxTestnet]: "https://neoxseed1.ngd.network",
226
+ [vanarTestnet]: "http://rpc-partners-vanguard.vanarchain.com", // "https://rpc-vanguard.vanarchain.com",
216
227
  };
217
228
 
218
229
  export const chainNameToChainId = {
@@ -238,12 +249,13 @@ export const chainNameToChainId = {
238
249
  [zkLinkTestnet]: 810182,
239
250
  [bitlayerTestnet]: 200810,
240
251
  [neoxTestnet]: 12227330,
252
+ [vanarTestnet]: 78600,
241
253
  };
242
254
 
243
255
  export const chainIdToChainName = {
256
+ 11155111: sepolia,
244
257
  80001: "MUMBAI",
245
258
  80002: polygonAmoy,
246
- 11155111: sepolia,
247
259
  137: "POLYGON",
248
260
  1: "ETH",
249
261
  43114: "AVALANCHE",
@@ -263,4 +275,5 @@ export const chainIdToChainName = {
263
275
  810182: zkLinkTestnet,
264
276
  200810: bitlayerTestnet,
265
277
  12227330: neoxTestnet,
278
+ 78600: vanarTestnet,
266
279
  };