sushi 6.1.0 → 6.1.2
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/_cjs/evm/chain/chains.js +1 -1
- package/_cjs/evm/chain/chains.js.map +1 -1
- package/_cjs/evm/config/features/route-processor.js +35 -35
- package/_cjs/evm/config/subgraphs/subgraphs/blade.js +5 -4
- package/_cjs/evm/config/subgraphs/subgraphs/blade.js.map +1 -1
- package/_esm/evm/chain/chains.js +1 -1
- package/_esm/evm/chain/chains.js.map +1 -1
- package/_esm/evm/config/features/route-processor.js +35 -35
- package/_esm/evm/config/subgraphs/subgraphs/blade.js +5 -4
- package/_esm/evm/config/subgraphs/subgraphs/blade.js.map +1 -1
- package/_types/evm/chain/chains.d.ts +120 -120
- package/_types/evm/chain/chains.d.ts.map +1 -1
- package/_types/evm/chain/define-chain.d.ts +1 -1
- package/_types/evm/config/subgraphs/subgraphs/blade.d.ts.map +1 -1
- package/_types/generic/chain/chains.d.ts +120 -120
- package/evm/chain/chains.ts +1 -1
- package/evm/config/features/route-processor.ts +35 -35
- package/evm/config/subgraphs/subgraphs/blade.ts +5 -6
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export declare const evmChains: readonly [{
|
|
2
2
|
readonly type: "evm";
|
|
3
|
-
readonly chainId:
|
|
4
|
-
readonly key: "
|
|
5
|
-
readonly name: "
|
|
6
|
-
readonly shortName: "
|
|
3
|
+
readonly chainId: 1;
|
|
4
|
+
readonly key: "ethereum";
|
|
5
|
+
readonly name: "Ethereum";
|
|
6
|
+
readonly shortName: "eth";
|
|
7
7
|
readonly netType: "mainnet";
|
|
8
8
|
readonly blockExplorers: import("../../generic/index.js").BlockExplorers | {
|
|
9
9
|
[key: string]: {
|
|
@@ -17,37 +17,39 @@ export declare const evmChains: readonly [{
|
|
|
17
17
|
apiUrl?: string | undefined;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
|
-
readonly parentChainId:
|
|
20
|
+
readonly parentChainId: undefined;
|
|
21
21
|
readonly viemChain: Omit<{
|
|
22
22
|
blockExplorers: {
|
|
23
23
|
readonly default: {
|
|
24
|
-
readonly name: "
|
|
25
|
-
readonly url: "https://
|
|
24
|
+
readonly name: "Etherscan";
|
|
25
|
+
readonly url: "https://etherscan.io";
|
|
26
|
+
readonly apiUrl: "https://api.etherscan.io/api";
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
contracts: {
|
|
30
|
+
readonly ensRegistry: {
|
|
31
|
+
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
32
|
+
};
|
|
33
|
+
readonly ensUniversalResolver: {
|
|
34
|
+
readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
|
|
35
|
+
readonly blockCreated: 19258213;
|
|
36
|
+
};
|
|
37
|
+
readonly multicall3: {
|
|
38
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
39
|
+
readonly blockCreated: 14353601;
|
|
26
40
|
};
|
|
27
41
|
};
|
|
28
|
-
contracts?: {
|
|
29
|
-
[x: string]: import("viem").ChainContract | {
|
|
30
|
-
[sourceId: number]: import("viem").ChainContract | undefined;
|
|
31
|
-
} | undefined;
|
|
32
|
-
ensRegistry?: import("viem").ChainContract | undefined;
|
|
33
|
-
ensUniversalResolver?: import("viem").ChainContract | undefined;
|
|
34
|
-
multicall3?: import("viem").ChainContract | undefined;
|
|
35
|
-
universalSignatureVerifier?: import("viem").ChainContract | undefined;
|
|
36
|
-
} | undefined;
|
|
37
42
|
ensTlds?: readonly string[] | undefined;
|
|
38
|
-
id:
|
|
39
|
-
name: "
|
|
43
|
+
id: 1;
|
|
44
|
+
name: "Ethereum";
|
|
40
45
|
nativeCurrency: {
|
|
41
|
-
readonly name: "
|
|
42
|
-
readonly symbol: "
|
|
46
|
+
readonly name: "Ether";
|
|
47
|
+
readonly symbol: "ETH";
|
|
43
48
|
readonly decimals: 18;
|
|
44
49
|
};
|
|
45
50
|
rpcUrls: {
|
|
46
51
|
readonly default: {
|
|
47
|
-
readonly http: readonly ["https://
|
|
48
|
-
};
|
|
49
|
-
readonly public: {
|
|
50
|
-
readonly http: readonly ["https://bnb.boba.network"];
|
|
52
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
51
53
|
};
|
|
52
54
|
};
|
|
53
55
|
sourceId?: number | undefined | undefined;
|
|
@@ -56,20 +58,17 @@ export declare const evmChains: readonly [{
|
|
|
56
58
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
57
59
|
formatters?: undefined;
|
|
58
60
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
59
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
60
|
-
readonly id:
|
|
61
|
-
readonly name: "
|
|
61
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
62
|
+
readonly id: 1;
|
|
63
|
+
readonly name: "Ethereum";
|
|
62
64
|
readonly nativeCurrency: {
|
|
63
|
-
readonly name: "
|
|
64
|
-
readonly symbol: "
|
|
65
|
+
readonly name: "Ether";
|
|
66
|
+
readonly symbol: "ETH";
|
|
65
67
|
readonly decimals: 18;
|
|
66
68
|
};
|
|
67
69
|
readonly rpcUrls: {
|
|
68
70
|
readonly default: {
|
|
69
|
-
readonly http: readonly ["https://
|
|
70
|
-
};
|
|
71
|
-
readonly public: {
|
|
72
|
-
readonly http: readonly ["https://bnb.boba.network"];
|
|
71
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
73
72
|
};
|
|
74
73
|
};
|
|
75
74
|
readonly blockExplorers: import("../../generic/index.js").BlockExplorers | {
|
|
@@ -85,9 +84,16 @@ export declare const evmChains: readonly [{
|
|
|
85
84
|
};
|
|
86
85
|
};
|
|
87
86
|
readonly contracts: {
|
|
87
|
+
readonly ensRegistry: {
|
|
88
|
+
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
89
|
+
};
|
|
90
|
+
readonly ensUniversalResolver: {
|
|
91
|
+
readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
|
|
92
|
+
readonly blockCreated: 19258213;
|
|
93
|
+
};
|
|
88
94
|
readonly multicall3: {
|
|
89
|
-
readonly address: "
|
|
90
|
-
readonly blockCreated:
|
|
95
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
96
|
+
readonly blockCreated: 14353601;
|
|
91
97
|
};
|
|
92
98
|
};
|
|
93
99
|
};
|
|
@@ -96,10 +102,10 @@ export declare const evmChains: readonly [{
|
|
|
96
102
|
readonly getTokenUrl: (input: import("../index.js").EvmAddress) => string;
|
|
97
103
|
}, {
|
|
98
104
|
readonly type: "evm";
|
|
99
|
-
readonly chainId:
|
|
100
|
-
readonly key: "
|
|
101
|
-
readonly name: "
|
|
102
|
-
readonly shortName: "
|
|
105
|
+
readonly chainId: 56288;
|
|
106
|
+
readonly key: "boba-bnb";
|
|
107
|
+
readonly name: "Boba BNB";
|
|
108
|
+
readonly shortName: "boba-bnb";
|
|
103
109
|
readonly netType: "mainnet";
|
|
104
110
|
readonly blockExplorers: import("../../generic/index.js").BlockExplorers | {
|
|
105
111
|
[key: string]: {
|
|
@@ -113,39 +119,37 @@ export declare const evmChains: readonly [{
|
|
|
113
119
|
apiUrl?: string | undefined;
|
|
114
120
|
};
|
|
115
121
|
};
|
|
116
|
-
readonly parentChainId:
|
|
122
|
+
readonly parentChainId: 56;
|
|
117
123
|
readonly viemChain: Omit<{
|
|
118
124
|
blockExplorers: {
|
|
119
125
|
readonly default: {
|
|
120
|
-
readonly name: "
|
|
121
|
-
readonly url: "https://
|
|
122
|
-
readonly apiUrl: "https://api.etherscan.io/api";
|
|
123
|
-
};
|
|
124
|
-
};
|
|
125
|
-
contracts: {
|
|
126
|
-
readonly ensRegistry: {
|
|
127
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
128
|
-
};
|
|
129
|
-
readonly ensUniversalResolver: {
|
|
130
|
-
readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
|
|
131
|
-
readonly blockCreated: 19258213;
|
|
132
|
-
};
|
|
133
|
-
readonly multicall3: {
|
|
134
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
135
|
-
readonly blockCreated: 14353601;
|
|
126
|
+
readonly name: "Boba BNB Mainnet Explorer";
|
|
127
|
+
readonly url: "https://bnb.bobascan.com/";
|
|
136
128
|
};
|
|
137
129
|
};
|
|
130
|
+
contracts?: {
|
|
131
|
+
[x: string]: import("viem").ChainContract | {
|
|
132
|
+
[sourceId: number]: import("viem").ChainContract | undefined;
|
|
133
|
+
} | undefined;
|
|
134
|
+
ensRegistry?: import("viem").ChainContract | undefined;
|
|
135
|
+
ensUniversalResolver?: import("viem").ChainContract | undefined;
|
|
136
|
+
multicall3?: import("viem").ChainContract | undefined;
|
|
137
|
+
universalSignatureVerifier?: import("viem").ChainContract | undefined;
|
|
138
|
+
} | undefined;
|
|
138
139
|
ensTlds?: readonly string[] | undefined;
|
|
139
|
-
id:
|
|
140
|
-
name: "
|
|
140
|
+
id: 56288;
|
|
141
|
+
name: "Boba BNB";
|
|
141
142
|
nativeCurrency: {
|
|
142
|
-
readonly name: "
|
|
143
|
-
readonly symbol: "
|
|
143
|
+
readonly name: "Boba";
|
|
144
|
+
readonly symbol: "BOBA";
|
|
144
145
|
readonly decimals: 18;
|
|
145
146
|
};
|
|
146
147
|
rpcUrls: {
|
|
147
148
|
readonly default: {
|
|
148
|
-
readonly http: readonly ["https://
|
|
149
|
+
readonly http: readonly ["https://bnb.boba.network"];
|
|
150
|
+
};
|
|
151
|
+
readonly public: {
|
|
152
|
+
readonly http: readonly ["https://bnb.boba.network"];
|
|
149
153
|
};
|
|
150
154
|
};
|
|
151
155
|
sourceId?: number | undefined | undefined;
|
|
@@ -154,17 +158,20 @@ export declare const evmChains: readonly [{
|
|
|
154
158
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
155
159
|
formatters?: undefined;
|
|
156
160
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
157
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
158
|
-
readonly id:
|
|
159
|
-
readonly name: "
|
|
161
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
162
|
+
readonly id: 56288;
|
|
163
|
+
readonly name: "Boba BNB";
|
|
160
164
|
readonly nativeCurrency: {
|
|
161
|
-
readonly name: "
|
|
162
|
-
readonly symbol: "
|
|
165
|
+
readonly name: "Boba";
|
|
166
|
+
readonly symbol: "BOBA";
|
|
163
167
|
readonly decimals: 18;
|
|
164
168
|
};
|
|
165
169
|
readonly rpcUrls: {
|
|
166
170
|
readonly default: {
|
|
167
|
-
readonly http: readonly ["https://
|
|
171
|
+
readonly http: readonly ["https://bnb.boba.network"];
|
|
172
|
+
};
|
|
173
|
+
readonly public: {
|
|
174
|
+
readonly http: readonly ["https://bnb.boba.network"];
|
|
168
175
|
};
|
|
169
176
|
};
|
|
170
177
|
readonly blockExplorers: import("../../generic/index.js").BlockExplorers | {
|
|
@@ -180,16 +187,9 @@ export declare const evmChains: readonly [{
|
|
|
180
187
|
};
|
|
181
188
|
};
|
|
182
189
|
readonly contracts: {
|
|
183
|
-
readonly ensRegistry: {
|
|
184
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
185
|
-
};
|
|
186
|
-
readonly ensUniversalResolver: {
|
|
187
|
-
readonly address: "0xce01f8eee7E479C928F8919abD53E553a36CeF67";
|
|
188
|
-
readonly blockCreated: 19258213;
|
|
189
|
-
};
|
|
190
190
|
readonly multicall3: {
|
|
191
|
-
readonly address: "
|
|
192
|
-
readonly blockCreated:
|
|
191
|
+
readonly address: "0x67da5f2ffaddff067ab9d5f025f8810634d84287";
|
|
192
|
+
readonly blockCreated: 18871;
|
|
193
193
|
};
|
|
194
194
|
};
|
|
195
195
|
};
|
|
@@ -249,7 +249,7 @@ export declare const evmChains: readonly [{
|
|
|
249
249
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
250
250
|
formatters?: undefined;
|
|
251
251
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
252
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
252
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
253
253
|
readonly id: 137;
|
|
254
254
|
readonly name: "Polygon";
|
|
255
255
|
readonly nativeCurrency: {
|
|
@@ -337,7 +337,7 @@ export declare const evmChains: readonly [{
|
|
|
337
337
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
338
338
|
formatters?: undefined;
|
|
339
339
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
340
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
340
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
341
341
|
readonly id: 250;
|
|
342
342
|
readonly name: "Fantom";
|
|
343
343
|
readonly nativeCurrency: {
|
|
@@ -426,7 +426,7 @@ export declare const evmChains: readonly [{
|
|
|
426
426
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
427
427
|
formatters?: undefined;
|
|
428
428
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
429
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
429
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
430
430
|
readonly id: 100;
|
|
431
431
|
readonly name: "Gnosis";
|
|
432
432
|
readonly nativeCurrency: {
|
|
@@ -515,7 +515,7 @@ export declare const evmChains: readonly [{
|
|
|
515
515
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
516
516
|
formatters?: undefined;
|
|
517
517
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
518
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
518
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
519
519
|
readonly id: 56;
|
|
520
520
|
readonly name: "BNB Smart Chain";
|
|
521
521
|
readonly nativeCurrency: {
|
|
@@ -603,7 +603,7 @@ export declare const evmChains: readonly [{
|
|
|
603
603
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
604
604
|
formatters?: undefined;
|
|
605
605
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
606
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
606
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
607
607
|
readonly id: 42161;
|
|
608
608
|
readonly name: "Arbitrum One";
|
|
609
609
|
readonly nativeCurrency: {
|
|
@@ -691,7 +691,7 @@ export declare const evmChains: readonly [{
|
|
|
691
691
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
692
692
|
formatters?: undefined;
|
|
693
693
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
694
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
694
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
695
695
|
readonly id: 42170;
|
|
696
696
|
readonly name: "Arbitrum Nova";
|
|
697
697
|
readonly nativeCurrency: {
|
|
@@ -779,7 +779,7 @@ export declare const evmChains: readonly [{
|
|
|
779
779
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
780
780
|
formatters?: undefined;
|
|
781
781
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
782
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
782
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
783
783
|
readonly id: 43114;
|
|
784
784
|
readonly name: "Avalanche";
|
|
785
785
|
readonly nativeCurrency: {
|
|
@@ -866,7 +866,7 @@ export declare const evmChains: readonly [{
|
|
|
866
866
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
867
867
|
formatters?: undefined;
|
|
868
868
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
869
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
869
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
870
870
|
readonly id: 1666600000;
|
|
871
871
|
readonly name: "Harmony One";
|
|
872
872
|
readonly nativeCurrency: {
|
|
@@ -1776,7 +1776,7 @@ export declare const evmChains: readonly [{
|
|
|
1776
1776
|
serializers: {
|
|
1777
1777
|
readonly transaction: typeof import("viem/chains").serializeTransactionCelo;
|
|
1778
1778
|
};
|
|
1779
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
1779
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
1780
1780
|
readonly id: 42220;
|
|
1781
1781
|
readonly name: "Celo";
|
|
1782
1782
|
readonly nativeCurrency: {
|
|
@@ -2134,7 +2134,7 @@ export declare const evmChains: readonly [{
|
|
|
2134
2134
|
serializers: {
|
|
2135
2135
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
2136
2136
|
};
|
|
2137
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
2137
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
2138
2138
|
readonly id: 10;
|
|
2139
2139
|
readonly name: "OP Mainnet";
|
|
2140
2140
|
readonly nativeCurrency: {
|
|
@@ -2261,7 +2261,7 @@ export declare const evmChains: readonly [{
|
|
|
2261
2261
|
formatters?: undefined;
|
|
2262
2262
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2263
2263
|
readonly network: "kava-mainnet";
|
|
2264
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
2264
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
2265
2265
|
readonly id: 2222;
|
|
2266
2266
|
readonly name: "Kava EVM";
|
|
2267
2267
|
readonly nativeCurrency: {
|
|
@@ -2350,7 +2350,7 @@ export declare const evmChains: readonly [{
|
|
|
2350
2350
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2351
2351
|
formatters?: undefined;
|
|
2352
2352
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2353
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
2353
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
2354
2354
|
readonly id: 1088;
|
|
2355
2355
|
readonly name: "Metis";
|
|
2356
2356
|
readonly nativeCurrency: {
|
|
@@ -2438,7 +2438,7 @@ export declare const evmChains: readonly [{
|
|
|
2438
2438
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2439
2439
|
formatters?: undefined;
|
|
2440
2440
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2441
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
2441
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
2442
2442
|
readonly id: 288;
|
|
2443
2443
|
readonly name: "Boba Network";
|
|
2444
2444
|
readonly nativeCurrency: {
|
|
@@ -2527,7 +2527,7 @@ export declare const evmChains: readonly [{
|
|
|
2527
2527
|
formatters?: undefined;
|
|
2528
2528
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2529
2529
|
readonly network: "bittorrent-chain-mainnet";
|
|
2530
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
2530
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
2531
2531
|
readonly id: 199;
|
|
2532
2532
|
readonly name: "BitTorrent";
|
|
2533
2533
|
readonly nativeCurrency: {
|
|
@@ -2615,7 +2615,7 @@ export declare const evmChains: readonly [{
|
|
|
2615
2615
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2616
2616
|
formatters?: undefined;
|
|
2617
2617
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2618
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
2618
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
2619
2619
|
readonly id: 1101;
|
|
2620
2620
|
readonly name: "Polygon zkEVM";
|
|
2621
2621
|
readonly nativeCurrency: {
|
|
@@ -2702,7 +2702,7 @@ export declare const evmChains: readonly [{
|
|
|
2702
2702
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2703
2703
|
formatters?: undefined;
|
|
2704
2704
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2705
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
2705
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
2706
2706
|
readonly id: 108;
|
|
2707
2707
|
readonly name: "ThunderCore Mainnet";
|
|
2708
2708
|
readonly nativeCurrency: {
|
|
@@ -2789,7 +2789,7 @@ export declare const evmChains: readonly [{
|
|
|
2789
2789
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2790
2790
|
formatters?: undefined;
|
|
2791
2791
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2792
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
2792
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
2793
2793
|
readonly id: 314;
|
|
2794
2794
|
readonly name: "Filecoin Mainnet";
|
|
2795
2795
|
readonly nativeCurrency: {
|
|
@@ -2880,7 +2880,7 @@ export declare const evmChains: readonly [{
|
|
|
2880
2880
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2881
2881
|
formatters?: undefined;
|
|
2882
2882
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2883
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
2883
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
2884
2884
|
readonly id: 11235;
|
|
2885
2885
|
readonly name: "HAQQ Mainnet";
|
|
2886
2886
|
readonly nativeCurrency: {
|
|
@@ -2967,7 +2967,7 @@ export declare const evmChains: readonly [{
|
|
|
2967
2967
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2968
2968
|
formatters?: undefined;
|
|
2969
2969
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2970
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
2970
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
2971
2971
|
readonly id: 1116;
|
|
2972
2972
|
readonly name: "Core Dao";
|
|
2973
2973
|
readonly nativeCurrency: {
|
|
@@ -3436,7 +3436,7 @@ export declare const evmChains: readonly [{
|
|
|
3436
3436
|
readonly transaction: typeof import("viem/zksync").serializeTransaction;
|
|
3437
3437
|
};
|
|
3438
3438
|
readonly network: "zksync-era";
|
|
3439
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
3439
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
3440
3440
|
readonly id: 324;
|
|
3441
3441
|
readonly name: "ZKsync Era";
|
|
3442
3442
|
readonly nativeCurrency: {
|
|
@@ -3540,7 +3540,7 @@ export declare const evmChains: readonly [{
|
|
|
3540
3540
|
};
|
|
3541
3541
|
formatters?: undefined;
|
|
3542
3542
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
3543
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
3543
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
3544
3544
|
readonly id: 59144;
|
|
3545
3545
|
readonly name: "Linea Mainnet";
|
|
3546
3546
|
readonly nativeCurrency: {
|
|
@@ -3909,7 +3909,7 @@ export declare const evmChains: readonly [{
|
|
|
3909
3909
|
serializers: {
|
|
3910
3910
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
3911
3911
|
};
|
|
3912
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
3912
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
3913
3913
|
readonly id: 8453;
|
|
3914
3914
|
readonly name: "Base";
|
|
3915
3915
|
readonly nativeCurrency: {
|
|
@@ -4038,7 +4038,7 @@ export declare const evmChains: readonly [{
|
|
|
4038
4038
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4039
4039
|
formatters?: undefined;
|
|
4040
4040
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
4041
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
4041
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
4042
4042
|
readonly id: 534352;
|
|
4043
4043
|
readonly name: "Scroll";
|
|
4044
4044
|
readonly nativeCurrency: {
|
|
@@ -4126,7 +4126,7 @@ export declare const evmChains: readonly [{
|
|
|
4126
4126
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4127
4127
|
formatters?: undefined;
|
|
4128
4128
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
4129
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
4129
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
4130
4130
|
readonly id: 7000;
|
|
4131
4131
|
readonly name: "ZetaChain";
|
|
4132
4132
|
readonly nativeCurrency: {
|
|
@@ -4214,7 +4214,7 @@ export declare const evmChains: readonly [{
|
|
|
4214
4214
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4215
4215
|
formatters?: undefined;
|
|
4216
4216
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
4217
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
4217
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
4218
4218
|
readonly id: 25;
|
|
4219
4219
|
readonly name: "Cronos Mainnet";
|
|
4220
4220
|
readonly nativeCurrency: {
|
|
@@ -4552,7 +4552,7 @@ export declare const evmChains: readonly [{
|
|
|
4552
4552
|
serializers: {
|
|
4553
4553
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
4554
4554
|
};
|
|
4555
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
4555
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
4556
4556
|
readonly id: 81457;
|
|
4557
4557
|
readonly name: "Blast";
|
|
4558
4558
|
readonly nativeCurrency: {
|
|
@@ -4658,7 +4658,7 @@ export declare const evmChains: readonly [{
|
|
|
4658
4658
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4659
4659
|
formatters?: undefined;
|
|
4660
4660
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
4661
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
4661
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
4662
4662
|
readonly id: 2046399126;
|
|
4663
4663
|
readonly name: "SKALE Europa Hub";
|
|
4664
4664
|
readonly nativeCurrency: {
|
|
@@ -4747,7 +4747,7 @@ export declare const evmChains: readonly [{
|
|
|
4747
4747
|
formatters?: undefined;
|
|
4748
4748
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
4749
4749
|
readonly network: "rootstock";
|
|
4750
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
4750
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
4751
4751
|
readonly id: 30;
|
|
4752
4752
|
readonly name: "Rootstock Mainnet";
|
|
4753
4753
|
readonly nativeCurrency: {
|
|
@@ -4835,7 +4835,7 @@ export declare const evmChains: readonly [{
|
|
|
4835
4835
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
4836
4836
|
formatters?: undefined;
|
|
4837
4837
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
4838
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
4838
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
4839
4839
|
readonly id: 5000;
|
|
4840
4840
|
readonly name: "Mantle";
|
|
4841
4841
|
readonly nativeCurrency: {
|
|
@@ -4924,7 +4924,7 @@ export declare const evmChains: readonly [{
|
|
|
4924
4924
|
formatters?: undefined;
|
|
4925
4925
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
4926
4926
|
readonly network: "manta";
|
|
4927
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
4927
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
4928
4928
|
readonly id: 169;
|
|
4929
4929
|
readonly name: "Manta Pacific Mainnet";
|
|
4930
4930
|
readonly nativeCurrency: {
|
|
@@ -5276,7 +5276,7 @@ export declare const evmChains: readonly [{
|
|
|
5276
5276
|
serializers: {
|
|
5277
5277
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
5278
5278
|
};
|
|
5279
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
5279
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
5280
5280
|
readonly id: 34443;
|
|
5281
5281
|
readonly name: "Mode Mainnet";
|
|
5282
5282
|
readonly nativeCurrency: {
|
|
@@ -5397,7 +5397,7 @@ export declare const evmChains: readonly [{
|
|
|
5397
5397
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
5398
5398
|
formatters?: undefined;
|
|
5399
5399
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
5400
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
5400
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
5401
5401
|
readonly id: 167000;
|
|
5402
5402
|
readonly name: "Taiko Mainnet";
|
|
5403
5403
|
readonly nativeCurrency: {
|
|
@@ -5487,7 +5487,7 @@ export declare const evmChains: readonly [{
|
|
|
5487
5487
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
5488
5488
|
formatters?: undefined;
|
|
5489
5489
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
5490
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
5490
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
5491
5491
|
readonly id: 810180;
|
|
5492
5492
|
readonly name: "zkLink Nova";
|
|
5493
5493
|
readonly nativeCurrency: {
|
|
@@ -5576,7 +5576,7 @@ export declare const evmChains: readonly [{
|
|
|
5576
5576
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
5577
5577
|
formatters?: undefined;
|
|
5578
5578
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
5579
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
5579
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
5580
5580
|
readonly id: 33139;
|
|
5581
5581
|
readonly name: "Ape Chain";
|
|
5582
5582
|
readonly nativeCurrency: {
|
|
@@ -5664,7 +5664,7 @@ export declare const evmChains: readonly [{
|
|
|
5664
5664
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
5665
5665
|
formatters?: undefined;
|
|
5666
5666
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
5667
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
5667
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
5668
5668
|
readonly id: 146;
|
|
5669
5669
|
readonly name: "Sonic";
|
|
5670
5670
|
readonly nativeCurrency: {
|
|
@@ -5755,7 +5755,7 @@ export declare const evmChains: readonly [{
|
|
|
5755
5755
|
formatters?: undefined;
|
|
5756
5756
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
5757
5757
|
readonly network: "Hemi";
|
|
5758
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
5758
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
5759
5759
|
readonly id: 43111;
|
|
5760
5760
|
readonly name: "Hemi";
|
|
5761
5761
|
readonly nativeCurrency: {
|
|
@@ -5843,7 +5843,7 @@ export declare const evmChains: readonly [{
|
|
|
5843
5843
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
5844
5844
|
formatters?: undefined;
|
|
5845
5845
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
5846
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
5846
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
5847
5847
|
readonly id: 747474;
|
|
5848
5848
|
readonly name: "Katana";
|
|
5849
5849
|
readonly nativeCurrency: {
|
|
@@ -5931,7 +5931,7 @@ export declare const evmChains: readonly [{
|
|
|
5931
5931
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
5932
5932
|
formatters?: undefined;
|
|
5933
5933
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
5934
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
5934
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
5935
5935
|
readonly id: 999;
|
|
5936
5936
|
readonly name: "HyperEVM";
|
|
5937
5937
|
readonly nativeCurrency: {
|
|
@@ -6026,7 +6026,7 @@ export declare const evmChains: readonly [{
|
|
|
6026
6026
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
6027
6027
|
formatters?: undefined;
|
|
6028
6028
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
6029
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
6029
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
6030
6030
|
readonly id: 80094;
|
|
6031
6031
|
readonly name: "Berachain";
|
|
6032
6032
|
readonly nativeCurrency: {
|
|
@@ -6129,7 +6129,7 @@ export declare const evmChains: readonly [{
|
|
|
6129
6129
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
6130
6130
|
formatters?: undefined;
|
|
6131
6131
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
6132
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
6132
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
6133
6133
|
readonly id: 11155111;
|
|
6134
6134
|
readonly name: "Sepolia";
|
|
6135
6135
|
readonly nativeCurrency: {
|
|
@@ -6224,7 +6224,7 @@ export declare const evmChains: readonly [{
|
|
|
6224
6224
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
6225
6225
|
formatters?: undefined;
|
|
6226
6226
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
6227
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
6227
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
6228
6228
|
readonly id: 421614;
|
|
6229
6229
|
readonly name: "Arbitrum Sepolia";
|
|
6230
6230
|
readonly nativeCurrency: {
|
|
@@ -6312,7 +6312,7 @@ export declare const evmChains: readonly [{
|
|
|
6312
6312
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
6313
6313
|
formatters?: undefined;
|
|
6314
6314
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
6315
|
-
}, "name" | "id" | "blockExplorers" | "
|
|
6315
|
+
}, "name" | "id" | "blockExplorers" | "nativeCurrency" | "rpcUrls" | "contracts"> & {
|
|
6316
6316
|
readonly id: 129399;
|
|
6317
6317
|
readonly name: "Tatara";
|
|
6318
6318
|
readonly nativeCurrency: {
|
|
@@ -6351,11 +6351,11 @@ export declare const evmChains: readonly [{
|
|
|
6351
6351
|
export declare const evmChainIds: (1 | 10 | 25 | 30 | 56 | 56288 | 137 | 250 | 100 | 42161 | 42170 | 43114 | 1666600000 | 42220 | 2222 | 1088 | 288 | 199 | 1101 | 108 | 314 | 11235 | 1116 | 324 | 59144 | 8453 | 534352 | 7000 | 81457 | 2046399126 | 5000 | 169 | 34443 | 167000 | 810180 | 33139 | 146 | 43111 | 747474 | 999 | 80094 | 11155111 | 421614 | 129399)[];
|
|
6352
6352
|
export type EvmChainId = (typeof evmChainIds)[number];
|
|
6353
6353
|
export declare const EvmChainId: {
|
|
6354
|
+
ETHEREUM: 1;
|
|
6355
|
+
} & {
|
|
6354
6356
|
BSC: 56;
|
|
6355
6357
|
} & {
|
|
6356
6358
|
BOBA_BNB: 56288;
|
|
6357
|
-
} & {
|
|
6358
|
-
ETHEREUM: 1;
|
|
6359
6359
|
} & {
|
|
6360
6360
|
POLYGON: 137;
|
|
6361
6361
|
} & {
|