@sign-global/tokentable-core 1.11.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 +12 -0
- package/dist/index.d.mts +873 -911
- package/dist/index.d.ts +873 -911
- package/dist/index.js +51 -28
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +54 -29
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/constants/chain-config.ts +42 -27
- package/src/constants/network.ts +6 -1
- 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,492 +58,460 @@ 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
|
-
contracts
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
multicall3?: viem.ChainContract | undefined;
|
|
296
|
-
erc6492Verifier?: viem.ChainContract | undefined;
|
|
297
|
-
} | undefined;
|
|
412
|
+
contracts: {
|
|
413
|
+
readonly multicall3: {
|
|
414
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
415
|
+
readonly blockCreated: 0;
|
|
416
|
+
};
|
|
417
|
+
};
|
|
298
418
|
ensTlds?: readonly string[] | undefined;
|
|
299
|
-
id:
|
|
300
|
-
name: "
|
|
419
|
+
id: 7560;
|
|
420
|
+
name: "Cyber";
|
|
301
421
|
nativeCurrency: {
|
|
302
|
-
readonly name: "
|
|
303
|
-
readonly symbol: "
|
|
422
|
+
readonly name: "Ether";
|
|
423
|
+
readonly symbol: "ETH";
|
|
304
424
|
readonly decimals: 18;
|
|
305
425
|
};
|
|
306
426
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
307
427
|
rpcUrls: {
|
|
308
428
|
readonly default: {
|
|
309
|
-
readonly http: readonly ["https://
|
|
429
|
+
readonly http: readonly ["https://cyber.alt.technology"];
|
|
310
430
|
};
|
|
311
431
|
};
|
|
312
432
|
sourceId?: number | undefined | undefined;
|
|
313
|
-
testnet
|
|
433
|
+
testnet?: boolean | undefined | undefined;
|
|
314
434
|
custom?: Record<string, unknown> | undefined;
|
|
315
435
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
316
|
-
formatters?: undefined;
|
|
317
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
declare const ChainConfig: {
|
|
321
|
-
[solanaDevNet.id]: {
|
|
322
|
-
contractAddress: string;
|
|
323
|
-
rpcUrl: string;
|
|
324
|
-
};
|
|
325
|
-
[solanaMainNet.id]: {
|
|
326
|
-
contractAddress: string;
|
|
327
|
-
rpcUrl: string;
|
|
328
|
-
};
|
|
329
|
-
[suiTestNet.id]: {
|
|
330
|
-
contractAddress: string;
|
|
331
|
-
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";
|
|
332
|
-
};
|
|
333
|
-
[suiMainNet.id]: {
|
|
334
|
-
contractAddress: string;
|
|
335
|
-
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";
|
|
336
|
-
};
|
|
337
|
-
[aptosTestNet.id]: {
|
|
338
|
-
contractAddress: string;
|
|
339
|
-
rpcUrl: string;
|
|
340
|
-
};
|
|
341
|
-
[aptosTestNet.id]: {
|
|
342
|
-
contractAddress: string;
|
|
343
|
-
rpcUrl: string;
|
|
344
|
-
};
|
|
345
|
-
1: {
|
|
346
|
-
contractAddress: string;
|
|
347
|
-
rpcUrl: string;
|
|
348
|
-
};
|
|
349
|
-
56: {
|
|
350
|
-
contractAddress: string;
|
|
351
|
-
rpcUrl: string;
|
|
352
|
-
};
|
|
353
|
-
8453: {
|
|
354
|
-
contractAddress: string;
|
|
355
|
-
rpcUrl: string;
|
|
356
|
-
};
|
|
357
|
-
7560: {
|
|
358
|
-
contractAddress: string;
|
|
359
|
-
rpcUrl: "https://cyber.alt.technology";
|
|
360
|
-
};
|
|
361
|
-
11155111: {
|
|
362
|
-
contractAddress: string;
|
|
363
|
-
rpcUrl: string;
|
|
364
|
-
};
|
|
365
|
-
84532: {
|
|
366
|
-
contractAddress: string;
|
|
367
|
-
rpcUrl: "https://sepolia.base.org";
|
|
368
|
-
};
|
|
369
|
-
7001: {
|
|
370
|
-
contractAddress: string;
|
|
371
|
-
rpcUrl: "https://zetachain-athens-evm.blockpi.network/v1/rpc/public";
|
|
372
|
-
};
|
|
373
|
-
7000: {
|
|
374
|
-
contractAddress: string;
|
|
375
|
-
rpcUrl: string;
|
|
376
|
-
};
|
|
377
|
-
42161: {
|
|
378
|
-
contractAddress: string;
|
|
379
|
-
rpcUrl: string;
|
|
380
|
-
};
|
|
381
|
-
999: {
|
|
382
|
-
contractAddress: string;
|
|
383
|
-
rpcUrl: "https://rpc.hyperliquid.xyz/evm";
|
|
384
|
-
};
|
|
385
|
-
6342: {
|
|
386
|
-
contractAddress: string;
|
|
387
|
-
rpcUrl: "https://carrot.megaeth.com/rpc";
|
|
388
|
-
};
|
|
389
|
-
80085: {
|
|
390
|
-
contractAddress: string;
|
|
391
|
-
rpcUrl: string;
|
|
392
|
-
availableSolutions: never[];
|
|
393
|
-
};
|
|
394
|
-
80001: {
|
|
395
|
-
contractAddress: string;
|
|
396
|
-
rpcUrl: string;
|
|
397
|
-
availableSolutions: never[];
|
|
398
|
-
};
|
|
399
|
-
80002: {
|
|
400
|
-
contractAddress: string;
|
|
401
|
-
rpcUrl: string;
|
|
402
|
-
availableSolutions: never[];
|
|
403
|
-
};
|
|
404
|
-
30732: {
|
|
405
|
-
contractAddress: string;
|
|
406
|
-
rpcUrl: "https://mevm.devnet.imola.movementlabs.xyz";
|
|
407
|
-
};
|
|
408
|
-
74460002: {
|
|
409
|
-
contractAddress: string;
|
|
410
|
-
rpcUrl: "https://brb-testnet-rpc-0.bk.sign.global/";
|
|
411
|
-
};
|
|
412
|
-
146: {
|
|
413
|
-
contractAddress: string;
|
|
414
|
-
rpcUrl: "https://rpc.soniclabs.com";
|
|
415
|
-
};
|
|
416
|
-
196: {
|
|
417
|
-
contractAddress: string;
|
|
418
|
-
rpcUrl: string;
|
|
419
|
-
};
|
|
420
|
-
"-3": {
|
|
421
|
-
name: string;
|
|
422
|
-
contractAddress: string;
|
|
423
|
-
rpcUrl: string;
|
|
424
|
-
tonApiPrefix: string;
|
|
425
|
-
blockExplorer: string;
|
|
426
|
-
};
|
|
427
|
-
"-239": {
|
|
428
|
-
name: string;
|
|
429
|
-
contractAddress: string;
|
|
430
|
-
rpcUrl: string;
|
|
431
|
-
tonApiPrefix: string;
|
|
432
|
-
blockExplorer: string;
|
|
433
|
-
};
|
|
434
|
-
};
|
|
435
|
-
declare const SupportedChains: ({
|
|
436
|
-
blockExplorers: {
|
|
437
|
-
readonly etherscan: {
|
|
438
|
-
readonly name: "Arbiscan";
|
|
439
|
-
readonly url: "https://explorer.devnet.imola.movementlabs.xyz/";
|
|
440
|
-
};
|
|
436
|
+
formatters?: undefined;
|
|
437
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
438
|
+
}, {
|
|
439
|
+
blockExplorers: {
|
|
441
440
|
readonly default: {
|
|
442
|
-
readonly name: "
|
|
443
|
-
readonly url: "https://
|
|
441
|
+
readonly name: "ZetaScan";
|
|
442
|
+
readonly url: "https://zetascan.com";
|
|
444
443
|
};
|
|
445
444
|
};
|
|
446
445
|
blockTime?: number | undefined | undefined;
|
|
447
446
|
contracts: {
|
|
448
447
|
readonly multicall3: {
|
|
449
|
-
readonly address: "
|
|
450
|
-
readonly blockCreated:
|
|
448
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
449
|
+
readonly blockCreated: 1632781;
|
|
451
450
|
};
|
|
452
451
|
};
|
|
453
452
|
ensTlds?: readonly string[] | undefined;
|
|
454
|
-
id:
|
|
455
|
-
name: "
|
|
453
|
+
id: 7000;
|
|
454
|
+
name: "ZetaChain";
|
|
456
455
|
nativeCurrency: {
|
|
457
|
-
readonly name: "Move";
|
|
458
|
-
readonly symbol: "MOVE";
|
|
459
456
|
readonly decimals: 18;
|
|
457
|
+
readonly name: "Zeta";
|
|
458
|
+
readonly symbol: "ZETA";
|
|
460
459
|
};
|
|
461
460
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
462
461
|
rpcUrls: {
|
|
463
462
|
readonly default: {
|
|
464
|
-
readonly http: readonly ["https://
|
|
465
|
-
};
|
|
466
|
-
readonly public: {
|
|
467
|
-
readonly http: readonly ["https://mevm.devnet.imola.movementlabs.xyz"];
|
|
463
|
+
readonly http: readonly ["https://zetachain-evm.blockpi.network/v1/rpc/public"];
|
|
468
464
|
};
|
|
469
465
|
};
|
|
470
466
|
sourceId?: number | undefined | undefined;
|
|
471
|
-
testnet
|
|
467
|
+
testnet: false;
|
|
472
468
|
custom?: Record<string, unknown> | undefined;
|
|
473
469
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
474
470
|
formatters?: undefined;
|
|
475
471
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
476
|
-
|
|
477
|
-
} | {
|
|
478
|
-
id: CHAIN;
|
|
479
|
-
name: string;
|
|
480
|
-
network: string;
|
|
481
|
-
nativeCurrency: {
|
|
482
|
-
decimals: number;
|
|
483
|
-
name: string;
|
|
484
|
-
symbol: string;
|
|
485
|
-
};
|
|
486
|
-
rpcUrls: {
|
|
487
|
-
public: {
|
|
488
|
-
http: never[];
|
|
489
|
-
};
|
|
490
|
-
default: {
|
|
491
|
-
http: never[];
|
|
492
|
-
};
|
|
493
|
-
};
|
|
472
|
+
}, {
|
|
494
473
|
blockExplorers: {
|
|
495
|
-
default: {
|
|
496
|
-
name:
|
|
497
|
-
url:
|
|
474
|
+
readonly default: {
|
|
475
|
+
readonly name: "Arbiscan";
|
|
476
|
+
readonly url: "https://arbiscan.io";
|
|
477
|
+
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
498
478
|
};
|
|
499
479
|
};
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
readonly
|
|
503
|
-
readonly
|
|
504
|
-
readonly
|
|
480
|
+
blockTime: 250;
|
|
481
|
+
contracts: {
|
|
482
|
+
readonly multicall3: {
|
|
483
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
484
|
+
readonly blockCreated: 7654707;
|
|
505
485
|
};
|
|
506
486
|
};
|
|
507
|
-
blockTime?: number | undefined | undefined;
|
|
508
|
-
contracts?: {
|
|
509
|
-
[x: string]: viem.ChainContract | {
|
|
510
|
-
[sourceId: number]: viem.ChainContract | undefined;
|
|
511
|
-
} | undefined;
|
|
512
|
-
ensRegistry?: viem.ChainContract | undefined;
|
|
513
|
-
ensUniversalResolver?: viem.ChainContract | undefined;
|
|
514
|
-
multicall3?: viem.ChainContract | undefined;
|
|
515
|
-
erc6492Verifier?: viem.ChainContract | undefined;
|
|
516
|
-
} | undefined;
|
|
517
487
|
ensTlds?: readonly string[] | undefined;
|
|
518
|
-
id:
|
|
519
|
-
name: "
|
|
488
|
+
id: 42161;
|
|
489
|
+
name: "Arbitrum One";
|
|
520
490
|
nativeCurrency: {
|
|
491
|
+
readonly name: "Ether";
|
|
492
|
+
readonly symbol: "ETH";
|
|
521
493
|
readonly decimals: 18;
|
|
522
|
-
readonly name: "BNB Token";
|
|
523
|
-
readonly symbol: "BNB";
|
|
524
494
|
};
|
|
525
495
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
526
496
|
rpcUrls: {
|
|
527
497
|
readonly default: {
|
|
528
|
-
readonly http: readonly ["https://
|
|
529
|
-
};
|
|
530
|
-
readonly public: {
|
|
531
|
-
readonly http: readonly ["https://brb-testnet-rpc-0.bk.sign.global/"];
|
|
498
|
+
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
532
499
|
};
|
|
533
500
|
};
|
|
534
501
|
sourceId?: number | undefined | undefined;
|
|
535
|
-
testnet
|
|
502
|
+
testnet?: boolean | undefined | undefined;
|
|
536
503
|
custom?: Record<string, unknown> | undefined;
|
|
537
504
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
538
505
|
formatters?: undefined;
|
|
539
506
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
540
|
-
|
|
541
|
-
} | {
|
|
507
|
+
}, {
|
|
542
508
|
blockExplorers: {
|
|
543
509
|
readonly default: {
|
|
544
|
-
readonly name: "
|
|
545
|
-
readonly url: "https://
|
|
510
|
+
readonly name: "Monvision";
|
|
511
|
+
readonly url: "https://mainnet-beta.monvision.io";
|
|
546
512
|
};
|
|
547
513
|
};
|
|
548
|
-
blockTime
|
|
514
|
+
blockTime: 400;
|
|
549
515
|
contracts?: {
|
|
550
516
|
[x: string]: viem.ChainContract | {
|
|
551
517
|
[sourceId: number]: viem.ChainContract | undefined;
|
|
@@ -556,17 +522,17 @@ declare const SupportedChains: ({
|
|
|
556
522
|
erc6492Verifier?: viem.ChainContract | undefined;
|
|
557
523
|
} | undefined;
|
|
558
524
|
ensTlds?: readonly string[] | undefined;
|
|
559
|
-
id:
|
|
560
|
-
name: "
|
|
525
|
+
id: 143;
|
|
526
|
+
name: "Monad";
|
|
561
527
|
nativeCurrency: {
|
|
562
|
-
readonly name: "
|
|
563
|
-
readonly symbol: "
|
|
528
|
+
readonly name: "Monad";
|
|
529
|
+
readonly symbol: "MON";
|
|
564
530
|
readonly decimals: 18;
|
|
565
531
|
};
|
|
566
532
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
567
533
|
rpcUrls: {
|
|
568
534
|
readonly default: {
|
|
569
|
-
readonly http: readonly ["https://rpc.
|
|
535
|
+
readonly http: readonly ["https://rpc.monad.xyz"];
|
|
570
536
|
};
|
|
571
537
|
};
|
|
572
538
|
sourceId?: number | undefined | undefined;
|
|
@@ -575,414 +541,189 @@ declare const SupportedChains: ({
|
|
|
575
541
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
576
542
|
formatters?: undefined;
|
|
577
543
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
578
|
-
}
|
|
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
|
+
};
|
|
579
561
|
blockExplorers: {
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
readonly apiUrl: "https://api.etherscan.io/api";
|
|
562
|
+
default: {
|
|
563
|
+
name: string;
|
|
564
|
+
url: string;
|
|
584
565
|
};
|
|
585
566
|
};
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
567
|
+
testnet: boolean;
|
|
568
|
+
}, {
|
|
569
|
+
id: CHAIN;
|
|
570
|
+
name: string;
|
|
571
|
+
network: string;
|
|
572
|
+
nativeCurrency: {
|
|
573
|
+
decimals: number;
|
|
574
|
+
name: string;
|
|
575
|
+
symbol: string;
|
|
576
|
+
};
|
|
577
|
+
rpcUrls: {
|
|
578
|
+
public: {
|
|
579
|
+
http: never[];
|
|
591
580
|
};
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
581
|
+
default: {
|
|
582
|
+
http: never[];
|
|
583
|
+
};
|
|
584
|
+
};
|
|
585
|
+
blockExplorers: {
|
|
586
|
+
default: {
|
|
587
|
+
name: string;
|
|
588
|
+
url: string;
|
|
595
589
|
};
|
|
596
590
|
};
|
|
591
|
+
}, {
|
|
592
|
+
blockExplorers: {
|
|
593
|
+
readonly default: {
|
|
594
|
+
readonly name: "Sign Brb Testnet Explorer";
|
|
595
|
+
readonly url: "https://explorer-testnet.bk.sign.global/";
|
|
596
|
+
};
|
|
597
|
+
};
|
|
598
|
+
blockTime?: number | undefined | undefined;
|
|
599
|
+
contracts?: {
|
|
600
|
+
[x: string]: viem.ChainContract | {
|
|
601
|
+
[sourceId: number]: viem.ChainContract | undefined;
|
|
602
|
+
} | undefined;
|
|
603
|
+
ensRegistry?: viem.ChainContract | undefined;
|
|
604
|
+
ensUniversalResolver?: viem.ChainContract | undefined;
|
|
605
|
+
multicall3?: viem.ChainContract | undefined;
|
|
606
|
+
erc6492Verifier?: viem.ChainContract | undefined;
|
|
607
|
+
} | undefined;
|
|
597
608
|
ensTlds?: readonly string[] | undefined;
|
|
598
|
-
id:
|
|
599
|
-
name: "
|
|
609
|
+
id: 74460002;
|
|
610
|
+
name: "Sign Brb Testnet";
|
|
600
611
|
nativeCurrency: {
|
|
601
|
-
readonly name: "Ether";
|
|
602
|
-
readonly symbol: "ETH";
|
|
603
612
|
readonly decimals: 18;
|
|
613
|
+
readonly name: "BNB Token";
|
|
614
|
+
readonly symbol: "BNB";
|
|
604
615
|
};
|
|
605
616
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
606
617
|
rpcUrls: {
|
|
607
618
|
readonly default: {
|
|
608
|
-
readonly http: readonly ["https://
|
|
619
|
+
readonly http: readonly ["https://brb-testnet-rpc-0.bk.sign.global/"];
|
|
620
|
+
};
|
|
621
|
+
readonly public: {
|
|
622
|
+
readonly http: readonly ["https://brb-testnet-rpc-0.bk.sign.global/"];
|
|
609
623
|
};
|
|
610
624
|
};
|
|
611
625
|
sourceId?: number | undefined | undefined;
|
|
612
|
-
testnet
|
|
626
|
+
testnet: true;
|
|
613
627
|
custom?: Record<string, unknown> | undefined;
|
|
614
628
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
615
629
|
formatters?: undefined;
|
|
616
630
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
617
|
-
|
|
631
|
+
readonly network: "Sign Brb Testnet";
|
|
632
|
+
}, {
|
|
618
633
|
blockExplorers: {
|
|
619
634
|
readonly default: {
|
|
620
|
-
readonly name: "
|
|
621
|
-
readonly url: "https://
|
|
622
|
-
readonly apiUrl: "https://api.bscscan.com/api";
|
|
635
|
+
readonly name: "Sonic Explorer";
|
|
636
|
+
readonly url: "https://sonicscan.org";
|
|
623
637
|
};
|
|
624
638
|
};
|
|
625
|
-
blockTime:
|
|
639
|
+
blockTime: 630;
|
|
626
640
|
contracts: {
|
|
627
641
|
readonly multicall3: {
|
|
628
642
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
629
|
-
readonly blockCreated:
|
|
643
|
+
readonly blockCreated: 60;
|
|
630
644
|
};
|
|
631
645
|
};
|
|
632
646
|
ensTlds?: readonly string[] | undefined;
|
|
633
|
-
id:
|
|
634
|
-
name: "
|
|
647
|
+
id: 146;
|
|
648
|
+
name: "Sonic";
|
|
635
649
|
nativeCurrency: {
|
|
636
650
|
readonly decimals: 18;
|
|
637
|
-
readonly name: "
|
|
638
|
-
readonly symbol: "
|
|
651
|
+
readonly name: "Sonic";
|
|
652
|
+
readonly symbol: "S";
|
|
639
653
|
};
|
|
640
654
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
641
655
|
rpcUrls: {
|
|
642
656
|
readonly default: {
|
|
643
|
-
readonly http: readonly ["https://
|
|
657
|
+
readonly http: readonly ["https://rpc.soniclabs.com"];
|
|
644
658
|
};
|
|
645
659
|
};
|
|
646
660
|
sourceId?: number | undefined | undefined;
|
|
647
|
-
testnet
|
|
661
|
+
testnet: false;
|
|
648
662
|
custom?: Record<string, unknown> | undefined;
|
|
649
663
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
650
664
|
formatters?: undefined;
|
|
651
665
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
652
|
-
}
|
|
666
|
+
}, {
|
|
653
667
|
blockExplorers: {
|
|
654
668
|
readonly default: {
|
|
655
|
-
readonly name: "
|
|
656
|
-
readonly url: "https://
|
|
657
|
-
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";
|
|
658
672
|
};
|
|
659
673
|
};
|
|
660
|
-
blockTime
|
|
674
|
+
blockTime?: number | undefined | undefined;
|
|
661
675
|
contracts: {
|
|
662
|
-
readonly disputeGameFactory: {
|
|
663
|
-
readonly 1: {
|
|
664
|
-
readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
|
|
665
|
-
};
|
|
666
|
-
};
|
|
667
|
-
readonly l2OutputOracle: {
|
|
668
|
-
readonly 1: {
|
|
669
|
-
readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
|
|
670
|
-
};
|
|
671
|
-
};
|
|
672
676
|
readonly multicall3: {
|
|
673
|
-
readonly address: "
|
|
674
|
-
readonly blockCreated:
|
|
675
|
-
};
|
|
676
|
-
readonly portal: {
|
|
677
|
-
readonly 1: {
|
|
678
|
-
readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
|
|
679
|
-
readonly blockCreated: 17482143;
|
|
680
|
-
};
|
|
681
|
-
};
|
|
682
|
-
readonly l1StandardBridge: {
|
|
683
|
-
readonly 1: {
|
|
684
|
-
readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
|
|
685
|
-
readonly blockCreated: 17482143;
|
|
686
|
-
};
|
|
687
|
-
};
|
|
688
|
-
readonly gasPriceOracle: {
|
|
689
|
-
readonly address: "0x420000000000000000000000000000000000000F";
|
|
690
|
-
};
|
|
691
|
-
readonly l1Block: {
|
|
692
|
-
readonly address: "0x4200000000000000000000000000000000000015";
|
|
693
|
-
};
|
|
694
|
-
readonly l2CrossDomainMessenger: {
|
|
695
|
-
readonly address: "0x4200000000000000000000000000000000000007";
|
|
696
|
-
};
|
|
697
|
-
readonly l2Erc721Bridge: {
|
|
698
|
-
readonly address: "0x4200000000000000000000000000000000000014";
|
|
699
|
-
};
|
|
700
|
-
readonly l2StandardBridge: {
|
|
701
|
-
readonly address: "0x4200000000000000000000000000000000000010";
|
|
702
|
-
};
|
|
703
|
-
readonly l2ToL1MessagePasser: {
|
|
704
|
-
readonly address: "0x4200000000000000000000000000000000000016";
|
|
677
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
678
|
+
readonly blockCreated: 47416;
|
|
705
679
|
};
|
|
706
680
|
};
|
|
707
681
|
ensTlds?: readonly string[] | undefined;
|
|
708
|
-
id:
|
|
709
|
-
name: "
|
|
710
|
-
nativeCurrency: {
|
|
711
|
-
readonly name: "Ether";
|
|
712
|
-
readonly symbol: "ETH";
|
|
682
|
+
id: 196;
|
|
683
|
+
name: "X Layer Mainnet";
|
|
684
|
+
nativeCurrency: {
|
|
713
685
|
readonly decimals: 18;
|
|
686
|
+
readonly name: "OKB";
|
|
687
|
+
readonly symbol: "OKB";
|
|
714
688
|
};
|
|
715
689
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
716
690
|
rpcUrls: {
|
|
717
691
|
readonly default: {
|
|
718
|
-
readonly http: readonly ["https://
|
|
692
|
+
readonly http: readonly ["https://rpc.xlayer.tech"];
|
|
719
693
|
};
|
|
720
694
|
};
|
|
721
|
-
sourceId
|
|
695
|
+
sourceId?: number | undefined | undefined;
|
|
722
696
|
testnet?: boolean | undefined | undefined;
|
|
723
697
|
custom?: Record<string, unknown> | undefined;
|
|
724
698
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
725
|
-
formatters
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
format: (args: viem_chains.OpStackRpcBlock, action?: string | undefined) => {
|
|
729
|
-
baseFeePerGas: bigint | null;
|
|
730
|
-
blobGasUsed: bigint;
|
|
731
|
-
difficulty: bigint;
|
|
732
|
-
excessBlobGas: bigint;
|
|
733
|
-
extraData: viem.Hex;
|
|
734
|
-
gasLimit: bigint;
|
|
735
|
-
gasUsed: bigint;
|
|
736
|
-
hash: `0x${string}` | null;
|
|
737
|
-
logsBloom: `0x${string}` | null;
|
|
738
|
-
miner: viem.Address;
|
|
739
|
-
mixHash: viem.Hash;
|
|
740
|
-
nonce: `0x${string}` | null;
|
|
741
|
-
number: bigint | null;
|
|
742
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
743
|
-
parentHash: viem.Hash;
|
|
744
|
-
receiptsRoot: viem.Hex;
|
|
745
|
-
sealFields: viem.Hex[];
|
|
746
|
-
sha3Uncles: viem.Hash;
|
|
747
|
-
size: bigint;
|
|
748
|
-
stateRoot: viem.Hash;
|
|
749
|
-
timestamp: bigint;
|
|
750
|
-
totalDifficulty: bigint | null;
|
|
751
|
-
transactions: `0x${string}`[] | viem_chains.OpStackTransaction<boolean>[];
|
|
752
|
-
transactionsRoot: viem.Hash;
|
|
753
|
-
uncles: viem.Hash[];
|
|
754
|
-
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
755
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
756
|
-
} & {};
|
|
757
|
-
type: "block";
|
|
758
|
-
};
|
|
759
|
-
readonly transaction: {
|
|
760
|
-
exclude: [] | undefined;
|
|
761
|
-
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
762
|
-
blockHash: `0x${string}` | null;
|
|
763
|
-
blockNumber: bigint | null;
|
|
764
|
-
from: viem.Address;
|
|
765
|
-
gas: bigint;
|
|
766
|
-
hash: viem.Hash;
|
|
767
|
-
input: viem.Hex;
|
|
768
|
-
nonce: number;
|
|
769
|
-
r: viem.Hex;
|
|
770
|
-
s: viem.Hex;
|
|
771
|
-
to: viem.Address | null;
|
|
772
|
-
transactionIndex: number | null;
|
|
773
|
-
typeHex: viem.Hex | null;
|
|
774
|
-
v: bigint;
|
|
775
|
-
value: bigint;
|
|
776
|
-
yParity: number;
|
|
777
|
-
gasPrice?: undefined | undefined;
|
|
778
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
779
|
-
maxFeePerGas: bigint;
|
|
780
|
-
maxPriorityFeePerGas: bigint;
|
|
781
|
-
isSystemTx?: boolean;
|
|
782
|
-
mint?: bigint | undefined | undefined;
|
|
783
|
-
sourceHash: viem.Hex;
|
|
784
|
-
type: "deposit";
|
|
785
|
-
} | {
|
|
786
|
-
r: viem.Hex;
|
|
787
|
-
s: viem.Hex;
|
|
788
|
-
v: bigint;
|
|
789
|
-
value: bigint;
|
|
790
|
-
gas: bigint;
|
|
791
|
-
to: viem.Address | null;
|
|
792
|
-
from: viem.Address;
|
|
793
|
-
nonce: number;
|
|
794
|
-
blockHash: `0x${string}` | null;
|
|
795
|
-
blockNumber: bigint | null;
|
|
796
|
-
transactionIndex: number | null;
|
|
797
|
-
hash: viem.Hash;
|
|
798
|
-
input: viem.Hex;
|
|
799
|
-
typeHex: viem.Hex | null;
|
|
800
|
-
accessList?: undefined | undefined;
|
|
801
|
-
authorizationList?: undefined | undefined;
|
|
802
|
-
blobVersionedHashes?: undefined | undefined;
|
|
803
|
-
chainId?: number | undefined;
|
|
804
|
-
yParity?: undefined | undefined;
|
|
805
|
-
type: "legacy";
|
|
806
|
-
gasPrice: bigint;
|
|
807
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
808
|
-
maxFeePerGas?: undefined | undefined;
|
|
809
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
810
|
-
isSystemTx?: undefined | undefined;
|
|
811
|
-
mint?: undefined | undefined;
|
|
812
|
-
sourceHash?: undefined | undefined;
|
|
813
|
-
} | {
|
|
814
|
-
blockHash: `0x${string}` | null;
|
|
815
|
-
blockNumber: bigint | null;
|
|
816
|
-
from: viem.Address;
|
|
817
|
-
gas: bigint;
|
|
818
|
-
hash: viem.Hash;
|
|
819
|
-
input: viem.Hex;
|
|
820
|
-
nonce: number;
|
|
821
|
-
r: viem.Hex;
|
|
822
|
-
s: viem.Hex;
|
|
823
|
-
to: viem.Address | null;
|
|
824
|
-
transactionIndex: number | null;
|
|
825
|
-
typeHex: viem.Hex | null;
|
|
826
|
-
v: bigint;
|
|
827
|
-
value: bigint;
|
|
828
|
-
yParity: number;
|
|
829
|
-
accessList: viem.AccessList;
|
|
830
|
-
authorizationList?: undefined | undefined;
|
|
831
|
-
blobVersionedHashes?: undefined | undefined;
|
|
832
|
-
chainId: number;
|
|
833
|
-
type: "eip2930";
|
|
834
|
-
gasPrice: bigint;
|
|
835
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
836
|
-
maxFeePerGas?: undefined | undefined;
|
|
837
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
838
|
-
isSystemTx?: undefined | undefined;
|
|
839
|
-
mint?: undefined | undefined;
|
|
840
|
-
sourceHash?: undefined | undefined;
|
|
841
|
-
} | {
|
|
842
|
-
blockHash: `0x${string}` | null;
|
|
843
|
-
blockNumber: bigint | null;
|
|
844
|
-
from: viem.Address;
|
|
845
|
-
gas: bigint;
|
|
846
|
-
hash: viem.Hash;
|
|
847
|
-
input: viem.Hex;
|
|
848
|
-
nonce: number;
|
|
849
|
-
r: viem.Hex;
|
|
850
|
-
s: viem.Hex;
|
|
851
|
-
to: viem.Address | null;
|
|
852
|
-
transactionIndex: number | null;
|
|
853
|
-
typeHex: viem.Hex | null;
|
|
854
|
-
v: bigint;
|
|
855
|
-
value: bigint;
|
|
856
|
-
yParity: number;
|
|
857
|
-
accessList: viem.AccessList;
|
|
858
|
-
authorizationList?: undefined | undefined;
|
|
859
|
-
blobVersionedHashes?: undefined | undefined;
|
|
860
|
-
chainId: number;
|
|
861
|
-
type: "eip1559";
|
|
862
|
-
gasPrice?: undefined | undefined;
|
|
863
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
864
|
-
maxFeePerGas: bigint;
|
|
865
|
-
maxPriorityFeePerGas: bigint;
|
|
866
|
-
isSystemTx?: undefined | undefined;
|
|
867
|
-
mint?: undefined | undefined;
|
|
868
|
-
sourceHash?: undefined | undefined;
|
|
869
|
-
} | {
|
|
870
|
-
blockHash: `0x${string}` | null;
|
|
871
|
-
blockNumber: bigint | null;
|
|
872
|
-
from: viem.Address;
|
|
873
|
-
gas: bigint;
|
|
874
|
-
hash: viem.Hash;
|
|
875
|
-
input: viem.Hex;
|
|
876
|
-
nonce: number;
|
|
877
|
-
r: viem.Hex;
|
|
878
|
-
s: viem.Hex;
|
|
879
|
-
to: viem.Address | null;
|
|
880
|
-
transactionIndex: number | null;
|
|
881
|
-
typeHex: viem.Hex | null;
|
|
882
|
-
v: bigint;
|
|
883
|
-
value: bigint;
|
|
884
|
-
yParity: number;
|
|
885
|
-
accessList: viem.AccessList;
|
|
886
|
-
authorizationList?: undefined | undefined;
|
|
887
|
-
blobVersionedHashes: readonly viem.Hex[];
|
|
888
|
-
chainId: number;
|
|
889
|
-
type: "eip4844";
|
|
890
|
-
gasPrice?: undefined | undefined;
|
|
891
|
-
maxFeePerBlobGas: bigint;
|
|
892
|
-
maxFeePerGas: bigint;
|
|
893
|
-
maxPriorityFeePerGas: bigint;
|
|
894
|
-
isSystemTx?: undefined | undefined;
|
|
895
|
-
mint?: undefined | undefined;
|
|
896
|
-
sourceHash?: undefined | undefined;
|
|
897
|
-
} | {
|
|
898
|
-
blockHash: `0x${string}` | null;
|
|
899
|
-
blockNumber: bigint | null;
|
|
900
|
-
from: viem.Address;
|
|
901
|
-
gas: bigint;
|
|
902
|
-
hash: viem.Hash;
|
|
903
|
-
input: viem.Hex;
|
|
904
|
-
nonce: number;
|
|
905
|
-
r: viem.Hex;
|
|
906
|
-
s: viem.Hex;
|
|
907
|
-
to: viem.Address | null;
|
|
908
|
-
transactionIndex: number | null;
|
|
909
|
-
typeHex: viem.Hex | null;
|
|
910
|
-
v: bigint;
|
|
911
|
-
value: bigint;
|
|
912
|
-
yParity: number;
|
|
913
|
-
accessList: viem.AccessList;
|
|
914
|
-
authorizationList: viem.SignedAuthorizationList;
|
|
915
|
-
blobVersionedHashes?: undefined | undefined;
|
|
916
|
-
chainId: number;
|
|
917
|
-
type: "eip7702";
|
|
918
|
-
gasPrice?: undefined | undefined;
|
|
919
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
920
|
-
maxFeePerGas: bigint;
|
|
921
|
-
maxPriorityFeePerGas: bigint;
|
|
922
|
-
isSystemTx?: undefined | undefined;
|
|
923
|
-
mint?: undefined | undefined;
|
|
924
|
-
sourceHash?: undefined | undefined;
|
|
925
|
-
}) & {};
|
|
926
|
-
type: "transaction";
|
|
927
|
-
};
|
|
928
|
-
readonly transactionReceipt: {
|
|
929
|
-
exclude: [] | undefined;
|
|
930
|
-
format: (args: viem_chains.OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
931
|
-
blobGasPrice?: bigint | undefined;
|
|
932
|
-
blobGasUsed?: bigint | undefined;
|
|
933
|
-
blockHash: viem.Hash;
|
|
934
|
-
blockNumber: bigint;
|
|
935
|
-
contractAddress: viem.Address | null | undefined;
|
|
936
|
-
cumulativeGasUsed: bigint;
|
|
937
|
-
effectiveGasPrice: bigint;
|
|
938
|
-
from: viem.Address;
|
|
939
|
-
gasUsed: bigint;
|
|
940
|
-
logs: viem.Log<bigint, number, false>[];
|
|
941
|
-
logsBloom: viem.Hex;
|
|
942
|
-
root?: `0x${string}` | undefined;
|
|
943
|
-
status: "success" | "reverted";
|
|
944
|
-
to: viem.Address | null;
|
|
945
|
-
transactionHash: viem.Hash;
|
|
946
|
-
transactionIndex: number;
|
|
947
|
-
type: viem.TransactionType;
|
|
948
|
-
l1GasPrice: bigint | null;
|
|
949
|
-
l1GasUsed: bigint | null;
|
|
950
|
-
l1Fee: bigint | null;
|
|
951
|
-
l1FeeScalar: number | null;
|
|
952
|
-
} & {};
|
|
953
|
-
type: "transactionReceipt";
|
|
954
|
-
};
|
|
955
|
-
};
|
|
956
|
-
serializers: {
|
|
957
|
-
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
958
|
-
};
|
|
959
|
-
} | {
|
|
699
|
+
formatters?: undefined;
|
|
700
|
+
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
701
|
+
}, {
|
|
960
702
|
blockExplorers: {
|
|
961
703
|
readonly default: {
|
|
962
|
-
readonly name: "
|
|
963
|
-
readonly url: "https://
|
|
964
|
-
readonly apiUrl: "https://cyberscan.co/api";
|
|
704
|
+
readonly name: "HyperEVMScan";
|
|
705
|
+
readonly url: "https://hyperevmscan.io/";
|
|
965
706
|
};
|
|
966
707
|
};
|
|
967
708
|
blockTime?: number | undefined | undefined;
|
|
968
709
|
contracts: {
|
|
969
710
|
readonly multicall3: {
|
|
970
711
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
971
|
-
readonly blockCreated:
|
|
712
|
+
readonly blockCreated: 13051;
|
|
972
713
|
};
|
|
973
714
|
};
|
|
974
715
|
ensTlds?: readonly string[] | undefined;
|
|
975
|
-
id:
|
|
976
|
-
name: "
|
|
977
|
-
nativeCurrency: {
|
|
978
|
-
readonly name: "
|
|
979
|
-
readonly symbol: "
|
|
716
|
+
id: 999;
|
|
717
|
+
name: "HyperEVM";
|
|
718
|
+
nativeCurrency: {
|
|
719
|
+
readonly name: "HYPE";
|
|
720
|
+
readonly symbol: "HYPE";
|
|
980
721
|
readonly decimals: 18;
|
|
981
722
|
};
|
|
982
723
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
983
724
|
rpcUrls: {
|
|
984
725
|
readonly default: {
|
|
985
|
-
readonly http: readonly ["https://
|
|
726
|
+
readonly http: readonly ["https://rpc.hyperliquid.xyz/evm"];
|
|
986
727
|
};
|
|
987
728
|
};
|
|
988
729
|
sourceId?: number | undefined | undefined;
|
|
@@ -991,7 +732,7 @@ declare const SupportedChains: ({
|
|
|
991
732
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
992
733
|
formatters?: undefined;
|
|
993
734
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
994
|
-
}
|
|
735
|
+
}, {
|
|
995
736
|
blockExplorers: {
|
|
996
737
|
readonly default: {
|
|
997
738
|
readonly name: "Etherscan";
|
|
@@ -1021,7 +762,7 @@ declare const SupportedChains: ({
|
|
|
1021
762
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1022
763
|
rpcUrls: {
|
|
1023
764
|
readonly default: {
|
|
1024
|
-
readonly http: readonly ["https://
|
|
765
|
+
readonly http: readonly ["https://11155111.rpc.thirdweb.com"];
|
|
1025
766
|
};
|
|
1026
767
|
};
|
|
1027
768
|
sourceId?: number | undefined | undefined;
|
|
@@ -1030,7 +771,7 @@ declare const SupportedChains: ({
|
|
|
1030
771
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1031
772
|
formatters?: undefined;
|
|
1032
773
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1033
|
-
}
|
|
774
|
+
}, {
|
|
1034
775
|
blockExplorers: {
|
|
1035
776
|
readonly default: {
|
|
1036
777
|
readonly name: "Basescan";
|
|
@@ -1338,7 +1079,7 @@ declare const SupportedChains: ({
|
|
|
1338
1079
|
readonly transaction: typeof viem_chains.serializeTransactionOpStack;
|
|
1339
1080
|
};
|
|
1340
1081
|
readonly network: "base-sepolia";
|
|
1341
|
-
}
|
|
1082
|
+
}, {
|
|
1342
1083
|
blockExplorers: {
|
|
1343
1084
|
readonly default: {
|
|
1344
1085
|
readonly name: "ZetaScan";
|
|
@@ -1372,67 +1113,143 @@ declare const SupportedChains: ({
|
|
|
1372
1113
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1373
1114
|
formatters?: undefined;
|
|
1374
1115
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1375
|
-
}
|
|
1116
|
+
}, {
|
|
1376
1117
|
blockExplorers: {
|
|
1377
1118
|
readonly default: {
|
|
1378
|
-
readonly name: "
|
|
1379
|
-
readonly url: "https://
|
|
1119
|
+
readonly name: "Berachain";
|
|
1120
|
+
readonly url: "https://artio.beratrail.io";
|
|
1380
1121
|
};
|
|
1381
1122
|
};
|
|
1382
1123
|
blockTime?: number | undefined | undefined;
|
|
1383
1124
|
contracts: {
|
|
1384
1125
|
readonly multicall3: {
|
|
1385
1126
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1386
|
-
readonly blockCreated:
|
|
1127
|
+
readonly blockCreated: 866924;
|
|
1387
1128
|
};
|
|
1388
1129
|
};
|
|
1389
1130
|
ensTlds?: readonly string[] | undefined;
|
|
1390
|
-
id:
|
|
1391
|
-
name: "
|
|
1131
|
+
id: 80085;
|
|
1132
|
+
name: "Berachain Artio";
|
|
1392
1133
|
nativeCurrency: {
|
|
1393
1134
|
readonly decimals: 18;
|
|
1394
|
-
readonly name: "
|
|
1395
|
-
readonly symbol: "
|
|
1135
|
+
readonly name: "BERA Token";
|
|
1136
|
+
readonly symbol: "BERA";
|
|
1396
1137
|
};
|
|
1397
1138
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1398
1139
|
rpcUrls: {
|
|
1399
1140
|
readonly default: {
|
|
1400
|
-
readonly http: readonly ["https://
|
|
1141
|
+
readonly http: readonly ["https://artio.rpc.berachain.com"];
|
|
1401
1142
|
};
|
|
1402
1143
|
};
|
|
1403
1144
|
sourceId?: number | undefined | undefined;
|
|
1404
|
-
testnet:
|
|
1145
|
+
testnet: true;
|
|
1405
1146
|
custom?: Record<string, unknown> | undefined;
|
|
1406
1147
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1407
1148
|
formatters?: undefined;
|
|
1408
1149
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1409
|
-
}
|
|
1150
|
+
}, {
|
|
1410
1151
|
blockExplorers: {
|
|
1411
1152
|
readonly default: {
|
|
1412
|
-
readonly name: "
|
|
1413
|
-
readonly url: "https://
|
|
1414
|
-
readonly apiUrl: "https://api.
|
|
1153
|
+
readonly name: "PolygonScan";
|
|
1154
|
+
readonly url: "https://mumbai.polygonscan.com";
|
|
1155
|
+
readonly apiUrl: "https://api-testnet.polygonscan.com/api";
|
|
1415
1156
|
};
|
|
1416
1157
|
};
|
|
1417
|
-
blockTime
|
|
1158
|
+
blockTime?: number | undefined | undefined;
|
|
1418
1159
|
contracts: {
|
|
1419
1160
|
readonly multicall3: {
|
|
1420
1161
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1421
|
-
readonly blockCreated:
|
|
1162
|
+
readonly blockCreated: 25770160;
|
|
1422
1163
|
};
|
|
1423
1164
|
};
|
|
1424
1165
|
ensTlds?: readonly string[] | undefined;
|
|
1425
|
-
id:
|
|
1426
|
-
name: "
|
|
1166
|
+
id: 80001;
|
|
1167
|
+
name: "Polygon Mumbai";
|
|
1427
1168
|
nativeCurrency: {
|
|
1428
|
-
readonly name: "
|
|
1429
|
-
readonly symbol: "
|
|
1169
|
+
readonly name: "MATIC";
|
|
1170
|
+
readonly symbol: "MATIC";
|
|
1430
1171
|
readonly decimals: 18;
|
|
1431
1172
|
};
|
|
1432
1173
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1433
1174
|
rpcUrls: {
|
|
1434
1175
|
readonly default: {
|
|
1435
|
-
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"];
|
|
1436
1253
|
};
|
|
1437
1254
|
};
|
|
1438
1255
|
sourceId?: number | undefined | undefined;
|
|
@@ -1441,101 +1258,257 @@ declare const SupportedChains: ({
|
|
|
1441
1258
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1442
1259
|
formatters?: undefined;
|
|
1443
1260
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1444
|
-
|
|
1261
|
+
readonly network: "mevm";
|
|
1262
|
+
}, {
|
|
1445
1263
|
blockExplorers: {
|
|
1446
1264
|
readonly default: {
|
|
1447
1265
|
readonly name: "MegaETH Testnet Explorer";
|
|
1448
1266
|
readonly url: "https://www.megaexplorer.xyz/";
|
|
1449
1267
|
};
|
|
1450
1268
|
};
|
|
1451
|
-
blockTime: 1000;
|
|
1452
|
-
contracts: {
|
|
1453
|
-
readonly multicall3: {
|
|
1454
|
-
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;
|
|
1455
1427
|
};
|
|
1456
1428
|
};
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1429
|
+
};
|
|
1430
|
+
declare const solanaDevNet: {
|
|
1431
|
+
id: string;
|
|
1432
|
+
name: string;
|
|
1433
|
+
network: string;
|
|
1460
1434
|
nativeCurrency: {
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1435
|
+
decimals: number;
|
|
1436
|
+
name: string;
|
|
1437
|
+
symbol: string;
|
|
1464
1438
|
};
|
|
1465
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1466
1439
|
rpcUrls: {
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
readonly webSocket: readonly ["wss://carrot.megaeth.com/ws"];
|
|
1440
|
+
public: {
|
|
1441
|
+
http: string[];
|
|
1470
1442
|
};
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
testnet: true;
|
|
1474
|
-
custom?: Record<string, unknown> | undefined;
|
|
1475
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1476
|
-
formatters?: undefined;
|
|
1477
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1478
|
-
} | {
|
|
1479
|
-
blockExplorers: {
|
|
1480
|
-
readonly default: {
|
|
1481
|
-
readonly name: "Berachain";
|
|
1482
|
-
readonly url: "https://artio.beratrail.io";
|
|
1443
|
+
default: {
|
|
1444
|
+
http: string[];
|
|
1483
1445
|
};
|
|
1484
1446
|
};
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
readonly blockCreated: 866924;
|
|
1447
|
+
blockExplorers: {
|
|
1448
|
+
default: {
|
|
1449
|
+
name: string;
|
|
1450
|
+
url: string;
|
|
1490
1451
|
};
|
|
1491
1452
|
};
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1453
|
+
testnet: boolean;
|
|
1454
|
+
};
|
|
1455
|
+
declare const solanaMainNet: {
|
|
1456
|
+
id: string;
|
|
1457
|
+
name: string;
|
|
1458
|
+
network: string;
|
|
1495
1459
|
nativeCurrency: {
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1460
|
+
decimals: number;
|
|
1461
|
+
name: string;
|
|
1462
|
+
symbol: string;
|
|
1499
1463
|
};
|
|
1500
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1501
1464
|
rpcUrls: {
|
|
1502
|
-
|
|
1503
|
-
|
|
1465
|
+
public: {
|
|
1466
|
+
http: string[];
|
|
1467
|
+
};
|
|
1468
|
+
default: {
|
|
1469
|
+
http: string[];
|
|
1504
1470
|
};
|
|
1505
1471
|
};
|
|
1506
|
-
sourceId?: number | undefined | undefined;
|
|
1507
|
-
testnet: true;
|
|
1508
|
-
custom?: Record<string, unknown> | undefined;
|
|
1509
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1510
|
-
formatters?: undefined;
|
|
1511
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1512
|
-
} | {
|
|
1513
1472
|
blockExplorers: {
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
readonly apiUrl: "https://api-testnet.polygonscan.com/api";
|
|
1473
|
+
default: {
|
|
1474
|
+
name: string;
|
|
1475
|
+
url: string;
|
|
1518
1476
|
};
|
|
1519
1477
|
};
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
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/";
|
|
1525
1485
|
};
|
|
1526
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;
|
|
1527
1497
|
ensTlds?: readonly string[] | undefined;
|
|
1528
|
-
id:
|
|
1529
|
-
name: "
|
|
1498
|
+
id: 74460002;
|
|
1499
|
+
name: "Sign Brb Testnet";
|
|
1530
1500
|
nativeCurrency: {
|
|
1531
|
-
readonly name: "MATIC";
|
|
1532
|
-
readonly symbol: "MATIC";
|
|
1533
1501
|
readonly decimals: 18;
|
|
1502
|
+
readonly name: "BNB Token";
|
|
1503
|
+
readonly symbol: "BNB";
|
|
1534
1504
|
};
|
|
1535
1505
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1536
1506
|
rpcUrls: {
|
|
1537
1507
|
readonly default: {
|
|
1538
|
-
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/"];
|
|
1539
1512
|
};
|
|
1540
1513
|
};
|
|
1541
1514
|
sourceId?: number | undefined | undefined;
|
|
@@ -1544,102 +1517,109 @@ declare const SupportedChains: ({
|
|
|
1544
1517
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1545
1518
|
formatters?: undefined;
|
|
1546
1519
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
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")[];
|
|
1553
1537
|
};
|
|
1554
1538
|
};
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
readonly blockCreated: 3127388;
|
|
1539
|
+
blockExplorers: {
|
|
1540
|
+
default: {
|
|
1541
|
+
name: string;
|
|
1542
|
+
url: string;
|
|
1560
1543
|
};
|
|
1561
1544
|
};
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1545
|
+
testnet: boolean;
|
|
1546
|
+
};
|
|
1547
|
+
declare const suiMainNet: {
|
|
1548
|
+
id: string;
|
|
1549
|
+
name: string;
|
|
1550
|
+
network: string;
|
|
1565
1551
|
nativeCurrency: {
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1552
|
+
decimals: number;
|
|
1553
|
+
name: string;
|
|
1554
|
+
symbol: string;
|
|
1569
1555
|
};
|
|
1570
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1571
1556
|
rpcUrls: {
|
|
1572
|
-
|
|
1573
|
-
|
|
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")[];
|
|
1574
1559
|
};
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
testnet: true;
|
|
1578
|
-
custom?: Record<string, unknown> | undefined;
|
|
1579
|
-
fees?: viem.ChainFees<undefined> | undefined;
|
|
1580
|
-
formatters?: undefined;
|
|
1581
|
-
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1582
|
-
} | {
|
|
1583
|
-
blockExplorers: {
|
|
1584
|
-
readonly default: {
|
|
1585
|
-
readonly name: "Sonic Explorer";
|
|
1586
|
-
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")[];
|
|
1587
1562
|
};
|
|
1588
1563
|
};
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
readonly blockCreated: 60;
|
|
1564
|
+
blockExplorers: {
|
|
1565
|
+
default: {
|
|
1566
|
+
name: string;
|
|
1567
|
+
url: string;
|
|
1594
1568
|
};
|
|
1595
1569
|
};
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1570
|
+
testnet: boolean;
|
|
1571
|
+
};
|
|
1572
|
+
declare const aptosTestNet: {
|
|
1573
|
+
id: number;
|
|
1574
|
+
name: string;
|
|
1575
|
+
network: string;
|
|
1599
1576
|
nativeCurrency: {
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1577
|
+
decimals: number;
|
|
1578
|
+
name: string;
|
|
1579
|
+
symbol: string;
|
|
1603
1580
|
};
|
|
1604
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1605
1581
|
rpcUrls: {
|
|
1606
|
-
|
|
1607
|
-
|
|
1582
|
+
public: {
|
|
1583
|
+
http: string[];
|
|
1584
|
+
};
|
|
1585
|
+
default: {
|
|
1586
|
+
http: string[];
|
|
1608
1587
|
};
|
|
1609
1588
|
};
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1589
|
+
blockExplorers: {
|
|
1590
|
+
default: {
|
|
1591
|
+
name: string;
|
|
1592
|
+
url: string;
|
|
1593
|
+
};
|
|
1594
|
+
};
|
|
1595
|
+
testnet: boolean;
|
|
1596
|
+
};
|
|
1597
|
+
declare const hyperEVM: {
|
|
1617
1598
|
blockExplorers: {
|
|
1618
1599
|
readonly default: {
|
|
1619
|
-
readonly name: "
|
|
1620
|
-
readonly url: "https://
|
|
1621
|
-
readonly apiUrl: "https://www.oklink.com/api/v5/explorer/xlayer/api";
|
|
1600
|
+
readonly name: "HyperEVMScan";
|
|
1601
|
+
readonly url: "https://hyperevmscan.io/";
|
|
1622
1602
|
};
|
|
1623
1603
|
};
|
|
1624
1604
|
blockTime?: number | undefined | undefined;
|
|
1625
1605
|
contracts: {
|
|
1626
1606
|
readonly multicall3: {
|
|
1627
1607
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1628
|
-
readonly blockCreated:
|
|
1608
|
+
readonly blockCreated: 13051;
|
|
1629
1609
|
};
|
|
1630
1610
|
};
|
|
1631
1611
|
ensTlds?: readonly string[] | undefined;
|
|
1632
|
-
id:
|
|
1633
|
-
name: "
|
|
1612
|
+
id: 999;
|
|
1613
|
+
name: "HyperEVM";
|
|
1634
1614
|
nativeCurrency: {
|
|
1615
|
+
readonly name: "HYPE";
|
|
1616
|
+
readonly symbol: "HYPE";
|
|
1635
1617
|
readonly decimals: 18;
|
|
1636
|
-
readonly name: "OKB";
|
|
1637
|
-
readonly symbol: "OKB";
|
|
1638
1618
|
};
|
|
1639
1619
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1640
1620
|
rpcUrls: {
|
|
1641
1621
|
readonly default: {
|
|
1642
|
-
readonly http: readonly ["https://rpc.
|
|
1622
|
+
readonly http: readonly ["https://rpc.hyperliquid.xyz/evm"];
|
|
1643
1623
|
};
|
|
1644
1624
|
};
|
|
1645
1625
|
sourceId?: number | undefined | undefined;
|
|
@@ -1648,7 +1628,7 @@ declare const SupportedChains: ({
|
|
|
1648
1628
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1649
1629
|
formatters?: undefined;
|
|
1650
1630
|
serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable> | undefined;
|
|
1651
|
-
}
|
|
1631
|
+
};
|
|
1652
1632
|
|
|
1653
1633
|
declare const ZERO_ADDRESS = "0x0000000000000000000000000000000000000000";
|
|
1654
1634
|
declare const CONST: {
|
|
@@ -2281,25 +2261,7 @@ declare function getChainById(chainId: ChainId): SupportedChainType;
|
|
|
2281
2261
|
declare function getChainConfig(chainId: ChainId): {
|
|
2282
2262
|
contractAddress: string;
|
|
2283
2263
|
rpcUrl: string;
|
|
2284
|
-
|
|
2285
|
-
name?: undefined;
|
|
2286
|
-
tonApiPrefix?: undefined;
|
|
2287
|
-
blockExplorer?: undefined;
|
|
2288
|
-
} | {
|
|
2289
|
-
contractAddress: string;
|
|
2290
|
-
rpcUrl: string;
|
|
2291
|
-
availableSolutions: never[];
|
|
2292
|
-
name?: undefined;
|
|
2293
|
-
tonApiPrefix?: undefined;
|
|
2294
|
-
blockExplorer?: undefined;
|
|
2295
|
-
} | {
|
|
2296
|
-
name: string;
|
|
2297
|
-
contractAddress: string;
|
|
2298
|
-
rpcUrl: string;
|
|
2299
|
-
tonApiPrefix: string;
|
|
2300
|
-
blockExplorer: string;
|
|
2301
|
-
availableSolutions?: undefined;
|
|
2302
|
-
};
|
|
2264
|
+
} & Record<string, unknown>;
|
|
2303
2265
|
declare function getChainRpc(chainId: ChainId): string;
|
|
2304
2266
|
declare const getTonProjectIdByAddress: ({ address, slug, data }: {
|
|
2305
2267
|
address?: string;
|
|
@@ -2494,4 +2456,4 @@ declare const getAvailableClaimAmountForSignature: ({ contractAddress, chainId,
|
|
|
2494
2456
|
}[];
|
|
2495
2457
|
}) => Promise<string | 0>;
|
|
2496
2458
|
|
|
2497
|
-
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 };
|