@sign-global/tokentable-core 1.12.0 → 1.13.0
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/CHANGELOG.md +6 -0
- package/dist/index.d.mts +863 -895
- package/dist/index.d.ts +863 -895
- package/dist/index.js +45 -27
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +48 -28
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/constants/chain-config.ts +42 -27
- package/src/services/airdrop/index.ts +9 -3
- package/src/utils/biz.ts +2 -2
- package/src/utils/utils.ts +3 -0
package/dist/index.d.mts
CHANGED
|
@@ -19,39 +19,37 @@ import { Wallet } from '@coral-xyz/anchor';
|
|
|
19
19
|
import * as _solana_spl_token from '@solana/spl-token';
|
|
20
20
|
import { Connection, PublicKey, Commitment, Transaction, Cluster } from '@solana/web3.js';
|
|
21
21
|
|
|
22
|
-
declare const
|
|
22
|
+
declare const SupportedChains: readonly [{
|
|
23
23
|
blockExplorers: {
|
|
24
|
-
readonly etherscan: {
|
|
25
|
-
readonly name: "Arbiscan";
|
|
26
|
-
readonly url: "https://explorer.devnet.imola.movementlabs.xyz/";
|
|
27
|
-
};
|
|
28
24
|
readonly default: {
|
|
29
|
-
readonly name: "
|
|
30
|
-
readonly url: "https://
|
|
25
|
+
readonly name: "Etherscan";
|
|
26
|
+
readonly url: "https://etherscan.io";
|
|
27
|
+
readonly apiUrl: "https://api.etherscan.io/api";
|
|
31
28
|
};
|
|
32
29
|
};
|
|
33
|
-
blockTime
|
|
30
|
+
blockTime: 12000;
|
|
34
31
|
contracts: {
|
|
32
|
+
readonly ensUniversalResolver: {
|
|
33
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
34
|
+
readonly blockCreated: 23085558;
|
|
35
|
+
};
|
|
35
36
|
readonly multicall3: {
|
|
36
|
-
readonly address: "
|
|
37
|
-
readonly blockCreated:
|
|
37
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
38
|
+
readonly blockCreated: 14353601;
|
|
38
39
|
};
|
|
39
40
|
};
|
|
40
41
|
ensTlds?: readonly string[] | undefined;
|
|
41
|
-
id:
|
|
42
|
-
name: "
|
|
42
|
+
id: 1;
|
|
43
|
+
name: "Ethereum";
|
|
43
44
|
nativeCurrency: {
|
|
44
|
-
readonly name: "
|
|
45
|
-
readonly symbol: "
|
|
45
|
+
readonly name: "Ether";
|
|
46
|
+
readonly symbol: "ETH";
|
|
46
47
|
readonly decimals: 18;
|
|
47
48
|
};
|
|
48
49
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
49
50
|
rpcUrls: {
|
|
50
51
|
readonly default: {
|
|
51
|
-
readonly http: readonly ["https://
|
|
52
|
-
};
|
|
53
|
-
readonly public: {
|
|
54
|
-
readonly http: readonly ["https://mevm.devnet.imola.movementlabs.xyz"];
|
|
52
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
55
53
|
};
|
|
56
54
|
};
|
|
57
55
|
sourceId?: number | undefined | undefined;
|
|
@@ -60,250 +58,375 @@ declare const mevmDevNet: {
|
|
|
60
58
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
61
59
|
formatters?: undefined;
|
|
62
60
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
nativeCurrency: {
|
|
70
|
-
decimals: number;
|
|
71
|
-
name: string;
|
|
72
|
-
symbol: string;
|
|
73
|
-
};
|
|
74
|
-
rpcUrls: {
|
|
75
|
-
public: {
|
|
76
|
-
http: never[];
|
|
77
|
-
};
|
|
78
|
-
default: {
|
|
79
|
-
http: never[];
|
|
61
|
+
}, {
|
|
62
|
+
blockExplorers: {
|
|
63
|
+
readonly default: {
|
|
64
|
+
readonly name: "BscScan";
|
|
65
|
+
readonly url: "https://bscscan.com";
|
|
66
|
+
readonly apiUrl: "https://api.bscscan.com/api";
|
|
80
67
|
};
|
|
81
68
|
};
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
69
|
+
blockTime: 750;
|
|
70
|
+
contracts: {
|
|
71
|
+
readonly multicall3: {
|
|
72
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
73
|
+
readonly blockCreated: 15921452;
|
|
86
74
|
};
|
|
87
75
|
};
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
id: CHAIN;
|
|
92
|
-
name: string;
|
|
93
|
-
network: string;
|
|
76
|
+
ensTlds?: readonly string[] | undefined;
|
|
77
|
+
id: 56;
|
|
78
|
+
name: "BNB Smart Chain";
|
|
94
79
|
nativeCurrency: {
|
|
95
|
-
decimals:
|
|
96
|
-
name:
|
|
97
|
-
symbol:
|
|
80
|
+
readonly decimals: 18;
|
|
81
|
+
readonly name: "BNB";
|
|
82
|
+
readonly symbol: "BNB";
|
|
98
83
|
};
|
|
84
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
99
85
|
rpcUrls: {
|
|
100
|
-
|
|
101
|
-
http:
|
|
102
|
-
};
|
|
103
|
-
default: {
|
|
104
|
-
http: never[];
|
|
86
|
+
readonly default: {
|
|
87
|
+
readonly http: readonly ["https://56.rpc.thirdweb.com"];
|
|
105
88
|
};
|
|
106
89
|
};
|
|
90
|
+
sourceId?: number | undefined | undefined;
|
|
91
|
+
testnet?: boolean | undefined | undefined;
|
|
92
|
+
custom?: Record<string, unknown> | undefined;
|
|
93
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
94
|
+
formatters?: undefined;
|
|
95
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
96
|
+
}, {
|
|
107
97
|
blockExplorers: {
|
|
108
|
-
default: {
|
|
109
|
-
name:
|
|
110
|
-
url:
|
|
98
|
+
readonly default: {
|
|
99
|
+
readonly name: "Basescan";
|
|
100
|
+
readonly url: "https://basescan.org";
|
|
101
|
+
readonly apiUrl: "https://api.basescan.org/api";
|
|
111
102
|
};
|
|
112
103
|
};
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
decimals: number;
|
|
120
|
-
name: string;
|
|
121
|
-
symbol: string;
|
|
122
|
-
};
|
|
123
|
-
rpcUrls: {
|
|
124
|
-
public: {
|
|
125
|
-
http: string[];
|
|
104
|
+
blockTime: 2000;
|
|
105
|
+
contracts: {
|
|
106
|
+
readonly disputeGameFactory: {
|
|
107
|
+
readonly 1: {
|
|
108
|
+
readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
|
|
109
|
+
};
|
|
126
110
|
};
|
|
127
|
-
|
|
128
|
-
|
|
111
|
+
readonly l2OutputOracle: {
|
|
112
|
+
readonly 1: {
|
|
113
|
+
readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
|
|
114
|
+
};
|
|
129
115
|
};
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
name: string;
|
|
134
|
-
url: string;
|
|
116
|
+
readonly multicall3: {
|
|
117
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
118
|
+
readonly blockCreated: 5022;
|
|
135
119
|
};
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
name: string;
|
|
142
|
-
network: string;
|
|
143
|
-
nativeCurrency: {
|
|
144
|
-
decimals: number;
|
|
145
|
-
name: string;
|
|
146
|
-
symbol: string;
|
|
147
|
-
};
|
|
148
|
-
rpcUrls: {
|
|
149
|
-
public: {
|
|
150
|
-
http: string[];
|
|
120
|
+
readonly portal: {
|
|
121
|
+
readonly 1: {
|
|
122
|
+
readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
|
|
123
|
+
readonly blockCreated: 17482143;
|
|
124
|
+
};
|
|
151
125
|
};
|
|
152
|
-
|
|
153
|
-
|
|
126
|
+
readonly l1StandardBridge: {
|
|
127
|
+
readonly 1: {
|
|
128
|
+
readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
|
|
129
|
+
readonly blockCreated: 17482143;
|
|
130
|
+
};
|
|
154
131
|
};
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
default: {
|
|
158
|
-
name: string;
|
|
159
|
-
url: string;
|
|
132
|
+
readonly gasPriceOracle: {
|
|
133
|
+
readonly address: "0x420000000000000000000000000000000000000F";
|
|
160
134
|
};
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
};
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
readonly
|
|
135
|
+
readonly l1Block: {
|
|
136
|
+
readonly address: "0x4200000000000000000000000000000000000015";
|
|
137
|
+
};
|
|
138
|
+
readonly l2CrossDomainMessenger: {
|
|
139
|
+
readonly address: "0x4200000000000000000000000000000000000007";
|
|
140
|
+
};
|
|
141
|
+
readonly l2Erc721Bridge: {
|
|
142
|
+
readonly address: "0x4200000000000000000000000000000000000014";
|
|
143
|
+
};
|
|
144
|
+
readonly l2StandardBridge: {
|
|
145
|
+
readonly address: "0x4200000000000000000000000000000000000010";
|
|
146
|
+
};
|
|
147
|
+
readonly l2ToL1MessagePasser: {
|
|
148
|
+
readonly address: "0x4200000000000000000000000000000000000016";
|
|
169
149
|
};
|
|
170
150
|
};
|
|
171
|
-
blockTime?: number | undefined | undefined;
|
|
172
|
-
contracts?: {
|
|
173
|
-
[x: string]: viem.ChainContract | {
|
|
174
|
-
[sourceId: number]: viem.ChainContract | undefined;
|
|
175
|
-
} | undefined;
|
|
176
|
-
ensRegistry?: viem.ChainContract | undefined;
|
|
177
|
-
ensUniversalResolver?: viem.ChainContract | undefined;
|
|
178
|
-
multicall3?: viem.ChainContract | undefined;
|
|
179
|
-
erc6492Verifier?: viem.ChainContract | undefined;
|
|
180
|
-
} | undefined;
|
|
181
151
|
ensTlds?: readonly string[] | undefined;
|
|
182
|
-
id:
|
|
183
|
-
name: "
|
|
152
|
+
id: 8453;
|
|
153
|
+
name: "Base";
|
|
184
154
|
nativeCurrency: {
|
|
155
|
+
readonly name: "Ether";
|
|
156
|
+
readonly symbol: "ETH";
|
|
185
157
|
readonly decimals: 18;
|
|
186
|
-
readonly name: "BNB Token";
|
|
187
|
-
readonly symbol: "BNB";
|
|
188
158
|
};
|
|
189
159
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
190
160
|
rpcUrls: {
|
|
191
161
|
readonly default: {
|
|
192
|
-
readonly http: readonly ["https://
|
|
193
|
-
};
|
|
194
|
-
readonly public: {
|
|
195
|
-
readonly http: readonly ["https://brb-testnet-rpc-0.bk.sign.global/"];
|
|
162
|
+
readonly http: readonly ["https://mainnet.base.org"];
|
|
196
163
|
};
|
|
197
164
|
};
|
|
198
|
-
sourceId
|
|
199
|
-
testnet
|
|
165
|
+
sourceId: 1;
|
|
166
|
+
testnet?: boolean | undefined | undefined;
|
|
200
167
|
custom?: Record<string, unknown> | undefined;
|
|
201
168
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
202
|
-
formatters
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
nativeCurrency: {
|
|
236
|
-
decimals: number;
|
|
237
|
-
name: string;
|
|
238
|
-
symbol: string;
|
|
239
|
-
};
|
|
240
|
-
rpcUrls: {
|
|
241
|
-
public: {
|
|
242
|
-
http: ("https://fullnode.mainnet.sui.io:443" | "https://fullnode.testnet.sui.io:443" | "https://fullnode.devnet.sui.io:443" | "http://127.0.0.1:9000")[];
|
|
243
|
-
};
|
|
244
|
-
default: {
|
|
245
|
-
http: ("https://fullnode.mainnet.sui.io:443" | "https://fullnode.testnet.sui.io:443" | "https://fullnode.devnet.sui.io:443" | "http://127.0.0.1:9000")[];
|
|
246
|
-
};
|
|
247
|
-
};
|
|
248
|
-
blockExplorers: {
|
|
249
|
-
default: {
|
|
250
|
-
name: string;
|
|
251
|
-
url: string;
|
|
169
|
+
formatters: {
|
|
170
|
+
readonly block: {
|
|
171
|
+
exclude: [] | undefined;
|
|
172
|
+
format: (args: viem_chains.OpStackRpcBlock, action?: string | undefined) => {
|
|
173
|
+
baseFeePerGas: bigint | null;
|
|
174
|
+
blobGasUsed: bigint;
|
|
175
|
+
difficulty: bigint;
|
|
176
|
+
excessBlobGas: bigint;
|
|
177
|
+
extraData: viem.Hex;
|
|
178
|
+
gasLimit: bigint;
|
|
179
|
+
gasUsed: bigint;
|
|
180
|
+
hash: `0x${string}` | null;
|
|
181
|
+
logsBloom: `0x${string}` | null;
|
|
182
|
+
miner: viem.Address;
|
|
183
|
+
mixHash: viem.Hash;
|
|
184
|
+
nonce: `0x${string}` | null;
|
|
185
|
+
number: bigint | null;
|
|
186
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
187
|
+
parentHash: viem.Hash;
|
|
188
|
+
receiptsRoot: viem.Hex;
|
|
189
|
+
sealFields: viem.Hex[];
|
|
190
|
+
sha3Uncles: viem.Hash;
|
|
191
|
+
size: bigint;
|
|
192
|
+
stateRoot: viem.Hash;
|
|
193
|
+
timestamp: bigint;
|
|
194
|
+
totalDifficulty: bigint | null;
|
|
195
|
+
transactions: `0x${string}`[] | viem_chains.OpStackTransaction<boolean>[];
|
|
196
|
+
transactionsRoot: viem.Hash;
|
|
197
|
+
uncles: viem.Hash[];
|
|
198
|
+
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
199
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
200
|
+
} & {};
|
|
201
|
+
type: "block";
|
|
252
202
|
};
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
203
|
+
readonly transaction: {
|
|
204
|
+
exclude: [] | undefined;
|
|
205
|
+
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
206
|
+
blockHash: `0x${string}` | null;
|
|
207
|
+
blockNumber: bigint | null;
|
|
208
|
+
from: viem.Address;
|
|
209
|
+
gas: bigint;
|
|
210
|
+
hash: viem.Hash;
|
|
211
|
+
input: viem.Hex;
|
|
212
|
+
nonce: number;
|
|
213
|
+
r: viem.Hex;
|
|
214
|
+
s: viem.Hex;
|
|
215
|
+
to: viem.Address | null;
|
|
216
|
+
transactionIndex: number | null;
|
|
217
|
+
typeHex: viem.Hex | null;
|
|
218
|
+
v: bigint;
|
|
219
|
+
value: bigint;
|
|
220
|
+
yParity: number;
|
|
221
|
+
gasPrice?: undefined | undefined;
|
|
222
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
223
|
+
maxFeePerGas: bigint;
|
|
224
|
+
maxPriorityFeePerGas: bigint;
|
|
225
|
+
isSystemTx?: boolean;
|
|
226
|
+
mint?: bigint | undefined | undefined;
|
|
227
|
+
sourceHash: viem.Hex;
|
|
228
|
+
type: "deposit";
|
|
229
|
+
} | {
|
|
230
|
+
r: viem.Hex;
|
|
231
|
+
s: viem.Hex;
|
|
232
|
+
v: bigint;
|
|
233
|
+
value: bigint;
|
|
234
|
+
gas: bigint;
|
|
235
|
+
to: viem.Address | null;
|
|
236
|
+
from: viem.Address;
|
|
237
|
+
nonce: number;
|
|
238
|
+
blockHash: `0x${string}` | null;
|
|
239
|
+
blockNumber: bigint | null;
|
|
240
|
+
transactionIndex: number | null;
|
|
241
|
+
hash: viem.Hash;
|
|
242
|
+
input: viem.Hex;
|
|
243
|
+
typeHex: viem.Hex | null;
|
|
244
|
+
accessList?: undefined | undefined;
|
|
245
|
+
authorizationList?: undefined | undefined;
|
|
246
|
+
blobVersionedHashes?: undefined | undefined;
|
|
247
|
+
chainId?: number | undefined;
|
|
248
|
+
yParity?: undefined | undefined;
|
|
249
|
+
type: "legacy";
|
|
250
|
+
gasPrice: bigint;
|
|
251
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
252
|
+
maxFeePerGas?: undefined | undefined;
|
|
253
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
254
|
+
isSystemTx?: undefined | undefined;
|
|
255
|
+
mint?: undefined | undefined;
|
|
256
|
+
sourceHash?: undefined | undefined;
|
|
257
|
+
} | {
|
|
258
|
+
blockHash: `0x${string}` | null;
|
|
259
|
+
blockNumber: bigint | null;
|
|
260
|
+
from: viem.Address;
|
|
261
|
+
gas: bigint;
|
|
262
|
+
hash: viem.Hash;
|
|
263
|
+
input: viem.Hex;
|
|
264
|
+
nonce: number;
|
|
265
|
+
r: viem.Hex;
|
|
266
|
+
s: viem.Hex;
|
|
267
|
+
to: viem.Address | null;
|
|
268
|
+
transactionIndex: number | null;
|
|
269
|
+
typeHex: viem.Hex | null;
|
|
270
|
+
v: bigint;
|
|
271
|
+
value: bigint;
|
|
272
|
+
yParity: number;
|
|
273
|
+
accessList: viem.AccessList;
|
|
274
|
+
authorizationList?: undefined | undefined;
|
|
275
|
+
blobVersionedHashes?: undefined | undefined;
|
|
276
|
+
chainId: number;
|
|
277
|
+
type: "eip2930";
|
|
278
|
+
gasPrice: bigint;
|
|
279
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
280
|
+
maxFeePerGas?: undefined | undefined;
|
|
281
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
282
|
+
isSystemTx?: undefined | undefined;
|
|
283
|
+
mint?: undefined | undefined;
|
|
284
|
+
sourceHash?: undefined | undefined;
|
|
285
|
+
} | {
|
|
286
|
+
blockHash: `0x${string}` | null;
|
|
287
|
+
blockNumber: bigint | null;
|
|
288
|
+
from: viem.Address;
|
|
289
|
+
gas: bigint;
|
|
290
|
+
hash: viem.Hash;
|
|
291
|
+
input: viem.Hex;
|
|
292
|
+
nonce: number;
|
|
293
|
+
r: viem.Hex;
|
|
294
|
+
s: viem.Hex;
|
|
295
|
+
to: viem.Address | null;
|
|
296
|
+
transactionIndex: number | null;
|
|
297
|
+
typeHex: viem.Hex | null;
|
|
298
|
+
v: bigint;
|
|
299
|
+
value: bigint;
|
|
300
|
+
yParity: number;
|
|
301
|
+
accessList: viem.AccessList;
|
|
302
|
+
authorizationList?: undefined | undefined;
|
|
303
|
+
blobVersionedHashes?: undefined | undefined;
|
|
304
|
+
chainId: number;
|
|
305
|
+
type: "eip1559";
|
|
306
|
+
gasPrice?: undefined | undefined;
|
|
307
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
308
|
+
maxFeePerGas: bigint;
|
|
309
|
+
maxPriorityFeePerGas: bigint;
|
|
310
|
+
isSystemTx?: undefined | undefined;
|
|
311
|
+
mint?: undefined | undefined;
|
|
312
|
+
sourceHash?: undefined | undefined;
|
|
313
|
+
} | {
|
|
314
|
+
blockHash: `0x${string}` | null;
|
|
315
|
+
blockNumber: bigint | null;
|
|
316
|
+
from: viem.Address;
|
|
317
|
+
gas: bigint;
|
|
318
|
+
hash: viem.Hash;
|
|
319
|
+
input: viem.Hex;
|
|
320
|
+
nonce: number;
|
|
321
|
+
r: viem.Hex;
|
|
322
|
+
s: viem.Hex;
|
|
323
|
+
to: viem.Address | null;
|
|
324
|
+
transactionIndex: number | null;
|
|
325
|
+
typeHex: viem.Hex | null;
|
|
326
|
+
v: bigint;
|
|
327
|
+
value: bigint;
|
|
328
|
+
yParity: number;
|
|
329
|
+
accessList: viem.AccessList;
|
|
330
|
+
authorizationList?: undefined | undefined;
|
|
331
|
+
blobVersionedHashes: readonly viem.Hex[];
|
|
332
|
+
chainId: number;
|
|
333
|
+
type: "eip4844";
|
|
334
|
+
gasPrice?: undefined | undefined;
|
|
335
|
+
maxFeePerBlobGas: bigint;
|
|
336
|
+
maxFeePerGas: bigint;
|
|
337
|
+
maxPriorityFeePerGas: bigint;
|
|
338
|
+
isSystemTx?: undefined | undefined;
|
|
339
|
+
mint?: undefined | undefined;
|
|
340
|
+
sourceHash?: undefined | undefined;
|
|
341
|
+
} | {
|
|
342
|
+
blockHash: `0x${string}` | null;
|
|
343
|
+
blockNumber: bigint | null;
|
|
344
|
+
from: viem.Address;
|
|
345
|
+
gas: bigint;
|
|
346
|
+
hash: viem.Hash;
|
|
347
|
+
input: viem.Hex;
|
|
348
|
+
nonce: number;
|
|
349
|
+
r: viem.Hex;
|
|
350
|
+
s: viem.Hex;
|
|
351
|
+
to: viem.Address | null;
|
|
352
|
+
transactionIndex: number | null;
|
|
353
|
+
typeHex: viem.Hex | null;
|
|
354
|
+
v: bigint;
|
|
355
|
+
value: bigint;
|
|
356
|
+
yParity: number;
|
|
357
|
+
accessList: viem.AccessList;
|
|
358
|
+
authorizationList: viem.SignedAuthorizationList;
|
|
359
|
+
blobVersionedHashes?: undefined | undefined;
|
|
360
|
+
chainId: number;
|
|
361
|
+
type: "eip7702";
|
|
362
|
+
gasPrice?: undefined | undefined;
|
|
363
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
364
|
+
maxFeePerGas: bigint;
|
|
365
|
+
maxPriorityFeePerGas: bigint;
|
|
366
|
+
isSystemTx?: undefined | undefined;
|
|
367
|
+
mint?: undefined | undefined;
|
|
368
|
+
sourceHash?: undefined | undefined;
|
|
369
|
+
}) & {};
|
|
370
|
+
type: "transaction";
|
|
268
371
|
};
|
|
269
|
-
|
|
270
|
-
|
|
372
|
+
readonly transactionReceipt: {
|
|
373
|
+
exclude: [] | undefined;
|
|
374
|
+
format: (args: viem_chains.OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
375
|
+
blobGasPrice?: bigint | undefined;
|
|
376
|
+
blobGasUsed?: bigint | undefined;
|
|
377
|
+
blockHash: viem.Hash;
|
|
378
|
+
blockNumber: bigint;
|
|
379
|
+
contractAddress: viem.Address | null | undefined;
|
|
380
|
+
cumulativeGasUsed: bigint;
|
|
381
|
+
effectiveGasPrice: bigint;
|
|
382
|
+
from: viem.Address;
|
|
383
|
+
gasUsed: bigint;
|
|
384
|
+
logs: viem.Log<bigint, number, false>[];
|
|
385
|
+
logsBloom: viem.Hex;
|
|
386
|
+
root?: `0x${string}` | undefined;
|
|
387
|
+
status: "success" | "reverted";
|
|
388
|
+
to: viem.Address | null;
|
|
389
|
+
transactionHash: viem.Hash;
|
|
390
|
+
transactionIndex: number;
|
|
391
|
+
type: viem.TransactionType;
|
|
392
|
+
l1GasPrice: bigint | null;
|
|
393
|
+
l1GasUsed: bigint | null;
|
|
394
|
+
l1Fee: bigint | null;
|
|
395
|
+
l1FeeScalar: number | null;
|
|
396
|
+
} & {};
|
|
397
|
+
type: "transactionReceipt";
|
|
271
398
|
};
|
|
272
399
|
};
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
name: string;
|
|
276
|
-
url: string;
|
|
277
|
-
};
|
|
400
|
+
serializers: {
|
|
401
|
+
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
278
402
|
};
|
|
279
|
-
|
|
280
|
-
};
|
|
281
|
-
declare const hyperEVM: {
|
|
403
|
+
}, {
|
|
282
404
|
blockExplorers: {
|
|
283
405
|
readonly default: {
|
|
284
|
-
readonly name: "
|
|
285
|
-
readonly url: "https://
|
|
406
|
+
readonly name: "Blockscout";
|
|
407
|
+
readonly url: "https://cyberscan.co";
|
|
408
|
+
readonly apiUrl: "https://cyberscan.co/api";
|
|
286
409
|
};
|
|
287
410
|
};
|
|
288
411
|
blockTime?: number | undefined | undefined;
|
|
289
412
|
contracts: {
|
|
290
413
|
readonly multicall3: {
|
|
291
414
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
292
|
-
readonly blockCreated:
|
|
415
|
+
readonly blockCreated: 0;
|
|
293
416
|
};
|
|
294
417
|
};
|
|
295
418
|
ensTlds?: readonly string[] | undefined;
|
|
296
|
-
id:
|
|
297
|
-
name: "
|
|
419
|
+
id: 7560;
|
|
420
|
+
name: "Cyber";
|
|
298
421
|
nativeCurrency: {
|
|
299
|
-
readonly name: "
|
|
300
|
-
readonly symbol: "
|
|
422
|
+
readonly name: "Ether";
|
|
423
|
+
readonly symbol: "ETH";
|
|
301
424
|
readonly decimals: 18;
|
|
302
425
|
};
|
|
303
426
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
304
427
|
rpcUrls: {
|
|
305
428
|
readonly default: {
|
|
306
|
-
readonly http: readonly ["https://
|
|
429
|
+
readonly http: readonly ["https://cyber.alt.technology"];
|
|
307
430
|
};
|
|
308
431
|
};
|
|
309
432
|
sourceId?: number | undefined | undefined;
|
|
@@ -312,156 +435,67 @@ declare const hyperEVM: {
|
|
|
312
435
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
313
436
|
formatters?: undefined;
|
|
314
437
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
};
|
|
322
|
-
[solanaMainNet.id]: {
|
|
323
|
-
contractAddress: string;
|
|
324
|
-
rpcUrl: string;
|
|
325
|
-
};
|
|
326
|
-
[suiTestNet.id]: {
|
|
327
|
-
contractAddress: string;
|
|
328
|
-
rpcUrl: "https://fullnode.mainnet.sui.io:443" | "https://fullnode.testnet.sui.io:443" | "https://fullnode.devnet.sui.io:443" | "http://127.0.0.1:9000";
|
|
329
|
-
};
|
|
330
|
-
[suiMainNet.id]: {
|
|
331
|
-
contractAddress: string;
|
|
332
|
-
rpcUrl: "https://fullnode.mainnet.sui.io:443" | "https://fullnode.testnet.sui.io:443" | "https://fullnode.devnet.sui.io:443" | "http://127.0.0.1:9000";
|
|
333
|
-
};
|
|
334
|
-
[aptosTestNet.id]: {
|
|
335
|
-
contractAddress: string;
|
|
336
|
-
rpcUrl: string;
|
|
337
|
-
};
|
|
338
|
-
[aptosTestNet.id]: {
|
|
339
|
-
contractAddress: string;
|
|
340
|
-
rpcUrl: string;
|
|
341
|
-
};
|
|
342
|
-
1: {
|
|
343
|
-
contractAddress: string;
|
|
344
|
-
rpcUrl: string;
|
|
345
|
-
};
|
|
346
|
-
56: {
|
|
347
|
-
contractAddress: string;
|
|
348
|
-
rpcUrl: string;
|
|
349
|
-
};
|
|
350
|
-
8453: {
|
|
351
|
-
contractAddress: string;
|
|
352
|
-
rpcUrl: string;
|
|
353
|
-
};
|
|
354
|
-
7560: {
|
|
355
|
-
contractAddress: string;
|
|
356
|
-
rpcUrl: "https://cyber.alt.technology";
|
|
357
|
-
};
|
|
358
|
-
11155111: {
|
|
359
|
-
contractAddress: string;
|
|
360
|
-
rpcUrl: string;
|
|
361
|
-
};
|
|
362
|
-
84532: {
|
|
363
|
-
contractAddress: string;
|
|
364
|
-
rpcUrl: "https://sepolia.base.org";
|
|
365
|
-
};
|
|
366
|
-
7001: {
|
|
367
|
-
contractAddress: string;
|
|
368
|
-
rpcUrl: "https://zetachain-athens-evm.blockpi.network/v1/rpc/public";
|
|
369
|
-
};
|
|
370
|
-
7000: {
|
|
371
|
-
contractAddress: string;
|
|
372
|
-
rpcUrl: string;
|
|
373
|
-
};
|
|
374
|
-
42161: {
|
|
375
|
-
contractAddress: string;
|
|
376
|
-
rpcUrl: string;
|
|
377
|
-
};
|
|
378
|
-
999: {
|
|
379
|
-
contractAddress: string;
|
|
380
|
-
rpcUrl: "https://rpc.hyperliquid.xyz/evm";
|
|
381
|
-
};
|
|
382
|
-
6342: {
|
|
383
|
-
contractAddress: string;
|
|
384
|
-
rpcUrl: "https://carrot.megaeth.com/rpc";
|
|
385
|
-
};
|
|
386
|
-
80085: {
|
|
387
|
-
contractAddress: string;
|
|
388
|
-
rpcUrl: string;
|
|
389
|
-
availableSolutions: never[];
|
|
390
|
-
};
|
|
391
|
-
80001: {
|
|
392
|
-
contractAddress: string;
|
|
393
|
-
rpcUrl: string;
|
|
394
|
-
availableSolutions: never[];
|
|
395
|
-
};
|
|
396
|
-
80002: {
|
|
397
|
-
contractAddress: string;
|
|
398
|
-
rpcUrl: string;
|
|
399
|
-
availableSolutions: never[];
|
|
400
|
-
};
|
|
401
|
-
30732: {
|
|
402
|
-
contractAddress: string;
|
|
403
|
-
rpcUrl: "https://mevm.devnet.imola.movementlabs.xyz";
|
|
404
|
-
};
|
|
405
|
-
74460002: {
|
|
406
|
-
contractAddress: string;
|
|
407
|
-
rpcUrl: "https://brb-testnet-rpc-0.bk.sign.global/";
|
|
408
|
-
};
|
|
409
|
-
146: {
|
|
410
|
-
contractAddress: string;
|
|
411
|
-
rpcUrl: "https://rpc.soniclabs.com";
|
|
438
|
+
}, {
|
|
439
|
+
blockExplorers: {
|
|
440
|
+
readonly default: {
|
|
441
|
+
readonly name: "ZetaScan";
|
|
442
|
+
readonly url: "https://zetascan.com";
|
|
443
|
+
};
|
|
412
444
|
};
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
445
|
+
blockTime?: number | undefined | undefined;
|
|
446
|
+
contracts: {
|
|
447
|
+
readonly multicall3: {
|
|
448
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
449
|
+
readonly blockCreated: 1632781;
|
|
450
|
+
};
|
|
416
451
|
};
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
452
|
+
ensTlds?: readonly string[] | undefined;
|
|
453
|
+
id: 7000;
|
|
454
|
+
name: "ZetaChain";
|
|
455
|
+
nativeCurrency: {
|
|
456
|
+
readonly decimals: 18;
|
|
457
|
+
readonly name: "Zeta";
|
|
458
|
+
readonly symbol: "ZETA";
|
|
423
459
|
};
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
blockExplorer: string;
|
|
460
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
461
|
+
rpcUrls: {
|
|
462
|
+
readonly default: {
|
|
463
|
+
readonly http: readonly ["https://zetachain-evm.blockpi.network/v1/rpc/public"];
|
|
464
|
+
};
|
|
430
465
|
};
|
|
431
|
-
|
|
432
|
-
|
|
466
|
+
sourceId?: number | undefined | undefined;
|
|
467
|
+
testnet: false;
|
|
468
|
+
custom?: Record<string, unknown> | undefined;
|
|
469
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
470
|
+
formatters?: undefined;
|
|
471
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
472
|
+
}, {
|
|
433
473
|
blockExplorers: {
|
|
434
|
-
readonly etherscan: {
|
|
435
|
-
readonly name: "Arbiscan";
|
|
436
|
-
readonly url: "https://explorer.devnet.imola.movementlabs.xyz/";
|
|
437
|
-
};
|
|
438
474
|
readonly default: {
|
|
439
475
|
readonly name: "Arbiscan";
|
|
440
|
-
readonly url: "https://
|
|
476
|
+
readonly url: "https://arbiscan.io";
|
|
477
|
+
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
441
478
|
};
|
|
442
479
|
};
|
|
443
|
-
blockTime
|
|
480
|
+
blockTime: 250;
|
|
444
481
|
contracts: {
|
|
445
482
|
readonly multicall3: {
|
|
446
|
-
readonly address: "
|
|
447
|
-
readonly blockCreated:
|
|
483
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
484
|
+
readonly blockCreated: 7654707;
|
|
448
485
|
};
|
|
449
486
|
};
|
|
450
487
|
ensTlds?: readonly string[] | undefined;
|
|
451
|
-
id:
|
|
452
|
-
name: "
|
|
488
|
+
id: 42161;
|
|
489
|
+
name: "Arbitrum One";
|
|
453
490
|
nativeCurrency: {
|
|
454
|
-
readonly name: "
|
|
455
|
-
readonly symbol: "
|
|
491
|
+
readonly name: "Ether";
|
|
492
|
+
readonly symbol: "ETH";
|
|
456
493
|
readonly decimals: 18;
|
|
457
494
|
};
|
|
458
495
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
459
496
|
rpcUrls: {
|
|
460
497
|
readonly default: {
|
|
461
|
-
readonly http: readonly ["https://
|
|
462
|
-
};
|
|
463
|
-
readonly public: {
|
|
464
|
-
readonly http: readonly ["https://mevm.devnet.imola.movementlabs.xyz"];
|
|
498
|
+
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
465
499
|
};
|
|
466
500
|
};
|
|
467
501
|
sourceId?: number | undefined | undefined;
|
|
@@ -470,8 +504,68 @@ declare const SupportedChains: ({
|
|
|
470
504
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
471
505
|
formatters?: undefined;
|
|
472
506
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
473
|
-
|
|
474
|
-
|
|
507
|
+
}, {
|
|
508
|
+
blockExplorers: {
|
|
509
|
+
readonly default: {
|
|
510
|
+
readonly name: "Monvision";
|
|
511
|
+
readonly url: "https://mainnet-beta.monvision.io";
|
|
512
|
+
};
|
|
513
|
+
};
|
|
514
|
+
blockTime: 400;
|
|
515
|
+
contracts?: {
|
|
516
|
+
[x: string]: viem.ChainContract | {
|
|
517
|
+
[sourceId: number]: viem.ChainContract | undefined;
|
|
518
|
+
} | undefined;
|
|
519
|
+
ensRegistry?: viem.ChainContract | undefined;
|
|
520
|
+
ensUniversalResolver?: viem.ChainContract | undefined;
|
|
521
|
+
multicall3?: viem.ChainContract | undefined;
|
|
522
|
+
erc6492Verifier?: viem.ChainContract | undefined;
|
|
523
|
+
} | undefined;
|
|
524
|
+
ensTlds?: readonly string[] | undefined;
|
|
525
|
+
id: 143;
|
|
526
|
+
name: "Monad";
|
|
527
|
+
nativeCurrency: {
|
|
528
|
+
readonly name: "Monad";
|
|
529
|
+
readonly symbol: "MON";
|
|
530
|
+
readonly decimals: 18;
|
|
531
|
+
};
|
|
532
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
533
|
+
rpcUrls: {
|
|
534
|
+
readonly default: {
|
|
535
|
+
readonly http: readonly ["https://rpc.monad.xyz"];
|
|
536
|
+
};
|
|
537
|
+
};
|
|
538
|
+
sourceId?: number | undefined | undefined;
|
|
539
|
+
testnet: false;
|
|
540
|
+
custom?: Record<string, unknown> | undefined;
|
|
541
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
542
|
+
formatters?: undefined;
|
|
543
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
544
|
+
}, {
|
|
545
|
+
id: CHAIN;
|
|
546
|
+
name: string;
|
|
547
|
+
network: string;
|
|
548
|
+
nativeCurrency: {
|
|
549
|
+
decimals: number;
|
|
550
|
+
name: string;
|
|
551
|
+
symbol: string;
|
|
552
|
+
};
|
|
553
|
+
rpcUrls: {
|
|
554
|
+
public: {
|
|
555
|
+
http: never[];
|
|
556
|
+
};
|
|
557
|
+
default: {
|
|
558
|
+
http: never[];
|
|
559
|
+
};
|
|
560
|
+
};
|
|
561
|
+
blockExplorers: {
|
|
562
|
+
default: {
|
|
563
|
+
name: string;
|
|
564
|
+
url: string;
|
|
565
|
+
};
|
|
566
|
+
};
|
|
567
|
+
testnet: boolean;
|
|
568
|
+
}, {
|
|
475
569
|
id: CHAIN;
|
|
476
570
|
name: string;
|
|
477
571
|
network: string;
|
|
@@ -494,7 +588,7 @@ declare const SupportedChains: ({
|
|
|
494
588
|
url: string;
|
|
495
589
|
};
|
|
496
590
|
};
|
|
497
|
-
}
|
|
591
|
+
}, {
|
|
498
592
|
blockExplorers: {
|
|
499
593
|
readonly default: {
|
|
500
594
|
readonly name: "Sign Brb Testnet Explorer";
|
|
@@ -535,448 +629,101 @@ declare const SupportedChains: ({
|
|
|
535
629
|
formatters?: undefined;
|
|
536
630
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
537
631
|
readonly network: "Sign Brb Testnet";
|
|
538
|
-
}
|
|
539
|
-
blockExplorers: {
|
|
540
|
-
readonly default: {
|
|
541
|
-
readonly name: "HyperEVMScan";
|
|
542
|
-
readonly url: "https://hyperevmscan.io/";
|
|
543
|
-
};
|
|
544
|
-
};
|
|
545
|
-
blockTime?: number | undefined | undefined;
|
|
546
|
-
contracts: {
|
|
547
|
-
readonly multicall3: {
|
|
548
|
-
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
549
|
-
readonly blockCreated: 13051;
|
|
550
|
-
};
|
|
551
|
-
};
|
|
552
|
-
ensTlds?: readonly string[] | undefined;
|
|
553
|
-
id: 999;
|
|
554
|
-
name: "HyperEVM";
|
|
555
|
-
nativeCurrency: {
|
|
556
|
-
readonly name: "HYPE";
|
|
557
|
-
readonly symbol: "HYPE";
|
|
558
|
-
readonly decimals: 18;
|
|
559
|
-
};
|
|
560
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
561
|
-
rpcUrls: {
|
|
562
|
-
readonly default: {
|
|
563
|
-
readonly http: readonly ["https://rpc.hyperliquid.xyz/evm"];
|
|
564
|
-
};
|
|
565
|
-
};
|
|
566
|
-
sourceId?: number | undefined | undefined;
|
|
567
|
-
testnet?: boolean | undefined | undefined;
|
|
568
|
-
custom?: Record<string, unknown> | undefined;
|
|
569
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
570
|
-
formatters?: undefined;
|
|
571
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
572
|
-
} | {
|
|
573
|
-
blockExplorers: {
|
|
574
|
-
readonly default: {
|
|
575
|
-
readonly name: "Etherscan";
|
|
576
|
-
readonly url: "https://etherscan.io";
|
|
577
|
-
readonly apiUrl: "https://api.etherscan.io/api";
|
|
578
|
-
};
|
|
579
|
-
};
|
|
580
|
-
blockTime: 12000;
|
|
581
|
-
contracts: {
|
|
582
|
-
readonly ensUniversalResolver: {
|
|
583
|
-
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
584
|
-
readonly blockCreated: 23085558;
|
|
585
|
-
};
|
|
586
|
-
readonly multicall3: {
|
|
587
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
588
|
-
readonly blockCreated: 14353601;
|
|
589
|
-
};
|
|
590
|
-
};
|
|
591
|
-
ensTlds?: readonly string[] | undefined;
|
|
592
|
-
id: 1;
|
|
593
|
-
name: "Ethereum";
|
|
594
|
-
nativeCurrency: {
|
|
595
|
-
readonly name: "Ether";
|
|
596
|
-
readonly symbol: "ETH";
|
|
597
|
-
readonly decimals: 18;
|
|
598
|
-
};
|
|
599
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
600
|
-
rpcUrls: {
|
|
601
|
-
readonly default: {
|
|
602
|
-
readonly http: readonly ["https://eth.merkle.io"];
|
|
603
|
-
};
|
|
604
|
-
};
|
|
605
|
-
sourceId?: number | undefined | undefined;
|
|
606
|
-
testnet?: boolean | undefined | undefined;
|
|
607
|
-
custom?: Record<string, unknown> | undefined;
|
|
608
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
609
|
-
formatters?: undefined;
|
|
610
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
611
|
-
} | {
|
|
632
|
+
}, {
|
|
612
633
|
blockExplorers: {
|
|
613
634
|
readonly default: {
|
|
614
|
-
readonly name: "
|
|
615
|
-
readonly url: "https://
|
|
616
|
-
readonly apiUrl: "https://api.bscscan.com/api";
|
|
635
|
+
readonly name: "Sonic Explorer";
|
|
636
|
+
readonly url: "https://sonicscan.org";
|
|
617
637
|
};
|
|
618
638
|
};
|
|
619
|
-
blockTime:
|
|
639
|
+
blockTime: 630;
|
|
620
640
|
contracts: {
|
|
621
641
|
readonly multicall3: {
|
|
622
642
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
623
|
-
readonly blockCreated:
|
|
643
|
+
readonly blockCreated: 60;
|
|
624
644
|
};
|
|
625
645
|
};
|
|
626
646
|
ensTlds?: readonly string[] | undefined;
|
|
627
|
-
id:
|
|
628
|
-
name: "
|
|
647
|
+
id: 146;
|
|
648
|
+
name: "Sonic";
|
|
629
649
|
nativeCurrency: {
|
|
630
650
|
readonly decimals: 18;
|
|
631
|
-
readonly name: "
|
|
632
|
-
readonly symbol: "
|
|
651
|
+
readonly name: "Sonic";
|
|
652
|
+
readonly symbol: "S";
|
|
633
653
|
};
|
|
634
654
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
635
655
|
rpcUrls: {
|
|
636
656
|
readonly default: {
|
|
637
|
-
readonly http: readonly ["https://
|
|
657
|
+
readonly http: readonly ["https://rpc.soniclabs.com"];
|
|
638
658
|
};
|
|
639
659
|
};
|
|
640
660
|
sourceId?: number | undefined | undefined;
|
|
641
|
-
testnet
|
|
661
|
+
testnet: false;
|
|
642
662
|
custom?: Record<string, unknown> | undefined;
|
|
643
663
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
644
664
|
formatters?: undefined;
|
|
645
665
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
646
|
-
}
|
|
666
|
+
}, {
|
|
647
667
|
blockExplorers: {
|
|
648
668
|
readonly default: {
|
|
649
|
-
readonly name: "
|
|
650
|
-
readonly url: "https://
|
|
651
|
-
readonly apiUrl: "https://
|
|
669
|
+
readonly name: "OKLink";
|
|
670
|
+
readonly url: "https://www.oklink.com/xlayer";
|
|
671
|
+
readonly apiUrl: "https://www.oklink.com/api/v5/explorer/xlayer/api";
|
|
652
672
|
};
|
|
653
673
|
};
|
|
654
|
-
blockTime
|
|
674
|
+
blockTime?: number | undefined | undefined;
|
|
655
675
|
contracts: {
|
|
656
|
-
readonly disputeGameFactory: {
|
|
657
|
-
readonly 1: {
|
|
658
|
-
readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
|
|
659
|
-
};
|
|
660
|
-
};
|
|
661
|
-
readonly l2OutputOracle: {
|
|
662
|
-
readonly 1: {
|
|
663
|
-
readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
|
|
664
|
-
};
|
|
665
|
-
};
|
|
666
676
|
readonly multicall3: {
|
|
667
|
-
readonly address: "
|
|
668
|
-
readonly blockCreated:
|
|
669
|
-
};
|
|
670
|
-
readonly portal: {
|
|
671
|
-
readonly 1: {
|
|
672
|
-
readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
|
|
673
|
-
readonly blockCreated: 17482143;
|
|
674
|
-
};
|
|
675
|
-
};
|
|
676
|
-
readonly l1StandardBridge: {
|
|
677
|
-
readonly 1: {
|
|
678
|
-
readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
|
|
679
|
-
readonly blockCreated: 17482143;
|
|
680
|
-
};
|
|
681
|
-
};
|
|
682
|
-
readonly gasPriceOracle: {
|
|
683
|
-
readonly address: "0x420000000000000000000000000000000000000F";
|
|
684
|
-
};
|
|
685
|
-
readonly l1Block: {
|
|
686
|
-
readonly address: "0x4200000000000000000000000000000000000015";
|
|
687
|
-
};
|
|
688
|
-
readonly l2CrossDomainMessenger: {
|
|
689
|
-
readonly address: "0x4200000000000000000000000000000000000007";
|
|
690
|
-
};
|
|
691
|
-
readonly l2Erc721Bridge: {
|
|
692
|
-
readonly address: "0x4200000000000000000000000000000000000014";
|
|
693
|
-
};
|
|
694
|
-
readonly l2StandardBridge: {
|
|
695
|
-
readonly address: "0x4200000000000000000000000000000000000010";
|
|
696
|
-
};
|
|
697
|
-
readonly l2ToL1MessagePasser: {
|
|
698
|
-
readonly address: "0x4200000000000000000000000000000000000016";
|
|
677
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
678
|
+
readonly blockCreated: 47416;
|
|
699
679
|
};
|
|
700
680
|
};
|
|
701
681
|
ensTlds?: readonly string[] | undefined;
|
|
702
|
-
id:
|
|
703
|
-
name: "
|
|
704
|
-
nativeCurrency: {
|
|
705
|
-
readonly name: "Ether";
|
|
706
|
-
readonly symbol: "ETH";
|
|
682
|
+
id: 196;
|
|
683
|
+
name: "X Layer Mainnet";
|
|
684
|
+
nativeCurrency: {
|
|
707
685
|
readonly decimals: 18;
|
|
686
|
+
readonly name: "OKB";
|
|
687
|
+
readonly symbol: "OKB";
|
|
708
688
|
};
|
|
709
689
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
710
690
|
rpcUrls: {
|
|
711
691
|
readonly default: {
|
|
712
|
-
readonly http: readonly ["https://
|
|
692
|
+
readonly http: readonly ["https://rpc.xlayer.tech"];
|
|
713
693
|
};
|
|
714
694
|
};
|
|
715
|
-
sourceId
|
|
695
|
+
sourceId?: number | undefined | undefined;
|
|
716
696
|
testnet?: boolean | undefined | undefined;
|
|
717
697
|
custom?: Record<string, unknown> | undefined;
|
|
718
698
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
719
|
-
formatters
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
format: (args: viem_chains.OpStackRpcBlock, action?: string | undefined) => {
|
|
723
|
-
baseFeePerGas: bigint | null;
|
|
724
|
-
blobGasUsed: bigint;
|
|
725
|
-
difficulty: bigint;
|
|
726
|
-
excessBlobGas: bigint;
|
|
727
|
-
extraData: viem.Hex;
|
|
728
|
-
gasLimit: bigint;
|
|
729
|
-
gasUsed: bigint;
|
|
730
|
-
hash: `0x${string}` | null;
|
|
731
|
-
logsBloom: `0x${string}` | null;
|
|
732
|
-
miner: viem.Address;
|
|
733
|
-
mixHash: viem.Hash;
|
|
734
|
-
nonce: `0x${string}` | null;
|
|
735
|
-
number: bigint | null;
|
|
736
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
737
|
-
parentHash: viem.Hash;
|
|
738
|
-
receiptsRoot: viem.Hex;
|
|
739
|
-
sealFields: viem.Hex[];
|
|
740
|
-
sha3Uncles: viem.Hash;
|
|
741
|
-
size: bigint;
|
|
742
|
-
stateRoot: viem.Hash;
|
|
743
|
-
timestamp: bigint;
|
|
744
|
-
totalDifficulty: bigint | null;
|
|
745
|
-
transactions: `0x${string}`[] | viem_chains.OpStackTransaction<boolean>[];
|
|
746
|
-
transactionsRoot: viem.Hash;
|
|
747
|
-
uncles: viem.Hash[];
|
|
748
|
-
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
749
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
750
|
-
} & {};
|
|
751
|
-
type: "block";
|
|
752
|
-
};
|
|
753
|
-
readonly transaction: {
|
|
754
|
-
exclude: [] | undefined;
|
|
755
|
-
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
756
|
-
blockHash: `0x${string}` | null;
|
|
757
|
-
blockNumber: bigint | null;
|
|
758
|
-
from: viem.Address;
|
|
759
|
-
gas: bigint;
|
|
760
|
-
hash: viem.Hash;
|
|
761
|
-
input: viem.Hex;
|
|
762
|
-
nonce: number;
|
|
763
|
-
r: viem.Hex;
|
|
764
|
-
s: viem.Hex;
|
|
765
|
-
to: viem.Address | null;
|
|
766
|
-
transactionIndex: number | null;
|
|
767
|
-
typeHex: viem.Hex | null;
|
|
768
|
-
v: bigint;
|
|
769
|
-
value: bigint;
|
|
770
|
-
yParity: number;
|
|
771
|
-
gasPrice?: undefined | undefined;
|
|
772
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
773
|
-
maxFeePerGas: bigint;
|
|
774
|
-
maxPriorityFeePerGas: bigint;
|
|
775
|
-
isSystemTx?: boolean;
|
|
776
|
-
mint?: bigint | undefined | undefined;
|
|
777
|
-
sourceHash: viem.Hex;
|
|
778
|
-
type: "deposit";
|
|
779
|
-
} | {
|
|
780
|
-
r: viem.Hex;
|
|
781
|
-
s: viem.Hex;
|
|
782
|
-
v: bigint;
|
|
783
|
-
value: bigint;
|
|
784
|
-
gas: bigint;
|
|
785
|
-
to: viem.Address | null;
|
|
786
|
-
from: viem.Address;
|
|
787
|
-
nonce: number;
|
|
788
|
-
blockHash: `0x${string}` | null;
|
|
789
|
-
blockNumber: bigint | null;
|
|
790
|
-
transactionIndex: number | null;
|
|
791
|
-
hash: viem.Hash;
|
|
792
|
-
input: viem.Hex;
|
|
793
|
-
typeHex: viem.Hex | null;
|
|
794
|
-
accessList?: undefined | undefined;
|
|
795
|
-
authorizationList?: undefined | undefined;
|
|
796
|
-
blobVersionedHashes?: undefined | undefined;
|
|
797
|
-
chainId?: number | undefined;
|
|
798
|
-
yParity?: undefined | undefined;
|
|
799
|
-
type: "legacy";
|
|
800
|
-
gasPrice: bigint;
|
|
801
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
802
|
-
maxFeePerGas?: undefined | undefined;
|
|
803
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
804
|
-
isSystemTx?: undefined | undefined;
|
|
805
|
-
mint?: undefined | undefined;
|
|
806
|
-
sourceHash?: undefined | undefined;
|
|
807
|
-
} | {
|
|
808
|
-
blockHash: `0x${string}` | null;
|
|
809
|
-
blockNumber: bigint | null;
|
|
810
|
-
from: viem.Address;
|
|
811
|
-
gas: bigint;
|
|
812
|
-
hash: viem.Hash;
|
|
813
|
-
input: viem.Hex;
|
|
814
|
-
nonce: number;
|
|
815
|
-
r: viem.Hex;
|
|
816
|
-
s: viem.Hex;
|
|
817
|
-
to: viem.Address | null;
|
|
818
|
-
transactionIndex: number | null;
|
|
819
|
-
typeHex: viem.Hex | null;
|
|
820
|
-
v: bigint;
|
|
821
|
-
value: bigint;
|
|
822
|
-
yParity: number;
|
|
823
|
-
accessList: viem.AccessList;
|
|
824
|
-
authorizationList?: undefined | undefined;
|
|
825
|
-
blobVersionedHashes?: undefined | undefined;
|
|
826
|
-
chainId: number;
|
|
827
|
-
type: "eip2930";
|
|
828
|
-
gasPrice: bigint;
|
|
829
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
830
|
-
maxFeePerGas?: undefined | undefined;
|
|
831
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
832
|
-
isSystemTx?: undefined | undefined;
|
|
833
|
-
mint?: undefined | undefined;
|
|
834
|
-
sourceHash?: undefined | undefined;
|
|
835
|
-
} | {
|
|
836
|
-
blockHash: `0x${string}` | null;
|
|
837
|
-
blockNumber: bigint | null;
|
|
838
|
-
from: viem.Address;
|
|
839
|
-
gas: bigint;
|
|
840
|
-
hash: viem.Hash;
|
|
841
|
-
input: viem.Hex;
|
|
842
|
-
nonce: number;
|
|
843
|
-
r: viem.Hex;
|
|
844
|
-
s: viem.Hex;
|
|
845
|
-
to: viem.Address | null;
|
|
846
|
-
transactionIndex: number | null;
|
|
847
|
-
typeHex: viem.Hex | null;
|
|
848
|
-
v: bigint;
|
|
849
|
-
value: bigint;
|
|
850
|
-
yParity: number;
|
|
851
|
-
accessList: viem.AccessList;
|
|
852
|
-
authorizationList?: undefined | undefined;
|
|
853
|
-
blobVersionedHashes?: undefined | undefined;
|
|
854
|
-
chainId: number;
|
|
855
|
-
type: "eip1559";
|
|
856
|
-
gasPrice?: undefined | undefined;
|
|
857
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
858
|
-
maxFeePerGas: bigint;
|
|
859
|
-
maxPriorityFeePerGas: bigint;
|
|
860
|
-
isSystemTx?: undefined | undefined;
|
|
861
|
-
mint?: undefined | undefined;
|
|
862
|
-
sourceHash?: undefined | undefined;
|
|
863
|
-
} | {
|
|
864
|
-
blockHash: `0x${string}` | null;
|
|
865
|
-
blockNumber: bigint | null;
|
|
866
|
-
from: viem.Address;
|
|
867
|
-
gas: bigint;
|
|
868
|
-
hash: viem.Hash;
|
|
869
|
-
input: viem.Hex;
|
|
870
|
-
nonce: number;
|
|
871
|
-
r: viem.Hex;
|
|
872
|
-
s: viem.Hex;
|
|
873
|
-
to: viem.Address | null;
|
|
874
|
-
transactionIndex: number | null;
|
|
875
|
-
typeHex: viem.Hex | null;
|
|
876
|
-
v: bigint;
|
|
877
|
-
value: bigint;
|
|
878
|
-
yParity: number;
|
|
879
|
-
accessList: viem.AccessList;
|
|
880
|
-
authorizationList?: undefined | undefined;
|
|
881
|
-
blobVersionedHashes: readonly viem.Hex[];
|
|
882
|
-
chainId: number;
|
|
883
|
-
type: "eip4844";
|
|
884
|
-
gasPrice?: undefined | undefined;
|
|
885
|
-
maxFeePerBlobGas: bigint;
|
|
886
|
-
maxFeePerGas: bigint;
|
|
887
|
-
maxPriorityFeePerGas: bigint;
|
|
888
|
-
isSystemTx?: undefined | undefined;
|
|
889
|
-
mint?: undefined | undefined;
|
|
890
|
-
sourceHash?: undefined | undefined;
|
|
891
|
-
} | {
|
|
892
|
-
blockHash: `0x${string}` | null;
|
|
893
|
-
blockNumber: bigint | null;
|
|
894
|
-
from: viem.Address;
|
|
895
|
-
gas: bigint;
|
|
896
|
-
hash: viem.Hash;
|
|
897
|
-
input: viem.Hex;
|
|
898
|
-
nonce: number;
|
|
899
|
-
r: viem.Hex;
|
|
900
|
-
s: viem.Hex;
|
|
901
|
-
to: viem.Address | null;
|
|
902
|
-
transactionIndex: number | null;
|
|
903
|
-
typeHex: viem.Hex | null;
|
|
904
|
-
v: bigint;
|
|
905
|
-
value: bigint;
|
|
906
|
-
yParity: number;
|
|
907
|
-
accessList: viem.AccessList;
|
|
908
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
909
|
-
blobVersionedHashes?: undefined | undefined;
|
|
910
|
-
chainId: number;
|
|
911
|
-
type: "eip7702";
|
|
912
|
-
gasPrice?: undefined | undefined;
|
|
913
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
914
|
-
maxFeePerGas: bigint;
|
|
915
|
-
maxPriorityFeePerGas: bigint;
|
|
916
|
-
isSystemTx?: undefined | undefined;
|
|
917
|
-
mint?: undefined | undefined;
|
|
918
|
-
sourceHash?: undefined | undefined;
|
|
919
|
-
}) & {};
|
|
920
|
-
type: "transaction";
|
|
921
|
-
};
|
|
922
|
-
readonly transactionReceipt: {
|
|
923
|
-
exclude: [] | undefined;
|
|
924
|
-
format: (args: viem_chains.OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
925
|
-
blobGasPrice?: bigint | undefined;
|
|
926
|
-
blobGasUsed?: bigint | undefined;
|
|
927
|
-
blockHash: viem.Hash;
|
|
928
|
-
blockNumber: bigint;
|
|
929
|
-
contractAddress: viem.Address | null | undefined;
|
|
930
|
-
cumulativeGasUsed: bigint;
|
|
931
|
-
effectiveGasPrice: bigint;
|
|
932
|
-
from: viem.Address;
|
|
933
|
-
gasUsed: bigint;
|
|
934
|
-
logs: viem.Log<bigint, number, false>[];
|
|
935
|
-
logsBloom: viem.Hex;
|
|
936
|
-
root?: `0x${string}` | undefined;
|
|
937
|
-
status: "success" | "reverted";
|
|
938
|
-
to: viem.Address | null;
|
|
939
|
-
transactionHash: viem.Hash;
|
|
940
|
-
transactionIndex: number;
|
|
941
|
-
type: viem.TransactionType;
|
|
942
|
-
l1GasPrice: bigint | null;
|
|
943
|
-
l1GasUsed: bigint | null;
|
|
944
|
-
l1Fee: bigint | null;
|
|
945
|
-
l1FeeScalar: number | null;
|
|
946
|
-
} & {};
|
|
947
|
-
type: "transactionReceipt";
|
|
948
|
-
};
|
|
949
|
-
};
|
|
950
|
-
serializers: {
|
|
951
|
-
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
952
|
-
};
|
|
953
|
-
} | {
|
|
699
|
+
formatters?: undefined;
|
|
700
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
701
|
+
}, {
|
|
954
702
|
blockExplorers: {
|
|
955
703
|
readonly default: {
|
|
956
|
-
readonly name: "
|
|
957
|
-
readonly url: "https://
|
|
958
|
-
readonly apiUrl: "https://cyberscan.co/api";
|
|
704
|
+
readonly name: "HyperEVMScan";
|
|
705
|
+
readonly url: "https://hyperevmscan.io/";
|
|
959
706
|
};
|
|
960
707
|
};
|
|
961
708
|
blockTime?: number | undefined | undefined;
|
|
962
709
|
contracts: {
|
|
963
710
|
readonly multicall3: {
|
|
964
711
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
965
|
-
readonly blockCreated:
|
|
712
|
+
readonly blockCreated: 13051;
|
|
966
713
|
};
|
|
967
714
|
};
|
|
968
715
|
ensTlds?: readonly string[] | undefined;
|
|
969
|
-
id:
|
|
970
|
-
name: "
|
|
716
|
+
id: 999;
|
|
717
|
+
name: "HyperEVM";
|
|
971
718
|
nativeCurrency: {
|
|
972
|
-
readonly name: "
|
|
973
|
-
readonly symbol: "
|
|
719
|
+
readonly name: "HYPE";
|
|
720
|
+
readonly symbol: "HYPE";
|
|
974
721
|
readonly decimals: 18;
|
|
975
722
|
};
|
|
976
723
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
977
724
|
rpcUrls: {
|
|
978
725
|
readonly default: {
|
|
979
|
-
readonly http: readonly ["https://
|
|
726
|
+
readonly http: readonly ["https://rpc.hyperliquid.xyz/evm"];
|
|
980
727
|
};
|
|
981
728
|
};
|
|
982
729
|
sourceId?: number | undefined | undefined;
|
|
@@ -985,7 +732,7 @@ declare const SupportedChains: ({
|
|
|
985
732
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
986
733
|
formatters?: undefined;
|
|
987
734
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
988
|
-
}
|
|
735
|
+
}, {
|
|
989
736
|
blockExplorers: {
|
|
990
737
|
readonly default: {
|
|
991
738
|
readonly name: "Etherscan";
|
|
@@ -1015,7 +762,7 @@ declare const SupportedChains: ({
|
|
|
1015
762
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1016
763
|
rpcUrls: {
|
|
1017
764
|
readonly default: {
|
|
1018
|
-
readonly http: readonly ["https://
|
|
765
|
+
readonly http: readonly ["https://11155111.rpc.thirdweb.com"];
|
|
1019
766
|
};
|
|
1020
767
|
};
|
|
1021
768
|
sourceId?: number | undefined | undefined;
|
|
@@ -1024,7 +771,7 @@ declare const SupportedChains: ({
|
|
|
1024
771
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1025
772
|
formatters?: undefined;
|
|
1026
773
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1027
|
-
}
|
|
774
|
+
}, {
|
|
1028
775
|
blockExplorers: {
|
|
1029
776
|
readonly default: {
|
|
1030
777
|
readonly name: "Basescan";
|
|
@@ -1332,7 +1079,7 @@ declare const SupportedChains: ({
|
|
|
1332
1079
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
1333
1080
|
};
|
|
1334
1081
|
readonly network: "base-sepolia";
|
|
1335
|
-
}
|
|
1082
|
+
}, {
|
|
1336
1083
|
blockExplorers: {
|
|
1337
1084
|
readonly default: {
|
|
1338
1085
|
readonly name: "ZetaScan";
|
|
@@ -1366,67 +1113,143 @@ declare const SupportedChains: ({
|
|
|
1366
1113
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1367
1114
|
formatters?: undefined;
|
|
1368
1115
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1369
|
-
}
|
|
1116
|
+
}, {
|
|
1370
1117
|
blockExplorers: {
|
|
1371
1118
|
readonly default: {
|
|
1372
|
-
readonly name: "
|
|
1373
|
-
readonly url: "https://
|
|
1119
|
+
readonly name: "Berachain";
|
|
1120
|
+
readonly url: "https://artio.beratrail.io";
|
|
1374
1121
|
};
|
|
1375
1122
|
};
|
|
1376
1123
|
blockTime?: number | undefined | undefined;
|
|
1377
1124
|
contracts: {
|
|
1378
1125
|
readonly multicall3: {
|
|
1379
1126
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1380
|
-
readonly blockCreated:
|
|
1127
|
+
readonly blockCreated: 866924;
|
|
1381
1128
|
};
|
|
1382
1129
|
};
|
|
1383
1130
|
ensTlds?: readonly string[] | undefined;
|
|
1384
|
-
id:
|
|
1385
|
-
name: "
|
|
1131
|
+
id: 80085;
|
|
1132
|
+
name: "Berachain Artio";
|
|
1386
1133
|
nativeCurrency: {
|
|
1387
1134
|
readonly decimals: 18;
|
|
1388
|
-
readonly name: "
|
|
1389
|
-
readonly symbol: "
|
|
1135
|
+
readonly name: "BERA Token";
|
|
1136
|
+
readonly symbol: "BERA";
|
|
1390
1137
|
};
|
|
1391
1138
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1392
1139
|
rpcUrls: {
|
|
1393
1140
|
readonly default: {
|
|
1394
|
-
readonly http: readonly ["https://
|
|
1141
|
+
readonly http: readonly ["https://artio.rpc.berachain.com"];
|
|
1395
1142
|
};
|
|
1396
1143
|
};
|
|
1397
1144
|
sourceId?: number | undefined | undefined;
|
|
1398
|
-
testnet:
|
|
1145
|
+
testnet: true;
|
|
1399
1146
|
custom?: Record<string, unknown> | undefined;
|
|
1400
1147
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1401
1148
|
formatters?: undefined;
|
|
1402
1149
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1403
|
-
}
|
|
1150
|
+
}, {
|
|
1404
1151
|
blockExplorers: {
|
|
1405
1152
|
readonly default: {
|
|
1406
|
-
readonly name: "
|
|
1407
|
-
readonly url: "https://
|
|
1408
|
-
readonly apiUrl: "https://api.
|
|
1153
|
+
readonly name: "PolygonScan";
|
|
1154
|
+
readonly url: "https://mumbai.polygonscan.com";
|
|
1155
|
+
readonly apiUrl: "https://api-testnet.polygonscan.com/api";
|
|
1409
1156
|
};
|
|
1410
1157
|
};
|
|
1411
|
-
blockTime
|
|
1158
|
+
blockTime?: number | undefined | undefined;
|
|
1412
1159
|
contracts: {
|
|
1413
1160
|
readonly multicall3: {
|
|
1414
1161
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1415
|
-
readonly blockCreated:
|
|
1162
|
+
readonly blockCreated: 25770160;
|
|
1416
1163
|
};
|
|
1417
1164
|
};
|
|
1418
1165
|
ensTlds?: readonly string[] | undefined;
|
|
1419
|
-
id:
|
|
1420
|
-
name: "
|
|
1166
|
+
id: 80001;
|
|
1167
|
+
name: "Polygon Mumbai";
|
|
1421
1168
|
nativeCurrency: {
|
|
1422
|
-
readonly name: "
|
|
1423
|
-
readonly symbol: "
|
|
1169
|
+
readonly name: "MATIC";
|
|
1170
|
+
readonly symbol: "MATIC";
|
|
1424
1171
|
readonly decimals: 18;
|
|
1425
1172
|
};
|
|
1426
1173
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1427
1174
|
rpcUrls: {
|
|
1428
1175
|
readonly default: {
|
|
1429
|
-
readonly http: readonly ["https://
|
|
1176
|
+
readonly http: readonly ["https://80001.rpc.thirdweb.com"];
|
|
1177
|
+
};
|
|
1178
|
+
};
|
|
1179
|
+
sourceId?: number | undefined | undefined;
|
|
1180
|
+
testnet: true;
|
|
1181
|
+
custom?: Record<string, unknown> | undefined;
|
|
1182
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
1183
|
+
formatters?: undefined;
|
|
1184
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1185
|
+
}, {
|
|
1186
|
+
blockExplorers: {
|
|
1187
|
+
readonly default: {
|
|
1188
|
+
readonly name: "PolygonScan";
|
|
1189
|
+
readonly url: "https://amoy.polygonscan.com";
|
|
1190
|
+
readonly apiUrl: "https://api-amoy.polygonscan.com/api";
|
|
1191
|
+
};
|
|
1192
|
+
};
|
|
1193
|
+
blockTime?: number | undefined | undefined;
|
|
1194
|
+
contracts: {
|
|
1195
|
+
readonly multicall3: {
|
|
1196
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1197
|
+
readonly blockCreated: 3127388;
|
|
1198
|
+
};
|
|
1199
|
+
};
|
|
1200
|
+
ensTlds?: readonly string[] | undefined;
|
|
1201
|
+
id: 80002;
|
|
1202
|
+
name: "Polygon Amoy";
|
|
1203
|
+
nativeCurrency: {
|
|
1204
|
+
readonly name: "POL";
|
|
1205
|
+
readonly symbol: "POL";
|
|
1206
|
+
readonly decimals: 18;
|
|
1207
|
+
};
|
|
1208
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1209
|
+
rpcUrls: {
|
|
1210
|
+
readonly default: {
|
|
1211
|
+
readonly http: readonly ["https://rpc-amoy.polygon.technology"];
|
|
1212
|
+
};
|
|
1213
|
+
};
|
|
1214
|
+
sourceId?: number | undefined | undefined;
|
|
1215
|
+
testnet: true;
|
|
1216
|
+
custom?: Record<string, unknown> | undefined;
|
|
1217
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
1218
|
+
formatters?: undefined;
|
|
1219
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1220
|
+
}, {
|
|
1221
|
+
blockExplorers: {
|
|
1222
|
+
readonly etherscan: {
|
|
1223
|
+
readonly name: "Arbiscan";
|
|
1224
|
+
readonly url: "https://explorer.devnet.imola.movementlabs.xyz/";
|
|
1225
|
+
};
|
|
1226
|
+
readonly default: {
|
|
1227
|
+
readonly name: "Arbiscan";
|
|
1228
|
+
readonly url: "https://explorer.devnet.imola.movementlabs.xyz/";
|
|
1229
|
+
};
|
|
1230
|
+
};
|
|
1231
|
+
blockTime?: number | undefined | undefined;
|
|
1232
|
+
contracts: {
|
|
1233
|
+
readonly multicall3: {
|
|
1234
|
+
readonly address: "0xD67Eca381AAbd0c049554f5714E7d8C21864c560";
|
|
1235
|
+
readonly blockCreated: 500;
|
|
1236
|
+
};
|
|
1237
|
+
};
|
|
1238
|
+
ensTlds?: readonly string[] | undefined;
|
|
1239
|
+
id: 30732;
|
|
1240
|
+
name: "Movement M1 Devnet";
|
|
1241
|
+
nativeCurrency: {
|
|
1242
|
+
readonly name: "Move";
|
|
1243
|
+
readonly symbol: "MOVE";
|
|
1244
|
+
readonly decimals: 18;
|
|
1245
|
+
};
|
|
1246
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1247
|
+
rpcUrls: {
|
|
1248
|
+
readonly default: {
|
|
1249
|
+
readonly http: readonly ["https://mevm.devnet.imola.movementlabs.xyz"];
|
|
1250
|
+
};
|
|
1251
|
+
readonly public: {
|
|
1252
|
+
readonly http: readonly ["https://mevm.devnet.imola.movementlabs.xyz"];
|
|
1430
1253
|
};
|
|
1431
1254
|
};
|
|
1432
1255
|
sourceId?: number | undefined | undefined;
|
|
@@ -1435,101 +1258,257 @@ declare const SupportedChains: ({
|
|
|
1435
1258
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1436
1259
|
formatters?: undefined;
|
|
1437
1260
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1438
|
-
|
|
1261
|
+
readonly network: "mevm";
|
|
1262
|
+
}, {
|
|
1439
1263
|
blockExplorers: {
|
|
1440
1264
|
readonly default: {
|
|
1441
1265
|
readonly name: "MegaETH Testnet Explorer";
|
|
1442
1266
|
readonly url: "https://www.megaexplorer.xyz/";
|
|
1443
1267
|
};
|
|
1444
1268
|
};
|
|
1445
|
-
blockTime: 1000;
|
|
1446
|
-
contracts: {
|
|
1447
|
-
readonly multicall3: {
|
|
1448
|
-
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1269
|
+
blockTime: 1000;
|
|
1270
|
+
contracts: {
|
|
1271
|
+
readonly multicall3: {
|
|
1272
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1273
|
+
};
|
|
1274
|
+
};
|
|
1275
|
+
ensTlds?: readonly string[] | undefined;
|
|
1276
|
+
id: 6342;
|
|
1277
|
+
name: "MegaETH Testnet";
|
|
1278
|
+
nativeCurrency: {
|
|
1279
|
+
readonly name: "MegaETH Testnet Ether";
|
|
1280
|
+
readonly symbol: "ETH";
|
|
1281
|
+
readonly decimals: 18;
|
|
1282
|
+
};
|
|
1283
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1284
|
+
rpcUrls: {
|
|
1285
|
+
readonly default: {
|
|
1286
|
+
readonly http: readonly ["https://carrot.megaeth.com/rpc"];
|
|
1287
|
+
readonly webSocket: readonly ["wss://carrot.megaeth.com/ws"];
|
|
1288
|
+
};
|
|
1289
|
+
};
|
|
1290
|
+
sourceId?: number | undefined | undefined;
|
|
1291
|
+
testnet: true;
|
|
1292
|
+
custom?: Record<string, unknown> | undefined;
|
|
1293
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
1294
|
+
formatters?: undefined;
|
|
1295
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1296
|
+
}, {
|
|
1297
|
+
blockExplorers: {
|
|
1298
|
+
readonly default: {
|
|
1299
|
+
readonly name: "Monad Testnet explorer";
|
|
1300
|
+
readonly url: "https://testnet.monadexplorer.com";
|
|
1301
|
+
};
|
|
1302
|
+
};
|
|
1303
|
+
blockTime: 400;
|
|
1304
|
+
contracts: {
|
|
1305
|
+
readonly multicall3: {
|
|
1306
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1307
|
+
readonly blockCreated: 251449;
|
|
1308
|
+
};
|
|
1309
|
+
};
|
|
1310
|
+
ensTlds?: readonly string[] | undefined;
|
|
1311
|
+
id: 10143;
|
|
1312
|
+
name: "Monad Testnet";
|
|
1313
|
+
nativeCurrency: {
|
|
1314
|
+
readonly name: "Testnet MON Token";
|
|
1315
|
+
readonly symbol: "MON";
|
|
1316
|
+
readonly decimals: 18;
|
|
1317
|
+
};
|
|
1318
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1319
|
+
rpcUrls: {
|
|
1320
|
+
readonly default: {
|
|
1321
|
+
readonly http: readonly ["https://testnet-rpc.monad.xyz"];
|
|
1322
|
+
};
|
|
1323
|
+
};
|
|
1324
|
+
sourceId?: number | undefined | undefined;
|
|
1325
|
+
testnet: true;
|
|
1326
|
+
custom?: Record<string, unknown> | undefined;
|
|
1327
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
1328
|
+
formatters?: undefined;
|
|
1329
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1330
|
+
}];
|
|
1331
|
+
type SupportedChainIds = (typeof SupportedChains)[number]['id'];
|
|
1332
|
+
type ChainConfigItem = {
|
|
1333
|
+
contractAddress: string;
|
|
1334
|
+
rpcUrl: string;
|
|
1335
|
+
} & Record<string, unknown>;
|
|
1336
|
+
declare const ChainConfig: Record<SupportedChainIds, ChainConfigItem>;
|
|
1337
|
+
|
|
1338
|
+
declare const mevmDevNet: {
|
|
1339
|
+
blockExplorers: {
|
|
1340
|
+
readonly etherscan: {
|
|
1341
|
+
readonly name: "Arbiscan";
|
|
1342
|
+
readonly url: "https://explorer.devnet.imola.movementlabs.xyz/";
|
|
1343
|
+
};
|
|
1344
|
+
readonly default: {
|
|
1345
|
+
readonly name: "Arbiscan";
|
|
1346
|
+
readonly url: "https://explorer.devnet.imola.movementlabs.xyz/";
|
|
1347
|
+
};
|
|
1348
|
+
};
|
|
1349
|
+
blockTime?: number | undefined | undefined;
|
|
1350
|
+
contracts: {
|
|
1351
|
+
readonly multicall3: {
|
|
1352
|
+
readonly address: "0xD67Eca381AAbd0c049554f5714E7d8C21864c560";
|
|
1353
|
+
readonly blockCreated: 500;
|
|
1354
|
+
};
|
|
1355
|
+
};
|
|
1356
|
+
ensTlds?: readonly string[] | undefined;
|
|
1357
|
+
id: 30732;
|
|
1358
|
+
name: "Movement M1 Devnet";
|
|
1359
|
+
nativeCurrency: {
|
|
1360
|
+
readonly name: "Move";
|
|
1361
|
+
readonly symbol: "MOVE";
|
|
1362
|
+
readonly decimals: 18;
|
|
1363
|
+
};
|
|
1364
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1365
|
+
rpcUrls: {
|
|
1366
|
+
readonly default: {
|
|
1367
|
+
readonly http: readonly ["https://mevm.devnet.imola.movementlabs.xyz"];
|
|
1368
|
+
};
|
|
1369
|
+
readonly public: {
|
|
1370
|
+
readonly http: readonly ["https://mevm.devnet.imola.movementlabs.xyz"];
|
|
1371
|
+
};
|
|
1372
|
+
};
|
|
1373
|
+
sourceId?: number | undefined | undefined;
|
|
1374
|
+
testnet?: boolean | undefined | undefined;
|
|
1375
|
+
custom?: Record<string, unknown> | undefined;
|
|
1376
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
1377
|
+
formatters?: undefined;
|
|
1378
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1379
|
+
readonly network: "mevm";
|
|
1380
|
+
};
|
|
1381
|
+
declare const tonTestNet: {
|
|
1382
|
+
id: CHAIN;
|
|
1383
|
+
name: string;
|
|
1384
|
+
network: string;
|
|
1385
|
+
nativeCurrency: {
|
|
1386
|
+
decimals: number;
|
|
1387
|
+
name: string;
|
|
1388
|
+
symbol: string;
|
|
1389
|
+
};
|
|
1390
|
+
rpcUrls: {
|
|
1391
|
+
public: {
|
|
1392
|
+
http: never[];
|
|
1393
|
+
};
|
|
1394
|
+
default: {
|
|
1395
|
+
http: never[];
|
|
1396
|
+
};
|
|
1397
|
+
};
|
|
1398
|
+
blockExplorers: {
|
|
1399
|
+
default: {
|
|
1400
|
+
name: string;
|
|
1401
|
+
url: string;
|
|
1402
|
+
};
|
|
1403
|
+
};
|
|
1404
|
+
testnet: boolean;
|
|
1405
|
+
};
|
|
1406
|
+
declare const tonMainNet: {
|
|
1407
|
+
id: CHAIN;
|
|
1408
|
+
name: string;
|
|
1409
|
+
network: string;
|
|
1410
|
+
nativeCurrency: {
|
|
1411
|
+
decimals: number;
|
|
1412
|
+
name: string;
|
|
1413
|
+
symbol: string;
|
|
1414
|
+
};
|
|
1415
|
+
rpcUrls: {
|
|
1416
|
+
public: {
|
|
1417
|
+
http: never[];
|
|
1418
|
+
};
|
|
1419
|
+
default: {
|
|
1420
|
+
http: never[];
|
|
1421
|
+
};
|
|
1422
|
+
};
|
|
1423
|
+
blockExplorers: {
|
|
1424
|
+
default: {
|
|
1425
|
+
name: string;
|
|
1426
|
+
url: string;
|
|
1449
1427
|
};
|
|
1450
1428
|
};
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1429
|
+
};
|
|
1430
|
+
declare const solanaDevNet: {
|
|
1431
|
+
id: string;
|
|
1432
|
+
name: string;
|
|
1433
|
+
network: string;
|
|
1454
1434
|
nativeCurrency: {
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1435
|
+
decimals: number;
|
|
1436
|
+
name: string;
|
|
1437
|
+
symbol: string;
|
|
1458
1438
|
};
|
|
1459
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1460
1439
|
rpcUrls: {
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
readonly webSocket: readonly ["wss://carrot.megaeth.com/ws"];
|
|
1440
|
+
public: {
|
|
1441
|
+
http: string[];
|
|
1464
1442
|
};
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
testnet: true;
|
|
1468
|
-
custom?: Record<string, unknown> | undefined;
|
|
1469
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1470
|
-
formatters?: undefined;
|
|
1471
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1472
|
-
} | {
|
|
1473
|
-
blockExplorers: {
|
|
1474
|
-
readonly default: {
|
|
1475
|
-
readonly name: "Berachain";
|
|
1476
|
-
readonly url: "https://artio.beratrail.io";
|
|
1443
|
+
default: {
|
|
1444
|
+
http: string[];
|
|
1477
1445
|
};
|
|
1478
1446
|
};
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
readonly blockCreated: 866924;
|
|
1447
|
+
blockExplorers: {
|
|
1448
|
+
default: {
|
|
1449
|
+
name: string;
|
|
1450
|
+
url: string;
|
|
1484
1451
|
};
|
|
1485
1452
|
};
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1453
|
+
testnet: boolean;
|
|
1454
|
+
};
|
|
1455
|
+
declare const solanaMainNet: {
|
|
1456
|
+
id: string;
|
|
1457
|
+
name: string;
|
|
1458
|
+
network: string;
|
|
1489
1459
|
nativeCurrency: {
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1460
|
+
decimals: number;
|
|
1461
|
+
name: string;
|
|
1462
|
+
symbol: string;
|
|
1493
1463
|
};
|
|
1494
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1495
1464
|
rpcUrls: {
|
|
1496
|
-
|
|
1497
|
-
|
|
1465
|
+
public: {
|
|
1466
|
+
http: string[];
|
|
1467
|
+
};
|
|
1468
|
+
default: {
|
|
1469
|
+
http: string[];
|
|
1498
1470
|
};
|
|
1499
1471
|
};
|
|
1500
|
-
sourceId?: number | undefined | undefined;
|
|
1501
|
-
testnet: true;
|
|
1502
|
-
custom?: Record<string, unknown> | undefined;
|
|
1503
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1504
|
-
formatters?: undefined;
|
|
1505
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1506
|
-
} | {
|
|
1507
1472
|
blockExplorers: {
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
readonly apiUrl: "https://api-testnet.polygonscan.com/api";
|
|
1473
|
+
default: {
|
|
1474
|
+
name: string;
|
|
1475
|
+
url: string;
|
|
1512
1476
|
};
|
|
1513
1477
|
};
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1478
|
+
testnet: boolean;
|
|
1479
|
+
};
|
|
1480
|
+
declare const signBrBTestnet: {
|
|
1481
|
+
blockExplorers: {
|
|
1482
|
+
readonly default: {
|
|
1483
|
+
readonly name: "Sign Brb Testnet Explorer";
|
|
1484
|
+
readonly url: "https://explorer-testnet.bk.sign.global/";
|
|
1519
1485
|
};
|
|
1520
1486
|
};
|
|
1487
|
+
blockTime?: number | undefined | undefined;
|
|
1488
|
+
contracts?: {
|
|
1489
|
+
[x: string]: viem.ChainContract | {
|
|
1490
|
+
[sourceId: number]: viem.ChainContract | undefined;
|
|
1491
|
+
} | undefined;
|
|
1492
|
+
ensRegistry?: viem.ChainContract | undefined;
|
|
1493
|
+
ensUniversalResolver?: viem.ChainContract | undefined;
|
|
1494
|
+
multicall3?: viem.ChainContract | undefined;
|
|
1495
|
+
erc6492Verifier?: viem.ChainContract | undefined;
|
|
1496
|
+
} | undefined;
|
|
1521
1497
|
ensTlds?: readonly string[] | undefined;
|
|
1522
|
-
id:
|
|
1523
|
-
name: "
|
|
1498
|
+
id: 74460002;
|
|
1499
|
+
name: "Sign Brb Testnet";
|
|
1524
1500
|
nativeCurrency: {
|
|
1525
|
-
readonly name: "MATIC";
|
|
1526
|
-
readonly symbol: "MATIC";
|
|
1527
1501
|
readonly decimals: 18;
|
|
1502
|
+
readonly name: "BNB Token";
|
|
1503
|
+
readonly symbol: "BNB";
|
|
1528
1504
|
};
|
|
1529
1505
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1530
1506
|
rpcUrls: {
|
|
1531
1507
|
readonly default: {
|
|
1532
|
-
readonly http: readonly ["https://
|
|
1508
|
+
readonly http: readonly ["https://brb-testnet-rpc-0.bk.sign.global/"];
|
|
1509
|
+
};
|
|
1510
|
+
readonly public: {
|
|
1511
|
+
readonly http: readonly ["https://brb-testnet-rpc-0.bk.sign.global/"];
|
|
1533
1512
|
};
|
|
1534
1513
|
};
|
|
1535
1514
|
sourceId?: number | undefined | undefined;
|
|
@@ -1538,102 +1517,109 @@ declare const SupportedChains: ({
|
|
|
1538
1517
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1539
1518
|
formatters?: undefined;
|
|
1540
1519
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1520
|
+
readonly network: "Sign Brb Testnet";
|
|
1521
|
+
};
|
|
1522
|
+
declare const suiTestNet: {
|
|
1523
|
+
id: string;
|
|
1524
|
+
name: string;
|
|
1525
|
+
network: string;
|
|
1526
|
+
nativeCurrency: {
|
|
1527
|
+
decimals: number;
|
|
1528
|
+
name: string;
|
|
1529
|
+
symbol: string;
|
|
1530
|
+
};
|
|
1531
|
+
rpcUrls: {
|
|
1532
|
+
public: {
|
|
1533
|
+
http: ("https://fullnode.mainnet.sui.io:443" | "https://fullnode.testnet.sui.io:443" | "https://fullnode.devnet.sui.io:443" | "http://127.0.0.1:9000")[];
|
|
1534
|
+
};
|
|
1535
|
+
default: {
|
|
1536
|
+
http: ("https://fullnode.mainnet.sui.io:443" | "https://fullnode.testnet.sui.io:443" | "https://fullnode.devnet.sui.io:443" | "http://127.0.0.1:9000")[];
|
|
1547
1537
|
};
|
|
1548
1538
|
};
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
readonly blockCreated: 3127388;
|
|
1539
|
+
blockExplorers: {
|
|
1540
|
+
default: {
|
|
1541
|
+
name: string;
|
|
1542
|
+
url: string;
|
|
1554
1543
|
};
|
|
1555
1544
|
};
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1545
|
+
testnet: boolean;
|
|
1546
|
+
};
|
|
1547
|
+
declare const suiMainNet: {
|
|
1548
|
+
id: string;
|
|
1549
|
+
name: string;
|
|
1550
|
+
network: string;
|
|
1559
1551
|
nativeCurrency: {
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1552
|
+
decimals: number;
|
|
1553
|
+
name: string;
|
|
1554
|
+
symbol: string;
|
|
1563
1555
|
};
|
|
1564
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1565
1556
|
rpcUrls: {
|
|
1566
|
-
|
|
1567
|
-
|
|
1557
|
+
public: {
|
|
1558
|
+
http: ("https://fullnode.mainnet.sui.io:443" | "https://fullnode.testnet.sui.io:443" | "https://fullnode.devnet.sui.io:443" | "http://127.0.0.1:9000")[];
|
|
1568
1559
|
};
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
testnet: true;
|
|
1572
|
-
custom?: Record<string, unknown> | undefined;
|
|
1573
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1574
|
-
formatters?: undefined;
|
|
1575
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1576
|
-
} | {
|
|
1577
|
-
blockExplorers: {
|
|
1578
|
-
readonly default: {
|
|
1579
|
-
readonly name: "Sonic Explorer";
|
|
1580
|
-
readonly url: "https://sonicscan.org";
|
|
1560
|
+
default: {
|
|
1561
|
+
http: ("https://fullnode.mainnet.sui.io:443" | "https://fullnode.testnet.sui.io:443" | "https://fullnode.devnet.sui.io:443" | "http://127.0.0.1:9000")[];
|
|
1581
1562
|
};
|
|
1582
1563
|
};
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
readonly blockCreated: 60;
|
|
1564
|
+
blockExplorers: {
|
|
1565
|
+
default: {
|
|
1566
|
+
name: string;
|
|
1567
|
+
url: string;
|
|
1588
1568
|
};
|
|
1589
1569
|
};
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1570
|
+
testnet: boolean;
|
|
1571
|
+
};
|
|
1572
|
+
declare const aptosTestNet: {
|
|
1573
|
+
id: number;
|
|
1574
|
+
name: string;
|
|
1575
|
+
network: string;
|
|
1593
1576
|
nativeCurrency: {
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1577
|
+
decimals: number;
|
|
1578
|
+
name: string;
|
|
1579
|
+
symbol: string;
|
|
1597
1580
|
};
|
|
1598
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1599
1581
|
rpcUrls: {
|
|
1600
|
-
|
|
1601
|
-
|
|
1582
|
+
public: {
|
|
1583
|
+
http: string[];
|
|
1584
|
+
};
|
|
1585
|
+
default: {
|
|
1586
|
+
http: string[];
|
|
1602
1587
|
};
|
|
1603
1588
|
};
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1589
|
+
blockExplorers: {
|
|
1590
|
+
default: {
|
|
1591
|
+
name: string;
|
|
1592
|
+
url: string;
|
|
1593
|
+
};
|
|
1594
|
+
};
|
|
1595
|
+
testnet: boolean;
|
|
1596
|
+
};
|
|
1597
|
+
declare const hyperEVM: {
|
|
1611
1598
|
blockExplorers: {
|
|
1612
1599
|
readonly default: {
|
|
1613
|
-
readonly name: "
|
|
1614
|
-
readonly url: "https://
|
|
1615
|
-
readonly apiUrl: "https://www.oklink.com/api/v5/explorer/xlayer/api";
|
|
1600
|
+
readonly name: "HyperEVMScan";
|
|
1601
|
+
readonly url: "https://hyperevmscan.io/";
|
|
1616
1602
|
};
|
|
1617
1603
|
};
|
|
1618
1604
|
blockTime?: number | undefined | undefined;
|
|
1619
1605
|
contracts: {
|
|
1620
1606
|
readonly multicall3: {
|
|
1621
1607
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1622
|
-
readonly blockCreated:
|
|
1608
|
+
readonly blockCreated: 13051;
|
|
1623
1609
|
};
|
|
1624
1610
|
};
|
|
1625
1611
|
ensTlds?: readonly string[] | undefined;
|
|
1626
|
-
id:
|
|
1627
|
-
name: "
|
|
1612
|
+
id: 999;
|
|
1613
|
+
name: "HyperEVM";
|
|
1628
1614
|
nativeCurrency: {
|
|
1615
|
+
readonly name: "HYPE";
|
|
1616
|
+
readonly symbol: "HYPE";
|
|
1629
1617
|
readonly decimals: 18;
|
|
1630
|
-
readonly name: "OKB";
|
|
1631
|
-
readonly symbol: "OKB";
|
|
1632
1618
|
};
|
|
1633
1619
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1634
1620
|
rpcUrls: {
|
|
1635
1621
|
readonly default: {
|
|
1636
|
-
readonly http: readonly ["https://rpc.
|
|
1622
|
+
readonly http: readonly ["https://rpc.hyperliquid.xyz/evm"];
|
|
1637
1623
|
};
|
|
1638
1624
|
};
|
|
1639
1625
|
sourceId?: number | undefined | undefined;
|
|
@@ -1642,7 +1628,7 @@ declare const SupportedChains: ({
|
|
|
1642
1628
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1643
1629
|
formatters?: undefined;
|
|
1644
1630
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1645
|
-
}
|
|
1631
|
+
};
|
|
1646
1632
|
|
|
1647
1633
|
declare const ZERO_ADDRESS = "0x0000000000000000000000000000000000000000";
|
|
1648
1634
|
declare const CONST: {
|
|
@@ -2275,25 +2261,7 @@ declare function getChainById(chainId: ChainId): SupportedChainType;
|
|
|
2275
2261
|
declare function getChainConfig(chainId: ChainId): {
|
|
2276
2262
|
contractAddress: string;
|
|
2277
2263
|
rpcUrl: string;
|
|
2278
|
-
|
|
2279
|
-
name?: undefined;
|
|
2280
|
-
tonApiPrefix?: undefined;
|
|
2281
|
-
blockExplorer?: undefined;
|
|
2282
|
-
} | {
|
|
2283
|
-
contractAddress: string;
|
|
2284
|
-
rpcUrl: string;
|
|
2285
|
-
availableSolutions: never[];
|
|
2286
|
-
name?: undefined;
|
|
2287
|
-
tonApiPrefix?: undefined;
|
|
2288
|
-
blockExplorer?: undefined;
|
|
2289
|
-
} | {
|
|
2290
|
-
name: string;
|
|
2291
|
-
contractAddress: string;
|
|
2292
|
-
rpcUrl: string;
|
|
2293
|
-
tonApiPrefix: string;
|
|
2294
|
-
blockExplorer: string;
|
|
2295
|
-
availableSolutions?: undefined;
|
|
2296
|
-
};
|
|
2264
|
+
} & Record<string, unknown>;
|
|
2297
2265
|
declare function getChainRpc(chainId: ChainId): string;
|
|
2298
2266
|
declare const getTonProjectIdByAddress: ({ address, slug, data }: {
|
|
2299
2267
|
address?: string;
|
|
@@ -2488,4 +2456,4 @@ declare const getAvailableClaimAmountForSignature: ({ contractAddress, chainId,
|
|
|
2488
2456
|
}[];
|
|
2489
2457
|
}) => Promise<string | 0>;
|
|
2490
2458
|
|
|
2491
|
-
export { AirdropSigIdentityTypeEnum, ApiClient, type ApiClientOptions, type ApiRequestOptions, AirdropService as AptosAirdropService, type AptosWalletClient, CONST, ChainConfig, type ChainId, ChainType, ETokenType, ErrorCode, AirdropService$3 as EvmAirdropService, EvmAirdropVersionEnum, type EvmContractClientOption, SignatureAirdropService$2 as EvmSignatureAirdropService, type FetchTokenMetadataOptions, type FetchTokenVersionOptions, type IAirdropClaim, type IAirdropClaimData, type IAirdropData, type IAirdropOptions, type IAirdropService, type IAirdropSignatureClaim, type IAirdropSignatureData, type IAirdropSignatureIdentity, type IClaimSignature, type IContractConfig, type IExtraData, type IProject, type IProjectExtra, type ISignatureClaimData, type IWalletClient, type Identity, AirdropService$2 as SolanaAirdropService, SignatureAirdropService$1 as SolanaSignatureAirdropService, SplTokenVersion, SignatureAirdropService as SuiSignatureAirdropService, type SupportedChainType, SupportedChains, type ThemeConfig, AirdropService$1 as TonAirdropService, TonAirdropVersionEnum, TonWalletService, ZERO_ADDRESS, apiClient, aptosTestNet, batchCheckClaimedForSignature, bindWallet, checkEligibility, checkGetSignatures, cleanUrlParams, clusterApiUrl, connectDiscordApi, connectGoogleApi, connectTwitter, delay, disconnectRecipient, fetchTokenVersion, flipAddressType, getAirdropContractConfig, getAirdropPro, getAirdropProject, getAirdropProjectId, getAirdropQuery, getAvailableClaimAmountForSignature, getChainById, getChainConfig, getChainRpc, getCustomNaNoId, getJettonInfo, getOrCreateAssociatedTokenAccount, getTonProjectIdByAddress, hexStrToU8Array, hyperEVM, isBeforeByUnix, isGreaterThan, isMobile, mevmDevNet, retry, safeParseJSON, safePlus, signBrBTestnet, solanaDevNet, solanaMainNet, suiMainNet, suiTestNet, tonMainNet, tonTestNet };
|
|
2459
|
+
export { AirdropSigIdentityTypeEnum, ApiClient, type ApiClientOptions, type ApiRequestOptions, AirdropService as AptosAirdropService, type AptosWalletClient, CONST, ChainConfig, type ChainId, ChainType, ETokenType, ErrorCode, AirdropService$3 as EvmAirdropService, EvmAirdropVersionEnum, type EvmContractClientOption, SignatureAirdropService$2 as EvmSignatureAirdropService, type FetchTokenMetadataOptions, type FetchTokenVersionOptions, type IAirdropClaim, type IAirdropClaimData, type IAirdropData, type IAirdropOptions, type IAirdropService, type IAirdropSignatureClaim, type IAirdropSignatureData, type IAirdropSignatureIdentity, type IClaimSignature, type IContractConfig, type IExtraData, type IProject, type IProjectExtra, type ISignatureClaimData, type IWalletClient, type Identity, AirdropService$2 as SolanaAirdropService, SignatureAirdropService$1 as SolanaSignatureAirdropService, SplTokenVersion, SignatureAirdropService as SuiSignatureAirdropService, type SupportedChainIds, type SupportedChainType, SupportedChains, type ThemeConfig, AirdropService$1 as TonAirdropService, TonAirdropVersionEnum, TonWalletService, ZERO_ADDRESS, apiClient, aptosTestNet, batchCheckClaimedForSignature, bindWallet, checkEligibility, checkGetSignatures, cleanUrlParams, clusterApiUrl, connectDiscordApi, connectGoogleApi, connectTwitter, delay, disconnectRecipient, fetchTokenVersion, flipAddressType, getAirdropContractConfig, getAirdropPro, getAirdropProject, getAirdropProjectId, getAirdropQuery, getAvailableClaimAmountForSignature, getChainById, getChainConfig, getChainRpc, getCustomNaNoId, getJettonInfo, getOrCreateAssociatedTokenAccount, getTonProjectIdByAddress, hexStrToU8Array, hyperEVM, isBeforeByUnix, isGreaterThan, isMobile, mevmDevNet, retry, safeParseJSON, safePlus, signBrBTestnet, solanaDevNet, solanaMainNet, suiMainNet, suiTestNet, tonMainNet, tonTestNet };
|