@centrifuge/sdk 0.0.0-alpha.28 → 0.0.0-alpha.30
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/dist/Centrifuge.d.ts +183 -169
- package/dist/Centrifuge.d.ts.map +1 -1
- package/dist/Centrifuge.js +169 -79
- package/dist/Centrifuge.js.map +1 -1
- package/dist/Centrifuge.test.js +33 -15
- package/dist/Centrifuge.test.js.map +1 -1
- package/dist/abi/index.d.ts +11 -0
- package/dist/abi/index.d.ts.map +1 -1
- package/dist/abi/index.js +3 -1
- package/dist/abi/index.js.map +1 -1
- package/dist/config/chains.d.ts +156 -938
- package/dist/config/chains.d.ts.map +1 -1
- package/dist/config/chains.js +2 -11
- package/dist/config/chains.js.map +1 -1
- package/dist/entities/BalanceSheet.d.ts +24 -10
- package/dist/entities/BalanceSheet.d.ts.map +1 -1
- package/dist/entities/BalanceSheet.js +4 -59
- package/dist/entities/BalanceSheet.js.map +1 -1
- package/dist/entities/Investor.d.ts +1 -5
- package/dist/entities/Investor.d.ts.map +1 -1
- package/dist/entities/Investor.js +40 -10
- package/dist/entities/Investor.js.map +1 -1
- package/dist/entities/Pool.d.ts +5 -5
- package/dist/entities/Pool.d.ts.map +1 -1
- package/dist/entities/Pool.js +18 -5
- package/dist/entities/Pool.js.map +1 -1
- package/dist/entities/Pool.test.js +5 -5
- package/dist/entities/Pool.test.js.map +1 -1
- package/dist/entities/PoolNetwork.d.ts +5 -6
- package/dist/entities/PoolNetwork.d.ts.map +1 -1
- package/dist/entities/PoolNetwork.js +22 -59
- package/dist/entities/PoolNetwork.js.map +1 -1
- package/dist/entities/ShareClass.d.ts +36 -30
- package/dist/entities/ShareClass.d.ts.map +1 -1
- package/dist/entities/ShareClass.js +329 -265
- package/dist/entities/ShareClass.js.map +1 -1
- package/dist/entities/ShareClass.test.js +16 -17
- package/dist/entities/ShareClass.test.js.map +1 -1
- package/dist/entities/Vault.d.ts +5 -5
- package/dist/entities/Vault.d.ts.map +1 -1
- package/dist/entities/Vault.js +5 -4
- package/dist/entities/Vault.js.map +1 -1
- package/dist/entities/Vault.test.js +10 -19
- package/dist/entities/Vault.test.js.map +1 -1
- package/dist/types/transaction.d.ts +39 -0
- package/dist/types/transaction.d.ts.map +1 -1
- package/dist/types/transaction.js +40 -1
- package/dist/types/transaction.js.map +1 -1
- package/dist/utils/transaction.d.ts +10 -3
- package/dist/utils/transaction.d.ts.map +1 -1
- package/dist/utils/transaction.js +8 -2
- package/dist/utils/transaction.js.map +1 -1
- package/package.json +3 -3
package/dist/config/chains.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export declare const chains: ({
|
|
|
6
6
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
+
blockTime?: number | undefined | undefined;
|
|
9
10
|
contracts: {
|
|
10
11
|
readonly ensRegistry: {
|
|
11
12
|
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
@@ -19,6 +20,7 @@ export declare const chains: ({
|
|
|
19
20
|
readonly blockCreated: 14353601;
|
|
20
21
|
};
|
|
21
22
|
};
|
|
23
|
+
ensTlds?: readonly string[] | undefined;
|
|
22
24
|
id: 1;
|
|
23
25
|
name: "Ethereum";
|
|
24
26
|
nativeCurrency: {
|
|
@@ -28,11 +30,11 @@ export declare const chains: ({
|
|
|
28
30
|
};
|
|
29
31
|
rpcUrls: {
|
|
30
32
|
readonly default: {
|
|
31
|
-
readonly http: readonly ["https://
|
|
33
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
32
34
|
};
|
|
33
35
|
};
|
|
34
|
-
sourceId?: number | undefined;
|
|
35
|
-
testnet?: boolean | undefined;
|
|
36
|
+
sourceId?: number | undefined | undefined;
|
|
37
|
+
testnet?: boolean | undefined | undefined;
|
|
36
38
|
custom?: Record<string, unknown> | undefined;
|
|
37
39
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
38
40
|
formatters?: undefined;
|
|
@@ -45,6 +47,7 @@ export declare const chains: ({
|
|
|
45
47
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
46
48
|
};
|
|
47
49
|
};
|
|
50
|
+
blockTime?: number | undefined | undefined;
|
|
48
51
|
contracts: {
|
|
49
52
|
readonly multicall3: {
|
|
50
53
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
@@ -58,6 +61,7 @@ export declare const chains: ({
|
|
|
58
61
|
readonly blockCreated: 5317080;
|
|
59
62
|
};
|
|
60
63
|
};
|
|
64
|
+
ensTlds?: readonly string[] | undefined;
|
|
61
65
|
id: 11155111;
|
|
62
66
|
name: "Sepolia";
|
|
63
67
|
nativeCurrency: {
|
|
@@ -70,7 +74,7 @@ export declare const chains: ({
|
|
|
70
74
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
71
75
|
};
|
|
72
76
|
};
|
|
73
|
-
sourceId?: number | undefined;
|
|
77
|
+
sourceId?: number | undefined | undefined;
|
|
74
78
|
testnet: true;
|
|
75
79
|
custom?: Record<string, unknown> | undefined;
|
|
76
80
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -84,6 +88,7 @@ export declare const chains: ({
|
|
|
84
88
|
readonly apiUrl: "https://api.basescan.org/api";
|
|
85
89
|
};
|
|
86
90
|
};
|
|
91
|
+
blockTime: 2000;
|
|
87
92
|
contracts: {
|
|
88
93
|
readonly disputeGameFactory: {
|
|
89
94
|
readonly 1: {
|
|
@@ -130,6 +135,7 @@ export declare const chains: ({
|
|
|
130
135
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
131
136
|
};
|
|
132
137
|
};
|
|
138
|
+
ensTlds?: readonly string[] | undefined;
|
|
133
139
|
id: 8453;
|
|
134
140
|
name: "Base";
|
|
135
141
|
nativeCurrency: {
|
|
@@ -143,7 +149,7 @@ export declare const chains: ({
|
|
|
143
149
|
};
|
|
144
150
|
};
|
|
145
151
|
sourceId: 1;
|
|
146
|
-
testnet?: boolean | undefined;
|
|
152
|
+
testnet?: boolean | undefined | undefined;
|
|
147
153
|
custom?: Record<string, unknown> | undefined;
|
|
148
154
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
149
155
|
formatters: {
|
|
@@ -163,7 +169,7 @@ export declare const chains: ({
|
|
|
163
169
|
mixHash: import("viem").Hash;
|
|
164
170
|
nonce: `0x${string}` | null;
|
|
165
171
|
number: bigint | null;
|
|
166
|
-
parentBeaconBlockRoot?:
|
|
172
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
167
173
|
parentHash: import("viem").Hash;
|
|
168
174
|
receiptsRoot: import("viem").Hex;
|
|
169
175
|
sealFields: import("viem").Hex[];
|
|
@@ -175,8 +181,8 @@ export declare const chains: ({
|
|
|
175
181
|
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
176
182
|
transactionsRoot: import("viem").Hash;
|
|
177
183
|
uncles: import("viem").Hash[];
|
|
178
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
179
|
-
withdrawalsRoot?:
|
|
184
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
185
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
180
186
|
} & {};
|
|
181
187
|
type: "block";
|
|
182
188
|
};
|
|
@@ -198,12 +204,12 @@ export declare const chains: ({
|
|
|
198
204
|
v: bigint;
|
|
199
205
|
value: bigint;
|
|
200
206
|
yParity: number;
|
|
201
|
-
gasPrice?: undefined;
|
|
202
|
-
maxFeePerBlobGas?: undefined;
|
|
207
|
+
gasPrice?: undefined | undefined;
|
|
208
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
203
209
|
maxFeePerGas: bigint;
|
|
204
210
|
maxPriorityFeePerGas: bigint;
|
|
205
211
|
isSystemTx?: boolean;
|
|
206
|
-
mint?: bigint | undefined;
|
|
212
|
+
mint?: bigint | undefined | undefined;
|
|
207
213
|
sourceHash: import("viem").Hex;
|
|
208
214
|
type: "deposit";
|
|
209
215
|
} | {
|
|
@@ -221,19 +227,19 @@ export declare const chains: ({
|
|
|
221
227
|
input: import("viem").Hex;
|
|
222
228
|
transactionIndex: number | null;
|
|
223
229
|
typeHex: import("viem").Hex | null;
|
|
224
|
-
accessList?: undefined;
|
|
225
|
-
authorizationList?: undefined;
|
|
226
|
-
blobVersionedHashes?: undefined;
|
|
230
|
+
accessList?: undefined | undefined;
|
|
231
|
+
authorizationList?: undefined | undefined;
|
|
232
|
+
blobVersionedHashes?: undefined | undefined;
|
|
227
233
|
chainId?: number | undefined;
|
|
228
|
-
yParity?: undefined;
|
|
234
|
+
yParity?: undefined | undefined;
|
|
229
235
|
type: "legacy";
|
|
230
236
|
gasPrice: bigint;
|
|
231
|
-
maxFeePerBlobGas?: undefined;
|
|
232
|
-
maxFeePerGas?: undefined;
|
|
233
|
-
maxPriorityFeePerGas?: undefined;
|
|
234
|
-
isSystemTx?: undefined;
|
|
235
|
-
mint?: undefined;
|
|
236
|
-
sourceHash?: undefined;
|
|
237
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
238
|
+
maxFeePerGas?: undefined | undefined;
|
|
239
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
240
|
+
isSystemTx?: undefined | undefined;
|
|
241
|
+
mint?: undefined | undefined;
|
|
242
|
+
sourceHash?: undefined | undefined;
|
|
237
243
|
} | {
|
|
238
244
|
blockHash: `0x${string}` | null;
|
|
239
245
|
blockNumber: bigint | null;
|
|
@@ -251,17 +257,17 @@ export declare const chains: ({
|
|
|
251
257
|
value: bigint;
|
|
252
258
|
yParity: number;
|
|
253
259
|
accessList: import("viem").AccessList;
|
|
254
|
-
authorizationList?: undefined;
|
|
255
|
-
blobVersionedHashes?: undefined;
|
|
260
|
+
authorizationList?: undefined | undefined;
|
|
261
|
+
blobVersionedHashes?: undefined | undefined;
|
|
256
262
|
chainId: number;
|
|
257
263
|
type: "eip2930";
|
|
258
264
|
gasPrice: bigint;
|
|
259
|
-
maxFeePerBlobGas?: undefined;
|
|
260
|
-
maxFeePerGas?: undefined;
|
|
261
|
-
maxPriorityFeePerGas?: undefined;
|
|
262
|
-
isSystemTx?: undefined;
|
|
263
|
-
mint?: undefined;
|
|
264
|
-
sourceHash?: undefined;
|
|
265
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
266
|
+
maxFeePerGas?: undefined | undefined;
|
|
267
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
268
|
+
isSystemTx?: undefined | undefined;
|
|
269
|
+
mint?: undefined | undefined;
|
|
270
|
+
sourceHash?: undefined | undefined;
|
|
265
271
|
} | {
|
|
266
272
|
blockHash: `0x${string}` | null;
|
|
267
273
|
blockNumber: bigint | null;
|
|
@@ -279,17 +285,17 @@ export declare const chains: ({
|
|
|
279
285
|
value: bigint;
|
|
280
286
|
yParity: number;
|
|
281
287
|
accessList: import("viem").AccessList;
|
|
282
|
-
authorizationList?: undefined;
|
|
283
|
-
blobVersionedHashes?: undefined;
|
|
288
|
+
authorizationList?: undefined | undefined;
|
|
289
|
+
blobVersionedHashes?: undefined | undefined;
|
|
284
290
|
chainId: number;
|
|
285
291
|
type: "eip1559";
|
|
286
|
-
gasPrice?: undefined;
|
|
287
|
-
maxFeePerBlobGas?: undefined;
|
|
292
|
+
gasPrice?: undefined | undefined;
|
|
293
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
288
294
|
maxFeePerGas: bigint;
|
|
289
295
|
maxPriorityFeePerGas: bigint;
|
|
290
|
-
isSystemTx?: undefined;
|
|
291
|
-
mint?: undefined;
|
|
292
|
-
sourceHash?: undefined;
|
|
296
|
+
isSystemTx?: undefined | undefined;
|
|
297
|
+
mint?: undefined | undefined;
|
|
298
|
+
sourceHash?: undefined | undefined;
|
|
293
299
|
} | {
|
|
294
300
|
blockHash: `0x${string}` | null;
|
|
295
301
|
blockNumber: bigint | null;
|
|
@@ -307,17 +313,17 @@ export declare const chains: ({
|
|
|
307
313
|
value: bigint;
|
|
308
314
|
yParity: number;
|
|
309
315
|
accessList: import("viem").AccessList;
|
|
310
|
-
authorizationList?: undefined;
|
|
316
|
+
authorizationList?: undefined | undefined;
|
|
311
317
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
312
318
|
chainId: number;
|
|
313
319
|
type: "eip4844";
|
|
314
|
-
gasPrice?: undefined;
|
|
320
|
+
gasPrice?: undefined | undefined;
|
|
315
321
|
maxFeePerBlobGas: bigint;
|
|
316
322
|
maxFeePerGas: bigint;
|
|
317
323
|
maxPriorityFeePerGas: bigint;
|
|
318
|
-
isSystemTx?: undefined;
|
|
319
|
-
mint?: undefined;
|
|
320
|
-
sourceHash?: undefined;
|
|
324
|
+
isSystemTx?: undefined | undefined;
|
|
325
|
+
mint?: undefined | undefined;
|
|
326
|
+
sourceHash?: undefined | undefined;
|
|
321
327
|
} | {
|
|
322
328
|
blockHash: `0x${string}` | null;
|
|
323
329
|
blockNumber: bigint | null;
|
|
@@ -335,17 +341,17 @@ export declare const chains: ({
|
|
|
335
341
|
value: bigint;
|
|
336
342
|
yParity: number;
|
|
337
343
|
accessList: import("viem").AccessList;
|
|
338
|
-
authorizationList: import("viem
|
|
339
|
-
blobVersionedHashes?: undefined;
|
|
344
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
345
|
+
blobVersionedHashes?: undefined | undefined;
|
|
340
346
|
chainId: number;
|
|
341
347
|
type: "eip7702";
|
|
342
|
-
gasPrice?: undefined;
|
|
343
|
-
maxFeePerBlobGas?: undefined;
|
|
348
|
+
gasPrice?: undefined | undefined;
|
|
349
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
344
350
|
maxFeePerGas: bigint;
|
|
345
351
|
maxPriorityFeePerGas: bigint;
|
|
346
|
-
isSystemTx?: undefined;
|
|
347
|
-
mint?: undefined;
|
|
348
|
-
sourceHash?: undefined;
|
|
352
|
+
isSystemTx?: undefined | undefined;
|
|
353
|
+
mint?: undefined | undefined;
|
|
354
|
+
sourceHash?: undefined | undefined;
|
|
349
355
|
}) & {};
|
|
350
356
|
type: "transaction";
|
|
351
357
|
};
|
|
@@ -363,7 +369,7 @@ export declare const chains: ({
|
|
|
363
369
|
gasUsed: bigint;
|
|
364
370
|
logs: import("viem").Log<bigint, number, false>[];
|
|
365
371
|
logsBloom: import("viem").Hex;
|
|
366
|
-
root?:
|
|
372
|
+
root?: `0x${string}` | undefined;
|
|
367
373
|
status: "success" | "reverted";
|
|
368
374
|
to: import("abitype").Address | null;
|
|
369
375
|
transactionHash: import("viem").Hash;
|
|
@@ -388,6 +394,7 @@ export declare const chains: ({
|
|
|
388
394
|
readonly apiUrl: "https://api-sepolia.basescan.org/api";
|
|
389
395
|
};
|
|
390
396
|
};
|
|
397
|
+
blockTime: 2000;
|
|
391
398
|
contracts: {
|
|
392
399
|
readonly disputeGameFactory: {
|
|
393
400
|
readonly 11155111: {
|
|
@@ -434,6 +441,7 @@ export declare const chains: ({
|
|
|
434
441
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
435
442
|
};
|
|
436
443
|
};
|
|
444
|
+
ensTlds?: readonly string[] | undefined;
|
|
437
445
|
id: 84532;
|
|
438
446
|
name: "Base Sepolia";
|
|
439
447
|
nativeCurrency: {
|
|
@@ -467,7 +475,7 @@ export declare const chains: ({
|
|
|
467
475
|
mixHash: import("viem").Hash;
|
|
468
476
|
nonce: `0x${string}` | null;
|
|
469
477
|
number: bigint | null;
|
|
470
|
-
parentBeaconBlockRoot?:
|
|
478
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
471
479
|
parentHash: import("viem").Hash;
|
|
472
480
|
receiptsRoot: import("viem").Hex;
|
|
473
481
|
sealFields: import("viem").Hex[];
|
|
@@ -479,8 +487,8 @@ export declare const chains: ({
|
|
|
479
487
|
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
480
488
|
transactionsRoot: import("viem").Hash;
|
|
481
489
|
uncles: import("viem").Hash[];
|
|
482
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
483
|
-
withdrawalsRoot?:
|
|
490
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
491
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
484
492
|
} & {};
|
|
485
493
|
type: "block";
|
|
486
494
|
};
|
|
@@ -502,12 +510,12 @@ export declare const chains: ({
|
|
|
502
510
|
v: bigint;
|
|
503
511
|
value: bigint;
|
|
504
512
|
yParity: number;
|
|
505
|
-
gasPrice?: undefined;
|
|
506
|
-
maxFeePerBlobGas?: undefined;
|
|
513
|
+
gasPrice?: undefined | undefined;
|
|
514
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
507
515
|
maxFeePerGas: bigint;
|
|
508
516
|
maxPriorityFeePerGas: bigint;
|
|
509
517
|
isSystemTx?: boolean;
|
|
510
|
-
mint?: bigint | undefined;
|
|
518
|
+
mint?: bigint | undefined | undefined;
|
|
511
519
|
sourceHash: import("viem").Hex;
|
|
512
520
|
type: "deposit";
|
|
513
521
|
} | {
|
|
@@ -525,19 +533,19 @@ export declare const chains: ({
|
|
|
525
533
|
input: import("viem").Hex;
|
|
526
534
|
transactionIndex: number | null;
|
|
527
535
|
typeHex: import("viem").Hex | null;
|
|
528
|
-
accessList?: undefined;
|
|
529
|
-
authorizationList?: undefined;
|
|
530
|
-
blobVersionedHashes?: undefined;
|
|
536
|
+
accessList?: undefined | undefined;
|
|
537
|
+
authorizationList?: undefined | undefined;
|
|
538
|
+
blobVersionedHashes?: undefined | undefined;
|
|
531
539
|
chainId?: number | undefined;
|
|
532
|
-
yParity?: undefined;
|
|
540
|
+
yParity?: undefined | undefined;
|
|
533
541
|
type: "legacy";
|
|
534
542
|
gasPrice: bigint;
|
|
535
|
-
maxFeePerBlobGas?: undefined;
|
|
536
|
-
maxFeePerGas?: undefined;
|
|
537
|
-
maxPriorityFeePerGas?: undefined;
|
|
538
|
-
isSystemTx?: undefined;
|
|
539
|
-
mint?: undefined;
|
|
540
|
-
sourceHash?: undefined;
|
|
543
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
544
|
+
maxFeePerGas?: undefined | undefined;
|
|
545
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
546
|
+
isSystemTx?: undefined | undefined;
|
|
547
|
+
mint?: undefined | undefined;
|
|
548
|
+
sourceHash?: undefined | undefined;
|
|
541
549
|
} | {
|
|
542
550
|
blockHash: `0x${string}` | null;
|
|
543
551
|
blockNumber: bigint | null;
|
|
@@ -555,17 +563,17 @@ export declare const chains: ({
|
|
|
555
563
|
value: bigint;
|
|
556
564
|
yParity: number;
|
|
557
565
|
accessList: import("viem").AccessList;
|
|
558
|
-
authorizationList?: undefined;
|
|
559
|
-
blobVersionedHashes?: undefined;
|
|
566
|
+
authorizationList?: undefined | undefined;
|
|
567
|
+
blobVersionedHashes?: undefined | undefined;
|
|
560
568
|
chainId: number;
|
|
561
569
|
type: "eip2930";
|
|
562
570
|
gasPrice: bigint;
|
|
563
|
-
maxFeePerBlobGas?: undefined;
|
|
564
|
-
maxFeePerGas?: undefined;
|
|
565
|
-
maxPriorityFeePerGas?: undefined;
|
|
566
|
-
isSystemTx?: undefined;
|
|
567
|
-
mint?: undefined;
|
|
568
|
-
sourceHash?: undefined;
|
|
571
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
572
|
+
maxFeePerGas?: undefined | undefined;
|
|
573
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
574
|
+
isSystemTx?: undefined | undefined;
|
|
575
|
+
mint?: undefined | undefined;
|
|
576
|
+
sourceHash?: undefined | undefined;
|
|
569
577
|
} | {
|
|
570
578
|
blockHash: `0x${string}` | null;
|
|
571
579
|
blockNumber: bigint | null;
|
|
@@ -583,17 +591,17 @@ export declare const chains: ({
|
|
|
583
591
|
value: bigint;
|
|
584
592
|
yParity: number;
|
|
585
593
|
accessList: import("viem").AccessList;
|
|
586
|
-
authorizationList?: undefined;
|
|
587
|
-
blobVersionedHashes?: undefined;
|
|
594
|
+
authorizationList?: undefined | undefined;
|
|
595
|
+
blobVersionedHashes?: undefined | undefined;
|
|
588
596
|
chainId: number;
|
|
589
597
|
type: "eip1559";
|
|
590
|
-
gasPrice?: undefined;
|
|
591
|
-
maxFeePerBlobGas?: undefined;
|
|
598
|
+
gasPrice?: undefined | undefined;
|
|
599
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
592
600
|
maxFeePerGas: bigint;
|
|
593
601
|
maxPriorityFeePerGas: bigint;
|
|
594
|
-
isSystemTx?: undefined;
|
|
595
|
-
mint?: undefined;
|
|
596
|
-
sourceHash?: undefined;
|
|
602
|
+
isSystemTx?: undefined | undefined;
|
|
603
|
+
mint?: undefined | undefined;
|
|
604
|
+
sourceHash?: undefined | undefined;
|
|
597
605
|
} | {
|
|
598
606
|
blockHash: `0x${string}` | null;
|
|
599
607
|
blockNumber: bigint | null;
|
|
@@ -611,17 +619,17 @@ export declare const chains: ({
|
|
|
611
619
|
value: bigint;
|
|
612
620
|
yParity: number;
|
|
613
621
|
accessList: import("viem").AccessList;
|
|
614
|
-
authorizationList?: undefined;
|
|
622
|
+
authorizationList?: undefined | undefined;
|
|
615
623
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
616
624
|
chainId: number;
|
|
617
625
|
type: "eip4844";
|
|
618
|
-
gasPrice?: undefined;
|
|
626
|
+
gasPrice?: undefined | undefined;
|
|
619
627
|
maxFeePerBlobGas: bigint;
|
|
620
628
|
maxFeePerGas: bigint;
|
|
621
629
|
maxPriorityFeePerGas: bigint;
|
|
622
|
-
isSystemTx?: undefined;
|
|
623
|
-
mint?: undefined;
|
|
624
|
-
sourceHash?: undefined;
|
|
630
|
+
isSystemTx?: undefined | undefined;
|
|
631
|
+
mint?: undefined | undefined;
|
|
632
|
+
sourceHash?: undefined | undefined;
|
|
625
633
|
} | {
|
|
626
634
|
blockHash: `0x${string}` | null;
|
|
627
635
|
blockNumber: bigint | null;
|
|
@@ -639,17 +647,17 @@ export declare const chains: ({
|
|
|
639
647
|
value: bigint;
|
|
640
648
|
yParity: number;
|
|
641
649
|
accessList: import("viem").AccessList;
|
|
642
|
-
authorizationList: import("viem
|
|
643
|
-
blobVersionedHashes?: undefined;
|
|
650
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
651
|
+
blobVersionedHashes?: undefined | undefined;
|
|
644
652
|
chainId: number;
|
|
645
653
|
type: "eip7702";
|
|
646
|
-
gasPrice?: undefined;
|
|
647
|
-
maxFeePerBlobGas?: undefined;
|
|
654
|
+
gasPrice?: undefined | undefined;
|
|
655
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
648
656
|
maxFeePerGas: bigint;
|
|
649
657
|
maxPriorityFeePerGas: bigint;
|
|
650
|
-
isSystemTx?: undefined;
|
|
651
|
-
mint?: undefined;
|
|
652
|
-
sourceHash?: undefined;
|
|
658
|
+
isSystemTx?: undefined | undefined;
|
|
659
|
+
mint?: undefined | undefined;
|
|
660
|
+
sourceHash?: undefined | undefined;
|
|
653
661
|
}) & {};
|
|
654
662
|
type: "transaction";
|
|
655
663
|
};
|
|
@@ -667,7 +675,7 @@ export declare const chains: ({
|
|
|
667
675
|
gasUsed: bigint;
|
|
668
676
|
logs: import("viem").Log<bigint, number, false>[];
|
|
669
677
|
logsBloom: import("viem").Hex;
|
|
670
|
-
root?:
|
|
678
|
+
root?: `0x${string}` | undefined;
|
|
671
679
|
status: "success" | "reverted";
|
|
672
680
|
to: import("abitype").Address | null;
|
|
673
681
|
transactionHash: import("viem").Hash;
|
|
@@ -693,12 +701,14 @@ export declare const chains: ({
|
|
|
693
701
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
694
702
|
};
|
|
695
703
|
};
|
|
704
|
+
blockTime?: number | undefined | undefined;
|
|
696
705
|
contracts: {
|
|
697
706
|
readonly multicall3: {
|
|
698
707
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
699
708
|
readonly blockCreated: 7654707;
|
|
700
709
|
};
|
|
701
710
|
};
|
|
711
|
+
ensTlds?: readonly string[] | undefined;
|
|
702
712
|
id: 42161;
|
|
703
713
|
name: "Arbitrum One";
|
|
704
714
|
nativeCurrency: {
|
|
@@ -711,8 +721,8 @@ export declare const chains: ({
|
|
|
711
721
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
712
722
|
};
|
|
713
723
|
};
|
|
714
|
-
sourceId?: number | undefined;
|
|
715
|
-
testnet?: boolean | undefined;
|
|
724
|
+
sourceId?: number | undefined | undefined;
|
|
725
|
+
testnet?: boolean | undefined | undefined;
|
|
716
726
|
custom?: Record<string, unknown> | undefined;
|
|
717
727
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
718
728
|
formatters?: undefined;
|
|
@@ -725,12 +735,14 @@ export declare const chains: ({
|
|
|
725
735
|
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
726
736
|
};
|
|
727
737
|
};
|
|
738
|
+
blockTime?: number | undefined | undefined;
|
|
728
739
|
contracts: {
|
|
729
740
|
readonly multicall3: {
|
|
730
741
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
731
742
|
readonly blockCreated: 81930;
|
|
732
743
|
};
|
|
733
744
|
};
|
|
745
|
+
ensTlds?: readonly string[] | undefined;
|
|
734
746
|
id: 421614;
|
|
735
747
|
name: "Arbitrum Sepolia";
|
|
736
748
|
nativeCurrency: {
|
|
@@ -743,7 +755,7 @@ export declare const chains: ({
|
|
|
743
755
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
744
756
|
};
|
|
745
757
|
};
|
|
746
|
-
sourceId?: number | undefined;
|
|
758
|
+
sourceId?: number | undefined | undefined;
|
|
747
759
|
testnet: true;
|
|
748
760
|
custom?: Record<string, unknown> | undefined;
|
|
749
761
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -752,865 +764,71 @@ export declare const chains: ({
|
|
|
752
764
|
} | {
|
|
753
765
|
blockExplorers: {
|
|
754
766
|
readonly default: {
|
|
755
|
-
readonly name: "
|
|
756
|
-
readonly url: "https://
|
|
757
|
-
readonly apiUrl: "https://api.
|
|
767
|
+
readonly name: "SnowTrace";
|
|
768
|
+
readonly url: "https://snowtrace.io";
|
|
769
|
+
readonly apiUrl: "https://api.snowtrace.io";
|
|
758
770
|
};
|
|
759
771
|
};
|
|
772
|
+
blockTime?: number | undefined | undefined;
|
|
760
773
|
contracts: {
|
|
761
774
|
readonly multicall3: {
|
|
762
|
-
readonly address: "
|
|
763
|
-
readonly blockCreated:
|
|
775
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
776
|
+
readonly blockCreated: 11907934;
|
|
764
777
|
};
|
|
765
778
|
};
|
|
766
|
-
|
|
767
|
-
|
|
779
|
+
ensTlds?: readonly string[] | undefined;
|
|
780
|
+
id: 43114;
|
|
781
|
+
name: "Avalanche";
|
|
768
782
|
nativeCurrency: {
|
|
769
783
|
readonly decimals: 18;
|
|
770
|
-
readonly name: "
|
|
771
|
-
readonly symbol: "
|
|
784
|
+
readonly name: "Avalanche";
|
|
785
|
+
readonly symbol: "AVAX";
|
|
772
786
|
};
|
|
773
787
|
rpcUrls: {
|
|
774
788
|
readonly default: {
|
|
775
|
-
readonly http: readonly ["https://
|
|
789
|
+
readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
|
|
776
790
|
};
|
|
777
791
|
};
|
|
778
|
-
sourceId?: number | undefined;
|
|
779
|
-
testnet
|
|
792
|
+
sourceId?: number | undefined | undefined;
|
|
793
|
+
testnet?: boolean | undefined | undefined;
|
|
780
794
|
custom?: Record<string, unknown> | undefined;
|
|
781
|
-
fees
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
gasLimit: bigint | undefined;
|
|
791
|
-
gasUsed: bigint;
|
|
792
|
-
hash: `0x${string}` | null;
|
|
793
|
-
logsBloom: `0x${string}` | null;
|
|
794
|
-
miner: import("abitype").Address;
|
|
795
|
-
nonce: bigint | null | undefined;
|
|
796
|
-
number: bigint | null;
|
|
797
|
-
parentBeaconBlockRoot?: import("viem").Hex | undefined;
|
|
798
|
-
parentHash: import("viem").Hash;
|
|
799
|
-
receiptsRoot: import("viem").Hex;
|
|
800
|
-
sealFields: import("viem").Hex[];
|
|
801
|
-
sha3Uncles: import("viem").Hash;
|
|
802
|
-
size: bigint;
|
|
803
|
-
stateRoot: import("viem").Hash;
|
|
804
|
-
timestamp: bigint;
|
|
805
|
-
totalDifficulty: bigint | null;
|
|
806
|
-
transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
|
|
807
|
-
transactionsRoot: import("viem").Hash;
|
|
808
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
809
|
-
withdrawalsRoot?: import("viem").Hex | undefined;
|
|
810
|
-
mixHash?: undefined;
|
|
811
|
-
randomness?: {
|
|
812
|
-
committed: import("viem").Hex;
|
|
813
|
-
revealed: import("viem").Hex;
|
|
814
|
-
} | undefined;
|
|
815
|
-
uncles?: undefined;
|
|
816
|
-
} & {};
|
|
817
|
-
type: "block";
|
|
818
|
-
};
|
|
819
|
-
readonly transaction: {
|
|
820
|
-
exclude: [] | undefined;
|
|
821
|
-
format: (args: import("viem/chains").CeloRpcTransaction) => ({
|
|
822
|
-
r: import("viem").Hex;
|
|
823
|
-
s: import("viem").Hex;
|
|
824
|
-
v: bigint;
|
|
825
|
-
to: import("abitype").Address | null;
|
|
826
|
-
from: import("abitype").Address;
|
|
827
|
-
gas: bigint;
|
|
828
|
-
nonce: number;
|
|
829
|
-
value: bigint;
|
|
830
|
-
blockHash: `0x${string}` | null;
|
|
831
|
-
blockNumber: bigint | null;
|
|
832
|
-
hash: import("viem").Hash;
|
|
833
|
-
input: import("viem").Hex;
|
|
834
|
-
transactionIndex: number | null;
|
|
835
|
-
typeHex: import("viem").Hex | null;
|
|
836
|
-
accessList?: undefined;
|
|
837
|
-
authorizationList?: undefined;
|
|
838
|
-
blobVersionedHashes?: undefined;
|
|
839
|
-
chainId?: number | undefined;
|
|
840
|
-
yParity?: undefined;
|
|
841
|
-
type: "legacy";
|
|
842
|
-
gasPrice: bigint;
|
|
843
|
-
maxFeePerBlobGas?: undefined;
|
|
844
|
-
maxFeePerGas?: undefined;
|
|
845
|
-
maxPriorityFeePerGas?: undefined;
|
|
846
|
-
feeCurrency: import("abitype").Address | null;
|
|
847
|
-
mint?: undefined;
|
|
848
|
-
isSystemTx?: undefined;
|
|
849
|
-
sourceHash?: undefined;
|
|
850
|
-
gatewayFee?: undefined;
|
|
851
|
-
gatewayFeeRecipient?: undefined;
|
|
852
|
-
} | {
|
|
853
|
-
blockHash: `0x${string}` | null;
|
|
854
|
-
blockNumber: bigint | null;
|
|
855
|
-
from: import("abitype").Address;
|
|
856
|
-
gas: bigint;
|
|
857
|
-
hash: import("viem").Hash;
|
|
858
|
-
input: import("viem").Hex;
|
|
859
|
-
nonce: number;
|
|
860
|
-
r: import("viem").Hex;
|
|
861
|
-
s: import("viem").Hex;
|
|
862
|
-
to: import("abitype").Address | null;
|
|
863
|
-
transactionIndex: number | null;
|
|
864
|
-
typeHex: import("viem").Hex | null;
|
|
865
|
-
v: bigint;
|
|
866
|
-
value: bigint;
|
|
867
|
-
yParity: number;
|
|
868
|
-
accessList: import("viem").AccessList;
|
|
869
|
-
authorizationList?: undefined;
|
|
870
|
-
blobVersionedHashes?: undefined;
|
|
871
|
-
chainId: number;
|
|
872
|
-
type: "eip2930";
|
|
873
|
-
gasPrice: bigint;
|
|
874
|
-
maxFeePerBlobGas?: undefined;
|
|
875
|
-
maxFeePerGas?: undefined;
|
|
876
|
-
maxPriorityFeePerGas?: undefined;
|
|
877
|
-
feeCurrency: import("abitype").Address | null;
|
|
878
|
-
mint?: undefined;
|
|
879
|
-
isSystemTx?: undefined;
|
|
880
|
-
sourceHash?: undefined;
|
|
881
|
-
gatewayFee?: undefined;
|
|
882
|
-
gatewayFeeRecipient?: undefined;
|
|
883
|
-
} | {
|
|
884
|
-
blockHash: `0x${string}` | null;
|
|
885
|
-
blockNumber: bigint | null;
|
|
886
|
-
from: import("abitype").Address;
|
|
887
|
-
gas: bigint;
|
|
888
|
-
hash: import("viem").Hash;
|
|
889
|
-
input: import("viem").Hex;
|
|
890
|
-
nonce: number;
|
|
891
|
-
r: import("viem").Hex;
|
|
892
|
-
s: import("viem").Hex;
|
|
893
|
-
to: import("abitype").Address | null;
|
|
894
|
-
transactionIndex: number | null;
|
|
895
|
-
typeHex: import("viem").Hex | null;
|
|
896
|
-
v: bigint;
|
|
897
|
-
value: bigint;
|
|
898
|
-
yParity: number;
|
|
899
|
-
accessList: import("viem").AccessList;
|
|
900
|
-
authorizationList?: undefined;
|
|
901
|
-
blobVersionedHashes?: undefined;
|
|
902
|
-
chainId: number;
|
|
903
|
-
type: "eip1559";
|
|
904
|
-
gasPrice?: undefined;
|
|
905
|
-
maxFeePerBlobGas?: undefined;
|
|
906
|
-
maxFeePerGas: bigint;
|
|
907
|
-
maxPriorityFeePerGas: bigint;
|
|
908
|
-
feeCurrency: import("abitype").Address | null;
|
|
909
|
-
mint?: undefined;
|
|
910
|
-
isSystemTx?: undefined;
|
|
911
|
-
sourceHash?: undefined;
|
|
912
|
-
gatewayFee?: undefined;
|
|
913
|
-
gatewayFeeRecipient?: undefined;
|
|
914
|
-
} | {
|
|
915
|
-
blockHash: `0x${string}` | null;
|
|
916
|
-
blockNumber: bigint | null;
|
|
917
|
-
from: import("abitype").Address;
|
|
918
|
-
gas: bigint;
|
|
919
|
-
hash: import("viem").Hash;
|
|
920
|
-
input: import("viem").Hex;
|
|
921
|
-
nonce: number;
|
|
922
|
-
r: import("viem").Hex;
|
|
923
|
-
s: import("viem").Hex;
|
|
924
|
-
to: import("abitype").Address | null;
|
|
925
|
-
transactionIndex: number | null;
|
|
926
|
-
typeHex: import("viem").Hex | null;
|
|
927
|
-
v: bigint;
|
|
928
|
-
value: bigint;
|
|
929
|
-
yParity: number;
|
|
930
|
-
accessList: import("viem").AccessList;
|
|
931
|
-
authorizationList?: undefined;
|
|
932
|
-
blobVersionedHashes: readonly import("viem").Hex[];
|
|
933
|
-
chainId: number;
|
|
934
|
-
type: "eip4844";
|
|
935
|
-
gasPrice?: undefined;
|
|
936
|
-
maxFeePerBlobGas: bigint;
|
|
937
|
-
maxFeePerGas: bigint;
|
|
938
|
-
maxPriorityFeePerGas: bigint;
|
|
939
|
-
feeCurrency: import("abitype").Address | null;
|
|
940
|
-
mint?: undefined;
|
|
941
|
-
isSystemTx?: undefined;
|
|
942
|
-
sourceHash?: undefined;
|
|
943
|
-
gatewayFee?: undefined;
|
|
944
|
-
gatewayFeeRecipient?: undefined;
|
|
945
|
-
} | {
|
|
946
|
-
blockHash: `0x${string}` | null;
|
|
947
|
-
blockNumber: bigint | null;
|
|
948
|
-
from: import("abitype").Address;
|
|
949
|
-
gas: bigint;
|
|
950
|
-
hash: import("viem").Hash;
|
|
951
|
-
input: import("viem").Hex;
|
|
952
|
-
nonce: number;
|
|
953
|
-
r: import("viem").Hex;
|
|
954
|
-
s: import("viem").Hex;
|
|
955
|
-
to: import("abitype").Address | null;
|
|
956
|
-
transactionIndex: number | null;
|
|
957
|
-
typeHex: import("viem").Hex | null;
|
|
958
|
-
v: bigint;
|
|
959
|
-
value: bigint;
|
|
960
|
-
yParity: number;
|
|
961
|
-
accessList: import("viem").AccessList;
|
|
962
|
-
authorizationList: import("viem/experimental").SignedAuthorizationList;
|
|
963
|
-
blobVersionedHashes?: undefined;
|
|
964
|
-
chainId: number;
|
|
965
|
-
type: "eip7702";
|
|
966
|
-
gasPrice?: undefined;
|
|
967
|
-
maxFeePerBlobGas?: undefined;
|
|
968
|
-
maxFeePerGas: bigint;
|
|
969
|
-
maxPriorityFeePerGas: bigint;
|
|
970
|
-
feeCurrency: import("abitype").Address | null;
|
|
971
|
-
mint?: undefined;
|
|
972
|
-
isSystemTx?: undefined;
|
|
973
|
-
sourceHash?: undefined;
|
|
974
|
-
gatewayFee?: undefined;
|
|
975
|
-
gatewayFeeRecipient?: undefined;
|
|
976
|
-
} | {
|
|
977
|
-
blockHash: `0x${string}` | null;
|
|
978
|
-
blockNumber: bigint | null;
|
|
979
|
-
from: import("abitype").Address;
|
|
980
|
-
gas: bigint;
|
|
981
|
-
hash: import("viem").Hash;
|
|
982
|
-
input: import("viem").Hex;
|
|
983
|
-
nonce: number;
|
|
984
|
-
r: import("viem").Hex;
|
|
985
|
-
s: import("viem").Hex;
|
|
986
|
-
to: import("abitype").Address | null;
|
|
987
|
-
transactionIndex: number | null;
|
|
988
|
-
typeHex: import("viem").Hex | null;
|
|
989
|
-
v: bigint;
|
|
990
|
-
value: bigint;
|
|
991
|
-
yParity: number;
|
|
992
|
-
gasPrice?: undefined;
|
|
993
|
-
maxFeePerBlobGas?: undefined;
|
|
994
|
-
maxFeePerGas: bigint;
|
|
995
|
-
maxPriorityFeePerGas: bigint;
|
|
996
|
-
accessList: import("viem").AccessList;
|
|
997
|
-
chainId: number;
|
|
998
|
-
feeCurrency: import("abitype").Address | null;
|
|
999
|
-
gatewayFee: bigint | null;
|
|
1000
|
-
gatewayFeeRecipient: import("abitype").Address | null;
|
|
1001
|
-
type: "cip42";
|
|
1002
|
-
authorizationList?: undefined;
|
|
1003
|
-
blobVersionedHashes?: undefined;
|
|
1004
|
-
mint?: undefined;
|
|
1005
|
-
isSystemTx?: undefined;
|
|
1006
|
-
sourceHash?: undefined;
|
|
1007
|
-
} | {
|
|
1008
|
-
blockHash: `0x${string}` | null;
|
|
1009
|
-
blockNumber: bigint | null;
|
|
1010
|
-
from: import("abitype").Address;
|
|
1011
|
-
gas: bigint;
|
|
1012
|
-
hash: import("viem").Hash;
|
|
1013
|
-
input: import("viem").Hex;
|
|
1014
|
-
nonce: number;
|
|
1015
|
-
r: import("viem").Hex;
|
|
1016
|
-
s: import("viem").Hex;
|
|
1017
|
-
to: import("abitype").Address | null;
|
|
1018
|
-
transactionIndex: number | null;
|
|
1019
|
-
typeHex: import("viem").Hex | null;
|
|
1020
|
-
v: bigint;
|
|
1021
|
-
value: bigint;
|
|
1022
|
-
yParity: number;
|
|
1023
|
-
gasPrice?: undefined;
|
|
1024
|
-
maxFeePerBlobGas?: undefined;
|
|
1025
|
-
maxFeePerGas: bigint;
|
|
1026
|
-
maxPriorityFeePerGas: bigint;
|
|
1027
|
-
accessList: import("viem").AccessList;
|
|
1028
|
-
chainId: number;
|
|
1029
|
-
feeCurrency: import("abitype").Address | null;
|
|
1030
|
-
type: "cip64";
|
|
1031
|
-
authorizationList?: undefined;
|
|
1032
|
-
blobVersionedHashes?: undefined;
|
|
1033
|
-
mint?: undefined;
|
|
1034
|
-
isSystemTx?: undefined;
|
|
1035
|
-
sourceHash?: undefined;
|
|
1036
|
-
gatewayFee?: undefined;
|
|
1037
|
-
gatewayFeeRecipient?: undefined;
|
|
1038
|
-
} | {
|
|
1039
|
-
blockHash: `0x${string}` | null;
|
|
1040
|
-
blockNumber: bigint | null;
|
|
1041
|
-
from: import("abitype").Address;
|
|
1042
|
-
gas: bigint;
|
|
1043
|
-
hash: import("viem").Hash;
|
|
1044
|
-
input: import("viem").Hex;
|
|
1045
|
-
nonce: number;
|
|
1046
|
-
r: import("viem").Hex;
|
|
1047
|
-
s: import("viem").Hex;
|
|
1048
|
-
to: import("abitype").Address | null;
|
|
1049
|
-
transactionIndex: number | null;
|
|
1050
|
-
typeHex: import("viem").Hex | null;
|
|
1051
|
-
v: bigint;
|
|
1052
|
-
value: bigint;
|
|
1053
|
-
yParity: number;
|
|
1054
|
-
gasPrice?: undefined;
|
|
1055
|
-
maxFeePerBlobGas?: undefined;
|
|
1056
|
-
maxFeePerGas: bigint;
|
|
1057
|
-
maxPriorityFeePerGas: bigint;
|
|
1058
|
-
isSystemTx?: boolean;
|
|
1059
|
-
mint?: bigint | undefined;
|
|
1060
|
-
sourceHash: import("viem").Hex;
|
|
1061
|
-
type: "deposit";
|
|
1062
|
-
accessList?: undefined;
|
|
1063
|
-
authorizationList?: undefined;
|
|
1064
|
-
blobVersionedHashes?: undefined;
|
|
1065
|
-
chainId?: undefined;
|
|
1066
|
-
feeCurrency?: undefined;
|
|
1067
|
-
gatewayFee?: undefined;
|
|
1068
|
-
gatewayFeeRecipient?: undefined;
|
|
1069
|
-
}) & {};
|
|
1070
|
-
type: "transaction";
|
|
1071
|
-
};
|
|
1072
|
-
readonly transactionRequest: {
|
|
1073
|
-
exclude: [] | undefined;
|
|
1074
|
-
format: (args: import("viem/chains").CeloTransactionRequest) => ({
|
|
1075
|
-
data?: import("viem").Hex | undefined;
|
|
1076
|
-
from?: import("abitype").Address | undefined;
|
|
1077
|
-
gas?: `0x${string}` | undefined;
|
|
1078
|
-
nonce?: `0x${string}` | undefined;
|
|
1079
|
-
to?: import("abitype").Address | null | undefined;
|
|
1080
|
-
type?: "0x0" | undefined;
|
|
1081
|
-
value?: `0x${string}` | undefined;
|
|
1082
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1083
|
-
maxFeePerBlobGas?: undefined;
|
|
1084
|
-
maxFeePerGas?: undefined;
|
|
1085
|
-
maxPriorityFeePerGas?: undefined;
|
|
1086
|
-
blobs?: undefined;
|
|
1087
|
-
accessList?: undefined;
|
|
1088
|
-
authorizationList?: undefined;
|
|
1089
|
-
blobVersionedHashes?: undefined;
|
|
1090
|
-
kzg?: undefined;
|
|
1091
|
-
sidecars?: undefined;
|
|
1092
|
-
feeCurrency?: import("abitype").Address | undefined;
|
|
1093
|
-
} | {
|
|
1094
|
-
data?: import("viem").Hex | undefined;
|
|
1095
|
-
from?: import("abitype").Address | undefined;
|
|
1096
|
-
gas?: `0x${string}` | undefined;
|
|
1097
|
-
nonce?: `0x${string}` | undefined;
|
|
1098
|
-
to?: import("abitype").Address | null | undefined;
|
|
1099
|
-
type?: "0x1" | undefined;
|
|
1100
|
-
value?: `0x${string}` | undefined;
|
|
1101
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1102
|
-
maxFeePerBlobGas?: undefined;
|
|
1103
|
-
maxFeePerGas?: undefined;
|
|
1104
|
-
maxPriorityFeePerGas?: undefined;
|
|
1105
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1106
|
-
blobs?: undefined;
|
|
1107
|
-
authorizationList?: undefined;
|
|
1108
|
-
blobVersionedHashes?: undefined;
|
|
1109
|
-
kzg?: undefined;
|
|
1110
|
-
sidecars?: undefined;
|
|
1111
|
-
feeCurrency?: import("abitype").Address | undefined;
|
|
1112
|
-
} | {
|
|
1113
|
-
data?: import("viem").Hex | undefined;
|
|
1114
|
-
from?: import("abitype").Address | undefined;
|
|
1115
|
-
gas?: `0x${string}` | undefined;
|
|
1116
|
-
nonce?: `0x${string}` | undefined;
|
|
1117
|
-
to?: import("abitype").Address | null | undefined;
|
|
1118
|
-
type?: "0x2" | undefined;
|
|
1119
|
-
value?: `0x${string}` | undefined;
|
|
1120
|
-
gasPrice?: undefined;
|
|
1121
|
-
maxFeePerBlobGas?: undefined;
|
|
1122
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1123
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1124
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1125
|
-
blobs?: undefined;
|
|
1126
|
-
authorizationList?: undefined;
|
|
1127
|
-
blobVersionedHashes?: undefined;
|
|
1128
|
-
kzg?: undefined;
|
|
1129
|
-
sidecars?: undefined;
|
|
1130
|
-
feeCurrency?: import("abitype").Address | undefined;
|
|
1131
|
-
} | {
|
|
1132
|
-
type?: "0x3" | undefined;
|
|
1133
|
-
data?: import("viem").Hex | undefined;
|
|
1134
|
-
from?: import("abitype").Address | undefined;
|
|
1135
|
-
gas?: `0x${string}` | undefined;
|
|
1136
|
-
nonce?: `0x${string}` | undefined;
|
|
1137
|
-
value?: `0x${string}` | undefined;
|
|
1138
|
-
to: `0x${string}` | null;
|
|
1139
|
-
gasPrice?: undefined;
|
|
1140
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1141
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1142
|
-
maxFeePerBlobGas: `0x${string}`;
|
|
1143
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1144
|
-
blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
|
|
1145
|
-
blobVersionedHashes?: readonly import("viem").Hex[] | undefined;
|
|
1146
|
-
kzg?: import("viem").Kzg | undefined;
|
|
1147
|
-
sidecars?: readonly import("viem").BlobSidecar<import("viem").Hex>[] | undefined;
|
|
1148
|
-
authorizationList?: undefined;
|
|
1149
|
-
feeCurrency?: import("abitype").Address | undefined;
|
|
1150
|
-
} | {
|
|
1151
|
-
type?: "0x4" | undefined;
|
|
1152
|
-
gasPrice?: undefined;
|
|
1153
|
-
maxFeePerBlobGas?: undefined;
|
|
1154
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1155
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1156
|
-
to?: import("abitype").Address | null | undefined;
|
|
1157
|
-
data?: import("viem").Hex | undefined;
|
|
1158
|
-
from?: import("abitype").Address | undefined;
|
|
1159
|
-
gas?: `0x${string}` | undefined;
|
|
1160
|
-
nonce?: `0x${string}` | undefined;
|
|
1161
|
-
value?: `0x${string}` | undefined;
|
|
1162
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1163
|
-
authorizationList?: import("viem/experimental").RpcAuthorizationList | undefined;
|
|
1164
|
-
blobs?: undefined;
|
|
1165
|
-
blobVersionedHashes?: undefined;
|
|
1166
|
-
kzg?: undefined;
|
|
1167
|
-
sidecars?: undefined;
|
|
1168
|
-
feeCurrency?: import("abitype").Address | undefined;
|
|
1169
|
-
} | {
|
|
1170
|
-
data?: import("viem").Hex | undefined;
|
|
1171
|
-
from?: import("abitype").Address | undefined;
|
|
1172
|
-
gas?: `0x${string}` | undefined;
|
|
1173
|
-
nonce?: `0x${string}` | undefined;
|
|
1174
|
-
to?: import("abitype").Address | null | undefined;
|
|
1175
|
-
type?: "0x7b" | undefined;
|
|
1176
|
-
value?: `0x${string}` | undefined;
|
|
1177
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1178
|
-
feeCurrency?: import("abitype").Address | undefined;
|
|
1179
|
-
gasPrice?: undefined;
|
|
1180
|
-
maxFeePerBlobGas?: undefined;
|
|
1181
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1182
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1183
|
-
blobs?: undefined;
|
|
1184
|
-
authorizationList?: undefined;
|
|
1185
|
-
blobVersionedHashes?: undefined;
|
|
1186
|
-
kzg?: undefined;
|
|
1187
|
-
sidecars?: undefined;
|
|
1188
|
-
}) & {};
|
|
1189
|
-
type: "transactionRequest";
|
|
1190
|
-
};
|
|
1191
|
-
}>;
|
|
1192
|
-
formatters: {
|
|
1193
|
-
readonly block: {
|
|
1194
|
-
exclude: [] | undefined;
|
|
1195
|
-
format: (args: import("viem/chains").CeloRpcBlock) => {
|
|
1196
|
-
baseFeePerGas: bigint | null;
|
|
1197
|
-
blobGasUsed: bigint;
|
|
1198
|
-
difficulty: bigint | undefined;
|
|
1199
|
-
excessBlobGas: bigint;
|
|
1200
|
-
extraData: import("viem").Hex;
|
|
1201
|
-
gasLimit: bigint | undefined;
|
|
1202
|
-
gasUsed: bigint;
|
|
1203
|
-
hash: `0x${string}` | null;
|
|
1204
|
-
logsBloom: `0x${string}` | null;
|
|
1205
|
-
miner: import("abitype").Address;
|
|
1206
|
-
nonce: bigint | null | undefined;
|
|
1207
|
-
number: bigint | null;
|
|
1208
|
-
parentBeaconBlockRoot?: import("viem").Hex | undefined;
|
|
1209
|
-
parentHash: import("viem").Hash;
|
|
1210
|
-
receiptsRoot: import("viem").Hex;
|
|
1211
|
-
sealFields: import("viem").Hex[];
|
|
1212
|
-
sha3Uncles: import("viem").Hash;
|
|
1213
|
-
size: bigint;
|
|
1214
|
-
stateRoot: import("viem").Hash;
|
|
1215
|
-
timestamp: bigint;
|
|
1216
|
-
totalDifficulty: bigint | null;
|
|
1217
|
-
transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
|
|
1218
|
-
transactionsRoot: import("viem").Hash;
|
|
1219
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
1220
|
-
withdrawalsRoot?: import("viem").Hex | undefined;
|
|
1221
|
-
mixHash?: undefined;
|
|
1222
|
-
randomness?: {
|
|
1223
|
-
committed: import("viem").Hex;
|
|
1224
|
-
revealed: import("viem").Hex;
|
|
1225
|
-
} | undefined;
|
|
1226
|
-
uncles?: undefined;
|
|
1227
|
-
} & {};
|
|
1228
|
-
type: "block";
|
|
1229
|
-
};
|
|
1230
|
-
readonly transaction: {
|
|
1231
|
-
exclude: [] | undefined;
|
|
1232
|
-
format: (args: import("viem/chains").CeloRpcTransaction) => ({
|
|
1233
|
-
r: import("viem").Hex;
|
|
1234
|
-
s: import("viem").Hex;
|
|
1235
|
-
v: bigint;
|
|
1236
|
-
to: import("abitype").Address | null;
|
|
1237
|
-
from: import("abitype").Address;
|
|
1238
|
-
gas: bigint;
|
|
1239
|
-
nonce: number;
|
|
1240
|
-
value: bigint;
|
|
1241
|
-
blockHash: `0x${string}` | null;
|
|
1242
|
-
blockNumber: bigint | null;
|
|
1243
|
-
hash: import("viem").Hash;
|
|
1244
|
-
input: import("viem").Hex;
|
|
1245
|
-
transactionIndex: number | null;
|
|
1246
|
-
typeHex: import("viem").Hex | null;
|
|
1247
|
-
accessList?: undefined;
|
|
1248
|
-
authorizationList?: undefined;
|
|
1249
|
-
blobVersionedHashes?: undefined;
|
|
1250
|
-
chainId?: number | undefined;
|
|
1251
|
-
yParity?: undefined;
|
|
1252
|
-
type: "legacy";
|
|
1253
|
-
gasPrice: bigint;
|
|
1254
|
-
maxFeePerBlobGas?: undefined;
|
|
1255
|
-
maxFeePerGas?: undefined;
|
|
1256
|
-
maxPriorityFeePerGas?: undefined;
|
|
1257
|
-
feeCurrency: import("abitype").Address | null;
|
|
1258
|
-
mint?: undefined;
|
|
1259
|
-
isSystemTx?: undefined;
|
|
1260
|
-
sourceHash?: undefined;
|
|
1261
|
-
gatewayFee?: undefined;
|
|
1262
|
-
gatewayFeeRecipient?: undefined;
|
|
1263
|
-
} | {
|
|
1264
|
-
blockHash: `0x${string}` | null;
|
|
1265
|
-
blockNumber: bigint | null;
|
|
1266
|
-
from: import("abitype").Address;
|
|
1267
|
-
gas: bigint;
|
|
1268
|
-
hash: import("viem").Hash;
|
|
1269
|
-
input: import("viem").Hex;
|
|
1270
|
-
nonce: number;
|
|
1271
|
-
r: import("viem").Hex;
|
|
1272
|
-
s: import("viem").Hex;
|
|
1273
|
-
to: import("abitype").Address | null;
|
|
1274
|
-
transactionIndex: number | null;
|
|
1275
|
-
typeHex: import("viem").Hex | null;
|
|
1276
|
-
v: bigint;
|
|
1277
|
-
value: bigint;
|
|
1278
|
-
yParity: number;
|
|
1279
|
-
accessList: import("viem").AccessList;
|
|
1280
|
-
authorizationList?: undefined;
|
|
1281
|
-
blobVersionedHashes?: undefined;
|
|
1282
|
-
chainId: number;
|
|
1283
|
-
type: "eip2930";
|
|
1284
|
-
gasPrice: bigint;
|
|
1285
|
-
maxFeePerBlobGas?: undefined;
|
|
1286
|
-
maxFeePerGas?: undefined;
|
|
1287
|
-
maxPriorityFeePerGas?: undefined;
|
|
1288
|
-
feeCurrency: import("abitype").Address | null;
|
|
1289
|
-
mint?: undefined;
|
|
1290
|
-
isSystemTx?: undefined;
|
|
1291
|
-
sourceHash?: undefined;
|
|
1292
|
-
gatewayFee?: undefined;
|
|
1293
|
-
gatewayFeeRecipient?: undefined;
|
|
1294
|
-
} | {
|
|
1295
|
-
blockHash: `0x${string}` | null;
|
|
1296
|
-
blockNumber: bigint | null;
|
|
1297
|
-
from: import("abitype").Address;
|
|
1298
|
-
gas: bigint;
|
|
1299
|
-
hash: import("viem").Hash;
|
|
1300
|
-
input: import("viem").Hex;
|
|
1301
|
-
nonce: number;
|
|
1302
|
-
r: import("viem").Hex;
|
|
1303
|
-
s: import("viem").Hex;
|
|
1304
|
-
to: import("abitype").Address | null;
|
|
1305
|
-
transactionIndex: number | null;
|
|
1306
|
-
typeHex: import("viem").Hex | null;
|
|
1307
|
-
v: bigint;
|
|
1308
|
-
value: bigint;
|
|
1309
|
-
yParity: number;
|
|
1310
|
-
accessList: import("viem").AccessList;
|
|
1311
|
-
authorizationList?: undefined;
|
|
1312
|
-
blobVersionedHashes?: undefined;
|
|
1313
|
-
chainId: number;
|
|
1314
|
-
type: "eip1559";
|
|
1315
|
-
gasPrice?: undefined;
|
|
1316
|
-
maxFeePerBlobGas?: undefined;
|
|
1317
|
-
maxFeePerGas: bigint;
|
|
1318
|
-
maxPriorityFeePerGas: bigint;
|
|
1319
|
-
feeCurrency: import("abitype").Address | null;
|
|
1320
|
-
mint?: undefined;
|
|
1321
|
-
isSystemTx?: undefined;
|
|
1322
|
-
sourceHash?: undefined;
|
|
1323
|
-
gatewayFee?: undefined;
|
|
1324
|
-
gatewayFeeRecipient?: undefined;
|
|
1325
|
-
} | {
|
|
1326
|
-
blockHash: `0x${string}` | null;
|
|
1327
|
-
blockNumber: bigint | null;
|
|
1328
|
-
from: import("abitype").Address;
|
|
1329
|
-
gas: bigint;
|
|
1330
|
-
hash: import("viem").Hash;
|
|
1331
|
-
input: import("viem").Hex;
|
|
1332
|
-
nonce: number;
|
|
1333
|
-
r: import("viem").Hex;
|
|
1334
|
-
s: import("viem").Hex;
|
|
1335
|
-
to: import("abitype").Address | null;
|
|
1336
|
-
transactionIndex: number | null;
|
|
1337
|
-
typeHex: import("viem").Hex | null;
|
|
1338
|
-
v: bigint;
|
|
1339
|
-
value: bigint;
|
|
1340
|
-
yParity: number;
|
|
1341
|
-
accessList: import("viem").AccessList;
|
|
1342
|
-
authorizationList?: undefined;
|
|
1343
|
-
blobVersionedHashes: readonly import("viem").Hex[];
|
|
1344
|
-
chainId: number;
|
|
1345
|
-
type: "eip4844";
|
|
1346
|
-
gasPrice?: undefined;
|
|
1347
|
-
maxFeePerBlobGas: bigint;
|
|
1348
|
-
maxFeePerGas: bigint;
|
|
1349
|
-
maxPriorityFeePerGas: bigint;
|
|
1350
|
-
feeCurrency: import("abitype").Address | null;
|
|
1351
|
-
mint?: undefined;
|
|
1352
|
-
isSystemTx?: undefined;
|
|
1353
|
-
sourceHash?: undefined;
|
|
1354
|
-
gatewayFee?: undefined;
|
|
1355
|
-
gatewayFeeRecipient?: undefined;
|
|
1356
|
-
} | {
|
|
1357
|
-
blockHash: `0x${string}` | null;
|
|
1358
|
-
blockNumber: bigint | null;
|
|
1359
|
-
from: import("abitype").Address;
|
|
1360
|
-
gas: bigint;
|
|
1361
|
-
hash: import("viem").Hash;
|
|
1362
|
-
input: import("viem").Hex;
|
|
1363
|
-
nonce: number;
|
|
1364
|
-
r: import("viem").Hex;
|
|
1365
|
-
s: import("viem").Hex;
|
|
1366
|
-
to: import("abitype").Address | null;
|
|
1367
|
-
transactionIndex: number | null;
|
|
1368
|
-
typeHex: import("viem").Hex | null;
|
|
1369
|
-
v: bigint;
|
|
1370
|
-
value: bigint;
|
|
1371
|
-
yParity: number;
|
|
1372
|
-
accessList: import("viem").AccessList;
|
|
1373
|
-
authorizationList: import("viem/experimental").SignedAuthorizationList;
|
|
1374
|
-
blobVersionedHashes?: undefined;
|
|
1375
|
-
chainId: number;
|
|
1376
|
-
type: "eip7702";
|
|
1377
|
-
gasPrice?: undefined;
|
|
1378
|
-
maxFeePerBlobGas?: undefined;
|
|
1379
|
-
maxFeePerGas: bigint;
|
|
1380
|
-
maxPriorityFeePerGas: bigint;
|
|
1381
|
-
feeCurrency: import("abitype").Address | null;
|
|
1382
|
-
mint?: undefined;
|
|
1383
|
-
isSystemTx?: undefined;
|
|
1384
|
-
sourceHash?: undefined;
|
|
1385
|
-
gatewayFee?: undefined;
|
|
1386
|
-
gatewayFeeRecipient?: undefined;
|
|
1387
|
-
} | {
|
|
1388
|
-
blockHash: `0x${string}` | null;
|
|
1389
|
-
blockNumber: bigint | null;
|
|
1390
|
-
from: import("abitype").Address;
|
|
1391
|
-
gas: bigint;
|
|
1392
|
-
hash: import("viem").Hash;
|
|
1393
|
-
input: import("viem").Hex;
|
|
1394
|
-
nonce: number;
|
|
1395
|
-
r: import("viem").Hex;
|
|
1396
|
-
s: import("viem").Hex;
|
|
1397
|
-
to: import("abitype").Address | null;
|
|
1398
|
-
transactionIndex: number | null;
|
|
1399
|
-
typeHex: import("viem").Hex | null;
|
|
1400
|
-
v: bigint;
|
|
1401
|
-
value: bigint;
|
|
1402
|
-
yParity: number;
|
|
1403
|
-
gasPrice?: undefined;
|
|
1404
|
-
maxFeePerBlobGas?: undefined;
|
|
1405
|
-
maxFeePerGas: bigint;
|
|
1406
|
-
maxPriorityFeePerGas: bigint;
|
|
1407
|
-
accessList: import("viem").AccessList;
|
|
1408
|
-
chainId: number;
|
|
1409
|
-
feeCurrency: import("abitype").Address | null;
|
|
1410
|
-
gatewayFee: bigint | null;
|
|
1411
|
-
gatewayFeeRecipient: import("abitype").Address | null;
|
|
1412
|
-
type: "cip42";
|
|
1413
|
-
authorizationList?: undefined;
|
|
1414
|
-
blobVersionedHashes?: undefined;
|
|
1415
|
-
mint?: undefined;
|
|
1416
|
-
isSystemTx?: undefined;
|
|
1417
|
-
sourceHash?: undefined;
|
|
1418
|
-
} | {
|
|
1419
|
-
blockHash: `0x${string}` | null;
|
|
1420
|
-
blockNumber: bigint | null;
|
|
1421
|
-
from: import("abitype").Address;
|
|
1422
|
-
gas: bigint;
|
|
1423
|
-
hash: import("viem").Hash;
|
|
1424
|
-
input: import("viem").Hex;
|
|
1425
|
-
nonce: number;
|
|
1426
|
-
r: import("viem").Hex;
|
|
1427
|
-
s: import("viem").Hex;
|
|
1428
|
-
to: import("abitype").Address | null;
|
|
1429
|
-
transactionIndex: number | null;
|
|
1430
|
-
typeHex: import("viem").Hex | null;
|
|
1431
|
-
v: bigint;
|
|
1432
|
-
value: bigint;
|
|
1433
|
-
yParity: number;
|
|
1434
|
-
gasPrice?: undefined;
|
|
1435
|
-
maxFeePerBlobGas?: undefined;
|
|
1436
|
-
maxFeePerGas: bigint;
|
|
1437
|
-
maxPriorityFeePerGas: bigint;
|
|
1438
|
-
accessList: import("viem").AccessList;
|
|
1439
|
-
chainId: number;
|
|
1440
|
-
feeCurrency: import("abitype").Address | null;
|
|
1441
|
-
type: "cip64";
|
|
1442
|
-
authorizationList?: undefined;
|
|
1443
|
-
blobVersionedHashes?: undefined;
|
|
1444
|
-
mint?: undefined;
|
|
1445
|
-
isSystemTx?: undefined;
|
|
1446
|
-
sourceHash?: undefined;
|
|
1447
|
-
gatewayFee?: undefined;
|
|
1448
|
-
gatewayFeeRecipient?: undefined;
|
|
1449
|
-
} | {
|
|
1450
|
-
blockHash: `0x${string}` | null;
|
|
1451
|
-
blockNumber: bigint | null;
|
|
1452
|
-
from: import("abitype").Address;
|
|
1453
|
-
gas: bigint;
|
|
1454
|
-
hash: import("viem").Hash;
|
|
1455
|
-
input: import("viem").Hex;
|
|
1456
|
-
nonce: number;
|
|
1457
|
-
r: import("viem").Hex;
|
|
1458
|
-
s: import("viem").Hex;
|
|
1459
|
-
to: import("abitype").Address | null;
|
|
1460
|
-
transactionIndex: number | null;
|
|
1461
|
-
typeHex: import("viem").Hex | null;
|
|
1462
|
-
v: bigint;
|
|
1463
|
-
value: bigint;
|
|
1464
|
-
yParity: number;
|
|
1465
|
-
gasPrice?: undefined;
|
|
1466
|
-
maxFeePerBlobGas?: undefined;
|
|
1467
|
-
maxFeePerGas: bigint;
|
|
1468
|
-
maxPriorityFeePerGas: bigint;
|
|
1469
|
-
isSystemTx?: boolean;
|
|
1470
|
-
mint?: bigint | undefined;
|
|
1471
|
-
sourceHash: import("viem").Hex;
|
|
1472
|
-
type: "deposit";
|
|
1473
|
-
accessList?: undefined;
|
|
1474
|
-
authorizationList?: undefined;
|
|
1475
|
-
blobVersionedHashes?: undefined;
|
|
1476
|
-
chainId?: undefined;
|
|
1477
|
-
feeCurrency?: undefined;
|
|
1478
|
-
gatewayFee?: undefined;
|
|
1479
|
-
gatewayFeeRecipient?: undefined;
|
|
1480
|
-
}) & {};
|
|
1481
|
-
type: "transaction";
|
|
795
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
796
|
+
formatters?: undefined;
|
|
797
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
798
|
+
} | {
|
|
799
|
+
blockExplorers: {
|
|
800
|
+
readonly default: {
|
|
801
|
+
readonly name: "Blockscout";
|
|
802
|
+
readonly url: "https://explorer.plumenetwork.xyz";
|
|
803
|
+
readonly apiUrl: "https://explorer.plumenetwork.xyz/api";
|
|
1482
804
|
};
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
nonce?: `0x${string}` | undefined;
|
|
1490
|
-
to?: import("abitype").Address | null | undefined;
|
|
1491
|
-
type?: "0x0" | undefined;
|
|
1492
|
-
value?: `0x${string}` | undefined;
|
|
1493
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1494
|
-
maxFeePerBlobGas?: undefined;
|
|
1495
|
-
maxFeePerGas?: undefined;
|
|
1496
|
-
maxPriorityFeePerGas?: undefined;
|
|
1497
|
-
blobs?: undefined;
|
|
1498
|
-
accessList?: undefined;
|
|
1499
|
-
authorizationList?: undefined;
|
|
1500
|
-
blobVersionedHashes?: undefined;
|
|
1501
|
-
kzg?: undefined;
|
|
1502
|
-
sidecars?: undefined;
|
|
1503
|
-
feeCurrency?: import("abitype").Address | undefined;
|
|
1504
|
-
} | {
|
|
1505
|
-
data?: import("viem").Hex | undefined;
|
|
1506
|
-
from?: import("abitype").Address | undefined;
|
|
1507
|
-
gas?: `0x${string}` | undefined;
|
|
1508
|
-
nonce?: `0x${string}` | undefined;
|
|
1509
|
-
to?: import("abitype").Address | null | undefined;
|
|
1510
|
-
type?: "0x1" | undefined;
|
|
1511
|
-
value?: `0x${string}` | undefined;
|
|
1512
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1513
|
-
maxFeePerBlobGas?: undefined;
|
|
1514
|
-
maxFeePerGas?: undefined;
|
|
1515
|
-
maxPriorityFeePerGas?: undefined;
|
|
1516
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1517
|
-
blobs?: undefined;
|
|
1518
|
-
authorizationList?: undefined;
|
|
1519
|
-
blobVersionedHashes?: undefined;
|
|
1520
|
-
kzg?: undefined;
|
|
1521
|
-
sidecars?: undefined;
|
|
1522
|
-
feeCurrency?: import("abitype").Address | undefined;
|
|
1523
|
-
} | {
|
|
1524
|
-
data?: import("viem").Hex | undefined;
|
|
1525
|
-
from?: import("abitype").Address | undefined;
|
|
1526
|
-
gas?: `0x${string}` | undefined;
|
|
1527
|
-
nonce?: `0x${string}` | undefined;
|
|
1528
|
-
to?: import("abitype").Address | null | undefined;
|
|
1529
|
-
type?: "0x2" | undefined;
|
|
1530
|
-
value?: `0x${string}` | undefined;
|
|
1531
|
-
gasPrice?: undefined;
|
|
1532
|
-
maxFeePerBlobGas?: undefined;
|
|
1533
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1534
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1535
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1536
|
-
blobs?: undefined;
|
|
1537
|
-
authorizationList?: undefined;
|
|
1538
|
-
blobVersionedHashes?: undefined;
|
|
1539
|
-
kzg?: undefined;
|
|
1540
|
-
sidecars?: undefined;
|
|
1541
|
-
feeCurrency?: import("abitype").Address | undefined;
|
|
1542
|
-
} | {
|
|
1543
|
-
type?: "0x3" | undefined;
|
|
1544
|
-
data?: import("viem").Hex | undefined;
|
|
1545
|
-
from?: import("abitype").Address | undefined;
|
|
1546
|
-
gas?: `0x${string}` | undefined;
|
|
1547
|
-
nonce?: `0x${string}` | undefined;
|
|
1548
|
-
value?: `0x${string}` | undefined;
|
|
1549
|
-
to: `0x${string}` | null;
|
|
1550
|
-
gasPrice?: undefined;
|
|
1551
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1552
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1553
|
-
maxFeePerBlobGas: `0x${string}`;
|
|
1554
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1555
|
-
blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
|
|
1556
|
-
blobVersionedHashes?: readonly import("viem").Hex[] | undefined;
|
|
1557
|
-
kzg?: import("viem").Kzg | undefined;
|
|
1558
|
-
sidecars?: readonly import("viem").BlobSidecar<import("viem").Hex>[] | undefined;
|
|
1559
|
-
authorizationList?: undefined;
|
|
1560
|
-
feeCurrency?: import("abitype").Address | undefined;
|
|
1561
|
-
} | {
|
|
1562
|
-
type?: "0x4" | undefined;
|
|
1563
|
-
gasPrice?: undefined;
|
|
1564
|
-
maxFeePerBlobGas?: undefined;
|
|
1565
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1566
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1567
|
-
to?: import("abitype").Address | null | undefined;
|
|
1568
|
-
data?: import("viem").Hex | undefined;
|
|
1569
|
-
from?: import("abitype").Address | undefined;
|
|
1570
|
-
gas?: `0x${string}` | undefined;
|
|
1571
|
-
nonce?: `0x${string}` | undefined;
|
|
1572
|
-
value?: `0x${string}` | undefined;
|
|
1573
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1574
|
-
authorizationList?: import("viem/experimental").RpcAuthorizationList | undefined;
|
|
1575
|
-
blobs?: undefined;
|
|
1576
|
-
blobVersionedHashes?: undefined;
|
|
1577
|
-
kzg?: undefined;
|
|
1578
|
-
sidecars?: undefined;
|
|
1579
|
-
feeCurrency?: import("abitype").Address | undefined;
|
|
1580
|
-
} | {
|
|
1581
|
-
data?: import("viem").Hex | undefined;
|
|
1582
|
-
from?: import("abitype").Address | undefined;
|
|
1583
|
-
gas?: `0x${string}` | undefined;
|
|
1584
|
-
nonce?: `0x${string}` | undefined;
|
|
1585
|
-
to?: import("abitype").Address | null | undefined;
|
|
1586
|
-
type?: "0x7b" | undefined;
|
|
1587
|
-
value?: `0x${string}` | undefined;
|
|
1588
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1589
|
-
feeCurrency?: import("abitype").Address | undefined;
|
|
1590
|
-
gasPrice?: undefined;
|
|
1591
|
-
maxFeePerBlobGas?: undefined;
|
|
1592
|
-
maxFeePerGas?: `0x${string}` | undefined;
|
|
1593
|
-
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1594
|
-
blobs?: undefined;
|
|
1595
|
-
authorizationList?: undefined;
|
|
1596
|
-
blobVersionedHashes?: undefined;
|
|
1597
|
-
kzg?: undefined;
|
|
1598
|
-
sidecars?: undefined;
|
|
1599
|
-
}) & {};
|
|
1600
|
-
type: "transactionRequest";
|
|
805
|
+
};
|
|
806
|
+
blockTime?: number | undefined | undefined;
|
|
807
|
+
contracts: {
|
|
808
|
+
readonly multicall3: {
|
|
809
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
810
|
+
readonly blockCreated: 48577;
|
|
1601
811
|
};
|
|
1602
812
|
};
|
|
1603
|
-
|
|
1604
|
-
|
|
813
|
+
ensTlds?: readonly string[] | undefined;
|
|
814
|
+
id: 98865;
|
|
815
|
+
name: "Plume (Legacy)";
|
|
816
|
+
nativeCurrency: {
|
|
817
|
+
readonly name: "Plume Ether";
|
|
818
|
+
readonly symbol: "ETH";
|
|
819
|
+
readonly decimals: 18;
|
|
1605
820
|
};
|
|
821
|
+
rpcUrls: {
|
|
822
|
+
readonly default: {
|
|
823
|
+
readonly http: readonly ["https://rpc.plumenetwork.xyz"];
|
|
824
|
+
readonly webSocket: readonly ["wss://rpc.plumenetwork.xyz"];
|
|
825
|
+
};
|
|
826
|
+
};
|
|
827
|
+
sourceId: 1;
|
|
828
|
+
testnet?: boolean | undefined | undefined;
|
|
829
|
+
custom?: Record<string, unknown> | undefined;
|
|
830
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
831
|
+
formatters?: undefined;
|
|
832
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
1606
833
|
})[];
|
|
1607
|
-
export declare const chainIdToNetwork: {
|
|
1608
|
-
1: string;
|
|
1609
|
-
11155111: string;
|
|
1610
|
-
8453: string;
|
|
1611
|
-
84532: string;
|
|
1612
|
-
42161: string;
|
|
1613
|
-
421614: string;
|
|
1614
|
-
42220: string;
|
|
1615
|
-
};
|
|
1616
834
|
//# sourceMappingURL=chains.d.ts.map
|