@layerzerolabs/static-chain-info 0.0.66 → 0.0.73
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/.turbo/turbo-build.log +12 -12
- package/dist/{4II7SICO.js → 26X56ANJ.js} +823 -662
- package/dist/26X56ANJ.js.map +1 -0
- package/dist/{5TWPTP6E.cjs → CBKS436E.cjs} +823 -662
- package/dist/CBKS436E.cjs.map +1 -0
- package/dist/index.cjs +20 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -7
- package/dist/index.js.map +1 -1
- package/dist/staticChainInfo.cjs +4 -4
- package/dist/staticChainInfo.d.ts +4 -0
- package/dist/staticChainInfo.d.ts.map +1 -1
- package/dist/staticChainInfo.js +1 -1
- package/package.json +5 -5
- package/src/index.ts +3 -8
- package/src/staticChainInfo.ts +808 -642
- package/dist/4II7SICO.js.map +0 -1
- package/dist/5TWPTP6E.cjs.map +0 -1
|
@@ -15,25 +15,67 @@ var TON_DECIMALS = 9;
|
|
|
15
15
|
var EVM_DECIMALS = 18;
|
|
16
16
|
var TRON_DECIMALS = 6;
|
|
17
17
|
var SOLANA_DECIMALS = 9;
|
|
18
|
+
var AAVEGOTCHI_DECIMALS = 8;
|
|
18
19
|
var HEDERA_DECIMALS = 8;
|
|
19
20
|
var APTOS_DECIMALS = 8;
|
|
20
21
|
var XRP_DECIMALS = 6;
|
|
21
22
|
var INITIA_DECIMALS = 6;
|
|
22
23
|
var SUI_DECIMALS = 9;
|
|
24
|
+
var IOTAMOVE_DECIMALS = 9;
|
|
25
|
+
var STARKNET_DECIMALS = 32;
|
|
23
26
|
var staticConfig = {
|
|
24
|
-
[layerzeroDefinitions.ChainName.
|
|
27
|
+
[layerzeroDefinitions.ChainName.AAVEGOTCHI]: {
|
|
28
|
+
addressSizeInBytes: 20,
|
|
29
|
+
decimals: AAVEGOTCHI_DECIMALS,
|
|
30
|
+
mptBaseGas: 2e5,
|
|
31
|
+
fpBaseGas: 2e5,
|
|
32
|
+
symbol: "MATIC"
|
|
33
|
+
},
|
|
34
|
+
[layerzeroDefinitions.ChainName.ABSTRACT]: {
|
|
35
|
+
addressSizeInBytes: 20,
|
|
36
|
+
decimals: EVM_DECIMALS,
|
|
37
|
+
mptBaseGas: 2e5,
|
|
38
|
+
fpBaseGas: 2e5,
|
|
39
|
+
symbol: "ETH",
|
|
40
|
+
chainLayer: 2
|
|
41
|
+
},
|
|
42
|
+
[layerzeroDefinitions.ChainName.AMOY]: {
|
|
43
|
+
addressSizeInBytes: 20,
|
|
44
|
+
decimals: EVM_DECIMALS,
|
|
45
|
+
mptBaseGas: 2e5,
|
|
46
|
+
fpBaseGas: 2e5,
|
|
47
|
+
symbol: "MATIC"
|
|
48
|
+
},
|
|
49
|
+
[layerzeroDefinitions.ChainName.ANIMECHAIN]: {
|
|
25
50
|
addressSizeInBytes: 20,
|
|
26
51
|
decimals: EVM_DECIMALS,
|
|
27
52
|
mptBaseGas: 195e3,
|
|
28
53
|
fpBaseGas: 195e3,
|
|
29
|
-
symbol: "
|
|
54
|
+
symbol: "ANIME",
|
|
55
|
+
chainLayer: 2
|
|
30
56
|
},
|
|
31
|
-
[layerzeroDefinitions.ChainName.
|
|
57
|
+
[layerzeroDefinitions.ChainName.APE]: {
|
|
58
|
+
addressSizeInBytes: 20,
|
|
59
|
+
decimals: EVM_DECIMALS,
|
|
60
|
+
mptBaseGas: 2e5,
|
|
61
|
+
fpBaseGas: 2e5,
|
|
62
|
+
symbol: "APE",
|
|
63
|
+
chainLayer: 2
|
|
64
|
+
},
|
|
65
|
+
[layerzeroDefinitions.ChainName.APEXFUSIONNEXUS]: {
|
|
32
66
|
addressSizeInBytes: 20,
|
|
33
67
|
decimals: EVM_DECIMALS,
|
|
34
68
|
mptBaseGas: 195e3,
|
|
35
69
|
fpBaseGas: 195e3,
|
|
36
|
-
symbol: "
|
|
70
|
+
symbol: "AP3X",
|
|
71
|
+
chainLayer: 1
|
|
72
|
+
},
|
|
73
|
+
[layerzeroDefinitions.ChainName.APTOS]: {
|
|
74
|
+
addressSizeInBytes: 32,
|
|
75
|
+
decimals: APTOS_DECIMALS,
|
|
76
|
+
mptBaseGas: 5e3,
|
|
77
|
+
fpBaseGas: 5e3,
|
|
78
|
+
symbol: "APT"
|
|
37
79
|
},
|
|
38
80
|
[layerzeroDefinitions.ChainName.ARBITRUM]: {
|
|
39
81
|
addressSizeInBytes: 20,
|
|
@@ -42,6 +84,28 @@ var staticConfig = {
|
|
|
42
84
|
fpBaseGas: 555e4,
|
|
43
85
|
symbol: "ETH"
|
|
44
86
|
},
|
|
87
|
+
[layerzeroDefinitions.ChainName.ARBSEP]: {
|
|
88
|
+
addressSizeInBytes: 20,
|
|
89
|
+
decimals: EVM_DECIMALS,
|
|
90
|
+
mptBaseGas: 555e4,
|
|
91
|
+
fpBaseGas: 555e4,
|
|
92
|
+
symbol: "ETH"
|
|
93
|
+
},
|
|
94
|
+
[layerzeroDefinitions.ChainName.ASTAR]: {
|
|
95
|
+
addressSizeInBytes: 20,
|
|
96
|
+
decimals: EVM_DECIMALS,
|
|
97
|
+
mptBaseGas: 195e3,
|
|
98
|
+
fpBaseGas: 195e3,
|
|
99
|
+
symbol: "ASTR",
|
|
100
|
+
chainLayer: 2
|
|
101
|
+
},
|
|
102
|
+
[layerzeroDefinitions.ChainName.AURORA]: {
|
|
103
|
+
addressSizeInBytes: 20,
|
|
104
|
+
decimals: EVM_DECIMALS,
|
|
105
|
+
mptBaseGas: 195e3,
|
|
106
|
+
fpBaseGas: 195e3,
|
|
107
|
+
symbol: "ETH"
|
|
108
|
+
},
|
|
45
109
|
[layerzeroDefinitions.ChainName.AVALANCHE]: {
|
|
46
110
|
chainSubType: 2,
|
|
47
111
|
addressSizeInBytes: 20,
|
|
@@ -50,61 +114,108 @@ var staticConfig = {
|
|
|
50
114
|
fpBaseGas: 195e3,
|
|
51
115
|
symbol: "AVAX"
|
|
52
116
|
},
|
|
53
|
-
[layerzeroDefinitions.ChainName.
|
|
117
|
+
[layerzeroDefinitions.ChainName.BAHAMUT]: {
|
|
54
118
|
addressSizeInBytes: 20,
|
|
55
119
|
decimals: EVM_DECIMALS,
|
|
56
|
-
mptBaseGas:
|
|
57
|
-
fpBaseGas:
|
|
58
|
-
symbol: "
|
|
120
|
+
mptBaseGas: 2e5,
|
|
121
|
+
fpBaseGas: 2e5,
|
|
122
|
+
symbol: "FTN",
|
|
123
|
+
chainLayer: 2
|
|
59
124
|
},
|
|
60
|
-
[layerzeroDefinitions.ChainName.
|
|
125
|
+
[layerzeroDefinitions.ChainName.BARTIO]: {
|
|
126
|
+
addressSizeInBytes: 20,
|
|
127
|
+
decimals: EVM_DECIMALS,
|
|
128
|
+
mptBaseGas: 2e5,
|
|
129
|
+
fpBaseGas: 2e5,
|
|
130
|
+
symbol: "BERA",
|
|
131
|
+
chainLayer: 2
|
|
132
|
+
},
|
|
133
|
+
[layerzeroDefinitions.ChainName.BASE]: {
|
|
134
|
+
addressSizeInBytes: 20,
|
|
135
|
+
decimals: EVM_DECIMALS,
|
|
136
|
+
mptBaseGas: 2e5,
|
|
137
|
+
fpBaseGas: 2e5,
|
|
138
|
+
symbol: "ETH",
|
|
139
|
+
chainLayer: 2
|
|
140
|
+
},
|
|
141
|
+
[layerzeroDefinitions.ChainName.BASESEP]: {
|
|
142
|
+
addressSizeInBytes: 20,
|
|
143
|
+
decimals: EVM_DECIMALS,
|
|
144
|
+
mptBaseGas: 2e5,
|
|
145
|
+
fpBaseGas: 2e5,
|
|
146
|
+
symbol: "ETH"
|
|
147
|
+
},
|
|
148
|
+
[layerzeroDefinitions.ChainName.BB1]: {
|
|
149
|
+
addressSizeInBytes: 20,
|
|
150
|
+
decimals: EVM_DECIMALS,
|
|
151
|
+
mptBaseGas: 555e4,
|
|
152
|
+
fpBaseGas: 555e4,
|
|
153
|
+
symbol: "INJ"
|
|
154
|
+
},
|
|
155
|
+
[layerzeroDefinitions.ChainName.BEPOLIA]: {
|
|
61
156
|
addressSizeInBytes: 20,
|
|
62
157
|
decimals: EVM_DECIMALS,
|
|
63
158
|
mptBaseGas: 195e3,
|
|
64
159
|
fpBaseGas: 195e3,
|
|
65
|
-
symbol: "
|
|
160
|
+
symbol: "BERA",
|
|
66
161
|
chainLayer: 1
|
|
67
162
|
},
|
|
68
|
-
[layerzeroDefinitions.ChainName.
|
|
69
|
-
addressSizeInBytes: 32,
|
|
70
|
-
decimals: SOLANA_DECIMALS,
|
|
71
|
-
mptBaseGas: 5e3,
|
|
72
|
-
fpBaseGas: 5e3,
|
|
73
|
-
symbol: "SOL"
|
|
74
|
-
},
|
|
75
|
-
[layerzeroDefinitions.ChainName.TRON]: {
|
|
163
|
+
[layerzeroDefinitions.ChainName.BERA]: {
|
|
76
164
|
addressSizeInBytes: 20,
|
|
77
|
-
decimals:
|
|
165
|
+
decimals: EVM_DECIMALS,
|
|
78
166
|
mptBaseGas: 195e3,
|
|
79
167
|
fpBaseGas: 195e3,
|
|
80
|
-
symbol: "
|
|
81
|
-
|
|
168
|
+
symbol: "BERA",
|
|
169
|
+
chainLayer: 3
|
|
82
170
|
},
|
|
83
|
-
[layerzeroDefinitions.ChainName.
|
|
84
|
-
addressSizeInBytes:
|
|
85
|
-
decimals:
|
|
171
|
+
[layerzeroDefinitions.ChainName.BESU1]: {
|
|
172
|
+
addressSizeInBytes: 20,
|
|
173
|
+
decimals: EVM_DECIMALS,
|
|
86
174
|
mptBaseGas: 2e5,
|
|
87
175
|
fpBaseGas: 2e5,
|
|
88
|
-
symbol: "
|
|
176
|
+
symbol: "USDC",
|
|
89
177
|
chainLayer: 1
|
|
90
178
|
},
|
|
91
|
-
[layerzeroDefinitions.ChainName.
|
|
92
|
-
addressSizeInBytes:
|
|
179
|
+
[layerzeroDefinitions.ChainName.BEVM]: {
|
|
180
|
+
addressSizeInBytes: 20,
|
|
181
|
+
decimals: EVM_DECIMALS,
|
|
182
|
+
mptBaseGas: 2e5,
|
|
183
|
+
fpBaseGas: 2e5,
|
|
184
|
+
symbol: "BTC",
|
|
185
|
+
chainLayer: 2
|
|
186
|
+
},
|
|
187
|
+
[layerzeroDefinitions.ChainName.BITLAYER]: {
|
|
188
|
+
addressSizeInBytes: 20,
|
|
93
189
|
decimals: EVM_DECIMALS,
|
|
94
190
|
mptBaseGas: 195e3,
|
|
95
191
|
fpBaseGas: 195e3,
|
|
96
|
-
symbol: "
|
|
97
|
-
chainLayer: 2
|
|
192
|
+
symbol: "BTC"
|
|
98
193
|
},
|
|
99
|
-
[layerzeroDefinitions.ChainName.
|
|
194
|
+
[layerzeroDefinitions.ChainName.BL2]: {
|
|
100
195
|
addressSizeInBytes: 20,
|
|
101
196
|
decimals: EVM_DECIMALS,
|
|
102
197
|
mptBaseGas: 195e3,
|
|
103
198
|
fpBaseGas: 195e3,
|
|
104
|
-
symbol: "
|
|
199
|
+
symbol: "ETH",
|
|
200
|
+
chainLayer: 3
|
|
201
|
+
},
|
|
202
|
+
[layerzeroDefinitions.ChainName.BL3]: {
|
|
203
|
+
addressSizeInBytes: 20,
|
|
204
|
+
decimals: EVM_DECIMALS,
|
|
205
|
+
mptBaseGas: 195e3,
|
|
206
|
+
fpBaseGas: 195e3,
|
|
207
|
+
symbol: "BERA",
|
|
208
|
+
chainLayer: 3
|
|
209
|
+
},
|
|
210
|
+
[layerzeroDefinitions.ChainName.BL6]: {
|
|
211
|
+
addressSizeInBytes: 20,
|
|
212
|
+
decimals: EVM_DECIMALS,
|
|
213
|
+
mptBaseGas: 195e3,
|
|
214
|
+
fpBaseGas: 195e3,
|
|
215
|
+
symbol: "M",
|
|
105
216
|
chainLayer: 2
|
|
106
217
|
},
|
|
107
|
-
[layerzeroDefinitions.ChainName.
|
|
218
|
+
[layerzeroDefinitions.ChainName.BLAST]: {
|
|
108
219
|
addressSizeInBytes: 20,
|
|
109
220
|
decimals: EVM_DECIMALS,
|
|
110
221
|
mptBaseGas: 2e5,
|
|
@@ -112,107 +223,118 @@ var staticConfig = {
|
|
|
112
223
|
symbol: "ETH",
|
|
113
224
|
chainLayer: 2
|
|
114
225
|
},
|
|
115
|
-
[layerzeroDefinitions.ChainName.
|
|
226
|
+
[layerzeroDefinitions.ChainName.BLE]: {
|
|
116
227
|
addressSizeInBytes: 20,
|
|
117
228
|
decimals: EVM_DECIMALS,
|
|
118
|
-
mptBaseGas:
|
|
119
|
-
fpBaseGas:
|
|
120
|
-
symbol: "
|
|
121
|
-
chainLayer:
|
|
229
|
+
mptBaseGas: 195e3,
|
|
230
|
+
fpBaseGas: 195e3,
|
|
231
|
+
symbol: "ETH",
|
|
232
|
+
chainLayer: 2
|
|
122
233
|
},
|
|
123
|
-
[layerzeroDefinitions.ChainName.
|
|
234
|
+
[layerzeroDefinitions.ChainName.BLOCKGEN]: {
|
|
124
235
|
addressSizeInBytes: 20,
|
|
125
236
|
decimals: EVM_DECIMALS,
|
|
126
237
|
mptBaseGas: 2e5,
|
|
127
238
|
fpBaseGas: 2e5,
|
|
128
|
-
symbol: "
|
|
239
|
+
symbol: "MATIC"
|
|
129
240
|
},
|
|
130
|
-
[layerzeroDefinitions.ChainName.
|
|
241
|
+
[layerzeroDefinitions.ChainName.BOB]: {
|
|
131
242
|
addressSizeInBytes: 20,
|
|
132
243
|
decimals: EVM_DECIMALS,
|
|
133
244
|
mptBaseGas: 2e5,
|
|
134
245
|
fpBaseGas: 2e5,
|
|
135
|
-
symbol: "
|
|
246
|
+
symbol: "ETH",
|
|
136
247
|
chainLayer: 2
|
|
137
248
|
},
|
|
138
|
-
[layerzeroDefinitions.ChainName.
|
|
139
|
-
addressSizeInBytes: 20,
|
|
140
|
-
decimals: EVM_DECIMALS,
|
|
141
|
-
mptBaseGas: 199e3,
|
|
142
|
-
fpBaseGas: 199e3,
|
|
143
|
-
symbol: "ALOT"
|
|
144
|
-
},
|
|
145
|
-
[layerzeroDefinitions.ChainName.MOONBEAM]: {
|
|
249
|
+
[layerzeroDefinitions.ChainName.BOTANIX]: {
|
|
146
250
|
addressSizeInBytes: 20,
|
|
147
251
|
decimals: EVM_DECIMALS,
|
|
148
252
|
mptBaseGas: 2e5,
|
|
149
253
|
fpBaseGas: 2e5,
|
|
150
|
-
symbol: "
|
|
254
|
+
symbol: "BTC",
|
|
255
|
+
chainLayer: 2
|
|
151
256
|
},
|
|
152
|
-
[layerzeroDefinitions.ChainName.
|
|
257
|
+
[layerzeroDefinitions.ChainName.BOUNCEBIT]: {
|
|
153
258
|
addressSizeInBytes: 20,
|
|
154
259
|
decimals: EVM_DECIMALS,
|
|
155
260
|
mptBaseGas: 2e5,
|
|
156
261
|
fpBaseGas: 2e5,
|
|
157
|
-
symbol: "
|
|
262
|
+
symbol: "BB",
|
|
263
|
+
chainLayer: 1
|
|
158
264
|
},
|
|
159
|
-
[layerzeroDefinitions.ChainName.
|
|
160
|
-
addressSizeInBytes:
|
|
161
|
-
decimals:
|
|
162
|
-
mptBaseGas:
|
|
163
|
-
fpBaseGas:
|
|
164
|
-
symbol: "
|
|
265
|
+
[layerzeroDefinitions.ChainName.BSC]: {
|
|
266
|
+
addressSizeInBytes: 20,
|
|
267
|
+
decimals: EVM_DECIMALS,
|
|
268
|
+
mptBaseGas: 195e3,
|
|
269
|
+
fpBaseGas: 195e3,
|
|
270
|
+
symbol: "BNB"
|
|
165
271
|
},
|
|
166
|
-
[layerzeroDefinitions.ChainName.
|
|
272
|
+
[layerzeroDefinitions.ChainName.CAMP]: {
|
|
167
273
|
addressSizeInBytes: 20,
|
|
168
274
|
decimals: EVM_DECIMALS,
|
|
169
275
|
mptBaseGas: 2e5,
|
|
170
276
|
fpBaseGas: 2e5,
|
|
171
|
-
symbol: "
|
|
277
|
+
symbol: "CAMP",
|
|
278
|
+
chainLayer: 1
|
|
172
279
|
},
|
|
173
|
-
[layerzeroDefinitions.ChainName.
|
|
280
|
+
[layerzeroDefinitions.ChainName.CANTO]: {
|
|
174
281
|
addressSizeInBytes: 20,
|
|
175
282
|
decimals: EVM_DECIMALS,
|
|
176
283
|
mptBaseGas: 2e5,
|
|
177
284
|
fpBaseGas: 2e5,
|
|
178
|
-
symbol: "
|
|
179
|
-
chainLayer: 2
|
|
285
|
+
symbol: "CANTO"
|
|
180
286
|
},
|
|
181
|
-
[layerzeroDefinitions.ChainName.
|
|
287
|
+
[layerzeroDefinitions.ChainName.CATHAY]: {
|
|
182
288
|
addressSizeInBytes: 20,
|
|
183
289
|
decimals: EVM_DECIMALS,
|
|
184
290
|
mptBaseGas: 2e5,
|
|
185
291
|
fpBaseGas: 2e5,
|
|
186
|
-
symbol: "
|
|
292
|
+
symbol: "ETH"
|
|
187
293
|
},
|
|
188
|
-
[layerzeroDefinitions.ChainName.
|
|
294
|
+
[layerzeroDefinitions.ChainName.CELO]: {
|
|
189
295
|
addressSizeInBytes: 20,
|
|
190
296
|
decimals: EVM_DECIMALS,
|
|
191
297
|
mptBaseGas: 2e5,
|
|
192
298
|
fpBaseGas: 2e5,
|
|
193
|
-
symbol: "
|
|
299
|
+
symbol: "CELO"
|
|
300
|
+
},
|
|
301
|
+
[layerzeroDefinitions.ChainName.CITREA]: {
|
|
302
|
+
addressSizeInBytes: 20,
|
|
303
|
+
decimals: EVM_DECIMALS,
|
|
304
|
+
mptBaseGas: 195e3,
|
|
305
|
+
fpBaseGas: 195e3,
|
|
306
|
+
symbol: "CBTC",
|
|
194
307
|
chainLayer: 2
|
|
195
308
|
},
|
|
196
|
-
[layerzeroDefinitions.ChainName.
|
|
309
|
+
[layerzeroDefinitions.ChainName.CODEX]: {
|
|
197
310
|
addressSizeInBytes: 20,
|
|
198
311
|
decimals: EVM_DECIMALS,
|
|
199
312
|
mptBaseGas: 2e5,
|
|
200
313
|
fpBaseGas: 2e5,
|
|
201
|
-
symbol: "
|
|
314
|
+
symbol: "ETH",
|
|
315
|
+
chainLayer: 2
|
|
202
316
|
},
|
|
203
|
-
[layerzeroDefinitions.ChainName.
|
|
317
|
+
[layerzeroDefinitions.ChainName.CONCRETE]: {
|
|
204
318
|
addressSizeInBytes: 20,
|
|
205
319
|
decimals: EVM_DECIMALS,
|
|
206
|
-
mptBaseGas:
|
|
207
|
-
fpBaseGas:
|
|
208
|
-
symbol: "
|
|
320
|
+
mptBaseGas: 195e3,
|
|
321
|
+
fpBaseGas: 195e3,
|
|
322
|
+
symbol: "ETH",
|
|
323
|
+
chainLayer: 2
|
|
209
324
|
},
|
|
210
|
-
[layerzeroDefinitions.ChainName.
|
|
325
|
+
[layerzeroDefinitions.ChainName.CONFLUX]: {
|
|
326
|
+
addressSizeInBytes: 20,
|
|
327
|
+
decimals: EVM_DECIMALS,
|
|
328
|
+
mptBaseGas: 195e3,
|
|
329
|
+
fpBaseGas: 195e3,
|
|
330
|
+
symbol: "CFX"
|
|
331
|
+
},
|
|
332
|
+
[layerzeroDefinitions.ChainName.CONVERGE]: {
|
|
211
333
|
addressSizeInBytes: 20,
|
|
212
334
|
decimals: EVM_DECIMALS,
|
|
213
335
|
mptBaseGas: 2e5,
|
|
214
336
|
fpBaseGas: 2e5,
|
|
215
|
-
symbol: "
|
|
337
|
+
symbol: "ETH",
|
|
216
338
|
chainLayer: 2
|
|
217
339
|
},
|
|
218
340
|
[layerzeroDefinitions.ChainName.COREDAO]: {
|
|
@@ -222,92 +344,112 @@ var staticConfig = {
|
|
|
222
344
|
fpBaseGas: 2e5,
|
|
223
345
|
symbol: "CORE"
|
|
224
346
|
},
|
|
225
|
-
[layerzeroDefinitions.ChainName.
|
|
347
|
+
[layerzeroDefinitions.ChainName.CRONOSEVM]: {
|
|
348
|
+
addressSizeInBytes: 20,
|
|
349
|
+
decimals: EVM_DECIMALS,
|
|
350
|
+
mptBaseGas: 195e3,
|
|
351
|
+
fpBaseGas: 195e3,
|
|
352
|
+
symbol: "CRO",
|
|
353
|
+
chainLayer: 1
|
|
354
|
+
},
|
|
355
|
+
[layerzeroDefinitions.ChainName.CRONOSZKEVM]: {
|
|
226
356
|
addressSizeInBytes: 20,
|
|
227
357
|
decimals: EVM_DECIMALS,
|
|
228
358
|
mptBaseGas: 2e5,
|
|
229
359
|
fpBaseGas: 2e5,
|
|
230
|
-
symbol: "
|
|
360
|
+
symbol: "zkCRO",
|
|
361
|
+
chainLayer: 2
|
|
231
362
|
},
|
|
232
|
-
[layerzeroDefinitions.ChainName.
|
|
363
|
+
[layerzeroDefinitions.ChainName.CURTIS]: {
|
|
233
364
|
addressSizeInBytes: 20,
|
|
234
365
|
decimals: EVM_DECIMALS,
|
|
235
366
|
mptBaseGas: 2e5,
|
|
236
367
|
fpBaseGas: 2e5,
|
|
237
|
-
symbol: "
|
|
368
|
+
symbol: "APE",
|
|
238
369
|
chainLayer: 2
|
|
239
370
|
},
|
|
240
|
-
[layerzeroDefinitions.ChainName.
|
|
371
|
+
[layerzeroDefinitions.ChainName.CYBER]: {
|
|
241
372
|
addressSizeInBytes: 20,
|
|
242
373
|
decimals: EVM_DECIMALS,
|
|
243
374
|
mptBaseGas: 2e5,
|
|
244
375
|
fpBaseGas: 2e5,
|
|
245
|
-
symbol: "
|
|
376
|
+
symbol: "ETH",
|
|
377
|
+
chainLayer: 2
|
|
246
378
|
},
|
|
247
|
-
[layerzeroDefinitions.ChainName.
|
|
379
|
+
[layerzeroDefinitions.ChainName.DEGEN]: {
|
|
248
380
|
addressSizeInBytes: 20,
|
|
249
381
|
decimals: EVM_DECIMALS,
|
|
250
382
|
mptBaseGas: 2e5,
|
|
251
383
|
fpBaseGas: 2e5,
|
|
252
|
-
symbol: "
|
|
384
|
+
symbol: "DEGEN"
|
|
253
385
|
},
|
|
254
|
-
[layerzeroDefinitions.ChainName.
|
|
386
|
+
[layerzeroDefinitions.ChainName.DEXALOT]: {
|
|
255
387
|
addressSizeInBytes: 20,
|
|
256
388
|
decimals: EVM_DECIMALS,
|
|
257
|
-
mptBaseGas:
|
|
258
|
-
fpBaseGas:
|
|
259
|
-
symbol: "
|
|
389
|
+
mptBaseGas: 199e3,
|
|
390
|
+
fpBaseGas: 199e3,
|
|
391
|
+
symbol: "ALOT"
|
|
260
392
|
},
|
|
261
|
-
|
|
262
|
-
[layerzeroDefinitions.ChainName.SWIMMER]: {
|
|
393
|
+
[layerzeroDefinitions.ChainName.DFK]: {
|
|
263
394
|
addressSizeInBytes: 20,
|
|
264
395
|
decimals: EVM_DECIMALS,
|
|
265
|
-
mptBaseGas:
|
|
266
|
-
fpBaseGas:
|
|
267
|
-
symbol: "
|
|
396
|
+
mptBaseGas: 2e5,
|
|
397
|
+
fpBaseGas: 2e5,
|
|
398
|
+
symbol: "JEWEL"
|
|
268
399
|
},
|
|
269
|
-
|
|
270
|
-
[layerzeroDefinitions.ChainName.INTAIN]: {
|
|
400
|
+
[layerzeroDefinitions.ChainName.DINARI]: {
|
|
271
401
|
addressSizeInBytes: 20,
|
|
272
402
|
decimals: EVM_DECIMALS,
|
|
273
|
-
mptBaseGas:
|
|
274
|
-
fpBaseGas:
|
|
275
|
-
symbol: "
|
|
403
|
+
mptBaseGas: 2e5,
|
|
404
|
+
fpBaseGas: 2e5,
|
|
405
|
+
symbol: "DGAS",
|
|
406
|
+
chainLayer: 1
|
|
276
407
|
},
|
|
277
|
-
[layerzeroDefinitions.ChainName.
|
|
408
|
+
[layerzeroDefinitions.ChainName.DM2VERSE]: {
|
|
278
409
|
addressSizeInBytes: 20,
|
|
279
410
|
decimals: EVM_DECIMALS,
|
|
280
411
|
mptBaseGas: 195e3,
|
|
281
412
|
fpBaseGas: 195e3,
|
|
282
|
-
symbol: "
|
|
413
|
+
symbol: "OAS"
|
|
283
414
|
},
|
|
284
|
-
[layerzeroDefinitions.ChainName.
|
|
415
|
+
[layerzeroDefinitions.ChainName.DOMA]: {
|
|
285
416
|
addressSizeInBytes: 20,
|
|
286
417
|
decimals: EVM_DECIMALS,
|
|
287
418
|
mptBaseGas: 2e5,
|
|
288
419
|
fpBaseGas: 2e5,
|
|
289
|
-
symbol: "
|
|
420
|
+
symbol: "ETH",
|
|
421
|
+
chainLayer: 2
|
|
290
422
|
},
|
|
291
|
-
[layerzeroDefinitions.ChainName.
|
|
423
|
+
[layerzeroDefinitions.ChainName.DOS]: {
|
|
292
424
|
addressSizeInBytes: 20,
|
|
293
425
|
decimals: EVM_DECIMALS,
|
|
294
426
|
mptBaseGas: 2e5,
|
|
295
427
|
fpBaseGas: 2e5,
|
|
296
|
-
symbol: "
|
|
428
|
+
symbol: "DOS"
|
|
297
429
|
},
|
|
298
|
-
[layerzeroDefinitions.ChainName.
|
|
430
|
+
[layerzeroDefinitions.ChainName.EBI]: {
|
|
299
431
|
addressSizeInBytes: 20,
|
|
300
432
|
decimals: EVM_DECIMALS,
|
|
301
|
-
symbol: "ETH",
|
|
302
433
|
mptBaseGas: 2e5,
|
|
303
|
-
fpBaseGas: 2e5
|
|
434
|
+
fpBaseGas: 2e5,
|
|
435
|
+
symbol: "ETH",
|
|
436
|
+
chainLayer: 2
|
|
304
437
|
},
|
|
305
|
-
[layerzeroDefinitions.ChainName.
|
|
438
|
+
[layerzeroDefinitions.ChainName.EDU]: {
|
|
306
439
|
addressSizeInBytes: 20,
|
|
307
440
|
decimals: EVM_DECIMALS,
|
|
308
|
-
symbol: "ETH",
|
|
309
441
|
mptBaseGas: 2e5,
|
|
310
|
-
fpBaseGas: 2e5
|
|
442
|
+
fpBaseGas: 2e5,
|
|
443
|
+
symbol: "EDU",
|
|
444
|
+
chainLayer: 2
|
|
445
|
+
},
|
|
446
|
+
[layerzeroDefinitions.ChainName.EON]: {
|
|
447
|
+
addressSizeInBytes: 20,
|
|
448
|
+
decimals: EVM_DECIMALS,
|
|
449
|
+
mptBaseGas: 185e3,
|
|
450
|
+
fpBaseGas: 185e3,
|
|
451
|
+
symbol: "ZEN",
|
|
452
|
+
chainLayer: 2
|
|
311
453
|
},
|
|
312
454
|
[layerzeroDefinitions.ChainName.ETHEREAL]: {
|
|
313
455
|
addressSizeInBytes: 20,
|
|
@@ -316,75 +458,75 @@ var staticConfig = {
|
|
|
316
458
|
fpBaseGas: 2e5,
|
|
317
459
|
symbol: "USDe"
|
|
318
460
|
},
|
|
319
|
-
[layerzeroDefinitions.ChainName.
|
|
461
|
+
[layerzeroDefinitions.ChainName.ETHEREAL2]: {
|
|
320
462
|
addressSizeInBytes: 20,
|
|
321
463
|
decimals: EVM_DECIMALS,
|
|
322
464
|
mptBaseGas: 2e5,
|
|
323
465
|
fpBaseGas: 2e5,
|
|
324
|
-
symbol: "
|
|
466
|
+
symbol: "USDe",
|
|
325
467
|
chainLayer: 2
|
|
326
468
|
},
|
|
327
|
-
[layerzeroDefinitions.ChainName.
|
|
328
|
-
addressSizeInBytes: 20,
|
|
329
|
-
decimals: EVM_DECIMALS,
|
|
330
|
-
mptBaseGas: 195e3,
|
|
331
|
-
fpBaseGas: 195e3,
|
|
332
|
-
symbol: "ETH",
|
|
333
|
-
chainLayer: 2
|
|
334
|
-
},
|
|
335
|
-
[layerzeroDefinitions.ChainName.ZKPOLYGON]: {
|
|
469
|
+
[layerzeroDefinitions.ChainName.ETHEREUM]: {
|
|
336
470
|
addressSizeInBytes: 20,
|
|
337
471
|
decimals: EVM_DECIMALS,
|
|
338
472
|
mptBaseGas: 195e3,
|
|
339
473
|
fpBaseGas: 195e3,
|
|
340
|
-
symbol: "ETH"
|
|
341
|
-
chainLayer: 2
|
|
474
|
+
symbol: "ETH"
|
|
342
475
|
},
|
|
343
|
-
[layerzeroDefinitions.ChainName.
|
|
476
|
+
[layerzeroDefinitions.ChainName.ETHERLINK]: {
|
|
344
477
|
addressSizeInBytes: 20,
|
|
345
478
|
decimals: EVM_DECIMALS,
|
|
346
479
|
mptBaseGas: 2e5,
|
|
347
480
|
fpBaseGas: 2e5,
|
|
348
|
-
symbol: "
|
|
481
|
+
symbol: "XTZ",
|
|
349
482
|
chainLayer: 2
|
|
350
483
|
},
|
|
351
|
-
[layerzeroDefinitions.ChainName.
|
|
484
|
+
[layerzeroDefinitions.ChainName.EXOCORE]: {
|
|
352
485
|
addressSizeInBytes: 20,
|
|
353
486
|
decimals: EVM_DECIMALS,
|
|
354
487
|
mptBaseGas: 2e5,
|
|
355
488
|
fpBaseGas: 2e5,
|
|
356
489
|
symbol: "ETH"
|
|
357
490
|
},
|
|
358
|
-
[layerzeroDefinitions.ChainName.
|
|
491
|
+
[layerzeroDefinitions.ChainName.FANTOM]: {
|
|
359
492
|
addressSizeInBytes: 20,
|
|
360
493
|
decimals: EVM_DECIMALS,
|
|
361
494
|
mptBaseGas: 2e5,
|
|
362
495
|
fpBaseGas: 2e5,
|
|
363
|
-
symbol: "
|
|
496
|
+
symbol: "FTM",
|
|
497
|
+
chainLayer: 1
|
|
364
498
|
},
|
|
365
|
-
[layerzeroDefinitions.ChainName.
|
|
499
|
+
[layerzeroDefinitions.ChainName.FI]: {
|
|
366
500
|
addressSizeInBytes: 20,
|
|
367
501
|
decimals: EVM_DECIMALS,
|
|
368
502
|
mptBaseGas: 2e5,
|
|
369
503
|
fpBaseGas: 2e5,
|
|
370
|
-
symbol: "
|
|
504
|
+
symbol: "ETH",
|
|
505
|
+
chainLayer: 2
|
|
371
506
|
},
|
|
372
|
-
[layerzeroDefinitions.ChainName.
|
|
507
|
+
[layerzeroDefinitions.ChainName.FLARE]: {
|
|
373
508
|
addressSizeInBytes: 20,
|
|
374
509
|
decimals: EVM_DECIMALS,
|
|
375
|
-
mptBaseGas:
|
|
376
|
-
fpBaseGas:
|
|
377
|
-
symbol: "
|
|
510
|
+
mptBaseGas: 199e3,
|
|
511
|
+
fpBaseGas: 199e3,
|
|
512
|
+
symbol: "FLR"
|
|
513
|
+
},
|
|
514
|
+
[layerzeroDefinitions.ChainName.FLOW]: {
|
|
515
|
+
addressSizeInBytes: 20,
|
|
516
|
+
decimals: EVM_DECIMALS,
|
|
517
|
+
mptBaseGas: 195e3,
|
|
518
|
+
fpBaseGas: 195e3,
|
|
519
|
+
symbol: "FLOW",
|
|
378
520
|
chainLayer: 2
|
|
379
521
|
},
|
|
380
|
-
[layerzeroDefinitions.ChainName.
|
|
522
|
+
[layerzeroDefinitions.ChainName.FORM]: {
|
|
381
523
|
addressSizeInBytes: 20,
|
|
382
524
|
decimals: EVM_DECIMALS,
|
|
383
525
|
mptBaseGas: 2e5,
|
|
384
526
|
fpBaseGas: 2e5,
|
|
385
|
-
symbol: "
|
|
527
|
+
symbol: "ETH"
|
|
386
528
|
},
|
|
387
|
-
[layerzeroDefinitions.ChainName.
|
|
529
|
+
[layerzeroDefinitions.ChainName.FRAME]: {
|
|
388
530
|
addressSizeInBytes: 20,
|
|
389
531
|
decimals: EVM_DECIMALS,
|
|
390
532
|
mptBaseGas: 555e4,
|
|
@@ -392,155 +534,174 @@ var staticConfig = {
|
|
|
392
534
|
symbol: "ETH",
|
|
393
535
|
chainLayer: 2
|
|
394
536
|
},
|
|
395
|
-
[layerzeroDefinitions.ChainName.
|
|
537
|
+
[layerzeroDefinitions.ChainName.FRAXTAL]: {
|
|
396
538
|
addressSizeInBytes: 20,
|
|
397
|
-
decimals:
|
|
539
|
+
decimals: EVM_DECIMALS,
|
|
398
540
|
mptBaseGas: 2e5,
|
|
399
541
|
fpBaseGas: 2e5,
|
|
400
|
-
symbol: "
|
|
542
|
+
symbol: "FRAX",
|
|
543
|
+
chainLayer: 2
|
|
401
544
|
},
|
|
402
|
-
[layerzeroDefinitions.ChainName.
|
|
545
|
+
[layerzeroDefinitions.ChainName.FUSE]: {
|
|
403
546
|
addressSizeInBytes: 20,
|
|
404
547
|
decimals: EVM_DECIMALS,
|
|
405
548
|
mptBaseGas: 2e5,
|
|
406
549
|
fpBaseGas: 2e5,
|
|
407
|
-
symbol: "
|
|
550
|
+
symbol: "FUSE",
|
|
551
|
+
chainLayer: 2
|
|
408
552
|
},
|
|
409
|
-
[layerzeroDefinitions.ChainName.
|
|
553
|
+
[layerzeroDefinitions.ChainName.GAMESWIFT]: {
|
|
410
554
|
addressSizeInBytes: 20,
|
|
411
555
|
decimals: EVM_DECIMALS,
|
|
412
|
-
mptBaseGas:
|
|
413
|
-
fpBaseGas:
|
|
414
|
-
symbol: "
|
|
556
|
+
mptBaseGas: 195e3,
|
|
557
|
+
fpBaseGas: 195e3,
|
|
558
|
+
symbol: "tGS",
|
|
559
|
+
chainLayer: 2
|
|
415
560
|
},
|
|
416
|
-
[layerzeroDefinitions.ChainName.
|
|
561
|
+
[layerzeroDefinitions.ChainName.GATE]: {
|
|
417
562
|
addressSizeInBytes: 20,
|
|
418
563
|
decimals: EVM_DECIMALS,
|
|
419
564
|
mptBaseGas: 2e5,
|
|
420
565
|
fpBaseGas: 2e5,
|
|
421
|
-
symbol: "
|
|
566
|
+
symbol: "GT",
|
|
422
567
|
chainLayer: 2
|
|
423
568
|
},
|
|
424
|
-
|
|
425
|
-
[layerzeroDefinitions.ChainName.HUBBLE]: {
|
|
569
|
+
[layerzeroDefinitions.ChainName.GATELAYER]: {
|
|
426
570
|
addressSizeInBytes: 20,
|
|
427
571
|
decimals: EVM_DECIMALS,
|
|
428
572
|
mptBaseGas: 2e5,
|
|
429
573
|
fpBaseGas: 2e5,
|
|
430
|
-
symbol: "
|
|
574
|
+
symbol: "GT",
|
|
431
575
|
chainLayer: 2
|
|
432
576
|
},
|
|
433
|
-
[layerzeroDefinitions.ChainName.
|
|
577
|
+
[layerzeroDefinitions.ChainName.GLUE]: {
|
|
434
578
|
addressSizeInBytes: 20,
|
|
435
579
|
decimals: EVM_DECIMALS,
|
|
436
580
|
mptBaseGas: 2e5,
|
|
437
581
|
fpBaseGas: 2e5,
|
|
438
|
-
symbol: "
|
|
582
|
+
symbol: "MATIC",
|
|
439
583
|
chainLayer: 2
|
|
440
584
|
},
|
|
441
|
-
[layerzeroDefinitions.ChainName.
|
|
585
|
+
[layerzeroDefinitions.ChainName.GNOSIS]: {
|
|
442
586
|
addressSizeInBytes: 20,
|
|
443
587
|
decimals: EVM_DECIMALS,
|
|
444
588
|
mptBaseGas: 2e5,
|
|
445
589
|
fpBaseGas: 2e5,
|
|
446
|
-
symbol: "
|
|
590
|
+
symbol: "DAI"
|
|
447
591
|
},
|
|
448
|
-
[layerzeroDefinitions.ChainName.
|
|
592
|
+
[layerzeroDefinitions.ChainName.GOAT]: {
|
|
593
|
+
addressSizeInBytes: 20,
|
|
594
|
+
decimals: EVM_DECIMALS,
|
|
595
|
+
mptBaseGas: 195e3,
|
|
596
|
+
fpBaseGas: 195e3,
|
|
597
|
+
symbol: "BTC",
|
|
598
|
+
chainLayer: 1
|
|
599
|
+
},
|
|
600
|
+
[layerzeroDefinitions.ChainName.GOERLI]: {
|
|
601
|
+
addressSizeInBytes: 20,
|
|
602
|
+
decimals: EVM_DECIMALS,
|
|
603
|
+
mptBaseGas: 195e3,
|
|
604
|
+
fpBaseGas: 195e3,
|
|
605
|
+
symbol: "GETH"
|
|
606
|
+
},
|
|
607
|
+
[layerzeroDefinitions.ChainName.GRAVITY]: {
|
|
449
608
|
addressSizeInBytes: 20,
|
|
450
609
|
decimals: EVM_DECIMALS,
|
|
451
610
|
mptBaseGas: 2e5,
|
|
452
611
|
fpBaseGas: 2e5,
|
|
453
|
-
symbol: "
|
|
612
|
+
symbol: "G",
|
|
454
613
|
chainLayer: 2
|
|
455
614
|
},
|
|
456
|
-
[layerzeroDefinitions.ChainName.
|
|
615
|
+
[layerzeroDefinitions.ChainName.GUNZ]: {
|
|
457
616
|
addressSizeInBytes: 20,
|
|
458
617
|
decimals: EVM_DECIMALS,
|
|
459
|
-
mptBaseGas:
|
|
460
|
-
fpBaseGas:
|
|
461
|
-
symbol: "
|
|
618
|
+
mptBaseGas: 195e3,
|
|
619
|
+
fpBaseGas: 195e3,
|
|
620
|
+
symbol: "GUN",
|
|
621
|
+
chainLayer: 2
|
|
462
622
|
},
|
|
463
|
-
[layerzeroDefinitions.ChainName.
|
|
623
|
+
[layerzeroDefinitions.ChainName.GUNZILLA]: {
|
|
624
|
+
addressSizeInBytes: 20,
|
|
625
|
+
decimals: EVM_DECIMALS,
|
|
626
|
+
mptBaseGas: 199e3,
|
|
627
|
+
fpBaseGas: 199e3,
|
|
628
|
+
symbol: "AVAX"
|
|
629
|
+
},
|
|
630
|
+
[layerzeroDefinitions.ChainName.HARMONY]: {
|
|
464
631
|
addressSizeInBytes: 20,
|
|
465
632
|
decimals: EVM_DECIMALS,
|
|
466
633
|
mptBaseGas: 2e5,
|
|
467
634
|
fpBaseGas: 2e5,
|
|
468
|
-
symbol: "
|
|
635
|
+
symbol: "ONE",
|
|
469
636
|
chainLayer: 2
|
|
470
637
|
},
|
|
471
|
-
[layerzeroDefinitions.ChainName.
|
|
638
|
+
[layerzeroDefinitions.ChainName.HEDERA]: {
|
|
472
639
|
addressSizeInBytes: 20,
|
|
473
|
-
decimals:
|
|
640
|
+
decimals: HEDERA_DECIMALS,
|
|
474
641
|
mptBaseGas: 2e5,
|
|
475
642
|
fpBaseGas: 2e5,
|
|
476
|
-
symbol: "
|
|
477
|
-
chainLayer: 2
|
|
643
|
+
symbol: "HBAR"
|
|
478
644
|
},
|
|
479
|
-
[layerzeroDefinitions.ChainName.
|
|
645
|
+
[layerzeroDefinitions.ChainName.HEMI]: {
|
|
480
646
|
addressSizeInBytes: 20,
|
|
481
647
|
decimals: EVM_DECIMALS,
|
|
482
648
|
mptBaseGas: 195e3,
|
|
483
649
|
fpBaseGas: 195e3,
|
|
484
|
-
symbol: "ETH"
|
|
650
|
+
symbol: "ETH",
|
|
651
|
+
chainLayer: 2
|
|
485
652
|
},
|
|
486
|
-
[layerzeroDefinitions.ChainName.
|
|
653
|
+
[layerzeroDefinitions.ChainName.HOLESKY]: {
|
|
487
654
|
addressSizeInBytes: 20,
|
|
488
655
|
decimals: EVM_DECIMALS,
|
|
489
656
|
mptBaseGas: 195e3,
|
|
490
657
|
fpBaseGas: 195e3,
|
|
491
|
-
symbol: "
|
|
492
|
-
chainLayer: 2
|
|
658
|
+
symbol: "ETH"
|
|
493
659
|
},
|
|
494
|
-
[layerzeroDefinitions.ChainName.
|
|
660
|
+
[layerzeroDefinitions.ChainName.HOMEVERSE]: {
|
|
495
661
|
addressSizeInBytes: 20,
|
|
496
662
|
decimals: EVM_DECIMALS,
|
|
497
663
|
mptBaseGas: 2e5,
|
|
498
664
|
fpBaseGas: 2e5,
|
|
499
|
-
symbol: "
|
|
665
|
+
symbol: "OAS"
|
|
500
666
|
},
|
|
501
|
-
|
|
667
|
+
// @deprecated put it back there for backfill purpose
|
|
668
|
+
[layerzeroDefinitions.ChainName.HUBBLE]: {
|
|
502
669
|
addressSizeInBytes: 20,
|
|
503
670
|
decimals: EVM_DECIMALS,
|
|
504
671
|
mptBaseGas: 2e5,
|
|
505
672
|
fpBaseGas: 2e5,
|
|
506
|
-
symbol: "
|
|
673
|
+
symbol: "USDC",
|
|
674
|
+
chainLayer: 2
|
|
507
675
|
},
|
|
508
|
-
[layerzeroDefinitions.ChainName.
|
|
676
|
+
[layerzeroDefinitions.ChainName.HUMANITY]: {
|
|
509
677
|
addressSizeInBytes: 20,
|
|
510
678
|
decimals: EVM_DECIMALS,
|
|
511
|
-
mptBaseGas:
|
|
512
|
-
fpBaseGas:
|
|
513
|
-
symbol: "
|
|
679
|
+
mptBaseGas: 2e5,
|
|
680
|
+
fpBaseGas: 2e5,
|
|
681
|
+
symbol: "H",
|
|
514
682
|
chainLayer: 2
|
|
515
683
|
},
|
|
516
|
-
[layerzeroDefinitions.ChainName.
|
|
684
|
+
[layerzeroDefinitions.ChainName.HYPERLIQUID]: {
|
|
517
685
|
addressSizeInBytes: 20,
|
|
518
686
|
decimals: EVM_DECIMALS,
|
|
519
687
|
mptBaseGas: 195e3,
|
|
520
688
|
fpBaseGas: 195e3,
|
|
521
|
-
symbol: "
|
|
522
|
-
|
|
523
|
-
[layerzeroDefinitions.ChainName.EON]: {
|
|
524
|
-
addressSizeInBytes: 20,
|
|
525
|
-
decimals: EVM_DECIMALS,
|
|
526
|
-
mptBaseGas: 185e3,
|
|
527
|
-
fpBaseGas: 185e3,
|
|
528
|
-
symbol: "ZEN",
|
|
529
|
-
chainLayer: 2
|
|
689
|
+
symbol: "HYPE",
|
|
690
|
+
chainLayer: 1
|
|
530
691
|
},
|
|
531
|
-
[layerzeroDefinitions.ChainName.
|
|
692
|
+
[layerzeroDefinitions.ChainName.IDEX]: {
|
|
532
693
|
addressSizeInBytes: 20,
|
|
533
694
|
decimals: EVM_DECIMALS,
|
|
534
695
|
mptBaseGas: 185e3,
|
|
535
696
|
fpBaseGas: 185e3,
|
|
536
|
-
symbol: "
|
|
697
|
+
symbol: "ETH"
|
|
537
698
|
},
|
|
538
|
-
[layerzeroDefinitions.ChainName.
|
|
539
|
-
addressSizeInBytes:
|
|
540
|
-
decimals:
|
|
699
|
+
[layerzeroDefinitions.ChainName.INITIA]: {
|
|
700
|
+
addressSizeInBytes: 32,
|
|
701
|
+
decimals: INITIA_DECIMALS,
|
|
541
702
|
mptBaseGas: 195e3,
|
|
542
703
|
fpBaseGas: 195e3,
|
|
543
|
-
symbol: "
|
|
704
|
+
symbol: "INIT"
|
|
544
705
|
},
|
|
545
706
|
[layerzeroDefinitions.ChainName.INJECTIVE]: {
|
|
546
707
|
addressSizeInBytes: 20,
|
|
@@ -549,22 +710,23 @@ var staticConfig = {
|
|
|
549
710
|
fpBaseGas: 185e3,
|
|
550
711
|
symbol: "ETH"
|
|
551
712
|
},
|
|
552
|
-
[layerzeroDefinitions.ChainName.
|
|
713
|
+
[layerzeroDefinitions.ChainName.INJECTIVE1439]: {
|
|
553
714
|
addressSizeInBytes: 20,
|
|
554
715
|
decimals: EVM_DECIMALS,
|
|
555
|
-
mptBaseGas:
|
|
556
|
-
fpBaseGas:
|
|
557
|
-
symbol: "
|
|
716
|
+
mptBaseGas: 195e3,
|
|
717
|
+
fpBaseGas: 195e3,
|
|
718
|
+
symbol: "INJ",
|
|
719
|
+
chainLayer: 1
|
|
558
720
|
},
|
|
559
|
-
[layerzeroDefinitions.ChainName.
|
|
721
|
+
[layerzeroDefinitions.ChainName.INJECTIVEEVM]: {
|
|
560
722
|
addressSizeInBytes: 20,
|
|
561
723
|
decimals: EVM_DECIMALS,
|
|
562
724
|
mptBaseGas: 2e5,
|
|
563
725
|
fpBaseGas: 2e5,
|
|
564
|
-
symbol: "
|
|
565
|
-
chainLayer:
|
|
726
|
+
symbol: "INJ",
|
|
727
|
+
chainLayer: 1
|
|
566
728
|
},
|
|
567
|
-
[layerzeroDefinitions.ChainName.
|
|
729
|
+
[layerzeroDefinitions.ChainName.INK]: {
|
|
568
730
|
addressSizeInBytes: 20,
|
|
569
731
|
decimals: EVM_DECIMALS,
|
|
570
732
|
mptBaseGas: 195e3,
|
|
@@ -572,112 +734,115 @@ var staticConfig = {
|
|
|
572
734
|
symbol: "ETH",
|
|
573
735
|
chainLayer: 2
|
|
574
736
|
},
|
|
575
|
-
|
|
737
|
+
// @deprecated put it back there for backfill purpose
|
|
738
|
+
[layerzeroDefinitions.ChainName.INTAIN]: {
|
|
576
739
|
addressSizeInBytes: 20,
|
|
577
740
|
decimals: EVM_DECIMALS,
|
|
578
|
-
mptBaseGas:
|
|
579
|
-
fpBaseGas:
|
|
580
|
-
symbol: "
|
|
581
|
-
chainLayer: 2
|
|
741
|
+
mptBaseGas: 195e3,
|
|
742
|
+
fpBaseGas: 195e3,
|
|
743
|
+
symbol: "GETH"
|
|
582
744
|
},
|
|
583
|
-
[layerzeroDefinitions.ChainName.
|
|
745
|
+
[layerzeroDefinitions.ChainName.IOTA]: {
|
|
584
746
|
addressSizeInBytes: 20,
|
|
585
747
|
decimals: EVM_DECIMALS,
|
|
748
|
+
mptBaseGas: 2e5,
|
|
749
|
+
fpBaseGas: 2e5,
|
|
750
|
+
symbol: "IOTA",
|
|
751
|
+
chainLayer: 1
|
|
752
|
+
},
|
|
753
|
+
[layerzeroDefinitions.ChainName.IOTAL1]: {
|
|
754
|
+
addressSizeInBytes: 32,
|
|
755
|
+
decimals: IOTAMOVE_DECIMALS,
|
|
586
756
|
mptBaseGas: 195e3,
|
|
587
757
|
fpBaseGas: 195e3,
|
|
588
|
-
symbol: "
|
|
589
|
-
chainLayer:
|
|
758
|
+
symbol: "IOTA",
|
|
759
|
+
chainLayer: 1
|
|
590
760
|
},
|
|
591
|
-
[layerzeroDefinitions.ChainName.
|
|
761
|
+
[layerzeroDefinitions.ChainName.ISLANDER]: {
|
|
592
762
|
addressSizeInBytes: 20,
|
|
593
763
|
decimals: EVM_DECIMALS,
|
|
594
|
-
mptBaseGas:
|
|
595
|
-
fpBaseGas:
|
|
596
|
-
symbol: "
|
|
764
|
+
mptBaseGas: 195e3,
|
|
765
|
+
fpBaseGas: 195e3,
|
|
766
|
+
symbol: "VANA",
|
|
767
|
+
chainLayer: 1
|
|
597
768
|
},
|
|
598
|
-
[layerzeroDefinitions.ChainName.
|
|
769
|
+
[layerzeroDefinitions.ChainName.JOC]: {
|
|
599
770
|
addressSizeInBytes: 20,
|
|
600
771
|
decimals: EVM_DECIMALS,
|
|
601
|
-
mptBaseGas:
|
|
602
|
-
fpBaseGas:
|
|
603
|
-
symbol: "
|
|
772
|
+
mptBaseGas: 195e3,
|
|
773
|
+
fpBaseGas: 195e3,
|
|
774
|
+
symbol: "JOC",
|
|
775
|
+
chainLayer: 1
|
|
604
776
|
},
|
|
605
|
-
[layerzeroDefinitions.ChainName.
|
|
777
|
+
[layerzeroDefinitions.ChainName.KATANA]: {
|
|
606
778
|
addressSizeInBytes: 20,
|
|
607
779
|
decimals: EVM_DECIMALS,
|
|
608
780
|
mptBaseGas: 2e5,
|
|
609
781
|
fpBaseGas: 2e5,
|
|
610
|
-
symbol: "ETH"
|
|
611
|
-
},
|
|
612
|
-
[layerzeroDefinitions.ChainName.RARIBLE]: {
|
|
613
|
-
addressSizeInBytes: 20,
|
|
614
|
-
decimals: EVM_DECIMALS,
|
|
615
|
-
mptBaseGas: 555e4,
|
|
616
|
-
fpBaseGas: 555e4,
|
|
617
782
|
symbol: "ETH",
|
|
618
783
|
chainLayer: 2
|
|
619
784
|
},
|
|
620
|
-
[layerzeroDefinitions.ChainName.
|
|
621
|
-
addressSizeInBytes: 20,
|
|
622
|
-
decimals: EVM_DECIMALS,
|
|
623
|
-
mptBaseGas: 199e3,
|
|
624
|
-
fpBaseGas: 199e3,
|
|
625
|
-
symbol: "AVAX"
|
|
626
|
-
},
|
|
627
|
-
[layerzeroDefinitions.ChainName.RC1]: {
|
|
785
|
+
[layerzeroDefinitions.ChainName.KAVA]: {
|
|
628
786
|
addressSizeInBytes: 20,
|
|
629
787
|
decimals: EVM_DECIMALS,
|
|
630
|
-
mptBaseGas:
|
|
631
|
-
fpBaseGas:
|
|
632
|
-
symbol: "
|
|
788
|
+
mptBaseGas: 2e5,
|
|
789
|
+
fpBaseGas: 2e5,
|
|
790
|
+
symbol: "KAVA"
|
|
633
791
|
},
|
|
634
|
-
[layerzeroDefinitions.ChainName.
|
|
792
|
+
[layerzeroDefinitions.ChainName.KEVNET]: {
|
|
635
793
|
addressSizeInBytes: 20,
|
|
636
794
|
decimals: EVM_DECIMALS,
|
|
637
795
|
mptBaseGas: 195e3,
|
|
638
796
|
fpBaseGas: 195e3,
|
|
639
|
-
symbol: "
|
|
640
|
-
chainLayer:
|
|
797
|
+
symbol: "ETH",
|
|
798
|
+
chainLayer: 2
|
|
641
799
|
},
|
|
642
|
-
[layerzeroDefinitions.ChainName.
|
|
800
|
+
[layerzeroDefinitions.ChainName.KITE]: {
|
|
643
801
|
addressSizeInBytes: 20,
|
|
644
802
|
decimals: EVM_DECIMALS,
|
|
645
|
-
mptBaseGas:
|
|
646
|
-
fpBaseGas:
|
|
647
|
-
symbol: "
|
|
803
|
+
mptBaseGas: 2e5,
|
|
804
|
+
fpBaseGas: 2e5,
|
|
805
|
+
symbol: "KITE",
|
|
806
|
+
chainLayer: 1
|
|
648
807
|
},
|
|
649
|
-
[layerzeroDefinitions.ChainName.
|
|
808
|
+
[layerzeroDefinitions.ChainName.KIWI]: {
|
|
650
809
|
addressSizeInBytes: 20,
|
|
651
810
|
decimals: EVM_DECIMALS,
|
|
652
|
-
mptBaseGas:
|
|
653
|
-
fpBaseGas:
|
|
654
|
-
symbol: "
|
|
655
|
-
chainLayer: 2
|
|
811
|
+
mptBaseGas: 2e5,
|
|
812
|
+
fpBaseGas: 2e5,
|
|
813
|
+
symbol: "SHRAP"
|
|
656
814
|
},
|
|
657
|
-
[layerzeroDefinitions.ChainName.
|
|
815
|
+
[layerzeroDefinitions.ChainName.KIWI2]: {
|
|
658
816
|
addressSizeInBytes: 20,
|
|
659
817
|
decimals: EVM_DECIMALS,
|
|
660
|
-
mptBaseGas:
|
|
661
|
-
fpBaseGas:
|
|
662
|
-
symbol: "
|
|
663
|
-
chainLayer: 1
|
|
818
|
+
mptBaseGas: 2e5,
|
|
819
|
+
fpBaseGas: 2e5,
|
|
820
|
+
symbol: "SHRAP"
|
|
664
821
|
},
|
|
665
|
-
[layerzeroDefinitions.ChainName.
|
|
822
|
+
[layerzeroDefinitions.ChainName.KLAYTN]: {
|
|
666
823
|
addressSizeInBytes: 20,
|
|
667
824
|
decimals: EVM_DECIMALS,
|
|
668
825
|
mptBaseGas: 2e5,
|
|
669
826
|
fpBaseGas: 2e5,
|
|
670
|
-
symbol: "
|
|
671
|
-
chainLayer: 2
|
|
827
|
+
symbol: "KLAY"
|
|
672
828
|
},
|
|
673
|
-
[layerzeroDefinitions.ChainName.
|
|
829
|
+
[layerzeroDefinitions.ChainName.LENS]: {
|
|
674
830
|
addressSizeInBytes: 20,
|
|
675
831
|
decimals: EVM_DECIMALS,
|
|
676
832
|
mptBaseGas: 2e5,
|
|
677
833
|
fpBaseGas: 2e5,
|
|
678
|
-
symbol: "
|
|
834
|
+
symbol: "GHO",
|
|
835
|
+
chainLayer: 2
|
|
836
|
+
},
|
|
837
|
+
[layerzeroDefinitions.ChainName.LIF3]: {
|
|
838
|
+
addressSizeInBytes: 20,
|
|
839
|
+
decimals: EVM_DECIMALS,
|
|
840
|
+
mptBaseGas: 195e3,
|
|
841
|
+
fpBaseGas: 195e3,
|
|
842
|
+
symbol: "LIF3",
|
|
843
|
+
chainLayer: 2
|
|
679
844
|
},
|
|
680
|
-
[layerzeroDefinitions.ChainName.
|
|
845
|
+
[layerzeroDefinitions.ChainName.LIGHTLINK]: {
|
|
681
846
|
addressSizeInBytes: 20,
|
|
682
847
|
decimals: EVM_DECIMALS,
|
|
683
848
|
mptBaseGas: 2e5,
|
|
@@ -685,79 +850,74 @@ var staticConfig = {
|
|
|
685
850
|
symbol: "ETH",
|
|
686
851
|
chainLayer: 2
|
|
687
852
|
},
|
|
688
|
-
[layerzeroDefinitions.ChainName.
|
|
853
|
+
[layerzeroDefinitions.ChainName.LINEASEP]: {
|
|
689
854
|
addressSizeInBytes: 20,
|
|
690
855
|
decimals: EVM_DECIMALS,
|
|
691
856
|
mptBaseGas: 195e3,
|
|
692
857
|
fpBaseGas: 195e3,
|
|
693
|
-
symbol: "ETH"
|
|
858
|
+
symbol: "ETH",
|
|
859
|
+
chainLayer: 2
|
|
694
860
|
},
|
|
695
|
-
[layerzeroDefinitions.ChainName.
|
|
861
|
+
[layerzeroDefinitions.ChainName.LISK]: {
|
|
696
862
|
addressSizeInBytes: 20,
|
|
697
863
|
decimals: EVM_DECIMALS,
|
|
698
|
-
mptBaseGas:
|
|
699
|
-
fpBaseGas:
|
|
700
|
-
symbol: "ETH"
|
|
864
|
+
mptBaseGas: 195e3,
|
|
865
|
+
fpBaseGas: 195e3,
|
|
866
|
+
symbol: "ETH",
|
|
867
|
+
chainLayer: 2
|
|
701
868
|
},
|
|
702
|
-
[layerzeroDefinitions.ChainName.
|
|
869
|
+
[layerzeroDefinitions.ChainName.LL1]: {
|
|
703
870
|
addressSizeInBytes: 20,
|
|
704
871
|
decimals: EVM_DECIMALS,
|
|
705
872
|
mptBaseGas: 2e5,
|
|
706
873
|
fpBaseGas: 2e5,
|
|
707
|
-
symbol: "
|
|
874
|
+
symbol: "USDC"
|
|
708
875
|
},
|
|
709
|
-
[layerzeroDefinitions.ChainName.
|
|
876
|
+
[layerzeroDefinitions.ChainName.LOOT]: {
|
|
710
877
|
addressSizeInBytes: 20,
|
|
711
878
|
decimals: EVM_DECIMALS,
|
|
712
879
|
mptBaseGas: 2e5,
|
|
713
880
|
fpBaseGas: 2e5,
|
|
714
|
-
symbol: "
|
|
881
|
+
symbol: "AGLD",
|
|
715
882
|
chainLayer: 2
|
|
716
883
|
},
|
|
717
|
-
[layerzeroDefinitions.ChainName.
|
|
718
|
-
addressSizeInBytes: 20,
|
|
719
|
-
decimals: EVM_DECIMALS,
|
|
720
|
-
mptBaseGas: 2e5,
|
|
721
|
-
fpBaseGas: 2e5,
|
|
722
|
-
symbol: "ETH"
|
|
723
|
-
},
|
|
724
|
-
[layerzeroDefinitions.ChainName.FRAXTAL]: {
|
|
884
|
+
[layerzeroDefinitions.ChainName.LYRA]: {
|
|
725
885
|
addressSizeInBytes: 20,
|
|
726
886
|
decimals: EVM_DECIMALS,
|
|
727
887
|
mptBaseGas: 2e5,
|
|
728
888
|
fpBaseGas: 2e5,
|
|
729
|
-
symbol: "
|
|
889
|
+
symbol: "ETH",
|
|
730
890
|
chainLayer: 2
|
|
731
891
|
},
|
|
732
|
-
[layerzeroDefinitions.ChainName.
|
|
892
|
+
[layerzeroDefinitions.ChainName.LZJK]: {
|
|
733
893
|
addressSizeInBytes: 20,
|
|
734
894
|
decimals: EVM_DECIMALS,
|
|
735
895
|
mptBaseGas: 2e5,
|
|
736
896
|
fpBaseGas: 2e5,
|
|
737
|
-
symbol: "
|
|
897
|
+
symbol: "LZJK"
|
|
738
898
|
},
|
|
739
|
-
[layerzeroDefinitions.ChainName.
|
|
899
|
+
[layerzeroDefinitions.ChainName.MANTA]: {
|
|
740
900
|
addressSizeInBytes: 20,
|
|
741
901
|
decimals: EVM_DECIMALS,
|
|
742
902
|
mptBaseGas: 2e5,
|
|
743
903
|
fpBaseGas: 2e5,
|
|
744
|
-
symbol: "
|
|
904
|
+
symbol: "ETH",
|
|
745
905
|
chainLayer: 2
|
|
746
906
|
},
|
|
747
|
-
[layerzeroDefinitions.ChainName.
|
|
907
|
+
[layerzeroDefinitions.ChainName.MANTASEP]: {
|
|
748
908
|
addressSizeInBytes: 20,
|
|
749
909
|
decimals: EVM_DECIMALS,
|
|
750
910
|
mptBaseGas: 2e5,
|
|
751
911
|
fpBaseGas: 2e5,
|
|
752
|
-
symbol: "ETH"
|
|
753
|
-
chainLayer: 2
|
|
912
|
+
symbol: "ETH"
|
|
754
913
|
},
|
|
755
|
-
[layerzeroDefinitions.ChainName.
|
|
914
|
+
[layerzeroDefinitions.ChainName.MANTLE]: {
|
|
756
915
|
addressSizeInBytes: 20,
|
|
757
916
|
decimals: EVM_DECIMALS,
|
|
758
917
|
mptBaseGas: 2e5,
|
|
759
918
|
fpBaseGas: 2e5,
|
|
760
|
-
symbol: "
|
|
919
|
+
symbol: "MNT",
|
|
920
|
+
chainLayer: 2
|
|
761
921
|
},
|
|
762
922
|
[layerzeroDefinitions.ChainName.MANTLESEP]: {
|
|
763
923
|
addressSizeInBytes: 20,
|
|
@@ -766,13 +926,6 @@ var staticConfig = {
|
|
|
766
926
|
fpBaseGas: 2e5,
|
|
767
927
|
symbol: "MNT"
|
|
768
928
|
},
|
|
769
|
-
[layerzeroDefinitions.ChainName.HEDERA]: {
|
|
770
|
-
addressSizeInBytes: 20,
|
|
771
|
-
decimals: HEDERA_DECIMALS,
|
|
772
|
-
mptBaseGas: 2e5,
|
|
773
|
-
fpBaseGas: 2e5,
|
|
774
|
-
symbol: "HBAR"
|
|
775
|
-
},
|
|
776
929
|
[layerzeroDefinitions.ChainName.MASA]: {
|
|
777
930
|
addressSizeInBytes: 20,
|
|
778
931
|
decimals: EVM_DECIMALS,
|
|
@@ -780,257 +933,269 @@ var staticConfig = {
|
|
|
780
933
|
fpBaseGas: 2e5,
|
|
781
934
|
symbol: "AVAX"
|
|
782
935
|
},
|
|
783
|
-
[layerzeroDefinitions.ChainName.
|
|
936
|
+
[layerzeroDefinitions.ChainName.MEGAETH]: {
|
|
784
937
|
addressSizeInBytes: 20,
|
|
785
938
|
decimals: EVM_DECIMALS,
|
|
786
|
-
mptBaseGas:
|
|
787
|
-
fpBaseGas:
|
|
939
|
+
mptBaseGas: 195e3,
|
|
940
|
+
fpBaseGas: 195e3,
|
|
788
941
|
symbol: "ETH",
|
|
789
|
-
chainLayer:
|
|
942
|
+
chainLayer: 1
|
|
790
943
|
},
|
|
791
|
-
[layerzeroDefinitions.ChainName.
|
|
944
|
+
[layerzeroDefinitions.ChainName.MEGAETH2]: {
|
|
792
945
|
addressSizeInBytes: 20,
|
|
793
946
|
decimals: EVM_DECIMALS,
|
|
794
|
-
mptBaseGas:
|
|
795
|
-
fpBaseGas:
|
|
796
|
-
symbol: "
|
|
947
|
+
mptBaseGas: 195e3,
|
|
948
|
+
fpBaseGas: 195e3,
|
|
949
|
+
symbol: "ETH",
|
|
797
950
|
chainLayer: 2
|
|
798
951
|
},
|
|
799
|
-
[layerzeroDefinitions.ChainName.
|
|
952
|
+
[layerzeroDefinitions.ChainName.MEMECOREFORMICARIUM]: {
|
|
800
953
|
addressSizeInBytes: 20,
|
|
801
954
|
decimals: EVM_DECIMALS,
|
|
802
|
-
mptBaseGas:
|
|
803
|
-
fpBaseGas:
|
|
804
|
-
symbol: "
|
|
805
|
-
chainLayer:
|
|
955
|
+
mptBaseGas: 195e3,
|
|
956
|
+
fpBaseGas: 195e3,
|
|
957
|
+
symbol: "M",
|
|
958
|
+
chainLayer: 1
|
|
806
959
|
},
|
|
807
|
-
[layerzeroDefinitions.ChainName.
|
|
960
|
+
[layerzeroDefinitions.ChainName.MERITCIRCLE]: {
|
|
808
961
|
addressSizeInBytes: 20,
|
|
809
962
|
decimals: EVM_DECIMALS,
|
|
810
963
|
mptBaseGas: 2e5,
|
|
811
964
|
fpBaseGas: 2e5,
|
|
812
|
-
symbol: "
|
|
965
|
+
symbol: "BEAM"
|
|
813
966
|
},
|
|
814
|
-
[layerzeroDefinitions.ChainName.
|
|
967
|
+
[layerzeroDefinitions.ChainName.MERLIN]: {
|
|
815
968
|
addressSizeInBytes: 20,
|
|
816
969
|
decimals: EVM_DECIMALS,
|
|
817
970
|
mptBaseGas: 2e5,
|
|
818
971
|
fpBaseGas: 2e5,
|
|
819
|
-
symbol: "
|
|
972
|
+
symbol: "BTC",
|
|
973
|
+
chainLayer: 2
|
|
820
974
|
},
|
|
821
|
-
[layerzeroDefinitions.ChainName.
|
|
975
|
+
[layerzeroDefinitions.ChainName.METER]: {
|
|
822
976
|
addressSizeInBytes: 20,
|
|
823
977
|
decimals: EVM_DECIMALS,
|
|
824
978
|
mptBaseGas: 2e5,
|
|
825
979
|
fpBaseGas: 2e5,
|
|
826
|
-
symbol: "
|
|
980
|
+
symbol: "MTR"
|
|
827
981
|
},
|
|
828
|
-
[layerzeroDefinitions.ChainName.
|
|
982
|
+
[layerzeroDefinitions.ChainName.METIS]: {
|
|
829
983
|
addressSizeInBytes: 20,
|
|
830
984
|
decimals: EVM_DECIMALS,
|
|
831
985
|
mptBaseGas: 2e5,
|
|
832
986
|
fpBaseGas: 2e5,
|
|
833
|
-
symbol: "
|
|
987
|
+
symbol: "METIS",
|
|
988
|
+
chainLayer: 2
|
|
834
989
|
},
|
|
835
|
-
[layerzeroDefinitions.ChainName.
|
|
990
|
+
[layerzeroDefinitions.ChainName.METISSEP]: {
|
|
836
991
|
addressSizeInBytes: 20,
|
|
837
992
|
decimals: EVM_DECIMALS,
|
|
838
993
|
mptBaseGas: 2e5,
|
|
839
994
|
fpBaseGas: 2e5,
|
|
840
|
-
symbol: "
|
|
995
|
+
symbol: "METIS",
|
|
996
|
+
chainLayer: 2
|
|
841
997
|
},
|
|
842
|
-
[layerzeroDefinitions.ChainName.
|
|
998
|
+
[layerzeroDefinitions.ChainName.MINATO]: {
|
|
843
999
|
addressSizeInBytes: 20,
|
|
844
1000
|
decimals: EVM_DECIMALS,
|
|
845
|
-
mptBaseGas:
|
|
846
|
-
fpBaseGas:
|
|
847
|
-
symbol: "
|
|
1001
|
+
mptBaseGas: 195e3,
|
|
1002
|
+
fpBaseGas: 195e3,
|
|
1003
|
+
symbol: "ETH",
|
|
1004
|
+
chainLayer: 2
|
|
848
1005
|
},
|
|
849
|
-
[layerzeroDefinitions.ChainName.
|
|
1006
|
+
[layerzeroDefinitions.ChainName.MODE]: {
|
|
850
1007
|
addressSizeInBytes: 20,
|
|
851
1008
|
decimals: EVM_DECIMALS,
|
|
852
1009
|
mptBaseGas: 2e5,
|
|
853
1010
|
fpBaseGas: 2e5,
|
|
854
|
-
symbol: "
|
|
855
|
-
chainLayer:
|
|
1011
|
+
symbol: "ETH",
|
|
1012
|
+
chainLayer: 2
|
|
856
1013
|
},
|
|
857
|
-
[layerzeroDefinitions.ChainName.
|
|
1014
|
+
[layerzeroDefinitions.ChainName.MOKSHA]: {
|
|
858
1015
|
addressSizeInBytes: 20,
|
|
859
1016
|
decimals: EVM_DECIMALS,
|
|
860
|
-
mptBaseGas:
|
|
861
|
-
fpBaseGas:
|
|
862
|
-
symbol: "
|
|
1017
|
+
mptBaseGas: 195e3,
|
|
1018
|
+
fpBaseGas: 195e3,
|
|
1019
|
+
symbol: "VANA",
|
|
1020
|
+
chainLayer: 1
|
|
863
1021
|
},
|
|
864
|
-
[layerzeroDefinitions.ChainName.
|
|
1022
|
+
[layerzeroDefinitions.ChainName.MONAD]: {
|
|
865
1023
|
addressSizeInBytes: 20,
|
|
866
1024
|
decimals: EVM_DECIMALS,
|
|
867
|
-
mptBaseGas:
|
|
868
|
-
fpBaseGas:
|
|
869
|
-
symbol: "
|
|
1025
|
+
mptBaseGas: 195e3,
|
|
1026
|
+
fpBaseGas: 195e3,
|
|
1027
|
+
symbol: "MATIC",
|
|
1028
|
+
chainLayer: 1
|
|
870
1029
|
},
|
|
871
|
-
[layerzeroDefinitions.ChainName.
|
|
1030
|
+
[layerzeroDefinitions.ChainName.MOONBEAM]: {
|
|
872
1031
|
addressSizeInBytes: 20,
|
|
873
1032
|
decimals: EVM_DECIMALS,
|
|
874
1033
|
mptBaseGas: 2e5,
|
|
875
1034
|
fpBaseGas: 2e5,
|
|
876
|
-
symbol: "
|
|
1035
|
+
symbol: "GLMR"
|
|
877
1036
|
},
|
|
878
|
-
[layerzeroDefinitions.ChainName.
|
|
1037
|
+
[layerzeroDefinitions.ChainName.MOONRIVER]: {
|
|
879
1038
|
addressSizeInBytes: 20,
|
|
880
1039
|
decimals: EVM_DECIMALS,
|
|
881
1040
|
mptBaseGas: 2e5,
|
|
882
1041
|
fpBaseGas: 2e5,
|
|
883
|
-
symbol: "
|
|
884
|
-
chainLayer: 1
|
|
1042
|
+
symbol: "MOVR"
|
|
885
1043
|
},
|
|
886
|
-
[layerzeroDefinitions.ChainName.
|
|
1044
|
+
[layerzeroDefinitions.ChainName.MORPH]: {
|
|
887
1045
|
addressSizeInBytes: 20,
|
|
888
1046
|
decimals: EVM_DECIMALS,
|
|
889
1047
|
mptBaseGas: 2e5,
|
|
890
1048
|
fpBaseGas: 2e5,
|
|
891
1049
|
symbol: "ETH",
|
|
892
|
-
chainLayer:
|
|
1050
|
+
chainLayer: 2
|
|
893
1051
|
},
|
|
894
|
-
[layerzeroDefinitions.ChainName.
|
|
1052
|
+
[layerzeroDefinitions.ChainName.MOVEMENT]: {
|
|
1053
|
+
addressSizeInBytes: 32,
|
|
1054
|
+
decimals: APTOS_DECIMALS,
|
|
1055
|
+
mptBaseGas: 5e3,
|
|
1056
|
+
fpBaseGas: 5e3,
|
|
1057
|
+
symbol: "MOVE"
|
|
1058
|
+
},
|
|
1059
|
+
[layerzeroDefinitions.ChainName.MP1]: {
|
|
895
1060
|
addressSizeInBytes: 20,
|
|
896
1061
|
decimals: EVM_DECIMALS,
|
|
897
|
-
mptBaseGas:
|
|
898
|
-
fpBaseGas:
|
|
899
|
-
symbol: "
|
|
1062
|
+
mptBaseGas: 195e3,
|
|
1063
|
+
fpBaseGas: 195e3,
|
|
1064
|
+
symbol: "BTCN",
|
|
1065
|
+
chainLayer: 2
|
|
900
1066
|
},
|
|
901
|
-
[layerzeroDefinitions.ChainName.
|
|
1067
|
+
[layerzeroDefinitions.ChainName.NEXERA]: {
|
|
902
1068
|
addressSizeInBytes: 20,
|
|
903
1069
|
decimals: EVM_DECIMALS,
|
|
904
1070
|
mptBaseGas: 2e5,
|
|
905
1071
|
fpBaseGas: 2e5,
|
|
906
|
-
symbol: "
|
|
1072
|
+
symbol: "NXRA",
|
|
1073
|
+
chainLayer: 1
|
|
907
1074
|
},
|
|
908
|
-
[layerzeroDefinitions.ChainName.
|
|
1075
|
+
[layerzeroDefinitions.ChainName.NIBIRU]: {
|
|
909
1076
|
addressSizeInBytes: 20,
|
|
910
1077
|
decimals: EVM_DECIMALS,
|
|
911
|
-
mptBaseGas:
|
|
912
|
-
fpBaseGas:
|
|
913
|
-
symbol: "
|
|
914
|
-
chainLayer:
|
|
1078
|
+
mptBaseGas: 195e3,
|
|
1079
|
+
fpBaseGas: 195e3,
|
|
1080
|
+
symbol: "NIBI",
|
|
1081
|
+
chainLayer: 1
|
|
915
1082
|
},
|
|
916
|
-
[layerzeroDefinitions.ChainName.
|
|
1083
|
+
[layerzeroDefinitions.ChainName.NOVA]: {
|
|
917
1084
|
addressSizeInBytes: 20,
|
|
918
1085
|
decimals: EVM_DECIMALS,
|
|
919
|
-
mptBaseGas:
|
|
920
|
-
fpBaseGas:
|
|
1086
|
+
mptBaseGas: 555e4,
|
|
1087
|
+
fpBaseGas: 555e4,
|
|
921
1088
|
symbol: "ETH",
|
|
922
1089
|
chainLayer: 2
|
|
923
1090
|
},
|
|
924
|
-
[layerzeroDefinitions.ChainName.
|
|
1091
|
+
[layerzeroDefinitions.ChainName.ODYSSEY]: {
|
|
925
1092
|
addressSizeInBytes: 20,
|
|
926
1093
|
decimals: EVM_DECIMALS,
|
|
927
|
-
mptBaseGas:
|
|
928
|
-
fpBaseGas:
|
|
929
|
-
symbol: "
|
|
1094
|
+
mptBaseGas: 195e3,
|
|
1095
|
+
fpBaseGas: 195e3,
|
|
1096
|
+
symbol: "IP",
|
|
930
1097
|
chainLayer: 2
|
|
931
1098
|
},
|
|
932
|
-
[layerzeroDefinitions.ChainName.
|
|
1099
|
+
[layerzeroDefinitions.ChainName.OG]: {
|
|
933
1100
|
addressSizeInBytes: 20,
|
|
934
1101
|
decimals: EVM_DECIMALS,
|
|
935
1102
|
mptBaseGas: 2e5,
|
|
936
1103
|
fpBaseGas: 2e5,
|
|
937
|
-
symbol: "
|
|
938
|
-
chainLayer:
|
|
1104
|
+
symbol: "0G",
|
|
1105
|
+
chainLayer: 1
|
|
939
1106
|
},
|
|
940
|
-
[layerzeroDefinitions.ChainName.
|
|
1107
|
+
[layerzeroDefinitions.ChainName.OGGALILEO]: {
|
|
941
1108
|
addressSizeInBytes: 20,
|
|
942
1109
|
decimals: EVM_DECIMALS,
|
|
943
|
-
mptBaseGas:
|
|
944
|
-
fpBaseGas:
|
|
945
|
-
symbol: "
|
|
946
|
-
chainLayer:
|
|
1110
|
+
mptBaseGas: 2e5,
|
|
1111
|
+
fpBaseGas: 2e5,
|
|
1112
|
+
symbol: "0G",
|
|
1113
|
+
chainLayer: 1
|
|
947
1114
|
},
|
|
948
|
-
[layerzeroDefinitions.ChainName.
|
|
1115
|
+
[layerzeroDefinitions.ChainName.OKX]: {
|
|
949
1116
|
addressSizeInBytes: 20,
|
|
950
1117
|
decimals: EVM_DECIMALS,
|
|
951
1118
|
mptBaseGas: 2e5,
|
|
952
1119
|
fpBaseGas: 2e5,
|
|
953
|
-
symbol: "
|
|
954
|
-
chainLayer: 1
|
|
1120
|
+
symbol: "OKT"
|
|
955
1121
|
},
|
|
956
|
-
[layerzeroDefinitions.ChainName.
|
|
1122
|
+
[layerzeroDefinitions.ChainName.OLIVE]: {
|
|
957
1123
|
addressSizeInBytes: 20,
|
|
958
1124
|
decimals: EVM_DECIMALS,
|
|
959
1125
|
mptBaseGas: 2e5,
|
|
960
1126
|
fpBaseGas: 2e5,
|
|
961
|
-
symbol: "
|
|
962
|
-
chainLayer: 2
|
|
1127
|
+
symbol: "MATIC"
|
|
963
1128
|
},
|
|
964
|
-
[layerzeroDefinitions.ChainName.
|
|
1129
|
+
[layerzeroDefinitions.ChainName.ONDO]: {
|
|
965
1130
|
addressSizeInBytes: 20,
|
|
966
1131
|
decimals: EVM_DECIMALS,
|
|
967
1132
|
mptBaseGas: 2e5,
|
|
968
1133
|
fpBaseGas: 2e5,
|
|
969
|
-
symbol: "
|
|
1134
|
+
symbol: "ONDO",
|
|
970
1135
|
chainLayer: 1
|
|
971
1136
|
},
|
|
972
|
-
[layerzeroDefinitions.ChainName.
|
|
1137
|
+
[layerzeroDefinitions.ChainName.OPBNB]: {
|
|
973
1138
|
addressSizeInBytes: 20,
|
|
974
1139
|
decimals: EVM_DECIMALS,
|
|
975
1140
|
mptBaseGas: 2e5,
|
|
976
1141
|
fpBaseGas: 2e5,
|
|
977
|
-
symbol: "
|
|
1142
|
+
symbol: "BNB",
|
|
978
1143
|
chainLayer: 2
|
|
979
1144
|
},
|
|
980
|
-
[layerzeroDefinitions.ChainName.
|
|
1145
|
+
[layerzeroDefinitions.ChainName.OPENCAMPUS]: {
|
|
981
1146
|
addressSizeInBytes: 20,
|
|
982
1147
|
decimals: EVM_DECIMALS,
|
|
983
1148
|
mptBaseGas: 2e5,
|
|
984
1149
|
fpBaseGas: 2e5,
|
|
985
|
-
symbol: "
|
|
1150
|
+
symbol: "EDU",
|
|
986
1151
|
chainLayer: 2
|
|
987
1152
|
},
|
|
988
|
-
[layerzeroDefinitions.ChainName.
|
|
1153
|
+
[layerzeroDefinitions.ChainName.OPENLEDGER]: {
|
|
989
1154
|
addressSizeInBytes: 20,
|
|
990
1155
|
decimals: EVM_DECIMALS,
|
|
991
|
-
mptBaseGas:
|
|
992
|
-
fpBaseGas:
|
|
993
|
-
symbol: "
|
|
1156
|
+
mptBaseGas: 195e3,
|
|
1157
|
+
fpBaseGas: 195e3,
|
|
1158
|
+
symbol: "OPEN",
|
|
1159
|
+
chainLayer: 2
|
|
994
1160
|
},
|
|
995
|
-
[layerzeroDefinitions.ChainName.
|
|
1161
|
+
[layerzeroDefinitions.ChainName.OPTIMISM]: {
|
|
996
1162
|
addressSizeInBytes: 20,
|
|
997
1163
|
decimals: EVM_DECIMALS,
|
|
998
1164
|
mptBaseGas: 2e5,
|
|
999
1165
|
fpBaseGas: 2e5,
|
|
1000
|
-
symbol: "
|
|
1166
|
+
symbol: "ETH",
|
|
1001
1167
|
chainLayer: 2
|
|
1002
1168
|
},
|
|
1003
|
-
[layerzeroDefinitions.ChainName.
|
|
1169
|
+
[layerzeroDefinitions.ChainName.OPTSEP]: {
|
|
1004
1170
|
addressSizeInBytes: 20,
|
|
1005
1171
|
decimals: EVM_DECIMALS,
|
|
1006
1172
|
mptBaseGas: 2e5,
|
|
1007
1173
|
fpBaseGas: 2e5,
|
|
1008
|
-
symbol: "ETH"
|
|
1009
|
-
chainLayer: 3
|
|
1174
|
+
symbol: "ETH"
|
|
1010
1175
|
},
|
|
1011
|
-
[layerzeroDefinitions.ChainName.
|
|
1176
|
+
[layerzeroDefinitions.ChainName.ORDERLY]: {
|
|
1012
1177
|
addressSizeInBytes: 20,
|
|
1013
1178
|
decimals: EVM_DECIMALS,
|
|
1014
1179
|
mptBaseGas: 2e5,
|
|
1015
1180
|
fpBaseGas: 2e5,
|
|
1016
|
-
symbol: "
|
|
1181
|
+
symbol: "ETH",
|
|
1017
1182
|
chainLayer: 2
|
|
1018
1183
|
},
|
|
1019
|
-
[layerzeroDefinitions.ChainName.
|
|
1184
|
+
[layerzeroDefinitions.ChainName.OTHERWORLD]: {
|
|
1020
1185
|
addressSizeInBytes: 20,
|
|
1021
1186
|
decimals: EVM_DECIMALS,
|
|
1022
1187
|
mptBaseGas: 2e5,
|
|
1023
1188
|
fpBaseGas: 2e5,
|
|
1024
|
-
symbol: "
|
|
1025
|
-
chainLayer:
|
|
1189
|
+
symbol: "FUEL",
|
|
1190
|
+
chainLayer: 1
|
|
1026
1191
|
},
|
|
1027
|
-
[layerzeroDefinitions.ChainName.
|
|
1192
|
+
[layerzeroDefinitions.ChainName.OZEAN]: {
|
|
1028
1193
|
addressSizeInBytes: 20,
|
|
1029
1194
|
decimals: EVM_DECIMALS,
|
|
1030
1195
|
mptBaseGas: 2e5,
|
|
1031
1196
|
fpBaseGas: 2e5,
|
|
1032
|
-
symbol: "
|
|
1033
|
-
chainLayer:
|
|
1197
|
+
symbol: "USDC",
|
|
1198
|
+
chainLayer: 2
|
|
1034
1199
|
},
|
|
1035
1200
|
[layerzeroDefinitions.ChainName.PEAQ]: {
|
|
1036
1201
|
addressSizeInBytes: 20,
|
|
@@ -1040,7 +1205,8 @@ var staticConfig = {
|
|
|
1040
1205
|
symbol: "PEAQ",
|
|
1041
1206
|
chainLayer: 1
|
|
1042
1207
|
},
|
|
1043
|
-
|
|
1208
|
+
// @deprecated put it back there for backfill purpose
|
|
1209
|
+
[layerzeroDefinitions.ChainName.PGN]: {
|
|
1044
1210
|
addressSizeInBytes: 20,
|
|
1045
1211
|
decimals: EVM_DECIMALS,
|
|
1046
1212
|
mptBaseGas: 2e5,
|
|
@@ -1048,21 +1214,28 @@ var staticConfig = {
|
|
|
1048
1214
|
symbol: "ETH",
|
|
1049
1215
|
chainLayer: 2
|
|
1050
1216
|
},
|
|
1051
|
-
[layerzeroDefinitions.ChainName.
|
|
1217
|
+
[layerzeroDefinitions.ChainName.PLASMA]: {
|
|
1052
1218
|
addressSizeInBytes: 20,
|
|
1053
1219
|
decimals: EVM_DECIMALS,
|
|
1054
|
-
mptBaseGas:
|
|
1055
|
-
fpBaseGas:
|
|
1056
|
-
symbol: "
|
|
1057
|
-
chainLayer:
|
|
1220
|
+
mptBaseGas: 195e3,
|
|
1221
|
+
fpBaseGas: 195e3,
|
|
1222
|
+
symbol: "XPL",
|
|
1223
|
+
chainLayer: 1
|
|
1058
1224
|
},
|
|
1059
|
-
[layerzeroDefinitions.ChainName.
|
|
1225
|
+
[layerzeroDefinitions.ChainName.PLASMA2]: {
|
|
1060
1226
|
addressSizeInBytes: 20,
|
|
1061
1227
|
decimals: EVM_DECIMALS,
|
|
1062
|
-
mptBaseGas:
|
|
1063
|
-
fpBaseGas:
|
|
1064
|
-
symbol: "
|
|
1065
|
-
chainLayer:
|
|
1228
|
+
mptBaseGas: 195e3,
|
|
1229
|
+
fpBaseGas: 195e3,
|
|
1230
|
+
symbol: "XPL",
|
|
1231
|
+
chainLayer: 1
|
|
1232
|
+
},
|
|
1233
|
+
[layerzeroDefinitions.ChainName.PLASMA3]: {
|
|
1234
|
+
addressSizeInBytes: 20,
|
|
1235
|
+
decimals: EVM_DECIMALS,
|
|
1236
|
+
mptBaseGas: 195e3,
|
|
1237
|
+
fpBaseGas: 195e3,
|
|
1238
|
+
symbol: "XPL"
|
|
1066
1239
|
},
|
|
1067
1240
|
[layerzeroDefinitions.ChainName.PLUME]: {
|
|
1068
1241
|
addressSizeInBytes: 20,
|
|
@@ -1072,7 +1245,7 @@ var staticConfig = {
|
|
|
1072
1245
|
symbol: "ETH",
|
|
1073
1246
|
chainLayer: 2
|
|
1074
1247
|
},
|
|
1075
|
-
[layerzeroDefinitions.ChainName.
|
|
1248
|
+
[layerzeroDefinitions.ChainName.PLUME2]: {
|
|
1076
1249
|
addressSizeInBytes: 20,
|
|
1077
1250
|
decimals: EVM_DECIMALS,
|
|
1078
1251
|
mptBaseGas: 2e5,
|
|
@@ -1080,31 +1253,54 @@ var staticConfig = {
|
|
|
1080
1253
|
symbol: "ETH",
|
|
1081
1254
|
chainLayer: 2
|
|
1082
1255
|
},
|
|
1083
|
-
[layerzeroDefinitions.ChainName.
|
|
1256
|
+
[layerzeroDefinitions.ChainName.PLUMEPHOENIX]: {
|
|
1084
1257
|
addressSizeInBytes: 20,
|
|
1085
1258
|
decimals: EVM_DECIMALS,
|
|
1086
|
-
mptBaseGas:
|
|
1087
|
-
fpBaseGas:
|
|
1259
|
+
mptBaseGas: 555e4,
|
|
1260
|
+
fpBaseGas: 555e4,
|
|
1261
|
+
symbol: "PLUME",
|
|
1262
|
+
chainLayer: 2
|
|
1263
|
+
},
|
|
1264
|
+
[layerzeroDefinitions.ChainName.POLYGON]: {
|
|
1265
|
+
addressSizeInBytes: 20,
|
|
1266
|
+
decimals: EVM_DECIMALS,
|
|
1267
|
+
mptBaseGas: 195e3,
|
|
1268
|
+
fpBaseGas: 195e3,
|
|
1269
|
+
symbol: "MATIC",
|
|
1270
|
+
chainLayer: 2
|
|
1271
|
+
},
|
|
1272
|
+
[layerzeroDefinitions.ChainName.POLYGONCDK]: {
|
|
1273
|
+
addressSizeInBytes: 20,
|
|
1274
|
+
decimals: EVM_DECIMALS,
|
|
1275
|
+
mptBaseGas: 195e3,
|
|
1276
|
+
fpBaseGas: 195e3,
|
|
1088
1277
|
symbol: "ETH",
|
|
1089
1278
|
chainLayer: 2
|
|
1090
1279
|
},
|
|
1091
|
-
[layerzeroDefinitions.ChainName.
|
|
1280
|
+
[layerzeroDefinitions.ChainName.RARIBLE]: {
|
|
1092
1281
|
addressSizeInBytes: 20,
|
|
1093
1282
|
decimals: EVM_DECIMALS,
|
|
1094
|
-
mptBaseGas:
|
|
1095
|
-
fpBaseGas:
|
|
1283
|
+
mptBaseGas: 555e4,
|
|
1284
|
+
fpBaseGas: 555e4,
|
|
1096
1285
|
symbol: "ETH",
|
|
1097
1286
|
chainLayer: 2
|
|
1098
1287
|
},
|
|
1099
|
-
[layerzeroDefinitions.ChainName.
|
|
1288
|
+
[layerzeroDefinitions.ChainName.RC1]: {
|
|
1289
|
+
addressSizeInBytes: 20,
|
|
1290
|
+
decimals: EVM_DECIMALS,
|
|
1291
|
+
mptBaseGas: 199e3,
|
|
1292
|
+
fpBaseGas: 199e3,
|
|
1293
|
+
symbol: "AVAX"
|
|
1294
|
+
},
|
|
1295
|
+
[layerzeroDefinitions.ChainName.REAL]: {
|
|
1100
1296
|
addressSizeInBytes: 20,
|
|
1101
1297
|
decimals: EVM_DECIMALS,
|
|
1102
1298
|
mptBaseGas: 2e5,
|
|
1103
1299
|
fpBaseGas: 2e5,
|
|
1104
|
-
symbol: "
|
|
1300
|
+
symbol: "ETH",
|
|
1105
1301
|
chainLayer: 2
|
|
1106
1302
|
},
|
|
1107
|
-
[layerzeroDefinitions.ChainName.
|
|
1303
|
+
[layerzeroDefinitions.ChainName.REYA]: {
|
|
1108
1304
|
addressSizeInBytes: 20,
|
|
1109
1305
|
decimals: EVM_DECIMALS,
|
|
1110
1306
|
mptBaseGas: 2e5,
|
|
@@ -1120,100 +1316,102 @@ var staticConfig = {
|
|
|
1120
1316
|
symbol: "XRP",
|
|
1121
1317
|
chainLayer: 2
|
|
1122
1318
|
},
|
|
1123
|
-
[layerzeroDefinitions.ChainName.
|
|
1319
|
+
[layerzeroDefinitions.ChainName.ROOTSTOCK]: {
|
|
1320
|
+
addressSizeInBytes: 20,
|
|
1321
|
+
decimals: EVM_DECIMALS,
|
|
1322
|
+
mptBaseGas: 195e3,
|
|
1323
|
+
fpBaseGas: 195e3,
|
|
1324
|
+
symbol: "RBTC",
|
|
1325
|
+
chainLayer: 1
|
|
1326
|
+
},
|
|
1327
|
+
[layerzeroDefinitions.ChainName.SANKO]: {
|
|
1124
1328
|
addressSizeInBytes: 20,
|
|
1125
1329
|
decimals: EVM_DECIMALS,
|
|
1126
1330
|
mptBaseGas: 2e5,
|
|
1127
1331
|
fpBaseGas: 2e5,
|
|
1128
|
-
symbol: "
|
|
1129
|
-
chainLayer: 2
|
|
1332
|
+
symbol: "DMT"
|
|
1130
1333
|
},
|
|
1131
|
-
[layerzeroDefinitions.ChainName.
|
|
1334
|
+
[layerzeroDefinitions.ChainName.SCROLL]: {
|
|
1132
1335
|
addressSizeInBytes: 20,
|
|
1133
1336
|
decimals: EVM_DECIMALS,
|
|
1134
1337
|
mptBaseGas: 2e5,
|
|
1135
1338
|
fpBaseGas: 2e5,
|
|
1136
|
-
symbol: "
|
|
1339
|
+
symbol: "ETH",
|
|
1137
1340
|
chainLayer: 2
|
|
1138
1341
|
},
|
|
1139
|
-
[layerzeroDefinitions.ChainName.
|
|
1342
|
+
[layerzeroDefinitions.ChainName.SEI]: {
|
|
1140
1343
|
addressSizeInBytes: 20,
|
|
1141
1344
|
decimals: EVM_DECIMALS,
|
|
1142
1345
|
mptBaseGas: 2e5,
|
|
1143
1346
|
fpBaseGas: 2e5,
|
|
1144
|
-
symbol: "
|
|
1145
|
-
chainLayer: 1
|
|
1347
|
+
symbol: "SEI"
|
|
1146
1348
|
},
|
|
1147
|
-
[layerzeroDefinitions.ChainName.
|
|
1349
|
+
[layerzeroDefinitions.ChainName.SEPOLIA]: {
|
|
1350
|
+
addressSizeInBytes: 20,
|
|
1351
|
+
decimals: EVM_DECIMALS,
|
|
1352
|
+
mptBaseGas: 195e3,
|
|
1353
|
+
fpBaseGas: 195e3,
|
|
1354
|
+
symbol: "SETH"
|
|
1355
|
+
},
|
|
1356
|
+
[layerzeroDefinitions.ChainName.SHIMMER]: {
|
|
1148
1357
|
addressSizeInBytes: 20,
|
|
1149
1358
|
decimals: EVM_DECIMALS,
|
|
1150
1359
|
mptBaseGas: 2e5,
|
|
1151
1360
|
fpBaseGas: 2e5,
|
|
1152
|
-
symbol: "
|
|
1361
|
+
symbol: "SMR",
|
|
1153
1362
|
chainLayer: 2
|
|
1154
1363
|
},
|
|
1155
|
-
[layerzeroDefinitions.ChainName.
|
|
1156
|
-
// deprecated
|
|
1364
|
+
[layerzeroDefinitions.ChainName.SHRAPNEL]: {
|
|
1157
1365
|
addressSizeInBytes: 20,
|
|
1158
1366
|
decimals: EVM_DECIMALS,
|
|
1159
1367
|
mptBaseGas: 2e5,
|
|
1160
1368
|
fpBaseGas: 2e5,
|
|
1161
|
-
symbol: "
|
|
1162
|
-
chainLayer: 2
|
|
1369
|
+
symbol: "SHRAP"
|
|
1163
1370
|
},
|
|
1164
|
-
[layerzeroDefinitions.ChainName.
|
|
1371
|
+
[layerzeroDefinitions.ChainName.SILICON]: {
|
|
1165
1372
|
addressSizeInBytes: 20,
|
|
1166
1373
|
decimals: EVM_DECIMALS,
|
|
1167
|
-
mptBaseGas:
|
|
1168
|
-
fpBaseGas:
|
|
1169
|
-
symbol: "
|
|
1374
|
+
mptBaseGas: 2e5,
|
|
1375
|
+
fpBaseGas: 2e5,
|
|
1376
|
+
symbol: "ETH"
|
|
1170
1377
|
},
|
|
1171
|
-
[layerzeroDefinitions.ChainName.
|
|
1378
|
+
[layerzeroDefinitions.ChainName.SILICONSEPOLIA]: {
|
|
1172
1379
|
addressSizeInBytes: 20,
|
|
1173
1380
|
decimals: EVM_DECIMALS,
|
|
1174
|
-
mptBaseGas:
|
|
1175
|
-
fpBaseGas:
|
|
1176
|
-
symbol: "
|
|
1381
|
+
mptBaseGas: 2e5,
|
|
1382
|
+
fpBaseGas: 2e5,
|
|
1383
|
+
symbol: "ETH"
|
|
1177
1384
|
},
|
|
1178
|
-
[layerzeroDefinitions.ChainName.
|
|
1385
|
+
[layerzeroDefinitions.ChainName.SKALE]: {
|
|
1179
1386
|
addressSizeInBytes: 20,
|
|
1180
1387
|
decimals: EVM_DECIMALS,
|
|
1181
|
-
mptBaseGas:
|
|
1182
|
-
fpBaseGas:
|
|
1183
|
-
symbol: "
|
|
1388
|
+
mptBaseGas: 2e5,
|
|
1389
|
+
fpBaseGas: 2e5,
|
|
1390
|
+
symbol: "MATIC",
|
|
1184
1391
|
chainLayer: 2
|
|
1185
1392
|
},
|
|
1186
|
-
[layerzeroDefinitions.ChainName.
|
|
1393
|
+
[layerzeroDefinitions.ChainName.SOLANA]: {
|
|
1394
|
+
addressSizeInBytes: 32,
|
|
1395
|
+
decimals: SOLANA_DECIMALS,
|
|
1396
|
+
mptBaseGas: 5e3,
|
|
1397
|
+
fpBaseGas: 5e3,
|
|
1398
|
+
symbol: "SOL"
|
|
1399
|
+
},
|
|
1400
|
+
[layerzeroDefinitions.ChainName.SOMNIA]: {
|
|
1187
1401
|
addressSizeInBytes: 20,
|
|
1188
1402
|
decimals: EVM_DECIMALS,
|
|
1189
1403
|
mptBaseGas: 2e5,
|
|
1190
1404
|
fpBaseGas: 2e5,
|
|
1191
|
-
symbol: "
|
|
1192
|
-
chainLayer: 2
|
|
1405
|
+
symbol: "STT"
|
|
1193
1406
|
},
|
|
1194
|
-
[layerzeroDefinitions.ChainName.
|
|
1407
|
+
[layerzeroDefinitions.ChainName.SOMNIASHANNON]: {
|
|
1195
1408
|
addressSizeInBytes: 20,
|
|
1196
1409
|
decimals: EVM_DECIMALS,
|
|
1197
1410
|
mptBaseGas: 2e5,
|
|
1198
1411
|
fpBaseGas: 2e5,
|
|
1199
|
-
symbol: "
|
|
1200
|
-
chainLayer: 2
|
|
1201
|
-
},
|
|
1202
|
-
initia: {
|
|
1203
|
-
addressSizeInBytes: 32,
|
|
1204
|
-
decimals: INITIA_DECIMALS,
|
|
1205
|
-
mptBaseGas: 195e3,
|
|
1206
|
-
fpBaseGas: 195e3,
|
|
1207
|
-
symbol: "INIT"
|
|
1208
|
-
},
|
|
1209
|
-
movement: {
|
|
1210
|
-
addressSizeInBytes: 32,
|
|
1211
|
-
decimals: APTOS_DECIMALS,
|
|
1212
|
-
mptBaseGas: 5e3,
|
|
1213
|
-
fpBaseGas: 5e3,
|
|
1214
|
-
symbol: "MOVE"
|
|
1412
|
+
symbol: "STT"
|
|
1215
1413
|
},
|
|
1216
|
-
[layerzeroDefinitions.ChainName.
|
|
1414
|
+
[layerzeroDefinitions.ChainName.SONEIUM]: {
|
|
1217
1415
|
addressSizeInBytes: 20,
|
|
1218
1416
|
decimals: EVM_DECIMALS,
|
|
1219
1417
|
mptBaseGas: 195e3,
|
|
@@ -1221,77 +1419,76 @@ var staticConfig = {
|
|
|
1221
1419
|
symbol: "ETH",
|
|
1222
1420
|
chainLayer: 2
|
|
1223
1421
|
},
|
|
1224
|
-
[layerzeroDefinitions.ChainName.
|
|
1422
|
+
[layerzeroDefinitions.ChainName.SONIC]: {
|
|
1225
1423
|
addressSizeInBytes: 20,
|
|
1226
1424
|
decimals: EVM_DECIMALS,
|
|
1227
1425
|
mptBaseGas: 195e3,
|
|
1228
1426
|
fpBaseGas: 195e3,
|
|
1229
|
-
symbol: "
|
|
1230
|
-
chainLayer:
|
|
1427
|
+
symbol: "S",
|
|
1428
|
+
chainLayer: 1
|
|
1231
1429
|
},
|
|
1232
|
-
|
|
1430
|
+
[layerzeroDefinitions.ChainName.SOPHON]: {
|
|
1233
1431
|
addressSizeInBytes: 20,
|
|
1234
1432
|
decimals: EVM_DECIMALS,
|
|
1235
1433
|
mptBaseGas: 195e3,
|
|
1236
1434
|
fpBaseGas: 195e3,
|
|
1237
|
-
symbol: "
|
|
1238
|
-
chainLayer:
|
|
1435
|
+
symbol: "SOPH",
|
|
1436
|
+
chainLayer: 2
|
|
1239
1437
|
},
|
|
1240
|
-
|
|
1438
|
+
[layerzeroDefinitions.ChainName.SPACE]: {
|
|
1241
1439
|
addressSizeInBytes: 20,
|
|
1242
1440
|
decimals: EVM_DECIMALS,
|
|
1243
1441
|
mptBaseGas: 2e5,
|
|
1244
1442
|
fpBaseGas: 2e5,
|
|
1245
|
-
symbol: "
|
|
1246
|
-
chainLayer: 2
|
|
1443
|
+
symbol: "USDC"
|
|
1247
1444
|
},
|
|
1248
|
-
|
|
1445
|
+
[layerzeroDefinitions.ChainName.STABLE]: {
|
|
1249
1446
|
addressSizeInBytes: 20,
|
|
1250
1447
|
decimals: EVM_DECIMALS,
|
|
1251
|
-
mptBaseGas:
|
|
1252
|
-
fpBaseGas:
|
|
1253
|
-
symbol: "
|
|
1448
|
+
mptBaseGas: 2e5,
|
|
1449
|
+
fpBaseGas: 2e5,
|
|
1450
|
+
symbol: "USDT",
|
|
1254
1451
|
chainLayer: 2
|
|
1255
1452
|
},
|
|
1256
|
-
[layerzeroDefinitions.ChainName.
|
|
1453
|
+
[layerzeroDefinitions.ChainName.STABLEDEVNET]: {
|
|
1257
1454
|
addressSizeInBytes: 20,
|
|
1258
1455
|
decimals: EVM_DECIMALS,
|
|
1259
|
-
mptBaseGas:
|
|
1260
|
-
fpBaseGas:
|
|
1261
|
-
symbol: "
|
|
1456
|
+
mptBaseGas: 2e5,
|
|
1457
|
+
fpBaseGas: 2e5,
|
|
1458
|
+
symbol: "USDT",
|
|
1262
1459
|
chainLayer: 2
|
|
1263
1460
|
},
|
|
1264
|
-
[layerzeroDefinitions.ChainName.
|
|
1265
|
-
addressSizeInBytes:
|
|
1266
|
-
decimals:
|
|
1267
|
-
mptBaseGas: 195e3,
|
|
1268
|
-
fpBaseGas: 195e3,
|
|
1269
|
-
symbol: "HYPE",
|
|
1270
|
-
chainLayer: 1
|
|
1271
|
-
},
|
|
1272
|
-
[layerzeroDefinitions.ChainName.MINATO]: {
|
|
1273
|
-
addressSizeInBytes: 20,
|
|
1274
|
-
decimals: EVM_DECIMALS,
|
|
1461
|
+
[layerzeroDefinitions.ChainName.STARKNET]: {
|
|
1462
|
+
addressSizeInBytes: 32,
|
|
1463
|
+
decimals: STARKNET_DECIMALS,
|
|
1275
1464
|
mptBaseGas: 195e3,
|
|
1276
1465
|
fpBaseGas: 195e3,
|
|
1277
|
-
symbol: "
|
|
1466
|
+
symbol: "STRK",
|
|
1278
1467
|
chainLayer: 2
|
|
1279
1468
|
},
|
|
1280
|
-
[layerzeroDefinitions.ChainName.
|
|
1469
|
+
[layerzeroDefinitions.ChainName.STORY]: {
|
|
1281
1470
|
addressSizeInBytes: 20,
|
|
1282
1471
|
decimals: EVM_DECIMALS,
|
|
1283
1472
|
mptBaseGas: 195e3,
|
|
1284
1473
|
fpBaseGas: 195e3,
|
|
1285
|
-
symbol: "
|
|
1474
|
+
symbol: "IP",
|
|
1286
1475
|
chainLayer: 2
|
|
1287
1476
|
},
|
|
1288
|
-
[layerzeroDefinitions.ChainName.
|
|
1477
|
+
[layerzeroDefinitions.ChainName.SUBTENSOREVM]: {
|
|
1289
1478
|
addressSizeInBytes: 20,
|
|
1290
1479
|
decimals: EVM_DECIMALS,
|
|
1480
|
+
mptBaseGas: 2e5,
|
|
1481
|
+
fpBaseGas: 2e5,
|
|
1482
|
+
symbol: "TAO",
|
|
1483
|
+
chainLayer: 1
|
|
1484
|
+
},
|
|
1485
|
+
[layerzeroDefinitions.ChainName.SUI]: {
|
|
1486
|
+
addressSizeInBytes: 32,
|
|
1487
|
+
decimals: SUI_DECIMALS,
|
|
1291
1488
|
mptBaseGas: 195e3,
|
|
1292
1489
|
fpBaseGas: 195e3,
|
|
1293
|
-
symbol: "
|
|
1294
|
-
chainLayer:
|
|
1490
|
+
symbol: "SUI",
|
|
1491
|
+
chainLayer: 1
|
|
1295
1492
|
},
|
|
1296
1493
|
[layerzeroDefinitions.ChainName.SUPERPOSITION]: {
|
|
1297
1494
|
addressSizeInBytes: 20,
|
|
@@ -1301,7 +1498,7 @@ var staticConfig = {
|
|
|
1301
1498
|
symbol: "ETH",
|
|
1302
1499
|
chainLayer: 3
|
|
1303
1500
|
},
|
|
1304
|
-
[layerzeroDefinitions.ChainName.
|
|
1501
|
+
[layerzeroDefinitions.ChainName.SWELL]: {
|
|
1305
1502
|
addressSizeInBytes: 20,
|
|
1306
1503
|
decimals: EVM_DECIMALS,
|
|
1307
1504
|
mptBaseGas: 195e3,
|
|
@@ -1309,166 +1506,153 @@ var staticConfig = {
|
|
|
1309
1506
|
symbol: "ETH",
|
|
1310
1507
|
chainLayer: 2
|
|
1311
1508
|
},
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
decimals: EVM_DECIMALS,
|
|
1315
|
-
mptBaseGas: 195e3,
|
|
1316
|
-
fpBaseGas: 195e3,
|
|
1317
|
-
symbol: "VANA",
|
|
1318
|
-
chainLayer: 1
|
|
1319
|
-
},
|
|
1320
|
-
[layerzeroDefinitions.ChainName.SOPHON]: {
|
|
1321
|
-
addressSizeInBytes: 20,
|
|
1322
|
-
decimals: EVM_DECIMALS,
|
|
1323
|
-
mptBaseGas: 195e3,
|
|
1324
|
-
fpBaseGas: 195e3,
|
|
1325
|
-
symbol: "SOPH",
|
|
1326
|
-
chainLayer: 2
|
|
1327
|
-
},
|
|
1328
|
-
[layerzeroDefinitions.ChainName.GAMESWIFT]: {
|
|
1509
|
+
// @deprecated put it back there for backfill purpose
|
|
1510
|
+
[layerzeroDefinitions.ChainName.SWIMMER]: {
|
|
1329
1511
|
addressSizeInBytes: 20,
|
|
1330
1512
|
decimals: EVM_DECIMALS,
|
|
1331
1513
|
mptBaseGas: 195e3,
|
|
1332
1514
|
fpBaseGas: 195e3,
|
|
1333
|
-
symbol: "
|
|
1334
|
-
chainLayer: 2
|
|
1515
|
+
symbol: "GETH"
|
|
1335
1516
|
},
|
|
1336
|
-
[layerzeroDefinitions.ChainName.
|
|
1517
|
+
[layerzeroDefinitions.ChainName.TAC]: {
|
|
1337
1518
|
addressSizeInBytes: 20,
|
|
1338
1519
|
decimals: EVM_DECIMALS,
|
|
1339
1520
|
mptBaseGas: 195e3,
|
|
1340
1521
|
fpBaseGas: 195e3,
|
|
1341
|
-
symbol: "
|
|
1342
|
-
chainLayer:
|
|
1522
|
+
symbol: "TAC",
|
|
1523
|
+
chainLayer: 1
|
|
1343
1524
|
},
|
|
1344
|
-
[layerzeroDefinitions.ChainName.
|
|
1525
|
+
[layerzeroDefinitions.ChainName.TACSPB]: {
|
|
1345
1526
|
addressSizeInBytes: 20,
|
|
1346
1527
|
decimals: EVM_DECIMALS,
|
|
1347
1528
|
mptBaseGas: 195e3,
|
|
1348
1529
|
fpBaseGas: 195e3,
|
|
1349
|
-
symbol: "
|
|
1350
|
-
chainLayer:
|
|
1530
|
+
symbol: "TAC",
|
|
1531
|
+
chainLayer: 1
|
|
1351
1532
|
},
|
|
1352
|
-
[layerzeroDefinitions.ChainName.
|
|
1533
|
+
[layerzeroDefinitions.ChainName.TAIKO]: {
|
|
1353
1534
|
addressSizeInBytes: 20,
|
|
1354
1535
|
decimals: EVM_DECIMALS,
|
|
1355
1536
|
mptBaseGas: 2e5,
|
|
1356
1537
|
fpBaseGas: 2e5,
|
|
1357
|
-
symbol: "
|
|
1358
|
-
chainLayer:
|
|
1538
|
+
symbol: "ETH",
|
|
1539
|
+
chainLayer: 1
|
|
1359
1540
|
},
|
|
1360
|
-
[layerzeroDefinitions.ChainName.
|
|
1541
|
+
[layerzeroDefinitions.ChainName.TANGIBLE]: {
|
|
1361
1542
|
addressSizeInBytes: 20,
|
|
1362
1543
|
decimals: EVM_DECIMALS,
|
|
1363
|
-
mptBaseGas:
|
|
1364
|
-
fpBaseGas:
|
|
1365
|
-
symbol: "
|
|
1366
|
-
chainLayer:
|
|
1544
|
+
mptBaseGas: 2e5,
|
|
1545
|
+
fpBaseGas: 2e5,
|
|
1546
|
+
symbol: "ETH",
|
|
1547
|
+
chainLayer: 2
|
|
1367
1548
|
},
|
|
1368
|
-
[layerzeroDefinitions.ChainName.
|
|
1549
|
+
[layerzeroDefinitions.ChainName.TELOS]: {
|
|
1369
1550
|
addressSizeInBytes: 20,
|
|
1370
1551
|
decimals: EVM_DECIMALS,
|
|
1371
|
-
mptBaseGas:
|
|
1372
|
-
fpBaseGas:
|
|
1373
|
-
symbol: "
|
|
1374
|
-
chainLayer: 2
|
|
1552
|
+
mptBaseGas: 2e5,
|
|
1553
|
+
fpBaseGas: 2e5,
|
|
1554
|
+
symbol: "TLOS"
|
|
1375
1555
|
},
|
|
1376
|
-
[layerzeroDefinitions.ChainName.
|
|
1556
|
+
[layerzeroDefinitions.ChainName.TENET]: {
|
|
1377
1557
|
addressSizeInBytes: 20,
|
|
1378
1558
|
decimals: EVM_DECIMALS,
|
|
1379
|
-
mptBaseGas:
|
|
1380
|
-
fpBaseGas:
|
|
1381
|
-
symbol: "
|
|
1382
|
-
chainLayer: 3
|
|
1559
|
+
mptBaseGas: 2e5,
|
|
1560
|
+
fpBaseGas: 2e5,
|
|
1561
|
+
symbol: "TENET"
|
|
1383
1562
|
},
|
|
1384
|
-
[layerzeroDefinitions.ChainName.
|
|
1563
|
+
[layerzeroDefinitions.ChainName.TILTYARD]: {
|
|
1385
1564
|
addressSizeInBytes: 20,
|
|
1386
1565
|
decimals: EVM_DECIMALS,
|
|
1387
|
-
mptBaseGas:
|
|
1388
|
-
fpBaseGas:
|
|
1389
|
-
symbol: "
|
|
1390
|
-
chainLayer: 2
|
|
1566
|
+
mptBaseGas: 2e5,
|
|
1567
|
+
fpBaseGas: 2e5,
|
|
1568
|
+
symbol: "TILT"
|
|
1391
1569
|
},
|
|
1392
|
-
[layerzeroDefinitions.ChainName.
|
|
1570
|
+
[layerzeroDefinitions.ChainName.TOMO]: {
|
|
1393
1571
|
addressSizeInBytes: 20,
|
|
1394
1572
|
decimals: EVM_DECIMALS,
|
|
1395
|
-
mptBaseGas:
|
|
1396
|
-
fpBaseGas:
|
|
1397
|
-
symbol: "
|
|
1573
|
+
mptBaseGas: 2e5,
|
|
1574
|
+
fpBaseGas: 2e5,
|
|
1575
|
+
symbol: "TOMO"
|
|
1576
|
+
},
|
|
1577
|
+
[layerzeroDefinitions.ChainName.TON]: {
|
|
1578
|
+
addressSizeInBytes: 32,
|
|
1579
|
+
decimals: TON_DECIMALS,
|
|
1580
|
+
mptBaseGas: 2e5,
|
|
1581
|
+
fpBaseGas: 2e5,
|
|
1582
|
+
symbol: "TON",
|
|
1398
1583
|
chainLayer: 1
|
|
1399
1584
|
},
|
|
1400
|
-
[layerzeroDefinitions.ChainName.
|
|
1585
|
+
[layerzeroDefinitions.ChainName.TREASURE]: {
|
|
1401
1586
|
addressSizeInBytes: 20,
|
|
1402
1587
|
decimals: EVM_DECIMALS,
|
|
1403
|
-
mptBaseGas:
|
|
1404
|
-
fpBaseGas:
|
|
1405
|
-
symbol: "
|
|
1588
|
+
mptBaseGas: 2e5,
|
|
1589
|
+
fpBaseGas: 2e5,
|
|
1590
|
+
symbol: "MAGIC",
|
|
1406
1591
|
chainLayer: 2
|
|
1407
1592
|
},
|
|
1408
|
-
[layerzeroDefinitions.ChainName.
|
|
1593
|
+
[layerzeroDefinitions.ChainName.TRON]: {
|
|
1594
|
+
chainSubType: 3,
|
|
1409
1595
|
addressSizeInBytes: 20,
|
|
1410
|
-
decimals:
|
|
1596
|
+
decimals: TRON_DECIMALS,
|
|
1411
1597
|
mptBaseGas: 195e3,
|
|
1412
1598
|
fpBaseGas: 195e3,
|
|
1413
|
-
symbol: "
|
|
1414
|
-
chainLayer: 1
|
|
1599
|
+
symbol: "TRX"
|
|
1415
1600
|
},
|
|
1416
|
-
[layerzeroDefinitions.ChainName.
|
|
1601
|
+
[layerzeroDefinitions.ChainName.UNICHAIN]: {
|
|
1417
1602
|
addressSizeInBytes: 20,
|
|
1418
1603
|
decimals: EVM_DECIMALS,
|
|
1419
1604
|
mptBaseGas: 195e3,
|
|
1420
1605
|
fpBaseGas: 195e3,
|
|
1421
|
-
symbol: "
|
|
1422
|
-
chainLayer:
|
|
1606
|
+
symbol: "ETH",
|
|
1607
|
+
chainLayer: 2
|
|
1423
1608
|
},
|
|
1424
|
-
[layerzeroDefinitions.ChainName.
|
|
1609
|
+
[layerzeroDefinitions.ChainName.UNREAL]: {
|
|
1425
1610
|
addressSizeInBytes: 20,
|
|
1426
1611
|
decimals: EVM_DECIMALS,
|
|
1427
|
-
mptBaseGas:
|
|
1428
|
-
fpBaseGas:
|
|
1429
|
-
symbol: "
|
|
1430
|
-
chainLayer:
|
|
1612
|
+
mptBaseGas: 2e5,
|
|
1613
|
+
fpBaseGas: 2e5,
|
|
1614
|
+
symbol: "ETH",
|
|
1615
|
+
chainLayer: 2
|
|
1431
1616
|
},
|
|
1432
|
-
[layerzeroDefinitions.ChainName.
|
|
1617
|
+
[layerzeroDefinitions.ChainName.VANAR]: {
|
|
1433
1618
|
addressSizeInBytes: 20,
|
|
1434
1619
|
decimals: EVM_DECIMALS,
|
|
1435
|
-
mptBaseGas:
|
|
1436
|
-
fpBaseGas:
|
|
1437
|
-
symbol: "
|
|
1620
|
+
mptBaseGas: 2e5,
|
|
1621
|
+
fpBaseGas: 2e5,
|
|
1622
|
+
symbol: "VANRY",
|
|
1438
1623
|
chainLayer: 1
|
|
1439
1624
|
},
|
|
1440
|
-
[layerzeroDefinitions.ChainName.
|
|
1625
|
+
[layerzeroDefinitions.ChainName.VENN]: {
|
|
1441
1626
|
addressSizeInBytes: 20,
|
|
1442
1627
|
decimals: EVM_DECIMALS,
|
|
1443
|
-
mptBaseGas:
|
|
1444
|
-
fpBaseGas:
|
|
1445
|
-
symbol: "ETH"
|
|
1446
|
-
chainLayer: 2
|
|
1628
|
+
mptBaseGas: 2e5,
|
|
1629
|
+
fpBaseGas: 2e5,
|
|
1630
|
+
symbol: "ETH"
|
|
1447
1631
|
},
|
|
1448
|
-
[layerzeroDefinitions.ChainName.
|
|
1632
|
+
[layerzeroDefinitions.ChainName.WORLDCHAIN]: {
|
|
1449
1633
|
addressSizeInBytes: 20,
|
|
1450
1634
|
decimals: EVM_DECIMALS,
|
|
1451
1635
|
mptBaseGas: 195e3,
|
|
1452
1636
|
fpBaseGas: 195e3,
|
|
1453
|
-
symbol: "
|
|
1454
|
-
chainLayer:
|
|
1637
|
+
symbol: "ETH",
|
|
1638
|
+
chainLayer: 2
|
|
1455
1639
|
},
|
|
1456
|
-
[layerzeroDefinitions.ChainName.
|
|
1640
|
+
[layerzeroDefinitions.ChainName.WORLDCOIN]: {
|
|
1457
1641
|
addressSizeInBytes: 20,
|
|
1458
1642
|
decimals: EVM_DECIMALS,
|
|
1459
1643
|
mptBaseGas: 195e3,
|
|
1460
1644
|
fpBaseGas: 195e3,
|
|
1461
|
-
symbol: "
|
|
1645
|
+
symbol: "ETH",
|
|
1462
1646
|
chainLayer: 2
|
|
1463
1647
|
},
|
|
1464
|
-
[layerzeroDefinitions.ChainName.
|
|
1648
|
+
[layerzeroDefinitions.ChainName.XAI]: {
|
|
1465
1649
|
addressSizeInBytes: 20,
|
|
1466
1650
|
decimals: EVM_DECIMALS,
|
|
1467
1651
|
mptBaseGas: 2e5,
|
|
1468
1652
|
fpBaseGas: 2e5,
|
|
1469
|
-
symbol: "
|
|
1653
|
+
symbol: "XAI"
|
|
1470
1654
|
},
|
|
1471
|
-
[layerzeroDefinitions.ChainName.
|
|
1655
|
+
[layerzeroDefinitions.ChainName.XCHAIN]: {
|
|
1472
1656
|
addressSizeInBytes: 20,
|
|
1473
1657
|
decimals: EVM_DECIMALS,
|
|
1474
1658
|
mptBaseGas: 195e3,
|
|
@@ -1476,127 +1660,121 @@ var staticConfig = {
|
|
|
1476
1660
|
symbol: "ETH",
|
|
1477
1661
|
chainLayer: 2
|
|
1478
1662
|
},
|
|
1479
|
-
[layerzeroDefinitions.ChainName.
|
|
1663
|
+
[layerzeroDefinitions.ChainName.XDC]: {
|
|
1480
1664
|
addressSizeInBytes: 20,
|
|
1481
1665
|
decimals: EVM_DECIMALS,
|
|
1482
1666
|
mptBaseGas: 195e3,
|
|
1483
1667
|
fpBaseGas: 195e3,
|
|
1484
|
-
symbol: "
|
|
1668
|
+
symbol: "XDC",
|
|
1485
1669
|
chainLayer: 1
|
|
1486
1670
|
},
|
|
1487
|
-
[layerzeroDefinitions.ChainName.
|
|
1671
|
+
[layerzeroDefinitions.ChainName.XLAYER]: {
|
|
1488
1672
|
addressSizeInBytes: 20,
|
|
1489
1673
|
decimals: EVM_DECIMALS,
|
|
1490
1674
|
mptBaseGas: 2e5,
|
|
1491
1675
|
fpBaseGas: 2e5,
|
|
1492
|
-
symbol: "
|
|
1493
|
-
chainLayer: 2
|
|
1676
|
+
symbol: "OKB"
|
|
1494
1677
|
},
|
|
1495
|
-
[layerzeroDefinitions.ChainName.
|
|
1678
|
+
[layerzeroDefinitions.ChainName.XLAYER2]: {
|
|
1496
1679
|
addressSizeInBytes: 20,
|
|
1497
1680
|
decimals: EVM_DECIMALS,
|
|
1498
1681
|
mptBaseGas: 2e5,
|
|
1499
1682
|
fpBaseGas: 2e5,
|
|
1500
|
-
symbol: "
|
|
1501
|
-
chainLayer: 2
|
|
1683
|
+
symbol: "OKB"
|
|
1502
1684
|
},
|
|
1503
|
-
[layerzeroDefinitions.ChainName.
|
|
1685
|
+
[layerzeroDefinitions.ChainName.XPLA]: {
|
|
1504
1686
|
addressSizeInBytes: 20,
|
|
1505
1687
|
decimals: EVM_DECIMALS,
|
|
1506
|
-
mptBaseGas:
|
|
1507
|
-
fpBaseGas:
|
|
1508
|
-
symbol: "
|
|
1509
|
-
chainLayer: 1
|
|
1688
|
+
mptBaseGas: 185e3,
|
|
1689
|
+
fpBaseGas: 185e3,
|
|
1690
|
+
symbol: "XPLA"
|
|
1510
1691
|
},
|
|
1511
|
-
[layerzeroDefinitions.ChainName.
|
|
1692
|
+
[layerzeroDefinitions.ChainName.ZAMA]: {
|
|
1512
1693
|
addressSizeInBytes: 20,
|
|
1513
1694
|
decimals: EVM_DECIMALS,
|
|
1514
|
-
mptBaseGas:
|
|
1515
|
-
fpBaseGas:
|
|
1516
|
-
symbol: "
|
|
1517
|
-
chainLayer:
|
|
1695
|
+
mptBaseGas: 2e5,
|
|
1696
|
+
fpBaseGas: 2e5,
|
|
1697
|
+
symbol: "ETH",
|
|
1698
|
+
chainLayer: 2
|
|
1518
1699
|
},
|
|
1519
|
-
[layerzeroDefinitions.ChainName.
|
|
1700
|
+
[layerzeroDefinitions.ChainName.ZIRCUIT]: {
|
|
1520
1701
|
addressSizeInBytes: 20,
|
|
1521
1702
|
decimals: EVM_DECIMALS,
|
|
1522
|
-
mptBaseGas:
|
|
1523
|
-
fpBaseGas:
|
|
1524
|
-
symbol: "ETH"
|
|
1525
|
-
chainLayer: 2
|
|
1703
|
+
mptBaseGas: 2e5,
|
|
1704
|
+
fpBaseGas: 2e5,
|
|
1705
|
+
symbol: "ETH"
|
|
1526
1706
|
},
|
|
1527
|
-
[layerzeroDefinitions.ChainName.
|
|
1707
|
+
[layerzeroDefinitions.ChainName.ZKASTAR]: {
|
|
1528
1708
|
addressSizeInBytes: 20,
|
|
1529
1709
|
decimals: EVM_DECIMALS,
|
|
1530
|
-
mptBaseGas:
|
|
1531
|
-
fpBaseGas:
|
|
1532
|
-
symbol: "
|
|
1533
|
-
chainLayer: 2
|
|
1710
|
+
mptBaseGas: 2e5,
|
|
1711
|
+
fpBaseGas: 2e5,
|
|
1712
|
+
symbol: "ETH"
|
|
1534
1713
|
},
|
|
1535
|
-
[layerzeroDefinitions.ChainName.
|
|
1714
|
+
[layerzeroDefinitions.ChainName.ZKATANA]: {
|
|
1536
1715
|
addressSizeInBytes: 20,
|
|
1537
1716
|
decimals: EVM_DECIMALS,
|
|
1538
1717
|
mptBaseGas: 195e3,
|
|
1539
1718
|
fpBaseGas: 195e3,
|
|
1540
1719
|
symbol: "ETH",
|
|
1541
|
-
chainLayer:
|
|
1720
|
+
chainLayer: 2
|
|
1542
1721
|
},
|
|
1543
|
-
[layerzeroDefinitions.ChainName.
|
|
1722
|
+
[layerzeroDefinitions.ChainName.ZKCONSENSYS]: {
|
|
1544
1723
|
addressSizeInBytes: 20,
|
|
1545
1724
|
decimals: EVM_DECIMALS,
|
|
1546
1725
|
mptBaseGas: 195e3,
|
|
1547
1726
|
fpBaseGas: 195e3,
|
|
1548
|
-
symbol: "
|
|
1549
|
-
chainLayer:
|
|
1727
|
+
symbol: "ETH",
|
|
1728
|
+
chainLayer: 2
|
|
1550
1729
|
},
|
|
1551
|
-
[layerzeroDefinitions.ChainName.
|
|
1730
|
+
[layerzeroDefinitions.ChainName.ZKLINK]: {
|
|
1552
1731
|
addressSizeInBytes: 20,
|
|
1553
1732
|
decimals: EVM_DECIMALS,
|
|
1554
|
-
mptBaseGas:
|
|
1555
|
-
fpBaseGas:
|
|
1556
|
-
symbol: "
|
|
1557
|
-
chainLayer:
|
|
1733
|
+
mptBaseGas: 2e5,
|
|
1734
|
+
fpBaseGas: 2e5,
|
|
1735
|
+
symbol: "ETH",
|
|
1736
|
+
chainLayer: 3
|
|
1558
1737
|
},
|
|
1559
|
-
[layerzeroDefinitions.ChainName.
|
|
1738
|
+
[layerzeroDefinitions.ChainName.ZKPOLYGON]: {
|
|
1560
1739
|
addressSizeInBytes: 20,
|
|
1561
1740
|
decimals: EVM_DECIMALS,
|
|
1562
1741
|
mptBaseGas: 195e3,
|
|
1563
1742
|
fpBaseGas: 195e3,
|
|
1564
|
-
symbol: "
|
|
1743
|
+
symbol: "ETH",
|
|
1565
1744
|
chainLayer: 2
|
|
1566
1745
|
},
|
|
1567
|
-
[layerzeroDefinitions.ChainName.
|
|
1746
|
+
[layerzeroDefinitions.ChainName.ZKPOLYGONSEP]: {
|
|
1568
1747
|
addressSizeInBytes: 20,
|
|
1569
1748
|
decimals: EVM_DECIMALS,
|
|
1570
|
-
mptBaseGas:
|
|
1571
|
-
fpBaseGas:
|
|
1572
|
-
|
|
1573
|
-
symbol: "GHO"
|
|
1749
|
+
mptBaseGas: 195e3,
|
|
1750
|
+
fpBaseGas: 195e3,
|
|
1751
|
+
symbol: "ETH"
|
|
1574
1752
|
},
|
|
1575
|
-
[layerzeroDefinitions.ChainName.
|
|
1753
|
+
[layerzeroDefinitions.ChainName.ZKSYNC]: {
|
|
1576
1754
|
addressSizeInBytes: 20,
|
|
1577
1755
|
decimals: EVM_DECIMALS,
|
|
1578
1756
|
mptBaseGas: 2e5,
|
|
1579
1757
|
fpBaseGas: 2e5,
|
|
1580
|
-
symbol: "
|
|
1758
|
+
symbol: "ETH",
|
|
1581
1759
|
chainLayer: 2
|
|
1582
1760
|
},
|
|
1583
|
-
[layerzeroDefinitions.ChainName.
|
|
1761
|
+
[layerzeroDefinitions.ChainName.ZKSYNCSEP]: {
|
|
1584
1762
|
addressSizeInBytes: 20,
|
|
1585
1763
|
decimals: EVM_DECIMALS,
|
|
1586
1764
|
mptBaseGas: 2e5,
|
|
1587
1765
|
fpBaseGas: 2e5,
|
|
1588
|
-
symbol: "
|
|
1589
|
-
chainLayer:
|
|
1766
|
+
symbol: "ETH",
|
|
1767
|
+
chainLayer: 2
|
|
1590
1768
|
},
|
|
1591
|
-
[layerzeroDefinitions.ChainName.
|
|
1769
|
+
[layerzeroDefinitions.ChainName.ZKVERIFY]: {
|
|
1592
1770
|
addressSizeInBytes: 20,
|
|
1593
1771
|
decimals: EVM_DECIMALS,
|
|
1594
1772
|
mptBaseGas: 2e5,
|
|
1595
1773
|
fpBaseGas: 2e5,
|
|
1596
|
-
symbol: "
|
|
1774
|
+
symbol: "VFY",
|
|
1597
1775
|
chainLayer: 1
|
|
1598
1776
|
},
|
|
1599
|
-
[layerzeroDefinitions.ChainName.
|
|
1777
|
+
[layerzeroDefinitions.ChainName.ZORA]: {
|
|
1600
1778
|
addressSizeInBytes: 20,
|
|
1601
1779
|
decimals: EVM_DECIMALS,
|
|
1602
1780
|
mptBaseGas: 2e5,
|
|
@@ -1604,40 +1782,23 @@ var staticConfig = {
|
|
|
1604
1782
|
symbol: "ETH",
|
|
1605
1783
|
chainLayer: 2
|
|
1606
1784
|
},
|
|
1607
|
-
[layerzeroDefinitions.ChainName.
|
|
1608
|
-
addressSizeInBytes: 20,
|
|
1609
|
-
decimals: EVM_DECIMALS,
|
|
1610
|
-
mptBaseGas: 195e3,
|
|
1611
|
-
fpBaseGas: 195e3,
|
|
1612
|
-
symbol: "TAC",
|
|
1613
|
-
chainLayer: 1
|
|
1614
|
-
},
|
|
1615
|
-
[layerzeroDefinitions.ChainName.TACSPB]: {
|
|
1785
|
+
[layerzeroDefinitions.ChainName.ZORASEP]: {
|
|
1616
1786
|
addressSizeInBytes: 20,
|
|
1617
1787
|
decimals: EVM_DECIMALS,
|
|
1618
|
-
mptBaseGas:
|
|
1619
|
-
fpBaseGas:
|
|
1620
|
-
symbol: "
|
|
1621
|
-
chainLayer: 1
|
|
1622
|
-
},
|
|
1623
|
-
[layerzeroDefinitions.ChainName.SUI]: {
|
|
1624
|
-
addressSizeInBytes: 32,
|
|
1625
|
-
decimals: SUI_DECIMALS,
|
|
1626
|
-
mptBaseGas: 195e3,
|
|
1627
|
-
fpBaseGas: 195e3,
|
|
1628
|
-
symbol: "SUI",
|
|
1629
|
-
chainLayer: 1
|
|
1788
|
+
mptBaseGas: 2e5,
|
|
1789
|
+
fpBaseGas: 2e5,
|
|
1790
|
+
symbol: "ETH"
|
|
1630
1791
|
}
|
|
1631
1792
|
};
|
|
1632
1793
|
var isZkChain = /* @__PURE__ */ __name((chainName) => {
|
|
1633
1794
|
return [
|
|
1634
|
-
layerzeroDefinitions.ChainName.ZKSYNC,
|
|
1635
|
-
layerzeroDefinitions.ChainName.ZKLINK,
|
|
1636
1795
|
layerzeroDefinitions.ChainName.ABSTRACT,
|
|
1637
1796
|
layerzeroDefinitions.ChainName.LENS,
|
|
1638
1797
|
layerzeroDefinitions.ChainName.CRONOSZKEVM,
|
|
1639
1798
|
layerzeroDefinitions.ChainName.SOPHON,
|
|
1640
1799
|
layerzeroDefinitions.ChainName.TREASURE,
|
|
1800
|
+
layerzeroDefinitions.ChainName.ZKLINK,
|
|
1801
|
+
layerzeroDefinitions.ChainName.ZKSYNC,
|
|
1641
1802
|
layerzeroDefinitions.ChainName.ZKSYNCSEP
|
|
1642
1803
|
].includes(chainName);
|
|
1643
1804
|
}, "isZkChain");
|
|
@@ -1646,5 +1807,5 @@ exports.ChainSubType = ChainSubType;
|
|
|
1646
1807
|
exports.__name = __name;
|
|
1647
1808
|
exports.isZkChain = isZkChain;
|
|
1648
1809
|
exports.staticConfig = staticConfig;
|
|
1649
|
-
//# sourceMappingURL=
|
|
1650
|
-
//# sourceMappingURL=
|
|
1810
|
+
//# sourceMappingURL=CBKS436E.cjs.map
|
|
1811
|
+
//# sourceMappingURL=CBKS436E.cjs.map
|