@sign-global/tokentable-core 1.12.0 → 1.14.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 +12 -0
- package/dist/index.d.mts +933 -882
- package/dist/index.d.ts +933 -882
- package/dist/index.js +55 -27
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +60 -28
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/constants/chain-config.ts +54 -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,408 +58,444 @@ 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")[];
|
|
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";
|
|
243
202
|
};
|
|
244
|
-
|
|
245
|
-
|
|
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";
|
|
371
|
+
};
|
|
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";
|
|
246
398
|
};
|
|
247
399
|
};
|
|
400
|
+
serializers: {
|
|
401
|
+
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
402
|
+
};
|
|
403
|
+
}, {
|
|
248
404
|
blockExplorers: {
|
|
249
|
-
default: {
|
|
250
|
-
name:
|
|
251
|
-
url:
|
|
405
|
+
readonly default: {
|
|
406
|
+
readonly name: "Blockscout";
|
|
407
|
+
readonly url: "https://cyberscan.co";
|
|
408
|
+
readonly apiUrl: "https://cyberscan.co/api";
|
|
252
409
|
};
|
|
253
410
|
};
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
411
|
+
blockTime?: number | undefined | undefined;
|
|
412
|
+
contracts: {
|
|
413
|
+
readonly multicall3: {
|
|
414
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
415
|
+
readonly blockCreated: 0;
|
|
416
|
+
};
|
|
417
|
+
};
|
|
418
|
+
ensTlds?: readonly string[] | undefined;
|
|
419
|
+
id: 7560;
|
|
420
|
+
name: "Cyber";
|
|
260
421
|
nativeCurrency: {
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
422
|
+
readonly name: "Ether";
|
|
423
|
+
readonly symbol: "ETH";
|
|
424
|
+
readonly decimals: 18;
|
|
264
425
|
};
|
|
426
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
265
427
|
rpcUrls: {
|
|
266
|
-
|
|
267
|
-
http:
|
|
268
|
-
};
|
|
269
|
-
default: {
|
|
270
|
-
http: string[];
|
|
271
|
-
};
|
|
272
|
-
};
|
|
273
|
-
blockExplorers: {
|
|
274
|
-
default: {
|
|
275
|
-
name: string;
|
|
276
|
-
url: string;
|
|
428
|
+
readonly default: {
|
|
429
|
+
readonly http: readonly ["https://cyber.alt.technology"];
|
|
277
430
|
};
|
|
278
431
|
};
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
432
|
+
sourceId?: number | undefined | undefined;
|
|
433
|
+
testnet?: boolean | undefined | undefined;
|
|
434
|
+
custom?: Record<string, unknown> | undefined;
|
|
435
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
436
|
+
formatters?: undefined;
|
|
437
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
438
|
+
}, {
|
|
282
439
|
blockExplorers: {
|
|
283
440
|
readonly default: {
|
|
284
|
-
readonly name: "
|
|
285
|
-
readonly url: "https://
|
|
441
|
+
readonly name: "ZetaScan";
|
|
442
|
+
readonly url: "https://zetascan.com";
|
|
286
443
|
};
|
|
287
444
|
};
|
|
288
445
|
blockTime?: number | undefined | undefined;
|
|
289
446
|
contracts: {
|
|
290
447
|
readonly multicall3: {
|
|
291
448
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
292
|
-
readonly blockCreated:
|
|
449
|
+
readonly blockCreated: 1632781;
|
|
293
450
|
};
|
|
294
451
|
};
|
|
295
452
|
ensTlds?: readonly string[] | undefined;
|
|
296
|
-
id:
|
|
297
|
-
name: "
|
|
453
|
+
id: 7000;
|
|
454
|
+
name: "ZetaChain";
|
|
298
455
|
nativeCurrency: {
|
|
299
|
-
readonly name: "HYPE";
|
|
300
|
-
readonly symbol: "HYPE";
|
|
301
456
|
readonly decimals: 18;
|
|
457
|
+
readonly name: "Zeta";
|
|
458
|
+
readonly symbol: "ZETA";
|
|
302
459
|
};
|
|
303
460
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
304
461
|
rpcUrls: {
|
|
305
462
|
readonly default: {
|
|
306
|
-
readonly http: readonly ["https://
|
|
463
|
+
readonly http: readonly ["https://zetachain-evm.blockpi.network/v1/rpc/public"];
|
|
307
464
|
};
|
|
308
465
|
};
|
|
309
466
|
sourceId?: number | undefined | undefined;
|
|
310
|
-
testnet
|
|
467
|
+
testnet: false;
|
|
311
468
|
custom?: Record<string, unknown> | undefined;
|
|
312
469
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
313
470
|
formatters?: undefined;
|
|
314
471
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
declare const ChainConfig: {
|
|
318
|
-
[solanaDevNet.id]: {
|
|
319
|
-
contractAddress: string;
|
|
320
|
-
rpcUrl: string;
|
|
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";
|
|
412
|
-
};
|
|
413
|
-
196: {
|
|
414
|
-
contractAddress: string;
|
|
415
|
-
rpcUrl: string;
|
|
416
|
-
};
|
|
417
|
-
"-3": {
|
|
418
|
-
name: string;
|
|
419
|
-
contractAddress: string;
|
|
420
|
-
rpcUrl: string;
|
|
421
|
-
tonApiPrefix: string;
|
|
422
|
-
blockExplorer: string;
|
|
423
|
-
};
|
|
424
|
-
"-239": {
|
|
425
|
-
name: string;
|
|
426
|
-
contractAddress: string;
|
|
427
|
-
rpcUrl: string;
|
|
428
|
-
tonApiPrefix: string;
|
|
429
|
-
blockExplorer: string;
|
|
430
|
-
};
|
|
431
|
-
};
|
|
432
|
-
declare const SupportedChains: ({
|
|
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,38 +504,14 @@ 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
|
-
} | {
|
|
475
|
-
id: CHAIN;
|
|
476
|
-
name: string;
|
|
477
|
-
network: string;
|
|
478
|
-
nativeCurrency: {
|
|
479
|
-
decimals: number;
|
|
480
|
-
name: string;
|
|
481
|
-
symbol: string;
|
|
482
|
-
};
|
|
483
|
-
rpcUrls: {
|
|
484
|
-
public: {
|
|
485
|
-
http: never[];
|
|
486
|
-
};
|
|
487
|
-
default: {
|
|
488
|
-
http: never[];
|
|
489
|
-
};
|
|
490
|
-
};
|
|
491
|
-
blockExplorers: {
|
|
492
|
-
default: {
|
|
493
|
-
name: string;
|
|
494
|
-
url: string;
|
|
495
|
-
};
|
|
496
|
-
};
|
|
497
|
-
} | {
|
|
507
|
+
}, {
|
|
498
508
|
blockExplorers: {
|
|
499
509
|
readonly default: {
|
|
500
|
-
readonly name: "
|
|
501
|
-
readonly url: "https://
|
|
510
|
+
readonly name: "Monvision";
|
|
511
|
+
readonly url: "https://mainnet-beta.monvision.io";
|
|
502
512
|
};
|
|
503
513
|
};
|
|
504
|
-
blockTime
|
|
514
|
+
blockTime: 400;
|
|
505
515
|
contracts?: {
|
|
506
516
|
[x: string]: viem.ChainContract | {
|
|
507
517
|
[sourceId: number]: viem.ChainContract | undefined;
|
|
@@ -512,55 +522,52 @@ declare const SupportedChains: ({
|
|
|
512
522
|
erc6492Verifier?: viem.ChainContract | undefined;
|
|
513
523
|
} | undefined;
|
|
514
524
|
ensTlds?: readonly string[] | undefined;
|
|
515
|
-
id:
|
|
516
|
-
name: "
|
|
525
|
+
id: 143;
|
|
526
|
+
name: "Monad";
|
|
517
527
|
nativeCurrency: {
|
|
528
|
+
readonly name: "Monad";
|
|
529
|
+
readonly symbol: "MON";
|
|
518
530
|
readonly decimals: 18;
|
|
519
|
-
readonly name: "BNB Token";
|
|
520
|
-
readonly symbol: "BNB";
|
|
521
531
|
};
|
|
522
532
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
523
533
|
rpcUrls: {
|
|
524
534
|
readonly default: {
|
|
525
|
-
readonly http: readonly ["https://
|
|
526
|
-
};
|
|
527
|
-
readonly public: {
|
|
528
|
-
readonly http: readonly ["https://brb-testnet-rpc-0.bk.sign.global/"];
|
|
535
|
+
readonly http: readonly ["https://rpc.monad.xyz"];
|
|
529
536
|
};
|
|
530
537
|
};
|
|
531
538
|
sourceId?: number | undefined | undefined;
|
|
532
|
-
testnet:
|
|
539
|
+
testnet: false;
|
|
533
540
|
custom?: Record<string, unknown> | undefined;
|
|
534
541
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
535
542
|
formatters?: undefined;
|
|
536
543
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
537
|
-
|
|
538
|
-
} | {
|
|
544
|
+
}, {
|
|
539
545
|
blockExplorers: {
|
|
540
546
|
readonly default: {
|
|
541
|
-
readonly name: "
|
|
542
|
-
readonly url: "https://
|
|
547
|
+
readonly name: "Cronos Explorer";
|
|
548
|
+
readonly url: "https://explorer.cronos.org";
|
|
549
|
+
readonly apiUrl: "https://explorer-api.cronos.org/mainnet/api";
|
|
543
550
|
};
|
|
544
551
|
};
|
|
545
552
|
blockTime?: number | undefined | undefined;
|
|
546
553
|
contracts: {
|
|
547
554
|
readonly multicall3: {
|
|
548
555
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
549
|
-
readonly blockCreated:
|
|
556
|
+
readonly blockCreated: 1963112;
|
|
550
557
|
};
|
|
551
558
|
};
|
|
552
559
|
ensTlds?: readonly string[] | undefined;
|
|
553
|
-
id:
|
|
554
|
-
name: "
|
|
560
|
+
id: 25;
|
|
561
|
+
name: "Cronos Mainnet";
|
|
555
562
|
nativeCurrency: {
|
|
556
|
-
readonly name: "HYPE";
|
|
557
|
-
readonly symbol: "HYPE";
|
|
558
563
|
readonly decimals: 18;
|
|
564
|
+
readonly name: "Cronos";
|
|
565
|
+
readonly symbol: "CRO";
|
|
559
566
|
};
|
|
560
567
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
561
568
|
rpcUrls: {
|
|
562
569
|
readonly default: {
|
|
563
|
-
readonly http: readonly ["https://
|
|
570
|
+
readonly http: readonly ["https://evm.cronos.org"];
|
|
564
571
|
};
|
|
565
572
|
};
|
|
566
573
|
sourceId?: number | undefined | undefined;
|
|
@@ -569,37 +576,46 @@ declare const SupportedChains: ({
|
|
|
569
576
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
570
577
|
formatters?: undefined;
|
|
571
578
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
572
|
-
}
|
|
579
|
+
}, {
|
|
573
580
|
blockExplorers: {
|
|
574
581
|
readonly default: {
|
|
575
|
-
readonly name: "
|
|
576
|
-
readonly url: "https://
|
|
577
|
-
readonly apiUrl: "https://api.
|
|
582
|
+
readonly name: "MemeCore Explorer";
|
|
583
|
+
readonly url: "https://memecorescan.io";
|
|
584
|
+
readonly apiUrl: "https://api.memecorescan.io/api";
|
|
578
585
|
};
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
readonly ensUniversalResolver: {
|
|
583
|
-
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
584
|
-
readonly blockCreated: 23085558;
|
|
586
|
+
readonly okx: {
|
|
587
|
+
readonly name: "MemeCore Explorer";
|
|
588
|
+
readonly url: "https://web3.okx.com/explorer/memecore";
|
|
585
589
|
};
|
|
586
|
-
readonly
|
|
587
|
-
readonly
|
|
588
|
-
readonly
|
|
590
|
+
readonly memecore: {
|
|
591
|
+
readonly name: "MemeCore Explorer";
|
|
592
|
+
readonly url: "https://blockscout.memecore.com";
|
|
593
|
+
readonly apiUrl: "https://blockscout.memecore.com/api";
|
|
589
594
|
};
|
|
590
595
|
};
|
|
596
|
+
blockTime?: number | undefined | undefined;
|
|
597
|
+
contracts?: {
|
|
598
|
+
[x: string]: viem.ChainContract | {
|
|
599
|
+
[sourceId: number]: viem.ChainContract | undefined;
|
|
600
|
+
} | undefined;
|
|
601
|
+
ensRegistry?: viem.ChainContract | undefined;
|
|
602
|
+
ensUniversalResolver?: viem.ChainContract | undefined;
|
|
603
|
+
multicall3?: viem.ChainContract | undefined;
|
|
604
|
+
erc6492Verifier?: viem.ChainContract | undefined;
|
|
605
|
+
} | undefined;
|
|
591
606
|
ensTlds?: readonly string[] | undefined;
|
|
592
|
-
id:
|
|
593
|
-
name: "
|
|
607
|
+
id: 4352;
|
|
608
|
+
name: "MemeCore";
|
|
594
609
|
nativeCurrency: {
|
|
595
|
-
readonly name: "Ether";
|
|
596
|
-
readonly symbol: "ETH";
|
|
597
610
|
readonly decimals: 18;
|
|
611
|
+
readonly name: "M";
|
|
612
|
+
readonly symbol: "M";
|
|
598
613
|
};
|
|
599
614
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
600
615
|
rpcUrls: {
|
|
601
616
|
readonly default: {
|
|
602
|
-
readonly http: readonly ["https://
|
|
617
|
+
readonly http: readonly ["https://rpc.memecore.net"];
|
|
618
|
+
readonly webSocket: readonly ["wss://ws.memecore.net"];
|
|
603
619
|
};
|
|
604
620
|
};
|
|
605
621
|
sourceId?: number | undefined | undefined;
|
|
@@ -608,375 +624,189 @@ declare const SupportedChains: ({
|
|
|
608
624
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
609
625
|
formatters?: undefined;
|
|
610
626
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
611
|
-
}
|
|
627
|
+
}, {
|
|
628
|
+
id: CHAIN;
|
|
629
|
+
name: string;
|
|
630
|
+
network: string;
|
|
631
|
+
nativeCurrency: {
|
|
632
|
+
decimals: number;
|
|
633
|
+
name: string;
|
|
634
|
+
symbol: string;
|
|
635
|
+
};
|
|
636
|
+
rpcUrls: {
|
|
637
|
+
public: {
|
|
638
|
+
http: never[];
|
|
639
|
+
};
|
|
640
|
+
default: {
|
|
641
|
+
http: never[];
|
|
642
|
+
};
|
|
643
|
+
};
|
|
612
644
|
blockExplorers: {
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
readonly apiUrl: "https://api.bscscan.com/api";
|
|
645
|
+
default: {
|
|
646
|
+
name: string;
|
|
647
|
+
url: string;
|
|
617
648
|
};
|
|
618
649
|
};
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
650
|
+
testnet: boolean;
|
|
651
|
+
}, {
|
|
652
|
+
id: CHAIN;
|
|
653
|
+
name: string;
|
|
654
|
+
network: string;
|
|
655
|
+
nativeCurrency: {
|
|
656
|
+
decimals: number;
|
|
657
|
+
name: string;
|
|
658
|
+
symbol: string;
|
|
659
|
+
};
|
|
660
|
+
rpcUrls: {
|
|
661
|
+
public: {
|
|
662
|
+
http: never[];
|
|
663
|
+
};
|
|
664
|
+
default: {
|
|
665
|
+
http: never[];
|
|
666
|
+
};
|
|
667
|
+
};
|
|
668
|
+
blockExplorers: {
|
|
669
|
+
default: {
|
|
670
|
+
name: string;
|
|
671
|
+
url: string;
|
|
672
|
+
};
|
|
673
|
+
};
|
|
674
|
+
}, {
|
|
675
|
+
blockExplorers: {
|
|
676
|
+
readonly default: {
|
|
677
|
+
readonly name: "Sign Brb Testnet Explorer";
|
|
678
|
+
readonly url: "https://explorer-testnet.bk.sign.global/";
|
|
624
679
|
};
|
|
625
680
|
};
|
|
681
|
+
blockTime?: number | undefined | undefined;
|
|
682
|
+
contracts?: {
|
|
683
|
+
[x: string]: viem.ChainContract | {
|
|
684
|
+
[sourceId: number]: viem.ChainContract | undefined;
|
|
685
|
+
} | undefined;
|
|
686
|
+
ensRegistry?: viem.ChainContract | undefined;
|
|
687
|
+
ensUniversalResolver?: viem.ChainContract | undefined;
|
|
688
|
+
multicall3?: viem.ChainContract | undefined;
|
|
689
|
+
erc6492Verifier?: viem.ChainContract | undefined;
|
|
690
|
+
} | undefined;
|
|
626
691
|
ensTlds?: readonly string[] | undefined;
|
|
627
|
-
id:
|
|
628
|
-
name: "
|
|
692
|
+
id: 74460002;
|
|
693
|
+
name: "Sign Brb Testnet";
|
|
629
694
|
nativeCurrency: {
|
|
630
695
|
readonly decimals: 18;
|
|
631
|
-
readonly name: "BNB";
|
|
696
|
+
readonly name: "BNB Token";
|
|
632
697
|
readonly symbol: "BNB";
|
|
633
698
|
};
|
|
634
699
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
635
700
|
rpcUrls: {
|
|
636
701
|
readonly default: {
|
|
637
|
-
readonly http: readonly ["https://
|
|
702
|
+
readonly http: readonly ["https://brb-testnet-rpc-0.bk.sign.global/"];
|
|
703
|
+
};
|
|
704
|
+
readonly public: {
|
|
705
|
+
readonly http: readonly ["https://brb-testnet-rpc-0.bk.sign.global/"];
|
|
638
706
|
};
|
|
639
707
|
};
|
|
640
708
|
sourceId?: number | undefined | undefined;
|
|
641
|
-
testnet
|
|
709
|
+
testnet: true;
|
|
642
710
|
custom?: Record<string, unknown> | undefined;
|
|
643
711
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
644
712
|
formatters?: undefined;
|
|
645
713
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
646
|
-
|
|
714
|
+
readonly network: "Sign Brb Testnet";
|
|
715
|
+
}, {
|
|
647
716
|
blockExplorers: {
|
|
648
717
|
readonly default: {
|
|
649
|
-
readonly name: "
|
|
650
|
-
readonly url: "https://
|
|
651
|
-
readonly apiUrl: "https://api.basescan.org/api";
|
|
718
|
+
readonly name: "Sonic Explorer";
|
|
719
|
+
readonly url: "https://sonicscan.org";
|
|
652
720
|
};
|
|
653
721
|
};
|
|
654
|
-
blockTime:
|
|
722
|
+
blockTime: 630;
|
|
655
723
|
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
724
|
readonly multicall3: {
|
|
667
725
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
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";
|
|
726
|
+
readonly blockCreated: 60;
|
|
690
727
|
};
|
|
691
|
-
|
|
692
|
-
|
|
728
|
+
};
|
|
729
|
+
ensTlds?: readonly string[] | undefined;
|
|
730
|
+
id: 146;
|
|
731
|
+
name: "Sonic";
|
|
732
|
+
nativeCurrency: {
|
|
733
|
+
readonly decimals: 18;
|
|
734
|
+
readonly name: "Sonic";
|
|
735
|
+
readonly symbol: "S";
|
|
736
|
+
};
|
|
737
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
738
|
+
rpcUrls: {
|
|
739
|
+
readonly default: {
|
|
740
|
+
readonly http: readonly ["https://rpc.soniclabs.com"];
|
|
693
741
|
};
|
|
694
|
-
|
|
695
|
-
|
|
742
|
+
};
|
|
743
|
+
sourceId?: number | undefined | undefined;
|
|
744
|
+
testnet: false;
|
|
745
|
+
custom?: Record<string, unknown> | undefined;
|
|
746
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
747
|
+
formatters?: undefined;
|
|
748
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
749
|
+
}, {
|
|
750
|
+
blockExplorers: {
|
|
751
|
+
readonly default: {
|
|
752
|
+
readonly name: "OKLink";
|
|
753
|
+
readonly url: "https://www.oklink.com/xlayer";
|
|
754
|
+
readonly apiUrl: "https://www.oklink.com/api/v5/explorer/xlayer/api";
|
|
696
755
|
};
|
|
697
|
-
|
|
698
|
-
|
|
756
|
+
};
|
|
757
|
+
blockTime?: number | undefined | undefined;
|
|
758
|
+
contracts: {
|
|
759
|
+
readonly multicall3: {
|
|
760
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
761
|
+
readonly blockCreated: 47416;
|
|
699
762
|
};
|
|
700
763
|
};
|
|
701
764
|
ensTlds?: readonly string[] | undefined;
|
|
702
|
-
id:
|
|
703
|
-
name: "
|
|
704
|
-
nativeCurrency: {
|
|
705
|
-
readonly name: "Ether";
|
|
706
|
-
readonly symbol: "ETH";
|
|
765
|
+
id: 196;
|
|
766
|
+
name: "X Layer Mainnet";
|
|
767
|
+
nativeCurrency: {
|
|
707
768
|
readonly decimals: 18;
|
|
769
|
+
readonly name: "OKB";
|
|
770
|
+
readonly symbol: "OKB";
|
|
708
771
|
};
|
|
709
772
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
710
773
|
rpcUrls: {
|
|
711
774
|
readonly default: {
|
|
712
|
-
readonly http: readonly ["https://
|
|
775
|
+
readonly http: readonly ["https://rpc.xlayer.tech"];
|
|
713
776
|
};
|
|
714
777
|
};
|
|
715
|
-
sourceId
|
|
778
|
+
sourceId?: number | undefined | undefined;
|
|
716
779
|
testnet?: boolean | undefined | undefined;
|
|
717
780
|
custom?: Record<string, unknown> | undefined;
|
|
718
781
|
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
|
-
} | {
|
|
782
|
+
formatters?: undefined;
|
|
783
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
784
|
+
}, {
|
|
954
785
|
blockExplorers: {
|
|
955
786
|
readonly default: {
|
|
956
|
-
readonly name: "
|
|
957
|
-
readonly url: "https://
|
|
958
|
-
readonly apiUrl: "https://cyberscan.co/api";
|
|
787
|
+
readonly name: "HyperEVMScan";
|
|
788
|
+
readonly url: "https://hyperevmscan.io/";
|
|
959
789
|
};
|
|
960
790
|
};
|
|
961
791
|
blockTime?: number | undefined | undefined;
|
|
962
792
|
contracts: {
|
|
963
793
|
readonly multicall3: {
|
|
964
794
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
965
|
-
readonly blockCreated:
|
|
795
|
+
readonly blockCreated: 13051;
|
|
966
796
|
};
|
|
967
797
|
};
|
|
968
798
|
ensTlds?: readonly string[] | undefined;
|
|
969
|
-
id:
|
|
970
|
-
name: "
|
|
799
|
+
id: 999;
|
|
800
|
+
name: "HyperEVM";
|
|
971
801
|
nativeCurrency: {
|
|
972
|
-
readonly name: "
|
|
973
|
-
readonly symbol: "
|
|
802
|
+
readonly name: "HYPE";
|
|
803
|
+
readonly symbol: "HYPE";
|
|
974
804
|
readonly decimals: 18;
|
|
975
805
|
};
|
|
976
806
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
977
807
|
rpcUrls: {
|
|
978
808
|
readonly default: {
|
|
979
|
-
readonly http: readonly ["https://
|
|
809
|
+
readonly http: readonly ["https://rpc.hyperliquid.xyz/evm"];
|
|
980
810
|
};
|
|
981
811
|
};
|
|
982
812
|
sourceId?: number | undefined | undefined;
|
|
@@ -985,7 +815,7 @@ declare const SupportedChains: ({
|
|
|
985
815
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
986
816
|
formatters?: undefined;
|
|
987
817
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
988
|
-
}
|
|
818
|
+
}, {
|
|
989
819
|
blockExplorers: {
|
|
990
820
|
readonly default: {
|
|
991
821
|
readonly name: "Etherscan";
|
|
@@ -1015,7 +845,7 @@ declare const SupportedChains: ({
|
|
|
1015
845
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1016
846
|
rpcUrls: {
|
|
1017
847
|
readonly default: {
|
|
1018
|
-
readonly http: readonly ["https://
|
|
848
|
+
readonly http: readonly ["https://11155111.rpc.thirdweb.com"];
|
|
1019
849
|
};
|
|
1020
850
|
};
|
|
1021
851
|
sourceId?: number | undefined | undefined;
|
|
@@ -1024,7 +854,7 @@ declare const SupportedChains: ({
|
|
|
1024
854
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1025
855
|
formatters?: undefined;
|
|
1026
856
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1027
|
-
}
|
|
857
|
+
}, {
|
|
1028
858
|
blockExplorers: {
|
|
1029
859
|
readonly default: {
|
|
1030
860
|
readonly name: "Basescan";
|
|
@@ -1332,7 +1162,7 @@ declare const SupportedChains: ({
|
|
|
1332
1162
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
1333
1163
|
};
|
|
1334
1164
|
readonly network: "base-sepolia";
|
|
1335
|
-
}
|
|
1165
|
+
}, {
|
|
1336
1166
|
blockExplorers: {
|
|
1337
1167
|
readonly default: {
|
|
1338
1168
|
readonly name: "ZetaScan";
|
|
@@ -1366,67 +1196,143 @@ declare const SupportedChains: ({
|
|
|
1366
1196
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1367
1197
|
formatters?: undefined;
|
|
1368
1198
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1369
|
-
}
|
|
1199
|
+
}, {
|
|
1370
1200
|
blockExplorers: {
|
|
1371
1201
|
readonly default: {
|
|
1372
|
-
readonly name: "
|
|
1373
|
-
readonly url: "https://
|
|
1202
|
+
readonly name: "Berachain";
|
|
1203
|
+
readonly url: "https://artio.beratrail.io";
|
|
1374
1204
|
};
|
|
1375
1205
|
};
|
|
1376
1206
|
blockTime?: number | undefined | undefined;
|
|
1377
1207
|
contracts: {
|
|
1378
1208
|
readonly multicall3: {
|
|
1379
1209
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1380
|
-
readonly blockCreated:
|
|
1210
|
+
readonly blockCreated: 866924;
|
|
1381
1211
|
};
|
|
1382
1212
|
};
|
|
1383
1213
|
ensTlds?: readonly string[] | undefined;
|
|
1384
|
-
id:
|
|
1385
|
-
name: "
|
|
1214
|
+
id: 80085;
|
|
1215
|
+
name: "Berachain Artio";
|
|
1386
1216
|
nativeCurrency: {
|
|
1387
1217
|
readonly decimals: 18;
|
|
1388
|
-
readonly name: "
|
|
1389
|
-
readonly symbol: "
|
|
1218
|
+
readonly name: "BERA Token";
|
|
1219
|
+
readonly symbol: "BERA";
|
|
1390
1220
|
};
|
|
1391
1221
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1392
1222
|
rpcUrls: {
|
|
1393
1223
|
readonly default: {
|
|
1394
|
-
readonly http: readonly ["https://
|
|
1224
|
+
readonly http: readonly ["https://artio.rpc.berachain.com"];
|
|
1395
1225
|
};
|
|
1396
1226
|
};
|
|
1397
1227
|
sourceId?: number | undefined | undefined;
|
|
1398
|
-
testnet:
|
|
1228
|
+
testnet: true;
|
|
1399
1229
|
custom?: Record<string, unknown> | undefined;
|
|
1400
1230
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1401
1231
|
formatters?: undefined;
|
|
1402
1232
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1403
|
-
}
|
|
1233
|
+
}, {
|
|
1404
1234
|
blockExplorers: {
|
|
1405
1235
|
readonly default: {
|
|
1406
|
-
readonly name: "
|
|
1407
|
-
readonly url: "https://
|
|
1408
|
-
readonly apiUrl: "https://api.
|
|
1236
|
+
readonly name: "PolygonScan";
|
|
1237
|
+
readonly url: "https://mumbai.polygonscan.com";
|
|
1238
|
+
readonly apiUrl: "https://api-testnet.polygonscan.com/api";
|
|
1409
1239
|
};
|
|
1410
1240
|
};
|
|
1411
|
-
blockTime
|
|
1241
|
+
blockTime?: number | undefined | undefined;
|
|
1412
1242
|
contracts: {
|
|
1413
1243
|
readonly multicall3: {
|
|
1414
1244
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1415
|
-
readonly blockCreated:
|
|
1245
|
+
readonly blockCreated: 25770160;
|
|
1416
1246
|
};
|
|
1417
1247
|
};
|
|
1418
1248
|
ensTlds?: readonly string[] | undefined;
|
|
1419
|
-
id:
|
|
1420
|
-
name: "
|
|
1249
|
+
id: 80001;
|
|
1250
|
+
name: "Polygon Mumbai";
|
|
1421
1251
|
nativeCurrency: {
|
|
1422
|
-
readonly name: "
|
|
1423
|
-
readonly symbol: "
|
|
1252
|
+
readonly name: "MATIC";
|
|
1253
|
+
readonly symbol: "MATIC";
|
|
1424
1254
|
readonly decimals: 18;
|
|
1425
1255
|
};
|
|
1426
1256
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1427
1257
|
rpcUrls: {
|
|
1428
1258
|
readonly default: {
|
|
1429
|
-
readonly http: readonly ["https://
|
|
1259
|
+
readonly http: readonly ["https://80001.rpc.thirdweb.com"];
|
|
1260
|
+
};
|
|
1261
|
+
};
|
|
1262
|
+
sourceId?: number | undefined | undefined;
|
|
1263
|
+
testnet: true;
|
|
1264
|
+
custom?: Record<string, unknown> | undefined;
|
|
1265
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
1266
|
+
formatters?: undefined;
|
|
1267
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1268
|
+
}, {
|
|
1269
|
+
blockExplorers: {
|
|
1270
|
+
readonly default: {
|
|
1271
|
+
readonly name: "PolygonScan";
|
|
1272
|
+
readonly url: "https://amoy.polygonscan.com";
|
|
1273
|
+
readonly apiUrl: "https://api-amoy.polygonscan.com/api";
|
|
1274
|
+
};
|
|
1275
|
+
};
|
|
1276
|
+
blockTime?: number | undefined | undefined;
|
|
1277
|
+
contracts: {
|
|
1278
|
+
readonly multicall3: {
|
|
1279
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1280
|
+
readonly blockCreated: 3127388;
|
|
1281
|
+
};
|
|
1282
|
+
};
|
|
1283
|
+
ensTlds?: readonly string[] | undefined;
|
|
1284
|
+
id: 80002;
|
|
1285
|
+
name: "Polygon Amoy";
|
|
1286
|
+
nativeCurrency: {
|
|
1287
|
+
readonly name: "POL";
|
|
1288
|
+
readonly symbol: "POL";
|
|
1289
|
+
readonly decimals: 18;
|
|
1290
|
+
};
|
|
1291
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1292
|
+
rpcUrls: {
|
|
1293
|
+
readonly default: {
|
|
1294
|
+
readonly http: readonly ["https://rpc-amoy.polygon.technology"];
|
|
1295
|
+
};
|
|
1296
|
+
};
|
|
1297
|
+
sourceId?: number | undefined | undefined;
|
|
1298
|
+
testnet: true;
|
|
1299
|
+
custom?: Record<string, unknown> | undefined;
|
|
1300
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
1301
|
+
formatters?: undefined;
|
|
1302
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1303
|
+
}, {
|
|
1304
|
+
blockExplorers: {
|
|
1305
|
+
readonly etherscan: {
|
|
1306
|
+
readonly name: "Arbiscan";
|
|
1307
|
+
readonly url: "https://explorer.devnet.imola.movementlabs.xyz/";
|
|
1308
|
+
};
|
|
1309
|
+
readonly default: {
|
|
1310
|
+
readonly name: "Arbiscan";
|
|
1311
|
+
readonly url: "https://explorer.devnet.imola.movementlabs.xyz/";
|
|
1312
|
+
};
|
|
1313
|
+
};
|
|
1314
|
+
blockTime?: number | undefined | undefined;
|
|
1315
|
+
contracts: {
|
|
1316
|
+
readonly multicall3: {
|
|
1317
|
+
readonly address: "0xD67Eca381AAbd0c049554f5714E7d8C21864c560";
|
|
1318
|
+
readonly blockCreated: 500;
|
|
1319
|
+
};
|
|
1320
|
+
};
|
|
1321
|
+
ensTlds?: readonly string[] | undefined;
|
|
1322
|
+
id: 30732;
|
|
1323
|
+
name: "Movement M1 Devnet";
|
|
1324
|
+
nativeCurrency: {
|
|
1325
|
+
readonly name: "Move";
|
|
1326
|
+
readonly symbol: "MOVE";
|
|
1327
|
+
readonly decimals: 18;
|
|
1328
|
+
};
|
|
1329
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1330
|
+
rpcUrls: {
|
|
1331
|
+
readonly default: {
|
|
1332
|
+
readonly http: readonly ["https://mevm.devnet.imola.movementlabs.xyz"];
|
|
1333
|
+
};
|
|
1334
|
+
readonly public: {
|
|
1335
|
+
readonly http: readonly ["https://mevm.devnet.imola.movementlabs.xyz"];
|
|
1430
1336
|
};
|
|
1431
1337
|
};
|
|
1432
1338
|
sourceId?: number | undefined | undefined;
|
|
@@ -1435,101 +1341,257 @@ declare const SupportedChains: ({
|
|
|
1435
1341
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1436
1342
|
formatters?: undefined;
|
|
1437
1343
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1438
|
-
|
|
1344
|
+
readonly network: "mevm";
|
|
1345
|
+
}, {
|
|
1439
1346
|
blockExplorers: {
|
|
1440
1347
|
readonly default: {
|
|
1441
1348
|
readonly name: "MegaETH Testnet Explorer";
|
|
1442
1349
|
readonly url: "https://www.megaexplorer.xyz/";
|
|
1443
1350
|
};
|
|
1444
1351
|
};
|
|
1445
|
-
blockTime: 1000;
|
|
1446
|
-
contracts: {
|
|
1447
|
-
readonly multicall3: {
|
|
1448
|
-
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1352
|
+
blockTime: 1000;
|
|
1353
|
+
contracts: {
|
|
1354
|
+
readonly multicall3: {
|
|
1355
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1356
|
+
};
|
|
1357
|
+
};
|
|
1358
|
+
ensTlds?: readonly string[] | undefined;
|
|
1359
|
+
id: 6342;
|
|
1360
|
+
name: "MegaETH Testnet";
|
|
1361
|
+
nativeCurrency: {
|
|
1362
|
+
readonly name: "MegaETH Testnet Ether";
|
|
1363
|
+
readonly symbol: "ETH";
|
|
1364
|
+
readonly decimals: 18;
|
|
1365
|
+
};
|
|
1366
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1367
|
+
rpcUrls: {
|
|
1368
|
+
readonly default: {
|
|
1369
|
+
readonly http: readonly ["https://carrot.megaeth.com/rpc"];
|
|
1370
|
+
readonly webSocket: readonly ["wss://carrot.megaeth.com/ws"];
|
|
1371
|
+
};
|
|
1372
|
+
};
|
|
1373
|
+
sourceId?: number | undefined | undefined;
|
|
1374
|
+
testnet: true;
|
|
1375
|
+
custom?: Record<string, unknown> | undefined;
|
|
1376
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
1377
|
+
formatters?: undefined;
|
|
1378
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1379
|
+
}, {
|
|
1380
|
+
blockExplorers: {
|
|
1381
|
+
readonly default: {
|
|
1382
|
+
readonly name: "Monad Testnet explorer";
|
|
1383
|
+
readonly url: "https://testnet.monadexplorer.com";
|
|
1384
|
+
};
|
|
1385
|
+
};
|
|
1386
|
+
blockTime: 400;
|
|
1387
|
+
contracts: {
|
|
1388
|
+
readonly multicall3: {
|
|
1389
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1390
|
+
readonly blockCreated: 251449;
|
|
1391
|
+
};
|
|
1392
|
+
};
|
|
1393
|
+
ensTlds?: readonly string[] | undefined;
|
|
1394
|
+
id: 10143;
|
|
1395
|
+
name: "Monad Testnet";
|
|
1396
|
+
nativeCurrency: {
|
|
1397
|
+
readonly name: "Testnet MON Token";
|
|
1398
|
+
readonly symbol: "MON";
|
|
1399
|
+
readonly decimals: 18;
|
|
1400
|
+
};
|
|
1401
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1402
|
+
rpcUrls: {
|
|
1403
|
+
readonly default: {
|
|
1404
|
+
readonly http: readonly ["https://testnet-rpc.monad.xyz"];
|
|
1405
|
+
};
|
|
1406
|
+
};
|
|
1407
|
+
sourceId?: number | undefined | undefined;
|
|
1408
|
+
testnet: true;
|
|
1409
|
+
custom?: Record<string, unknown> | undefined;
|
|
1410
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
1411
|
+
formatters?: undefined;
|
|
1412
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1413
|
+
}];
|
|
1414
|
+
type SupportedChainIds = (typeof SupportedChains)[number]['id'];
|
|
1415
|
+
type ChainConfigItem = {
|
|
1416
|
+
contractAddress: string;
|
|
1417
|
+
rpcUrl: string;
|
|
1418
|
+
} & Record<string, unknown>;
|
|
1419
|
+
declare const ChainConfig: Record<SupportedChainIds, ChainConfigItem>;
|
|
1420
|
+
|
|
1421
|
+
declare const mevmDevNet: {
|
|
1422
|
+
blockExplorers: {
|
|
1423
|
+
readonly etherscan: {
|
|
1424
|
+
readonly name: "Arbiscan";
|
|
1425
|
+
readonly url: "https://explorer.devnet.imola.movementlabs.xyz/";
|
|
1426
|
+
};
|
|
1427
|
+
readonly default: {
|
|
1428
|
+
readonly name: "Arbiscan";
|
|
1429
|
+
readonly url: "https://explorer.devnet.imola.movementlabs.xyz/";
|
|
1430
|
+
};
|
|
1431
|
+
};
|
|
1432
|
+
blockTime?: number | undefined | undefined;
|
|
1433
|
+
contracts: {
|
|
1434
|
+
readonly multicall3: {
|
|
1435
|
+
readonly address: "0xD67Eca381AAbd0c049554f5714E7d8C21864c560";
|
|
1436
|
+
readonly blockCreated: 500;
|
|
1437
|
+
};
|
|
1438
|
+
};
|
|
1439
|
+
ensTlds?: readonly string[] | undefined;
|
|
1440
|
+
id: 30732;
|
|
1441
|
+
name: "Movement M1 Devnet";
|
|
1442
|
+
nativeCurrency: {
|
|
1443
|
+
readonly name: "Move";
|
|
1444
|
+
readonly symbol: "MOVE";
|
|
1445
|
+
readonly decimals: 18;
|
|
1446
|
+
};
|
|
1447
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1448
|
+
rpcUrls: {
|
|
1449
|
+
readonly default: {
|
|
1450
|
+
readonly http: readonly ["https://mevm.devnet.imola.movementlabs.xyz"];
|
|
1451
|
+
};
|
|
1452
|
+
readonly public: {
|
|
1453
|
+
readonly http: readonly ["https://mevm.devnet.imola.movementlabs.xyz"];
|
|
1454
|
+
};
|
|
1455
|
+
};
|
|
1456
|
+
sourceId?: number | undefined | undefined;
|
|
1457
|
+
testnet?: boolean | undefined | undefined;
|
|
1458
|
+
custom?: Record<string, unknown> | undefined;
|
|
1459
|
+
fees?: viem.ChainFees<undefined> | undefined;
|
|
1460
|
+
formatters?: undefined;
|
|
1461
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1462
|
+
readonly network: "mevm";
|
|
1463
|
+
};
|
|
1464
|
+
declare const tonTestNet: {
|
|
1465
|
+
id: CHAIN;
|
|
1466
|
+
name: string;
|
|
1467
|
+
network: string;
|
|
1468
|
+
nativeCurrency: {
|
|
1469
|
+
decimals: number;
|
|
1470
|
+
name: string;
|
|
1471
|
+
symbol: string;
|
|
1472
|
+
};
|
|
1473
|
+
rpcUrls: {
|
|
1474
|
+
public: {
|
|
1475
|
+
http: never[];
|
|
1476
|
+
};
|
|
1477
|
+
default: {
|
|
1478
|
+
http: never[];
|
|
1479
|
+
};
|
|
1480
|
+
};
|
|
1481
|
+
blockExplorers: {
|
|
1482
|
+
default: {
|
|
1483
|
+
name: string;
|
|
1484
|
+
url: string;
|
|
1485
|
+
};
|
|
1486
|
+
};
|
|
1487
|
+
testnet: boolean;
|
|
1488
|
+
};
|
|
1489
|
+
declare const tonMainNet: {
|
|
1490
|
+
id: CHAIN;
|
|
1491
|
+
name: string;
|
|
1492
|
+
network: string;
|
|
1493
|
+
nativeCurrency: {
|
|
1494
|
+
decimals: number;
|
|
1495
|
+
name: string;
|
|
1496
|
+
symbol: string;
|
|
1497
|
+
};
|
|
1498
|
+
rpcUrls: {
|
|
1499
|
+
public: {
|
|
1500
|
+
http: never[];
|
|
1501
|
+
};
|
|
1502
|
+
default: {
|
|
1503
|
+
http: never[];
|
|
1504
|
+
};
|
|
1505
|
+
};
|
|
1506
|
+
blockExplorers: {
|
|
1507
|
+
default: {
|
|
1508
|
+
name: string;
|
|
1509
|
+
url: string;
|
|
1449
1510
|
};
|
|
1450
1511
|
};
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1512
|
+
};
|
|
1513
|
+
declare const solanaDevNet: {
|
|
1514
|
+
id: string;
|
|
1515
|
+
name: string;
|
|
1516
|
+
network: string;
|
|
1454
1517
|
nativeCurrency: {
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1518
|
+
decimals: number;
|
|
1519
|
+
name: string;
|
|
1520
|
+
symbol: string;
|
|
1458
1521
|
};
|
|
1459
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1460
1522
|
rpcUrls: {
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
readonly webSocket: readonly ["wss://carrot.megaeth.com/ws"];
|
|
1523
|
+
public: {
|
|
1524
|
+
http: string[];
|
|
1464
1525
|
};
|
|
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";
|
|
1526
|
+
default: {
|
|
1527
|
+
http: string[];
|
|
1477
1528
|
};
|
|
1478
1529
|
};
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
readonly blockCreated: 866924;
|
|
1530
|
+
blockExplorers: {
|
|
1531
|
+
default: {
|
|
1532
|
+
name: string;
|
|
1533
|
+
url: string;
|
|
1484
1534
|
};
|
|
1485
1535
|
};
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1536
|
+
testnet: boolean;
|
|
1537
|
+
};
|
|
1538
|
+
declare const solanaMainNet: {
|
|
1539
|
+
id: string;
|
|
1540
|
+
name: string;
|
|
1541
|
+
network: string;
|
|
1489
1542
|
nativeCurrency: {
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1543
|
+
decimals: number;
|
|
1544
|
+
name: string;
|
|
1545
|
+
symbol: string;
|
|
1493
1546
|
};
|
|
1494
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1495
1547
|
rpcUrls: {
|
|
1496
|
-
|
|
1497
|
-
|
|
1548
|
+
public: {
|
|
1549
|
+
http: string[];
|
|
1550
|
+
};
|
|
1551
|
+
default: {
|
|
1552
|
+
http: string[];
|
|
1498
1553
|
};
|
|
1499
1554
|
};
|
|
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
1555
|
blockExplorers: {
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
readonly apiUrl: "https://api-testnet.polygonscan.com/api";
|
|
1556
|
+
default: {
|
|
1557
|
+
name: string;
|
|
1558
|
+
url: string;
|
|
1512
1559
|
};
|
|
1513
1560
|
};
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1561
|
+
testnet: boolean;
|
|
1562
|
+
};
|
|
1563
|
+
declare const signBrBTestnet: {
|
|
1564
|
+
blockExplorers: {
|
|
1565
|
+
readonly default: {
|
|
1566
|
+
readonly name: "Sign Brb Testnet Explorer";
|
|
1567
|
+
readonly url: "https://explorer-testnet.bk.sign.global/";
|
|
1519
1568
|
};
|
|
1520
1569
|
};
|
|
1570
|
+
blockTime?: number | undefined | undefined;
|
|
1571
|
+
contracts?: {
|
|
1572
|
+
[x: string]: viem.ChainContract | {
|
|
1573
|
+
[sourceId: number]: viem.ChainContract | undefined;
|
|
1574
|
+
} | undefined;
|
|
1575
|
+
ensRegistry?: viem.ChainContract | undefined;
|
|
1576
|
+
ensUniversalResolver?: viem.ChainContract | undefined;
|
|
1577
|
+
multicall3?: viem.ChainContract | undefined;
|
|
1578
|
+
erc6492Verifier?: viem.ChainContract | undefined;
|
|
1579
|
+
} | undefined;
|
|
1521
1580
|
ensTlds?: readonly string[] | undefined;
|
|
1522
|
-
id:
|
|
1523
|
-
name: "
|
|
1581
|
+
id: 74460002;
|
|
1582
|
+
name: "Sign Brb Testnet";
|
|
1524
1583
|
nativeCurrency: {
|
|
1525
|
-
readonly name: "MATIC";
|
|
1526
|
-
readonly symbol: "MATIC";
|
|
1527
1584
|
readonly decimals: 18;
|
|
1585
|
+
readonly name: "BNB Token";
|
|
1586
|
+
readonly symbol: "BNB";
|
|
1528
1587
|
};
|
|
1529
1588
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1530
1589
|
rpcUrls: {
|
|
1531
1590
|
readonly default: {
|
|
1532
|
-
readonly http: readonly ["https://
|
|
1591
|
+
readonly http: readonly ["https://brb-testnet-rpc-0.bk.sign.global/"];
|
|
1592
|
+
};
|
|
1593
|
+
readonly public: {
|
|
1594
|
+
readonly http: readonly ["https://brb-testnet-rpc-0.bk.sign.global/"];
|
|
1533
1595
|
};
|
|
1534
1596
|
};
|
|
1535
1597
|
sourceId?: number | undefined | undefined;
|
|
@@ -1538,102 +1600,109 @@ declare const SupportedChains: ({
|
|
|
1538
1600
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1539
1601
|
formatters?: undefined;
|
|
1540
1602
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1603
|
+
readonly network: "Sign Brb Testnet";
|
|
1604
|
+
};
|
|
1605
|
+
declare const suiTestNet: {
|
|
1606
|
+
id: string;
|
|
1607
|
+
name: string;
|
|
1608
|
+
network: string;
|
|
1609
|
+
nativeCurrency: {
|
|
1610
|
+
decimals: number;
|
|
1611
|
+
name: string;
|
|
1612
|
+
symbol: string;
|
|
1613
|
+
};
|
|
1614
|
+
rpcUrls: {
|
|
1615
|
+
public: {
|
|
1616
|
+
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")[];
|
|
1617
|
+
};
|
|
1618
|
+
default: {
|
|
1619
|
+
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
1620
|
};
|
|
1548
1621
|
};
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
readonly blockCreated: 3127388;
|
|
1622
|
+
blockExplorers: {
|
|
1623
|
+
default: {
|
|
1624
|
+
name: string;
|
|
1625
|
+
url: string;
|
|
1554
1626
|
};
|
|
1555
1627
|
};
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1628
|
+
testnet: boolean;
|
|
1629
|
+
};
|
|
1630
|
+
declare const suiMainNet: {
|
|
1631
|
+
id: string;
|
|
1632
|
+
name: string;
|
|
1633
|
+
network: string;
|
|
1559
1634
|
nativeCurrency: {
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1635
|
+
decimals: number;
|
|
1636
|
+
name: string;
|
|
1637
|
+
symbol: string;
|
|
1563
1638
|
};
|
|
1564
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1565
1639
|
rpcUrls: {
|
|
1566
|
-
|
|
1567
|
-
|
|
1640
|
+
public: {
|
|
1641
|
+
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
1642
|
};
|
|
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";
|
|
1643
|
+
default: {
|
|
1644
|
+
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
1645
|
};
|
|
1582
1646
|
};
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
readonly blockCreated: 60;
|
|
1647
|
+
blockExplorers: {
|
|
1648
|
+
default: {
|
|
1649
|
+
name: string;
|
|
1650
|
+
url: string;
|
|
1588
1651
|
};
|
|
1589
1652
|
};
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1653
|
+
testnet: boolean;
|
|
1654
|
+
};
|
|
1655
|
+
declare const aptosTestNet: {
|
|
1656
|
+
id: number;
|
|
1657
|
+
name: string;
|
|
1658
|
+
network: string;
|
|
1593
1659
|
nativeCurrency: {
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1660
|
+
decimals: number;
|
|
1661
|
+
name: string;
|
|
1662
|
+
symbol: string;
|
|
1597
1663
|
};
|
|
1598
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1599
1664
|
rpcUrls: {
|
|
1600
|
-
|
|
1601
|
-
|
|
1665
|
+
public: {
|
|
1666
|
+
http: string[];
|
|
1667
|
+
};
|
|
1668
|
+
default: {
|
|
1669
|
+
http: string[];
|
|
1602
1670
|
};
|
|
1603
1671
|
};
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1672
|
+
blockExplorers: {
|
|
1673
|
+
default: {
|
|
1674
|
+
name: string;
|
|
1675
|
+
url: string;
|
|
1676
|
+
};
|
|
1677
|
+
};
|
|
1678
|
+
testnet: boolean;
|
|
1679
|
+
};
|
|
1680
|
+
declare const hyperEVM: {
|
|
1611
1681
|
blockExplorers: {
|
|
1612
1682
|
readonly default: {
|
|
1613
|
-
readonly name: "
|
|
1614
|
-
readonly url: "https://
|
|
1615
|
-
readonly apiUrl: "https://www.oklink.com/api/v5/explorer/xlayer/api";
|
|
1683
|
+
readonly name: "HyperEVMScan";
|
|
1684
|
+
readonly url: "https://hyperevmscan.io/";
|
|
1616
1685
|
};
|
|
1617
1686
|
};
|
|
1618
1687
|
blockTime?: number | undefined | undefined;
|
|
1619
1688
|
contracts: {
|
|
1620
1689
|
readonly multicall3: {
|
|
1621
1690
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1622
|
-
readonly blockCreated:
|
|
1691
|
+
readonly blockCreated: 13051;
|
|
1623
1692
|
};
|
|
1624
1693
|
};
|
|
1625
1694
|
ensTlds?: readonly string[] | undefined;
|
|
1626
|
-
id:
|
|
1627
|
-
name: "
|
|
1695
|
+
id: 999;
|
|
1696
|
+
name: "HyperEVM";
|
|
1628
1697
|
nativeCurrency: {
|
|
1698
|
+
readonly name: "HYPE";
|
|
1699
|
+
readonly symbol: "HYPE";
|
|
1629
1700
|
readonly decimals: 18;
|
|
1630
|
-
readonly name: "OKB";
|
|
1631
|
-
readonly symbol: "OKB";
|
|
1632
1701
|
};
|
|
1633
1702
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1634
1703
|
rpcUrls: {
|
|
1635
1704
|
readonly default: {
|
|
1636
|
-
readonly http: readonly ["https://rpc.
|
|
1705
|
+
readonly http: readonly ["https://rpc.hyperliquid.xyz/evm"];
|
|
1637
1706
|
};
|
|
1638
1707
|
};
|
|
1639
1708
|
sourceId?: number | undefined | undefined;
|
|
@@ -1642,7 +1711,7 @@ declare const SupportedChains: ({
|
|
|
1642
1711
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1643
1712
|
formatters?: undefined;
|
|
1644
1713
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1645
|
-
}
|
|
1714
|
+
};
|
|
1646
1715
|
|
|
1647
1716
|
declare const ZERO_ADDRESS = "0x0000000000000000000000000000000000000000";
|
|
1648
1717
|
declare const CONST: {
|
|
@@ -2275,25 +2344,7 @@ declare function getChainById(chainId: ChainId): SupportedChainType;
|
|
|
2275
2344
|
declare function getChainConfig(chainId: ChainId): {
|
|
2276
2345
|
contractAddress: string;
|
|
2277
2346
|
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
|
-
};
|
|
2347
|
+
} & Record<string, unknown>;
|
|
2297
2348
|
declare function getChainRpc(chainId: ChainId): string;
|
|
2298
2349
|
declare const getTonProjectIdByAddress: ({ address, slug, data }: {
|
|
2299
2350
|
address?: string;
|
|
@@ -2488,4 +2539,4 @@ declare const getAvailableClaimAmountForSignature: ({ contractAddress, chainId,
|
|
|
2488
2539
|
}[];
|
|
2489
2540
|
}) => Promise<string | 0>;
|
|
2490
2541
|
|
|
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 };
|
|
2542
|
+
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 };
|