celoclicker-game-sdk 0.1.1

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.
@@ -0,0 +1,3679 @@
1
+ import { QueryClient, type QueryClientConfig } from '@tanstack/react-query';
2
+ export interface CeloClickerWagmiConfigOptions {
3
+ appName?: string;
4
+ chainId?: number;
5
+ projectId?: string;
6
+ ssr?: boolean;
7
+ }
8
+ export declare function createCeloClickerQueryClient(config?: QueryClientConfig): QueryClient;
9
+ export declare function getCeloClickerChains(chainId?: number): readonly [{
10
+ blockExplorers: {
11
+ readonly default: {
12
+ readonly name: "Celo Alfajores Explorer";
13
+ readonly url: "https://celo-alfajores.blockscout.com";
14
+ readonly apiUrl: "https://celo-alfajores.blockscout.com/api";
15
+ };
16
+ };
17
+ blockTime: 1000;
18
+ contracts: {
19
+ readonly multicall3: {
20
+ readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
21
+ readonly blockCreated: 14569001;
22
+ };
23
+ readonly portal: {
24
+ readonly 17000: {
25
+ readonly address: "0x82527353927d8D069b3B452904c942dA149BA381";
26
+ readonly blockCreated: 2411324;
27
+ };
28
+ };
29
+ readonly disputeGameFactory: {
30
+ readonly 17000: {
31
+ readonly address: "0xE28AAdcd9883746c0e5068F58f9ea06027b214cb";
32
+ readonly blockCreated: 2411324;
33
+ };
34
+ };
35
+ readonly l2OutputOracle: {
36
+ readonly 17000: {
37
+ readonly address: "0x4a2635e9e4f6e45817b1D402ac4904c1d1752438";
38
+ readonly blockCreated: 2411324;
39
+ };
40
+ };
41
+ readonly l1StandardBridge: {
42
+ readonly 17000: {
43
+ readonly address: "0xD1B0E0581973c9eB7f886967A606b9441A897037";
44
+ readonly blockCreated: 2411324;
45
+ };
46
+ };
47
+ readonly gasPriceOracle: {
48
+ readonly address: "0x420000000000000000000000000000000000000F";
49
+ };
50
+ readonly l1Block: {
51
+ readonly address: "0x4200000000000000000000000000000000000015";
52
+ };
53
+ readonly l2CrossDomainMessenger: {
54
+ readonly address: "0x4200000000000000000000000000000000000007";
55
+ };
56
+ readonly l2Erc721Bridge: {
57
+ readonly address: "0x4200000000000000000000000000000000000014";
58
+ };
59
+ readonly l2StandardBridge: {
60
+ readonly address: "0x4200000000000000000000000000000000000010";
61
+ };
62
+ readonly l2ToL1MessagePasser: {
63
+ readonly address: "0x4200000000000000000000000000000000000016";
64
+ };
65
+ };
66
+ ensTlds?: readonly string[] | undefined;
67
+ id: 44787;
68
+ name: "Alfajores";
69
+ nativeCurrency: {
70
+ readonly decimals: 18;
71
+ readonly name: "CELO";
72
+ readonly symbol: "A-CELO";
73
+ };
74
+ experimental_preconfirmationTime?: number | undefined | undefined;
75
+ rpcUrls: {
76
+ readonly default: {
77
+ readonly http: readonly ["https://alfajores-forno.celo-testnet.org"];
78
+ };
79
+ };
80
+ sourceId?: number | undefined | undefined;
81
+ testnet: true;
82
+ custom?: Record<string, unknown> | undefined;
83
+ extendSchema?: Record<string, unknown> | undefined;
84
+ fees: import("viem").ChainFees<{
85
+ readonly block: {
86
+ exclude: [] | undefined;
87
+ format: (args: import("viem/chains").CeloRpcBlock, action?: string | undefined) => {
88
+ baseFeePerGas: bigint | null;
89
+ blobGasUsed: bigint;
90
+ difficulty: bigint;
91
+ excessBlobGas: bigint;
92
+ extraData: import("viem").Hex;
93
+ gasLimit: bigint;
94
+ gasUsed: bigint;
95
+ hash: `0x${string}` | null;
96
+ logsBloom: `0x${string}` | null;
97
+ miner: import("viem").Address;
98
+ mixHash: import("viem").Hash;
99
+ nonce: `0x${string}` | null;
100
+ number: bigint | null;
101
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
102
+ parentHash: import("viem").Hash;
103
+ receiptsRoot: import("viem").Hex;
104
+ sealFields: import("viem").Hex[];
105
+ sha3Uncles: import("viem").Hash;
106
+ size: bigint;
107
+ stateRoot: import("viem").Hash;
108
+ timestamp: bigint;
109
+ totalDifficulty: bigint | null;
110
+ transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
111
+ transactionsRoot: import("viem").Hash;
112
+ uncles: import("viem").Hash[];
113
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
114
+ withdrawalsRoot?: `0x${string}` | undefined;
115
+ } & {};
116
+ type: "block";
117
+ };
118
+ readonly transaction: {
119
+ exclude: [] | undefined;
120
+ format: (args: import("viem/chains").CeloRpcTransaction, action?: string | undefined) => ({
121
+ r: import("viem").Hex;
122
+ s: import("viem").Hex;
123
+ v: bigint;
124
+ to: import("viem").Address | null;
125
+ from: import("viem").Address;
126
+ gas: bigint;
127
+ nonce: number;
128
+ value: bigint;
129
+ blockHash: `0x${string}` | null;
130
+ blockNumber: bigint | null;
131
+ hash: import("viem").Hash;
132
+ input: import("viem").Hex;
133
+ transactionIndex: number | null;
134
+ typeHex: import("viem").Hex | null;
135
+ accessList?: undefined | undefined;
136
+ authorizationList?: undefined | undefined;
137
+ blobVersionedHashes?: undefined | undefined;
138
+ chainId?: number | undefined;
139
+ yParity?: undefined | undefined;
140
+ type: "legacy";
141
+ gasPrice: bigint;
142
+ maxFeePerBlobGas?: undefined | undefined;
143
+ maxFeePerGas?: undefined | undefined;
144
+ maxPriorityFeePerGas?: undefined | undefined;
145
+ feeCurrency: import("viem").Address | null;
146
+ mint?: undefined;
147
+ isSystemTx?: undefined;
148
+ sourceHash?: undefined;
149
+ gatewayFee?: undefined;
150
+ gatewayFeeRecipient?: undefined;
151
+ } | {
152
+ blockHash: `0x${string}` | null;
153
+ blockNumber: bigint | null;
154
+ from: import("viem").Address;
155
+ gas: bigint;
156
+ hash: import("viem").Hash;
157
+ input: import("viem").Hex;
158
+ nonce: number;
159
+ r: import("viem").Hex;
160
+ s: import("viem").Hex;
161
+ to: import("viem").Address | null;
162
+ transactionIndex: number | null;
163
+ typeHex: import("viem").Hex | null;
164
+ v: bigint;
165
+ value: bigint;
166
+ yParity: number;
167
+ accessList: import("viem").AccessList;
168
+ authorizationList?: undefined | undefined;
169
+ blobVersionedHashes?: undefined | undefined;
170
+ chainId: number;
171
+ type: "eip2930";
172
+ gasPrice: bigint;
173
+ maxFeePerBlobGas?: undefined | undefined;
174
+ maxFeePerGas?: undefined | undefined;
175
+ maxPriorityFeePerGas?: undefined | undefined;
176
+ feeCurrency: import("viem").Address | null;
177
+ mint?: undefined;
178
+ isSystemTx?: undefined;
179
+ sourceHash?: undefined;
180
+ gatewayFee?: undefined;
181
+ gatewayFeeRecipient?: undefined;
182
+ } | {
183
+ blockHash: `0x${string}` | null;
184
+ blockNumber: bigint | null;
185
+ from: import("viem").Address;
186
+ gas: bigint;
187
+ hash: import("viem").Hash;
188
+ input: import("viem").Hex;
189
+ nonce: number;
190
+ r: import("viem").Hex;
191
+ s: import("viem").Hex;
192
+ to: import("viem").Address | null;
193
+ transactionIndex: number | null;
194
+ typeHex: import("viem").Hex | null;
195
+ v: bigint;
196
+ value: bigint;
197
+ yParity: number;
198
+ accessList: import("viem").AccessList;
199
+ authorizationList?: undefined | undefined;
200
+ blobVersionedHashes?: undefined | undefined;
201
+ chainId: number;
202
+ type: "eip1559";
203
+ gasPrice?: undefined | undefined;
204
+ maxFeePerBlobGas?: undefined | undefined;
205
+ maxFeePerGas: bigint;
206
+ maxPriorityFeePerGas: bigint;
207
+ feeCurrency: import("viem").Address | null;
208
+ mint?: undefined;
209
+ isSystemTx?: undefined;
210
+ sourceHash?: undefined;
211
+ gatewayFee?: undefined;
212
+ gatewayFeeRecipient?: undefined;
213
+ } | {
214
+ blockHash: `0x${string}` | null;
215
+ blockNumber: bigint | null;
216
+ from: import("viem").Address;
217
+ gas: bigint;
218
+ hash: import("viem").Hash;
219
+ input: import("viem").Hex;
220
+ nonce: number;
221
+ r: import("viem").Hex;
222
+ s: import("viem").Hex;
223
+ to: import("viem").Address | null;
224
+ transactionIndex: number | null;
225
+ typeHex: import("viem").Hex | null;
226
+ v: bigint;
227
+ value: bigint;
228
+ yParity: number;
229
+ accessList: import("viem").AccessList;
230
+ authorizationList?: undefined | undefined;
231
+ blobVersionedHashes: readonly import("viem").Hex[];
232
+ chainId: number;
233
+ type: "eip4844";
234
+ gasPrice?: undefined | undefined;
235
+ maxFeePerBlobGas: bigint;
236
+ maxFeePerGas: bigint;
237
+ maxPriorityFeePerGas: bigint;
238
+ feeCurrency: import("viem").Address | null;
239
+ mint?: undefined;
240
+ isSystemTx?: undefined;
241
+ sourceHash?: undefined;
242
+ gatewayFee?: undefined;
243
+ gatewayFeeRecipient?: undefined;
244
+ } | {
245
+ blockHash: `0x${string}` | null;
246
+ blockNumber: bigint | null;
247
+ from: import("viem").Address;
248
+ gas: bigint;
249
+ hash: import("viem").Hash;
250
+ input: import("viem").Hex;
251
+ nonce: number;
252
+ r: import("viem").Hex;
253
+ s: import("viem").Hex;
254
+ to: import("viem").Address | null;
255
+ transactionIndex: number | null;
256
+ typeHex: import("viem").Hex | null;
257
+ v: bigint;
258
+ value: bigint;
259
+ yParity: number;
260
+ accessList: import("viem").AccessList;
261
+ authorizationList: import("viem").SignedAuthorizationList;
262
+ blobVersionedHashes?: undefined | undefined;
263
+ chainId: number;
264
+ type: "eip7702";
265
+ gasPrice?: undefined | undefined;
266
+ maxFeePerBlobGas?: undefined | undefined;
267
+ maxFeePerGas: bigint;
268
+ maxPriorityFeePerGas: bigint;
269
+ feeCurrency: import("viem").Address | null;
270
+ mint?: undefined;
271
+ isSystemTx?: undefined;
272
+ sourceHash?: undefined;
273
+ gatewayFee?: undefined;
274
+ gatewayFeeRecipient?: undefined;
275
+ } | {
276
+ blockHash: `0x${string}` | null;
277
+ blockNumber: bigint | null;
278
+ from: import("viem").Address;
279
+ gas: bigint;
280
+ hash: import("viem").Hash;
281
+ input: import("viem").Hex;
282
+ nonce: number;
283
+ r: import("viem").Hex;
284
+ s: import("viem").Hex;
285
+ to: import("viem").Address | null;
286
+ transactionIndex: number | null;
287
+ typeHex: import("viem").Hex | null;
288
+ v: bigint;
289
+ value: bigint;
290
+ yParity: number;
291
+ gasPrice?: undefined | undefined;
292
+ maxFeePerBlobGas?: undefined | undefined;
293
+ maxFeePerGas: bigint;
294
+ maxPriorityFeePerGas: bigint;
295
+ accessList: import("viem").AccessList;
296
+ chainId: number;
297
+ feeCurrency: import("viem").Address | null;
298
+ gatewayFee: bigint | null;
299
+ gatewayFeeRecipient: import("viem").Address | null;
300
+ type: "cip42";
301
+ blobVersionedHashes?: undefined;
302
+ authorizationList?: undefined;
303
+ mint?: undefined;
304
+ isSystemTx?: undefined;
305
+ sourceHash?: undefined;
306
+ } | {
307
+ blockHash: `0x${string}` | null;
308
+ blockNumber: bigint | null;
309
+ from: import("viem").Address;
310
+ gas: bigint;
311
+ hash: import("viem").Hash;
312
+ input: import("viem").Hex;
313
+ nonce: number;
314
+ r: import("viem").Hex;
315
+ s: import("viem").Hex;
316
+ to: import("viem").Address | null;
317
+ transactionIndex: number | null;
318
+ typeHex: import("viem").Hex | null;
319
+ v: bigint;
320
+ value: bigint;
321
+ yParity: number;
322
+ gasPrice?: undefined | undefined;
323
+ maxFeePerBlobGas?: undefined | undefined;
324
+ maxFeePerGas: bigint;
325
+ maxPriorityFeePerGas: bigint;
326
+ accessList: import("viem").AccessList;
327
+ chainId: number;
328
+ feeCurrency: import("viem").Address | null;
329
+ type: "cip64";
330
+ blobVersionedHashes?: undefined;
331
+ authorizationList?: undefined;
332
+ mint?: undefined;
333
+ isSystemTx?: undefined;
334
+ sourceHash?: undefined;
335
+ gatewayFee?: undefined;
336
+ gatewayFeeRecipient?: undefined;
337
+ } | {
338
+ blockHash: `0x${string}` | null;
339
+ blockNumber: bigint | null;
340
+ from: import("viem").Address;
341
+ gas: bigint;
342
+ hash: import("viem").Hash;
343
+ input: import("viem").Hex;
344
+ nonce: number;
345
+ r: import("viem").Hex;
346
+ s: import("viem").Hex;
347
+ to: import("viem").Address | null;
348
+ transactionIndex: number | null;
349
+ typeHex: import("viem").Hex | null;
350
+ v: bigint;
351
+ value: bigint;
352
+ yParity: number;
353
+ gasPrice?: undefined | undefined;
354
+ maxFeePerBlobGas?: undefined | undefined;
355
+ maxFeePerGas: bigint;
356
+ maxPriorityFeePerGas: bigint;
357
+ isSystemTx?: boolean;
358
+ mint?: bigint | undefined | undefined;
359
+ sourceHash: import("viem").Hex;
360
+ type: "deposit";
361
+ blobVersionedHashes?: undefined;
362
+ accessList?: undefined;
363
+ authorizationList?: undefined;
364
+ chainId?: undefined;
365
+ feeCurrency?: undefined;
366
+ gatewayFee?: undefined;
367
+ gatewayFeeRecipient?: undefined;
368
+ }) & {};
369
+ type: "transaction";
370
+ };
371
+ readonly transactionRequest: {
372
+ exclude: [] | undefined;
373
+ format: (args: import("viem/chains").CeloTransactionRequest, action?: string | undefined) => ({
374
+ data?: `0x${string}` | undefined;
375
+ from?: `0x${string}` | undefined;
376
+ gas?: `0x${string}` | undefined;
377
+ nonce?: `0x${string}` | undefined;
378
+ to?: `0x${string}` | null | undefined;
379
+ type?: "0x0" | undefined;
380
+ value?: `0x${string}` | undefined;
381
+ gasPrice?: `0x${string}` | undefined;
382
+ maxFeePerBlobGas?: undefined | undefined;
383
+ maxFeePerGas?: undefined | undefined;
384
+ maxPriorityFeePerGas?: undefined | undefined;
385
+ blobs?: undefined;
386
+ blobVersionedHashes?: undefined;
387
+ kzg?: undefined;
388
+ accessList?: undefined;
389
+ sidecars?: undefined;
390
+ authorizationList?: undefined;
391
+ feeCurrency?: `0x${string}` | undefined;
392
+ } | {
393
+ data?: `0x${string}` | undefined;
394
+ from?: `0x${string}` | undefined;
395
+ gas?: `0x${string}` | undefined;
396
+ nonce?: `0x${string}` | undefined;
397
+ to?: `0x${string}` | null | undefined;
398
+ type?: "0x1" | undefined;
399
+ value?: `0x${string}` | undefined;
400
+ gasPrice?: `0x${string}` | undefined;
401
+ maxFeePerBlobGas?: undefined | undefined;
402
+ maxFeePerGas?: undefined | undefined;
403
+ maxPriorityFeePerGas?: undefined | undefined;
404
+ accessList?: import("viem").AccessList | undefined;
405
+ blobs?: undefined;
406
+ blobVersionedHashes?: undefined;
407
+ kzg?: undefined;
408
+ sidecars?: undefined;
409
+ authorizationList?: undefined;
410
+ feeCurrency?: `0x${string}` | undefined;
411
+ } | {
412
+ data?: `0x${string}` | undefined;
413
+ from?: `0x${string}` | undefined;
414
+ gas?: `0x${string}` | undefined;
415
+ nonce?: `0x${string}` | undefined;
416
+ to?: `0x${string}` | null | undefined;
417
+ type?: "0x2" | undefined;
418
+ value?: `0x${string}` | undefined;
419
+ gasPrice?: undefined | undefined;
420
+ maxFeePerBlobGas?: undefined | undefined;
421
+ maxFeePerGas?: `0x${string}` | undefined;
422
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
423
+ accessList?: import("viem").AccessList | undefined;
424
+ blobs?: undefined;
425
+ blobVersionedHashes?: undefined;
426
+ kzg?: undefined;
427
+ sidecars?: undefined;
428
+ authorizationList?: undefined;
429
+ feeCurrency?: `0x${string}` | undefined;
430
+ } | {
431
+ type?: "0x3" | undefined;
432
+ data?: `0x${string}` | undefined;
433
+ from?: `0x${string}` | undefined;
434
+ gas?: `0x${string}` | undefined;
435
+ nonce?: `0x${string}` | undefined;
436
+ value?: `0x${string}` | undefined;
437
+ to: `0x${string}` | null;
438
+ gasPrice?: undefined | undefined;
439
+ maxFeePerBlobGas?: `0x${string}` | undefined;
440
+ maxFeePerGas?: `0x${string}` | undefined;
441
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
442
+ accessList?: import("viem").AccessList | undefined;
443
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
444
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
445
+ blobVersionedHashes: readonly import("viem").Hex[];
446
+ kzg?: undefined;
447
+ authorizationList?: undefined;
448
+ feeCurrency?: `0x${string}` | undefined;
449
+ } | {
450
+ type?: "0x3" | undefined;
451
+ data?: `0x${string}` | undefined;
452
+ from?: `0x${string}` | undefined;
453
+ gas?: `0x${string}` | undefined;
454
+ nonce?: `0x${string}` | undefined;
455
+ value?: `0x${string}` | undefined;
456
+ to: `0x${string}` | null;
457
+ gasPrice?: undefined | undefined;
458
+ maxFeePerBlobGas?: `0x${string}` | undefined;
459
+ maxFeePerGas?: `0x${string}` | undefined;
460
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
461
+ accessList?: import("viem").AccessList | undefined;
462
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
463
+ blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
464
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
465
+ kzg?: import("viem").Kzg | undefined;
466
+ authorizationList?: undefined;
467
+ feeCurrency?: `0x${string}` | undefined;
468
+ } | {
469
+ type?: "0x4" | undefined;
470
+ gasPrice?: undefined | undefined;
471
+ maxFeePerBlobGas?: undefined | undefined;
472
+ maxFeePerGas?: `0x${string}` | undefined;
473
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
474
+ to?: `0x${string}` | null | undefined;
475
+ data?: `0x${string}` | undefined;
476
+ from?: `0x${string}` | undefined;
477
+ gas?: `0x${string}` | undefined;
478
+ nonce?: `0x${string}` | undefined;
479
+ value?: `0x${string}` | undefined;
480
+ accessList?: import("viem").AccessList | undefined;
481
+ authorizationList?: import("viem").RpcAuthorizationList | undefined;
482
+ blobs?: undefined;
483
+ blobVersionedHashes?: undefined;
484
+ kzg?: undefined;
485
+ sidecars?: undefined;
486
+ feeCurrency?: `0x${string}` | undefined;
487
+ } | {
488
+ data?: `0x${string}` | undefined;
489
+ from?: `0x${string}` | undefined;
490
+ gas?: `0x${string}` | undefined;
491
+ nonce?: `0x${string}` | undefined;
492
+ to?: `0x${string}` | null | undefined;
493
+ type?: "0x7b" | undefined;
494
+ value?: `0x${string}` | undefined;
495
+ accessList?: import("viem").AccessList | undefined;
496
+ feeCurrency?: `0x${string}` | undefined;
497
+ gasPrice?: undefined | undefined;
498
+ maxFeePerBlobGas?: undefined | undefined;
499
+ maxFeePerGas?: `0x${string}` | undefined;
500
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
501
+ blobs?: undefined;
502
+ blobVersionedHashes?: undefined;
503
+ kzg?: undefined;
504
+ sidecars?: undefined;
505
+ authorizationList?: undefined;
506
+ }) & {};
507
+ type: "transactionRequest";
508
+ };
509
+ }>;
510
+ formatters: {
511
+ readonly block: {
512
+ exclude: [] | undefined;
513
+ format: (args: import("viem/chains").CeloRpcBlock, action?: string | undefined) => {
514
+ baseFeePerGas: bigint | null;
515
+ blobGasUsed: bigint;
516
+ difficulty: bigint;
517
+ excessBlobGas: bigint;
518
+ extraData: import("viem").Hex;
519
+ gasLimit: bigint;
520
+ gasUsed: bigint;
521
+ hash: `0x${string}` | null;
522
+ logsBloom: `0x${string}` | null;
523
+ miner: import("viem").Address;
524
+ mixHash: import("viem").Hash;
525
+ nonce: `0x${string}` | null;
526
+ number: bigint | null;
527
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
528
+ parentHash: import("viem").Hash;
529
+ receiptsRoot: import("viem").Hex;
530
+ sealFields: import("viem").Hex[];
531
+ sha3Uncles: import("viem").Hash;
532
+ size: bigint;
533
+ stateRoot: import("viem").Hash;
534
+ timestamp: bigint;
535
+ totalDifficulty: bigint | null;
536
+ transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
537
+ transactionsRoot: import("viem").Hash;
538
+ uncles: import("viem").Hash[];
539
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
540
+ withdrawalsRoot?: `0x${string}` | undefined;
541
+ } & {};
542
+ type: "block";
543
+ };
544
+ readonly transaction: {
545
+ exclude: [] | undefined;
546
+ format: (args: import("viem/chains").CeloRpcTransaction, action?: string | undefined) => ({
547
+ r: import("viem").Hex;
548
+ s: import("viem").Hex;
549
+ v: bigint;
550
+ to: import("viem").Address | null;
551
+ from: import("viem").Address;
552
+ gas: bigint;
553
+ nonce: number;
554
+ value: bigint;
555
+ blockHash: `0x${string}` | null;
556
+ blockNumber: bigint | null;
557
+ hash: import("viem").Hash;
558
+ input: import("viem").Hex;
559
+ transactionIndex: number | null;
560
+ typeHex: import("viem").Hex | null;
561
+ accessList?: undefined | undefined;
562
+ authorizationList?: undefined | undefined;
563
+ blobVersionedHashes?: undefined | undefined;
564
+ chainId?: number | undefined;
565
+ yParity?: undefined | undefined;
566
+ type: "legacy";
567
+ gasPrice: bigint;
568
+ maxFeePerBlobGas?: undefined | undefined;
569
+ maxFeePerGas?: undefined | undefined;
570
+ maxPriorityFeePerGas?: undefined | undefined;
571
+ feeCurrency: import("viem").Address | null;
572
+ mint?: undefined;
573
+ isSystemTx?: undefined;
574
+ sourceHash?: undefined;
575
+ gatewayFee?: undefined;
576
+ gatewayFeeRecipient?: undefined;
577
+ } | {
578
+ blockHash: `0x${string}` | null;
579
+ blockNumber: bigint | null;
580
+ from: import("viem").Address;
581
+ gas: bigint;
582
+ hash: import("viem").Hash;
583
+ input: import("viem").Hex;
584
+ nonce: number;
585
+ r: import("viem").Hex;
586
+ s: import("viem").Hex;
587
+ to: import("viem").Address | null;
588
+ transactionIndex: number | null;
589
+ typeHex: import("viem").Hex | null;
590
+ v: bigint;
591
+ value: bigint;
592
+ yParity: number;
593
+ accessList: import("viem").AccessList;
594
+ authorizationList?: undefined | undefined;
595
+ blobVersionedHashes?: undefined | undefined;
596
+ chainId: number;
597
+ type: "eip2930";
598
+ gasPrice: bigint;
599
+ maxFeePerBlobGas?: undefined | undefined;
600
+ maxFeePerGas?: undefined | undefined;
601
+ maxPriorityFeePerGas?: undefined | undefined;
602
+ feeCurrency: import("viem").Address | null;
603
+ mint?: undefined;
604
+ isSystemTx?: undefined;
605
+ sourceHash?: undefined;
606
+ gatewayFee?: undefined;
607
+ gatewayFeeRecipient?: undefined;
608
+ } | {
609
+ blockHash: `0x${string}` | null;
610
+ blockNumber: bigint | null;
611
+ from: import("viem").Address;
612
+ gas: bigint;
613
+ hash: import("viem").Hash;
614
+ input: import("viem").Hex;
615
+ nonce: number;
616
+ r: import("viem").Hex;
617
+ s: import("viem").Hex;
618
+ to: import("viem").Address | null;
619
+ transactionIndex: number | null;
620
+ typeHex: import("viem").Hex | null;
621
+ v: bigint;
622
+ value: bigint;
623
+ yParity: number;
624
+ accessList: import("viem").AccessList;
625
+ authorizationList?: undefined | undefined;
626
+ blobVersionedHashes?: undefined | undefined;
627
+ chainId: number;
628
+ type: "eip1559";
629
+ gasPrice?: undefined | undefined;
630
+ maxFeePerBlobGas?: undefined | undefined;
631
+ maxFeePerGas: bigint;
632
+ maxPriorityFeePerGas: bigint;
633
+ feeCurrency: import("viem").Address | null;
634
+ mint?: undefined;
635
+ isSystemTx?: undefined;
636
+ sourceHash?: undefined;
637
+ gatewayFee?: undefined;
638
+ gatewayFeeRecipient?: undefined;
639
+ } | {
640
+ blockHash: `0x${string}` | null;
641
+ blockNumber: bigint | null;
642
+ from: import("viem").Address;
643
+ gas: bigint;
644
+ hash: import("viem").Hash;
645
+ input: import("viem").Hex;
646
+ nonce: number;
647
+ r: import("viem").Hex;
648
+ s: import("viem").Hex;
649
+ to: import("viem").Address | null;
650
+ transactionIndex: number | null;
651
+ typeHex: import("viem").Hex | null;
652
+ v: bigint;
653
+ value: bigint;
654
+ yParity: number;
655
+ accessList: import("viem").AccessList;
656
+ authorizationList?: undefined | undefined;
657
+ blobVersionedHashes: readonly import("viem").Hex[];
658
+ chainId: number;
659
+ type: "eip4844";
660
+ gasPrice?: undefined | undefined;
661
+ maxFeePerBlobGas: bigint;
662
+ maxFeePerGas: bigint;
663
+ maxPriorityFeePerGas: bigint;
664
+ feeCurrency: import("viem").Address | null;
665
+ mint?: undefined;
666
+ isSystemTx?: undefined;
667
+ sourceHash?: undefined;
668
+ gatewayFee?: undefined;
669
+ gatewayFeeRecipient?: undefined;
670
+ } | {
671
+ blockHash: `0x${string}` | null;
672
+ blockNumber: bigint | null;
673
+ from: import("viem").Address;
674
+ gas: bigint;
675
+ hash: import("viem").Hash;
676
+ input: import("viem").Hex;
677
+ nonce: number;
678
+ r: import("viem").Hex;
679
+ s: import("viem").Hex;
680
+ to: import("viem").Address | null;
681
+ transactionIndex: number | null;
682
+ typeHex: import("viem").Hex | null;
683
+ v: bigint;
684
+ value: bigint;
685
+ yParity: number;
686
+ accessList: import("viem").AccessList;
687
+ authorizationList: import("viem").SignedAuthorizationList;
688
+ blobVersionedHashes?: undefined | undefined;
689
+ chainId: number;
690
+ type: "eip7702";
691
+ gasPrice?: undefined | undefined;
692
+ maxFeePerBlobGas?: undefined | undefined;
693
+ maxFeePerGas: bigint;
694
+ maxPriorityFeePerGas: bigint;
695
+ feeCurrency: import("viem").Address | null;
696
+ mint?: undefined;
697
+ isSystemTx?: undefined;
698
+ sourceHash?: undefined;
699
+ gatewayFee?: undefined;
700
+ gatewayFeeRecipient?: undefined;
701
+ } | {
702
+ blockHash: `0x${string}` | null;
703
+ blockNumber: bigint | null;
704
+ from: import("viem").Address;
705
+ gas: bigint;
706
+ hash: import("viem").Hash;
707
+ input: import("viem").Hex;
708
+ nonce: number;
709
+ r: import("viem").Hex;
710
+ s: import("viem").Hex;
711
+ to: import("viem").Address | null;
712
+ transactionIndex: number | null;
713
+ typeHex: import("viem").Hex | null;
714
+ v: bigint;
715
+ value: bigint;
716
+ yParity: number;
717
+ gasPrice?: undefined | undefined;
718
+ maxFeePerBlobGas?: undefined | undefined;
719
+ maxFeePerGas: bigint;
720
+ maxPriorityFeePerGas: bigint;
721
+ accessList: import("viem").AccessList;
722
+ chainId: number;
723
+ feeCurrency: import("viem").Address | null;
724
+ gatewayFee: bigint | null;
725
+ gatewayFeeRecipient: import("viem").Address | null;
726
+ type: "cip42";
727
+ blobVersionedHashes?: undefined;
728
+ authorizationList?: undefined;
729
+ mint?: undefined;
730
+ isSystemTx?: undefined;
731
+ sourceHash?: undefined;
732
+ } | {
733
+ blockHash: `0x${string}` | null;
734
+ blockNumber: bigint | null;
735
+ from: import("viem").Address;
736
+ gas: bigint;
737
+ hash: import("viem").Hash;
738
+ input: import("viem").Hex;
739
+ nonce: number;
740
+ r: import("viem").Hex;
741
+ s: import("viem").Hex;
742
+ to: import("viem").Address | null;
743
+ transactionIndex: number | null;
744
+ typeHex: import("viem").Hex | null;
745
+ v: bigint;
746
+ value: bigint;
747
+ yParity: number;
748
+ gasPrice?: undefined | undefined;
749
+ maxFeePerBlobGas?: undefined | undefined;
750
+ maxFeePerGas: bigint;
751
+ maxPriorityFeePerGas: bigint;
752
+ accessList: import("viem").AccessList;
753
+ chainId: number;
754
+ feeCurrency: import("viem").Address | null;
755
+ type: "cip64";
756
+ blobVersionedHashes?: undefined;
757
+ authorizationList?: undefined;
758
+ mint?: undefined;
759
+ isSystemTx?: undefined;
760
+ sourceHash?: undefined;
761
+ gatewayFee?: undefined;
762
+ gatewayFeeRecipient?: undefined;
763
+ } | {
764
+ blockHash: `0x${string}` | null;
765
+ blockNumber: bigint | null;
766
+ from: import("viem").Address;
767
+ gas: bigint;
768
+ hash: import("viem").Hash;
769
+ input: import("viem").Hex;
770
+ nonce: number;
771
+ r: import("viem").Hex;
772
+ s: import("viem").Hex;
773
+ to: import("viem").Address | null;
774
+ transactionIndex: number | null;
775
+ typeHex: import("viem").Hex | null;
776
+ v: bigint;
777
+ value: bigint;
778
+ yParity: number;
779
+ gasPrice?: undefined | undefined;
780
+ maxFeePerBlobGas?: undefined | undefined;
781
+ maxFeePerGas: bigint;
782
+ maxPriorityFeePerGas: bigint;
783
+ isSystemTx?: boolean;
784
+ mint?: bigint | undefined | undefined;
785
+ sourceHash: import("viem").Hex;
786
+ type: "deposit";
787
+ blobVersionedHashes?: undefined;
788
+ accessList?: undefined;
789
+ authorizationList?: undefined;
790
+ chainId?: undefined;
791
+ feeCurrency?: undefined;
792
+ gatewayFee?: undefined;
793
+ gatewayFeeRecipient?: undefined;
794
+ }) & {};
795
+ type: "transaction";
796
+ };
797
+ readonly transactionRequest: {
798
+ exclude: [] | undefined;
799
+ format: (args: import("viem/chains").CeloTransactionRequest, action?: string | undefined) => ({
800
+ data?: `0x${string}` | undefined;
801
+ from?: `0x${string}` | undefined;
802
+ gas?: `0x${string}` | undefined;
803
+ nonce?: `0x${string}` | undefined;
804
+ to?: `0x${string}` | null | undefined;
805
+ type?: "0x0" | undefined;
806
+ value?: `0x${string}` | undefined;
807
+ gasPrice?: `0x${string}` | undefined;
808
+ maxFeePerBlobGas?: undefined | undefined;
809
+ maxFeePerGas?: undefined | undefined;
810
+ maxPriorityFeePerGas?: undefined | undefined;
811
+ blobs?: undefined;
812
+ blobVersionedHashes?: undefined;
813
+ kzg?: undefined;
814
+ accessList?: undefined;
815
+ sidecars?: undefined;
816
+ authorizationList?: undefined;
817
+ feeCurrency?: `0x${string}` | undefined;
818
+ } | {
819
+ data?: `0x${string}` | undefined;
820
+ from?: `0x${string}` | undefined;
821
+ gas?: `0x${string}` | undefined;
822
+ nonce?: `0x${string}` | undefined;
823
+ to?: `0x${string}` | null | undefined;
824
+ type?: "0x1" | undefined;
825
+ value?: `0x${string}` | undefined;
826
+ gasPrice?: `0x${string}` | undefined;
827
+ maxFeePerBlobGas?: undefined | undefined;
828
+ maxFeePerGas?: undefined | undefined;
829
+ maxPriorityFeePerGas?: undefined | undefined;
830
+ accessList?: import("viem").AccessList | undefined;
831
+ blobs?: undefined;
832
+ blobVersionedHashes?: undefined;
833
+ kzg?: undefined;
834
+ sidecars?: undefined;
835
+ authorizationList?: undefined;
836
+ feeCurrency?: `0x${string}` | undefined;
837
+ } | {
838
+ data?: `0x${string}` | undefined;
839
+ from?: `0x${string}` | undefined;
840
+ gas?: `0x${string}` | undefined;
841
+ nonce?: `0x${string}` | undefined;
842
+ to?: `0x${string}` | null | undefined;
843
+ type?: "0x2" | undefined;
844
+ value?: `0x${string}` | undefined;
845
+ gasPrice?: undefined | undefined;
846
+ maxFeePerBlobGas?: undefined | undefined;
847
+ maxFeePerGas?: `0x${string}` | undefined;
848
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
849
+ accessList?: import("viem").AccessList | undefined;
850
+ blobs?: undefined;
851
+ blobVersionedHashes?: undefined;
852
+ kzg?: undefined;
853
+ sidecars?: undefined;
854
+ authorizationList?: undefined;
855
+ feeCurrency?: `0x${string}` | undefined;
856
+ } | {
857
+ type?: "0x3" | undefined;
858
+ data?: `0x${string}` | undefined;
859
+ from?: `0x${string}` | undefined;
860
+ gas?: `0x${string}` | undefined;
861
+ nonce?: `0x${string}` | undefined;
862
+ value?: `0x${string}` | undefined;
863
+ to: `0x${string}` | null;
864
+ gasPrice?: undefined | undefined;
865
+ maxFeePerBlobGas?: `0x${string}` | undefined;
866
+ maxFeePerGas?: `0x${string}` | undefined;
867
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
868
+ accessList?: import("viem").AccessList | undefined;
869
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
870
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
871
+ blobVersionedHashes: readonly import("viem").Hex[];
872
+ kzg?: undefined;
873
+ authorizationList?: undefined;
874
+ feeCurrency?: `0x${string}` | undefined;
875
+ } | {
876
+ type?: "0x3" | undefined;
877
+ data?: `0x${string}` | undefined;
878
+ from?: `0x${string}` | undefined;
879
+ gas?: `0x${string}` | undefined;
880
+ nonce?: `0x${string}` | undefined;
881
+ value?: `0x${string}` | undefined;
882
+ to: `0x${string}` | null;
883
+ gasPrice?: undefined | undefined;
884
+ maxFeePerBlobGas?: `0x${string}` | undefined;
885
+ maxFeePerGas?: `0x${string}` | undefined;
886
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
887
+ accessList?: import("viem").AccessList | undefined;
888
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
889
+ blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
890
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
891
+ kzg?: import("viem").Kzg | undefined;
892
+ authorizationList?: undefined;
893
+ feeCurrency?: `0x${string}` | undefined;
894
+ } | {
895
+ type?: "0x4" | undefined;
896
+ gasPrice?: undefined | undefined;
897
+ maxFeePerBlobGas?: undefined | undefined;
898
+ maxFeePerGas?: `0x${string}` | undefined;
899
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
900
+ to?: `0x${string}` | null | undefined;
901
+ data?: `0x${string}` | undefined;
902
+ from?: `0x${string}` | undefined;
903
+ gas?: `0x${string}` | undefined;
904
+ nonce?: `0x${string}` | undefined;
905
+ value?: `0x${string}` | undefined;
906
+ accessList?: import("viem").AccessList | undefined;
907
+ authorizationList?: import("viem").RpcAuthorizationList | undefined;
908
+ blobs?: undefined;
909
+ blobVersionedHashes?: undefined;
910
+ kzg?: undefined;
911
+ sidecars?: undefined;
912
+ feeCurrency?: `0x${string}` | undefined;
913
+ } | {
914
+ data?: `0x${string}` | undefined;
915
+ from?: `0x${string}` | undefined;
916
+ gas?: `0x${string}` | undefined;
917
+ nonce?: `0x${string}` | undefined;
918
+ to?: `0x${string}` | null | undefined;
919
+ type?: "0x7b" | undefined;
920
+ value?: `0x${string}` | undefined;
921
+ accessList?: import("viem").AccessList | undefined;
922
+ feeCurrency?: `0x${string}` | undefined;
923
+ gasPrice?: undefined | undefined;
924
+ maxFeePerBlobGas?: undefined | undefined;
925
+ maxFeePerGas?: `0x${string}` | undefined;
926
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
927
+ blobs?: undefined;
928
+ blobVersionedHashes?: undefined;
929
+ kzg?: undefined;
930
+ sidecars?: undefined;
931
+ authorizationList?: undefined;
932
+ }) & {};
933
+ type: "transactionRequest";
934
+ };
935
+ };
936
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
937
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
938
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
939
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
940
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
941
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
942
+ }] | undefined;
943
+ serializers: {
944
+ readonly transaction: typeof import("viem/chains").serializeTransactionCelo;
945
+ };
946
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
947
+ }] | readonly [{
948
+ blockExplorers: {
949
+ readonly default: {
950
+ readonly name: "Celo Explorer";
951
+ readonly url: "https://celoscan.io";
952
+ readonly apiUrl: "https://api.celoscan.io/api";
953
+ };
954
+ };
955
+ blockTime: 1000;
956
+ contracts: {
957
+ readonly multicall3: {
958
+ readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
959
+ readonly blockCreated: 13112599;
960
+ };
961
+ };
962
+ ensTlds?: readonly string[] | undefined;
963
+ id: 42220;
964
+ name: "Celo";
965
+ nativeCurrency: {
966
+ readonly decimals: 18;
967
+ readonly name: "CELO";
968
+ readonly symbol: "CELO";
969
+ };
970
+ experimental_preconfirmationTime?: number | undefined | undefined;
971
+ rpcUrls: {
972
+ readonly default: {
973
+ readonly http: readonly ["https://forno.celo.org"];
974
+ };
975
+ };
976
+ sourceId?: number | undefined | undefined;
977
+ testnet: false;
978
+ custom?: Record<string, unknown> | undefined;
979
+ extendSchema?: Record<string, unknown> | undefined;
980
+ fees: import("viem").ChainFees<{
981
+ readonly block: {
982
+ exclude: [] | undefined;
983
+ format: (args: import("viem/chains").CeloRpcBlock, action?: string | undefined) => {
984
+ baseFeePerGas: bigint | null;
985
+ blobGasUsed: bigint;
986
+ difficulty: bigint;
987
+ excessBlobGas: bigint;
988
+ extraData: import("viem").Hex;
989
+ gasLimit: bigint;
990
+ gasUsed: bigint;
991
+ hash: `0x${string}` | null;
992
+ logsBloom: `0x${string}` | null;
993
+ miner: import("viem").Address;
994
+ mixHash: import("viem").Hash;
995
+ nonce: `0x${string}` | null;
996
+ number: bigint | null;
997
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
998
+ parentHash: import("viem").Hash;
999
+ receiptsRoot: import("viem").Hex;
1000
+ sealFields: import("viem").Hex[];
1001
+ sha3Uncles: import("viem").Hash;
1002
+ size: bigint;
1003
+ stateRoot: import("viem").Hash;
1004
+ timestamp: bigint;
1005
+ totalDifficulty: bigint | null;
1006
+ transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
1007
+ transactionsRoot: import("viem").Hash;
1008
+ uncles: import("viem").Hash[];
1009
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
1010
+ withdrawalsRoot?: `0x${string}` | undefined;
1011
+ } & {};
1012
+ type: "block";
1013
+ };
1014
+ readonly transaction: {
1015
+ exclude: [] | undefined;
1016
+ format: (args: import("viem/chains").CeloRpcTransaction, action?: string | undefined) => ({
1017
+ r: import("viem").Hex;
1018
+ s: import("viem").Hex;
1019
+ v: bigint;
1020
+ to: import("viem").Address | null;
1021
+ from: import("viem").Address;
1022
+ gas: bigint;
1023
+ nonce: number;
1024
+ value: bigint;
1025
+ blockHash: `0x${string}` | null;
1026
+ blockNumber: bigint | null;
1027
+ hash: import("viem").Hash;
1028
+ input: import("viem").Hex;
1029
+ transactionIndex: number | null;
1030
+ typeHex: import("viem").Hex | null;
1031
+ accessList?: undefined | undefined;
1032
+ authorizationList?: undefined | undefined;
1033
+ blobVersionedHashes?: undefined | undefined;
1034
+ chainId?: number | undefined;
1035
+ yParity?: undefined | undefined;
1036
+ type: "legacy";
1037
+ gasPrice: bigint;
1038
+ maxFeePerBlobGas?: undefined | undefined;
1039
+ maxFeePerGas?: undefined | undefined;
1040
+ maxPriorityFeePerGas?: undefined | undefined;
1041
+ feeCurrency: import("viem").Address | null;
1042
+ mint?: undefined;
1043
+ isSystemTx?: undefined;
1044
+ sourceHash?: undefined;
1045
+ gatewayFee?: undefined;
1046
+ gatewayFeeRecipient?: undefined;
1047
+ } | {
1048
+ blockHash: `0x${string}` | null;
1049
+ blockNumber: bigint | null;
1050
+ from: import("viem").Address;
1051
+ gas: bigint;
1052
+ hash: import("viem").Hash;
1053
+ input: import("viem").Hex;
1054
+ nonce: number;
1055
+ r: import("viem").Hex;
1056
+ s: import("viem").Hex;
1057
+ to: import("viem").Address | null;
1058
+ transactionIndex: number | null;
1059
+ typeHex: import("viem").Hex | null;
1060
+ v: bigint;
1061
+ value: bigint;
1062
+ yParity: number;
1063
+ accessList: import("viem").AccessList;
1064
+ authorizationList?: undefined | undefined;
1065
+ blobVersionedHashes?: undefined | undefined;
1066
+ chainId: number;
1067
+ type: "eip2930";
1068
+ gasPrice: bigint;
1069
+ maxFeePerBlobGas?: undefined | undefined;
1070
+ maxFeePerGas?: undefined | undefined;
1071
+ maxPriorityFeePerGas?: undefined | undefined;
1072
+ feeCurrency: import("viem").Address | null;
1073
+ mint?: undefined;
1074
+ isSystemTx?: undefined;
1075
+ sourceHash?: undefined;
1076
+ gatewayFee?: undefined;
1077
+ gatewayFeeRecipient?: undefined;
1078
+ } | {
1079
+ blockHash: `0x${string}` | null;
1080
+ blockNumber: bigint | null;
1081
+ from: import("viem").Address;
1082
+ gas: bigint;
1083
+ hash: import("viem").Hash;
1084
+ input: import("viem").Hex;
1085
+ nonce: number;
1086
+ r: import("viem").Hex;
1087
+ s: import("viem").Hex;
1088
+ to: import("viem").Address | null;
1089
+ transactionIndex: number | null;
1090
+ typeHex: import("viem").Hex | null;
1091
+ v: bigint;
1092
+ value: bigint;
1093
+ yParity: number;
1094
+ accessList: import("viem").AccessList;
1095
+ authorizationList?: undefined | undefined;
1096
+ blobVersionedHashes?: undefined | undefined;
1097
+ chainId: number;
1098
+ type: "eip1559";
1099
+ gasPrice?: undefined | undefined;
1100
+ maxFeePerBlobGas?: undefined | undefined;
1101
+ maxFeePerGas: bigint;
1102
+ maxPriorityFeePerGas: bigint;
1103
+ feeCurrency: import("viem").Address | null;
1104
+ mint?: undefined;
1105
+ isSystemTx?: undefined;
1106
+ sourceHash?: undefined;
1107
+ gatewayFee?: undefined;
1108
+ gatewayFeeRecipient?: undefined;
1109
+ } | {
1110
+ blockHash: `0x${string}` | null;
1111
+ blockNumber: bigint | null;
1112
+ from: import("viem").Address;
1113
+ gas: bigint;
1114
+ hash: import("viem").Hash;
1115
+ input: import("viem").Hex;
1116
+ nonce: number;
1117
+ r: import("viem").Hex;
1118
+ s: import("viem").Hex;
1119
+ to: import("viem").Address | null;
1120
+ transactionIndex: number | null;
1121
+ typeHex: import("viem").Hex | null;
1122
+ v: bigint;
1123
+ value: bigint;
1124
+ yParity: number;
1125
+ accessList: import("viem").AccessList;
1126
+ authorizationList?: undefined | undefined;
1127
+ blobVersionedHashes: readonly import("viem").Hex[];
1128
+ chainId: number;
1129
+ type: "eip4844";
1130
+ gasPrice?: undefined | undefined;
1131
+ maxFeePerBlobGas: bigint;
1132
+ maxFeePerGas: bigint;
1133
+ maxPriorityFeePerGas: bigint;
1134
+ feeCurrency: import("viem").Address | null;
1135
+ mint?: undefined;
1136
+ isSystemTx?: undefined;
1137
+ sourceHash?: undefined;
1138
+ gatewayFee?: undefined;
1139
+ gatewayFeeRecipient?: undefined;
1140
+ } | {
1141
+ blockHash: `0x${string}` | null;
1142
+ blockNumber: bigint | null;
1143
+ from: import("viem").Address;
1144
+ gas: bigint;
1145
+ hash: import("viem").Hash;
1146
+ input: import("viem").Hex;
1147
+ nonce: number;
1148
+ r: import("viem").Hex;
1149
+ s: import("viem").Hex;
1150
+ to: import("viem").Address | null;
1151
+ transactionIndex: number | null;
1152
+ typeHex: import("viem").Hex | null;
1153
+ v: bigint;
1154
+ value: bigint;
1155
+ yParity: number;
1156
+ accessList: import("viem").AccessList;
1157
+ authorizationList: import("viem").SignedAuthorizationList;
1158
+ blobVersionedHashes?: undefined | undefined;
1159
+ chainId: number;
1160
+ type: "eip7702";
1161
+ gasPrice?: undefined | undefined;
1162
+ maxFeePerBlobGas?: undefined | undefined;
1163
+ maxFeePerGas: bigint;
1164
+ maxPriorityFeePerGas: bigint;
1165
+ feeCurrency: import("viem").Address | null;
1166
+ mint?: undefined;
1167
+ isSystemTx?: undefined;
1168
+ sourceHash?: undefined;
1169
+ gatewayFee?: undefined;
1170
+ gatewayFeeRecipient?: undefined;
1171
+ } | {
1172
+ blockHash: `0x${string}` | null;
1173
+ blockNumber: bigint | null;
1174
+ from: import("viem").Address;
1175
+ gas: bigint;
1176
+ hash: import("viem").Hash;
1177
+ input: import("viem").Hex;
1178
+ nonce: number;
1179
+ r: import("viem").Hex;
1180
+ s: import("viem").Hex;
1181
+ to: import("viem").Address | null;
1182
+ transactionIndex: number | null;
1183
+ typeHex: import("viem").Hex | null;
1184
+ v: bigint;
1185
+ value: bigint;
1186
+ yParity: number;
1187
+ gasPrice?: undefined | undefined;
1188
+ maxFeePerBlobGas?: undefined | undefined;
1189
+ maxFeePerGas: bigint;
1190
+ maxPriorityFeePerGas: bigint;
1191
+ accessList: import("viem").AccessList;
1192
+ chainId: number;
1193
+ feeCurrency: import("viem").Address | null;
1194
+ gatewayFee: bigint | null;
1195
+ gatewayFeeRecipient: import("viem").Address | null;
1196
+ type: "cip42";
1197
+ blobVersionedHashes?: undefined;
1198
+ authorizationList?: undefined;
1199
+ mint?: undefined;
1200
+ isSystemTx?: undefined;
1201
+ sourceHash?: undefined;
1202
+ } | {
1203
+ blockHash: `0x${string}` | null;
1204
+ blockNumber: bigint | null;
1205
+ from: import("viem").Address;
1206
+ gas: bigint;
1207
+ hash: import("viem").Hash;
1208
+ input: import("viem").Hex;
1209
+ nonce: number;
1210
+ r: import("viem").Hex;
1211
+ s: import("viem").Hex;
1212
+ to: import("viem").Address | null;
1213
+ transactionIndex: number | null;
1214
+ typeHex: import("viem").Hex | null;
1215
+ v: bigint;
1216
+ value: bigint;
1217
+ yParity: number;
1218
+ gasPrice?: undefined | undefined;
1219
+ maxFeePerBlobGas?: undefined | undefined;
1220
+ maxFeePerGas: bigint;
1221
+ maxPriorityFeePerGas: bigint;
1222
+ accessList: import("viem").AccessList;
1223
+ chainId: number;
1224
+ feeCurrency: import("viem").Address | null;
1225
+ type: "cip64";
1226
+ blobVersionedHashes?: undefined;
1227
+ authorizationList?: undefined;
1228
+ mint?: undefined;
1229
+ isSystemTx?: undefined;
1230
+ sourceHash?: undefined;
1231
+ gatewayFee?: undefined;
1232
+ gatewayFeeRecipient?: undefined;
1233
+ } | {
1234
+ blockHash: `0x${string}` | null;
1235
+ blockNumber: bigint | null;
1236
+ from: import("viem").Address;
1237
+ gas: bigint;
1238
+ hash: import("viem").Hash;
1239
+ input: import("viem").Hex;
1240
+ nonce: number;
1241
+ r: import("viem").Hex;
1242
+ s: import("viem").Hex;
1243
+ to: import("viem").Address | null;
1244
+ transactionIndex: number | null;
1245
+ typeHex: import("viem").Hex | null;
1246
+ v: bigint;
1247
+ value: bigint;
1248
+ yParity: number;
1249
+ gasPrice?: undefined | undefined;
1250
+ maxFeePerBlobGas?: undefined | undefined;
1251
+ maxFeePerGas: bigint;
1252
+ maxPriorityFeePerGas: bigint;
1253
+ isSystemTx?: boolean;
1254
+ mint?: bigint | undefined | undefined;
1255
+ sourceHash: import("viem").Hex;
1256
+ type: "deposit";
1257
+ blobVersionedHashes?: undefined;
1258
+ accessList?: undefined;
1259
+ authorizationList?: undefined;
1260
+ chainId?: undefined;
1261
+ feeCurrency?: undefined;
1262
+ gatewayFee?: undefined;
1263
+ gatewayFeeRecipient?: undefined;
1264
+ }) & {};
1265
+ type: "transaction";
1266
+ };
1267
+ readonly transactionRequest: {
1268
+ exclude: [] | undefined;
1269
+ format: (args: import("viem/chains").CeloTransactionRequest, action?: string | undefined) => ({
1270
+ data?: `0x${string}` | undefined;
1271
+ from?: `0x${string}` | undefined;
1272
+ gas?: `0x${string}` | undefined;
1273
+ nonce?: `0x${string}` | undefined;
1274
+ to?: `0x${string}` | null | undefined;
1275
+ type?: "0x0" | undefined;
1276
+ value?: `0x${string}` | undefined;
1277
+ gasPrice?: `0x${string}` | undefined;
1278
+ maxFeePerBlobGas?: undefined | undefined;
1279
+ maxFeePerGas?: undefined | undefined;
1280
+ maxPriorityFeePerGas?: undefined | undefined;
1281
+ blobs?: undefined;
1282
+ blobVersionedHashes?: undefined;
1283
+ kzg?: undefined;
1284
+ accessList?: undefined;
1285
+ sidecars?: undefined;
1286
+ authorizationList?: undefined;
1287
+ feeCurrency?: `0x${string}` | undefined;
1288
+ } | {
1289
+ data?: `0x${string}` | undefined;
1290
+ from?: `0x${string}` | undefined;
1291
+ gas?: `0x${string}` | undefined;
1292
+ nonce?: `0x${string}` | undefined;
1293
+ to?: `0x${string}` | null | undefined;
1294
+ type?: "0x1" | undefined;
1295
+ value?: `0x${string}` | undefined;
1296
+ gasPrice?: `0x${string}` | undefined;
1297
+ maxFeePerBlobGas?: undefined | undefined;
1298
+ maxFeePerGas?: undefined | undefined;
1299
+ maxPriorityFeePerGas?: undefined | undefined;
1300
+ accessList?: import("viem").AccessList | undefined;
1301
+ blobs?: undefined;
1302
+ blobVersionedHashes?: undefined;
1303
+ kzg?: undefined;
1304
+ sidecars?: undefined;
1305
+ authorizationList?: undefined;
1306
+ feeCurrency?: `0x${string}` | undefined;
1307
+ } | {
1308
+ data?: `0x${string}` | undefined;
1309
+ from?: `0x${string}` | undefined;
1310
+ gas?: `0x${string}` | undefined;
1311
+ nonce?: `0x${string}` | undefined;
1312
+ to?: `0x${string}` | null | undefined;
1313
+ type?: "0x2" | undefined;
1314
+ value?: `0x${string}` | undefined;
1315
+ gasPrice?: undefined | undefined;
1316
+ maxFeePerBlobGas?: undefined | undefined;
1317
+ maxFeePerGas?: `0x${string}` | undefined;
1318
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1319
+ accessList?: import("viem").AccessList | undefined;
1320
+ blobs?: undefined;
1321
+ blobVersionedHashes?: undefined;
1322
+ kzg?: undefined;
1323
+ sidecars?: undefined;
1324
+ authorizationList?: undefined;
1325
+ feeCurrency?: `0x${string}` | undefined;
1326
+ } | {
1327
+ type?: "0x3" | undefined;
1328
+ data?: `0x${string}` | undefined;
1329
+ from?: `0x${string}` | undefined;
1330
+ gas?: `0x${string}` | undefined;
1331
+ nonce?: `0x${string}` | undefined;
1332
+ value?: `0x${string}` | undefined;
1333
+ to: `0x${string}` | null;
1334
+ gasPrice?: undefined | undefined;
1335
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1336
+ maxFeePerGas?: `0x${string}` | undefined;
1337
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1338
+ accessList?: import("viem").AccessList | undefined;
1339
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1340
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1341
+ blobVersionedHashes: readonly import("viem").Hex[];
1342
+ kzg?: undefined;
1343
+ authorizationList?: undefined;
1344
+ feeCurrency?: `0x${string}` | undefined;
1345
+ } | {
1346
+ type?: "0x3" | undefined;
1347
+ data?: `0x${string}` | undefined;
1348
+ from?: `0x${string}` | undefined;
1349
+ gas?: `0x${string}` | undefined;
1350
+ nonce?: `0x${string}` | undefined;
1351
+ value?: `0x${string}` | undefined;
1352
+ to: `0x${string}` | null;
1353
+ gasPrice?: undefined | undefined;
1354
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1355
+ maxFeePerGas?: `0x${string}` | undefined;
1356
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1357
+ accessList?: import("viem").AccessList | undefined;
1358
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1359
+ blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
1360
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1361
+ kzg?: import("viem").Kzg | undefined;
1362
+ authorizationList?: undefined;
1363
+ feeCurrency?: `0x${string}` | undefined;
1364
+ } | {
1365
+ type?: "0x4" | undefined;
1366
+ gasPrice?: undefined | undefined;
1367
+ maxFeePerBlobGas?: undefined | undefined;
1368
+ maxFeePerGas?: `0x${string}` | undefined;
1369
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1370
+ to?: `0x${string}` | null | undefined;
1371
+ data?: `0x${string}` | undefined;
1372
+ from?: `0x${string}` | undefined;
1373
+ gas?: `0x${string}` | undefined;
1374
+ nonce?: `0x${string}` | undefined;
1375
+ value?: `0x${string}` | undefined;
1376
+ accessList?: import("viem").AccessList | undefined;
1377
+ authorizationList?: import("viem").RpcAuthorizationList | undefined;
1378
+ blobs?: undefined;
1379
+ blobVersionedHashes?: undefined;
1380
+ kzg?: undefined;
1381
+ sidecars?: undefined;
1382
+ feeCurrency?: `0x${string}` | undefined;
1383
+ } | {
1384
+ data?: `0x${string}` | undefined;
1385
+ from?: `0x${string}` | undefined;
1386
+ gas?: `0x${string}` | undefined;
1387
+ nonce?: `0x${string}` | undefined;
1388
+ to?: `0x${string}` | null | undefined;
1389
+ type?: "0x7b" | undefined;
1390
+ value?: `0x${string}` | undefined;
1391
+ accessList?: import("viem").AccessList | undefined;
1392
+ feeCurrency?: `0x${string}` | undefined;
1393
+ gasPrice?: undefined | undefined;
1394
+ maxFeePerBlobGas?: undefined | undefined;
1395
+ maxFeePerGas?: `0x${string}` | undefined;
1396
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1397
+ blobs?: undefined;
1398
+ blobVersionedHashes?: undefined;
1399
+ kzg?: undefined;
1400
+ sidecars?: undefined;
1401
+ authorizationList?: undefined;
1402
+ }) & {};
1403
+ type: "transactionRequest";
1404
+ };
1405
+ }>;
1406
+ formatters: {
1407
+ readonly block: {
1408
+ exclude: [] | undefined;
1409
+ format: (args: import("viem/chains").CeloRpcBlock, action?: string | undefined) => {
1410
+ baseFeePerGas: bigint | null;
1411
+ blobGasUsed: bigint;
1412
+ difficulty: bigint;
1413
+ excessBlobGas: bigint;
1414
+ extraData: import("viem").Hex;
1415
+ gasLimit: bigint;
1416
+ gasUsed: bigint;
1417
+ hash: `0x${string}` | null;
1418
+ logsBloom: `0x${string}` | null;
1419
+ miner: import("viem").Address;
1420
+ mixHash: import("viem").Hash;
1421
+ nonce: `0x${string}` | null;
1422
+ number: bigint | null;
1423
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
1424
+ parentHash: import("viem").Hash;
1425
+ receiptsRoot: import("viem").Hex;
1426
+ sealFields: import("viem").Hex[];
1427
+ sha3Uncles: import("viem").Hash;
1428
+ size: bigint;
1429
+ stateRoot: import("viem").Hash;
1430
+ timestamp: bigint;
1431
+ totalDifficulty: bigint | null;
1432
+ transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
1433
+ transactionsRoot: import("viem").Hash;
1434
+ uncles: import("viem").Hash[];
1435
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
1436
+ withdrawalsRoot?: `0x${string}` | undefined;
1437
+ } & {};
1438
+ type: "block";
1439
+ };
1440
+ readonly transaction: {
1441
+ exclude: [] | undefined;
1442
+ format: (args: import("viem/chains").CeloRpcTransaction, action?: string | undefined) => ({
1443
+ r: import("viem").Hex;
1444
+ s: import("viem").Hex;
1445
+ v: bigint;
1446
+ to: import("viem").Address | null;
1447
+ from: import("viem").Address;
1448
+ gas: bigint;
1449
+ nonce: number;
1450
+ value: bigint;
1451
+ blockHash: `0x${string}` | null;
1452
+ blockNumber: bigint | null;
1453
+ hash: import("viem").Hash;
1454
+ input: import("viem").Hex;
1455
+ transactionIndex: number | null;
1456
+ typeHex: import("viem").Hex | null;
1457
+ accessList?: undefined | undefined;
1458
+ authorizationList?: undefined | undefined;
1459
+ blobVersionedHashes?: undefined | undefined;
1460
+ chainId?: number | undefined;
1461
+ yParity?: undefined | undefined;
1462
+ type: "legacy";
1463
+ gasPrice: bigint;
1464
+ maxFeePerBlobGas?: undefined | undefined;
1465
+ maxFeePerGas?: undefined | undefined;
1466
+ maxPriorityFeePerGas?: undefined | undefined;
1467
+ feeCurrency: import("viem").Address | null;
1468
+ mint?: undefined;
1469
+ isSystemTx?: undefined;
1470
+ sourceHash?: undefined;
1471
+ gatewayFee?: undefined;
1472
+ gatewayFeeRecipient?: undefined;
1473
+ } | {
1474
+ blockHash: `0x${string}` | null;
1475
+ blockNumber: bigint | null;
1476
+ from: import("viem").Address;
1477
+ gas: bigint;
1478
+ hash: import("viem").Hash;
1479
+ input: import("viem").Hex;
1480
+ nonce: number;
1481
+ r: import("viem").Hex;
1482
+ s: import("viem").Hex;
1483
+ to: import("viem").Address | null;
1484
+ transactionIndex: number | null;
1485
+ typeHex: import("viem").Hex | null;
1486
+ v: bigint;
1487
+ value: bigint;
1488
+ yParity: number;
1489
+ accessList: import("viem").AccessList;
1490
+ authorizationList?: undefined | undefined;
1491
+ blobVersionedHashes?: undefined | undefined;
1492
+ chainId: number;
1493
+ type: "eip2930";
1494
+ gasPrice: bigint;
1495
+ maxFeePerBlobGas?: undefined | undefined;
1496
+ maxFeePerGas?: undefined | undefined;
1497
+ maxPriorityFeePerGas?: undefined | undefined;
1498
+ feeCurrency: import("viem").Address | null;
1499
+ mint?: undefined;
1500
+ isSystemTx?: undefined;
1501
+ sourceHash?: undefined;
1502
+ gatewayFee?: undefined;
1503
+ gatewayFeeRecipient?: undefined;
1504
+ } | {
1505
+ blockHash: `0x${string}` | null;
1506
+ blockNumber: bigint | null;
1507
+ from: import("viem").Address;
1508
+ gas: bigint;
1509
+ hash: import("viem").Hash;
1510
+ input: import("viem").Hex;
1511
+ nonce: number;
1512
+ r: import("viem").Hex;
1513
+ s: import("viem").Hex;
1514
+ to: import("viem").Address | null;
1515
+ transactionIndex: number | null;
1516
+ typeHex: import("viem").Hex | null;
1517
+ v: bigint;
1518
+ value: bigint;
1519
+ yParity: number;
1520
+ accessList: import("viem").AccessList;
1521
+ authorizationList?: undefined | undefined;
1522
+ blobVersionedHashes?: undefined | undefined;
1523
+ chainId: number;
1524
+ type: "eip1559";
1525
+ gasPrice?: undefined | undefined;
1526
+ maxFeePerBlobGas?: undefined | undefined;
1527
+ maxFeePerGas: bigint;
1528
+ maxPriorityFeePerGas: bigint;
1529
+ feeCurrency: import("viem").Address | null;
1530
+ mint?: undefined;
1531
+ isSystemTx?: undefined;
1532
+ sourceHash?: undefined;
1533
+ gatewayFee?: undefined;
1534
+ gatewayFeeRecipient?: undefined;
1535
+ } | {
1536
+ blockHash: `0x${string}` | null;
1537
+ blockNumber: bigint | null;
1538
+ from: import("viem").Address;
1539
+ gas: bigint;
1540
+ hash: import("viem").Hash;
1541
+ input: import("viem").Hex;
1542
+ nonce: number;
1543
+ r: import("viem").Hex;
1544
+ s: import("viem").Hex;
1545
+ to: import("viem").Address | null;
1546
+ transactionIndex: number | null;
1547
+ typeHex: import("viem").Hex | null;
1548
+ v: bigint;
1549
+ value: bigint;
1550
+ yParity: number;
1551
+ accessList: import("viem").AccessList;
1552
+ authorizationList?: undefined | undefined;
1553
+ blobVersionedHashes: readonly import("viem").Hex[];
1554
+ chainId: number;
1555
+ type: "eip4844";
1556
+ gasPrice?: undefined | undefined;
1557
+ maxFeePerBlobGas: bigint;
1558
+ maxFeePerGas: bigint;
1559
+ maxPriorityFeePerGas: bigint;
1560
+ feeCurrency: import("viem").Address | null;
1561
+ mint?: undefined;
1562
+ isSystemTx?: undefined;
1563
+ sourceHash?: undefined;
1564
+ gatewayFee?: undefined;
1565
+ gatewayFeeRecipient?: undefined;
1566
+ } | {
1567
+ blockHash: `0x${string}` | null;
1568
+ blockNumber: bigint | null;
1569
+ from: import("viem").Address;
1570
+ gas: bigint;
1571
+ hash: import("viem").Hash;
1572
+ input: import("viem").Hex;
1573
+ nonce: number;
1574
+ r: import("viem").Hex;
1575
+ s: import("viem").Hex;
1576
+ to: import("viem").Address | null;
1577
+ transactionIndex: number | null;
1578
+ typeHex: import("viem").Hex | null;
1579
+ v: bigint;
1580
+ value: bigint;
1581
+ yParity: number;
1582
+ accessList: import("viem").AccessList;
1583
+ authorizationList: import("viem").SignedAuthorizationList;
1584
+ blobVersionedHashes?: undefined | undefined;
1585
+ chainId: number;
1586
+ type: "eip7702";
1587
+ gasPrice?: undefined | undefined;
1588
+ maxFeePerBlobGas?: undefined | undefined;
1589
+ maxFeePerGas: bigint;
1590
+ maxPriorityFeePerGas: bigint;
1591
+ feeCurrency: import("viem").Address | null;
1592
+ mint?: undefined;
1593
+ isSystemTx?: undefined;
1594
+ sourceHash?: undefined;
1595
+ gatewayFee?: undefined;
1596
+ gatewayFeeRecipient?: undefined;
1597
+ } | {
1598
+ blockHash: `0x${string}` | null;
1599
+ blockNumber: bigint | null;
1600
+ from: import("viem").Address;
1601
+ gas: bigint;
1602
+ hash: import("viem").Hash;
1603
+ input: import("viem").Hex;
1604
+ nonce: number;
1605
+ r: import("viem").Hex;
1606
+ s: import("viem").Hex;
1607
+ to: import("viem").Address | null;
1608
+ transactionIndex: number | null;
1609
+ typeHex: import("viem").Hex | null;
1610
+ v: bigint;
1611
+ value: bigint;
1612
+ yParity: number;
1613
+ gasPrice?: undefined | undefined;
1614
+ maxFeePerBlobGas?: undefined | undefined;
1615
+ maxFeePerGas: bigint;
1616
+ maxPriorityFeePerGas: bigint;
1617
+ accessList: import("viem").AccessList;
1618
+ chainId: number;
1619
+ feeCurrency: import("viem").Address | null;
1620
+ gatewayFee: bigint | null;
1621
+ gatewayFeeRecipient: import("viem").Address | null;
1622
+ type: "cip42";
1623
+ blobVersionedHashes?: undefined;
1624
+ authorizationList?: undefined;
1625
+ mint?: undefined;
1626
+ isSystemTx?: undefined;
1627
+ sourceHash?: undefined;
1628
+ } | {
1629
+ blockHash: `0x${string}` | null;
1630
+ blockNumber: bigint | null;
1631
+ from: import("viem").Address;
1632
+ gas: bigint;
1633
+ hash: import("viem").Hash;
1634
+ input: import("viem").Hex;
1635
+ nonce: number;
1636
+ r: import("viem").Hex;
1637
+ s: import("viem").Hex;
1638
+ to: import("viem").Address | null;
1639
+ transactionIndex: number | null;
1640
+ typeHex: import("viem").Hex | null;
1641
+ v: bigint;
1642
+ value: bigint;
1643
+ yParity: number;
1644
+ gasPrice?: undefined | undefined;
1645
+ maxFeePerBlobGas?: undefined | undefined;
1646
+ maxFeePerGas: bigint;
1647
+ maxPriorityFeePerGas: bigint;
1648
+ accessList: import("viem").AccessList;
1649
+ chainId: number;
1650
+ feeCurrency: import("viem").Address | null;
1651
+ type: "cip64";
1652
+ blobVersionedHashes?: undefined;
1653
+ authorizationList?: undefined;
1654
+ mint?: undefined;
1655
+ isSystemTx?: undefined;
1656
+ sourceHash?: undefined;
1657
+ gatewayFee?: undefined;
1658
+ gatewayFeeRecipient?: undefined;
1659
+ } | {
1660
+ blockHash: `0x${string}` | null;
1661
+ blockNumber: bigint | null;
1662
+ from: import("viem").Address;
1663
+ gas: bigint;
1664
+ hash: import("viem").Hash;
1665
+ input: import("viem").Hex;
1666
+ nonce: number;
1667
+ r: import("viem").Hex;
1668
+ s: import("viem").Hex;
1669
+ to: import("viem").Address | null;
1670
+ transactionIndex: number | null;
1671
+ typeHex: import("viem").Hex | null;
1672
+ v: bigint;
1673
+ value: bigint;
1674
+ yParity: number;
1675
+ gasPrice?: undefined | undefined;
1676
+ maxFeePerBlobGas?: undefined | undefined;
1677
+ maxFeePerGas: bigint;
1678
+ maxPriorityFeePerGas: bigint;
1679
+ isSystemTx?: boolean;
1680
+ mint?: bigint | undefined | undefined;
1681
+ sourceHash: import("viem").Hex;
1682
+ type: "deposit";
1683
+ blobVersionedHashes?: undefined;
1684
+ accessList?: undefined;
1685
+ authorizationList?: undefined;
1686
+ chainId?: undefined;
1687
+ feeCurrency?: undefined;
1688
+ gatewayFee?: undefined;
1689
+ gatewayFeeRecipient?: undefined;
1690
+ }) & {};
1691
+ type: "transaction";
1692
+ };
1693
+ readonly transactionRequest: {
1694
+ exclude: [] | undefined;
1695
+ format: (args: import("viem/chains").CeloTransactionRequest, action?: string | undefined) => ({
1696
+ data?: `0x${string}` | undefined;
1697
+ from?: `0x${string}` | undefined;
1698
+ gas?: `0x${string}` | undefined;
1699
+ nonce?: `0x${string}` | undefined;
1700
+ to?: `0x${string}` | null | undefined;
1701
+ type?: "0x0" | undefined;
1702
+ value?: `0x${string}` | undefined;
1703
+ gasPrice?: `0x${string}` | undefined;
1704
+ maxFeePerBlobGas?: undefined | undefined;
1705
+ maxFeePerGas?: undefined | undefined;
1706
+ maxPriorityFeePerGas?: undefined | undefined;
1707
+ blobs?: undefined;
1708
+ blobVersionedHashes?: undefined;
1709
+ kzg?: undefined;
1710
+ accessList?: undefined;
1711
+ sidecars?: undefined;
1712
+ authorizationList?: undefined;
1713
+ feeCurrency?: `0x${string}` | undefined;
1714
+ } | {
1715
+ data?: `0x${string}` | undefined;
1716
+ from?: `0x${string}` | undefined;
1717
+ gas?: `0x${string}` | undefined;
1718
+ nonce?: `0x${string}` | undefined;
1719
+ to?: `0x${string}` | null | undefined;
1720
+ type?: "0x1" | undefined;
1721
+ value?: `0x${string}` | undefined;
1722
+ gasPrice?: `0x${string}` | undefined;
1723
+ maxFeePerBlobGas?: undefined | undefined;
1724
+ maxFeePerGas?: undefined | undefined;
1725
+ maxPriorityFeePerGas?: undefined | undefined;
1726
+ accessList?: import("viem").AccessList | undefined;
1727
+ blobs?: undefined;
1728
+ blobVersionedHashes?: undefined;
1729
+ kzg?: undefined;
1730
+ sidecars?: undefined;
1731
+ authorizationList?: undefined;
1732
+ feeCurrency?: `0x${string}` | undefined;
1733
+ } | {
1734
+ data?: `0x${string}` | undefined;
1735
+ from?: `0x${string}` | undefined;
1736
+ gas?: `0x${string}` | undefined;
1737
+ nonce?: `0x${string}` | undefined;
1738
+ to?: `0x${string}` | null | undefined;
1739
+ type?: "0x2" | undefined;
1740
+ value?: `0x${string}` | undefined;
1741
+ gasPrice?: undefined | undefined;
1742
+ maxFeePerBlobGas?: undefined | undefined;
1743
+ maxFeePerGas?: `0x${string}` | undefined;
1744
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1745
+ accessList?: import("viem").AccessList | undefined;
1746
+ blobs?: undefined;
1747
+ blobVersionedHashes?: undefined;
1748
+ kzg?: undefined;
1749
+ sidecars?: undefined;
1750
+ authorizationList?: undefined;
1751
+ feeCurrency?: `0x${string}` | undefined;
1752
+ } | {
1753
+ type?: "0x3" | undefined;
1754
+ data?: `0x${string}` | undefined;
1755
+ from?: `0x${string}` | undefined;
1756
+ gas?: `0x${string}` | undefined;
1757
+ nonce?: `0x${string}` | undefined;
1758
+ value?: `0x${string}` | undefined;
1759
+ to: `0x${string}` | null;
1760
+ gasPrice?: undefined | undefined;
1761
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1762
+ maxFeePerGas?: `0x${string}` | undefined;
1763
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1764
+ accessList?: import("viem").AccessList | undefined;
1765
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1766
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1767
+ blobVersionedHashes: readonly import("viem").Hex[];
1768
+ kzg?: undefined;
1769
+ authorizationList?: undefined;
1770
+ feeCurrency?: `0x${string}` | undefined;
1771
+ } | {
1772
+ type?: "0x3" | undefined;
1773
+ data?: `0x${string}` | undefined;
1774
+ from?: `0x${string}` | undefined;
1775
+ gas?: `0x${string}` | undefined;
1776
+ nonce?: `0x${string}` | undefined;
1777
+ value?: `0x${string}` | undefined;
1778
+ to: `0x${string}` | null;
1779
+ gasPrice?: undefined | undefined;
1780
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1781
+ maxFeePerGas?: `0x${string}` | undefined;
1782
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1783
+ accessList?: import("viem").AccessList | undefined;
1784
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1785
+ blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
1786
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1787
+ kzg?: import("viem").Kzg | undefined;
1788
+ authorizationList?: undefined;
1789
+ feeCurrency?: `0x${string}` | undefined;
1790
+ } | {
1791
+ type?: "0x4" | undefined;
1792
+ gasPrice?: undefined | undefined;
1793
+ maxFeePerBlobGas?: undefined | undefined;
1794
+ maxFeePerGas?: `0x${string}` | undefined;
1795
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1796
+ to?: `0x${string}` | null | undefined;
1797
+ data?: `0x${string}` | undefined;
1798
+ from?: `0x${string}` | undefined;
1799
+ gas?: `0x${string}` | undefined;
1800
+ nonce?: `0x${string}` | undefined;
1801
+ value?: `0x${string}` | undefined;
1802
+ accessList?: import("viem").AccessList | undefined;
1803
+ authorizationList?: import("viem").RpcAuthorizationList | undefined;
1804
+ blobs?: undefined;
1805
+ blobVersionedHashes?: undefined;
1806
+ kzg?: undefined;
1807
+ sidecars?: undefined;
1808
+ feeCurrency?: `0x${string}` | undefined;
1809
+ } | {
1810
+ data?: `0x${string}` | undefined;
1811
+ from?: `0x${string}` | undefined;
1812
+ gas?: `0x${string}` | undefined;
1813
+ nonce?: `0x${string}` | undefined;
1814
+ to?: `0x${string}` | null | undefined;
1815
+ type?: "0x7b" | undefined;
1816
+ value?: `0x${string}` | undefined;
1817
+ accessList?: import("viem").AccessList | undefined;
1818
+ feeCurrency?: `0x${string}` | undefined;
1819
+ gasPrice?: undefined | undefined;
1820
+ maxFeePerBlobGas?: undefined | undefined;
1821
+ maxFeePerGas?: `0x${string}` | undefined;
1822
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1823
+ blobs?: undefined;
1824
+ blobVersionedHashes?: undefined;
1825
+ kzg?: undefined;
1826
+ sidecars?: undefined;
1827
+ authorizationList?: undefined;
1828
+ }) & {};
1829
+ type: "transactionRequest";
1830
+ };
1831
+ };
1832
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
1833
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1834
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
1835
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
1836
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
1837
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
1838
+ }] | undefined;
1839
+ serializers: {
1840
+ readonly transaction: typeof import("viem/chains").serializeTransactionCelo;
1841
+ };
1842
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
1843
+ }];
1844
+ export declare function createCeloClickerWagmiConfig(options?: CeloClickerWagmiConfigOptions): import("wagmi").Config<[{
1845
+ blockExplorers: {
1846
+ readonly default: {
1847
+ readonly name: "Celo Alfajores Explorer";
1848
+ readonly url: "https://celo-alfajores.blockscout.com";
1849
+ readonly apiUrl: "https://celo-alfajores.blockscout.com/api";
1850
+ };
1851
+ };
1852
+ blockTime: 1000;
1853
+ contracts: {
1854
+ readonly multicall3: {
1855
+ readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
1856
+ readonly blockCreated: 14569001;
1857
+ };
1858
+ readonly portal: {
1859
+ readonly 17000: {
1860
+ readonly address: "0x82527353927d8D069b3B452904c942dA149BA381";
1861
+ readonly blockCreated: 2411324;
1862
+ };
1863
+ };
1864
+ readonly disputeGameFactory: {
1865
+ readonly 17000: {
1866
+ readonly address: "0xE28AAdcd9883746c0e5068F58f9ea06027b214cb";
1867
+ readonly blockCreated: 2411324;
1868
+ };
1869
+ };
1870
+ readonly l2OutputOracle: {
1871
+ readonly 17000: {
1872
+ readonly address: "0x4a2635e9e4f6e45817b1D402ac4904c1d1752438";
1873
+ readonly blockCreated: 2411324;
1874
+ };
1875
+ };
1876
+ readonly l1StandardBridge: {
1877
+ readonly 17000: {
1878
+ readonly address: "0xD1B0E0581973c9eB7f886967A606b9441A897037";
1879
+ readonly blockCreated: 2411324;
1880
+ };
1881
+ };
1882
+ readonly gasPriceOracle: {
1883
+ readonly address: "0x420000000000000000000000000000000000000F";
1884
+ };
1885
+ readonly l1Block: {
1886
+ readonly address: "0x4200000000000000000000000000000000000015";
1887
+ };
1888
+ readonly l2CrossDomainMessenger: {
1889
+ readonly address: "0x4200000000000000000000000000000000000007";
1890
+ };
1891
+ readonly l2Erc721Bridge: {
1892
+ readonly address: "0x4200000000000000000000000000000000000014";
1893
+ };
1894
+ readonly l2StandardBridge: {
1895
+ readonly address: "0x4200000000000000000000000000000000000010";
1896
+ };
1897
+ readonly l2ToL1MessagePasser: {
1898
+ readonly address: "0x4200000000000000000000000000000000000016";
1899
+ };
1900
+ };
1901
+ ensTlds?: readonly string[] | undefined;
1902
+ id: 44787;
1903
+ name: "Alfajores";
1904
+ nativeCurrency: {
1905
+ readonly decimals: 18;
1906
+ readonly name: "CELO";
1907
+ readonly symbol: "A-CELO";
1908
+ };
1909
+ experimental_preconfirmationTime?: number | undefined | undefined;
1910
+ rpcUrls: {
1911
+ readonly default: {
1912
+ readonly http: readonly ["https://alfajores-forno.celo-testnet.org"];
1913
+ };
1914
+ };
1915
+ sourceId?: number | undefined | undefined;
1916
+ testnet: true;
1917
+ custom?: Record<string, unknown> | undefined;
1918
+ extendSchema?: Record<string, unknown> | undefined;
1919
+ fees: import("viem").ChainFees<{
1920
+ readonly block: {
1921
+ exclude: [] | undefined;
1922
+ format: (args: import("viem/chains").CeloRpcBlock, action?: string | undefined) => {
1923
+ baseFeePerGas: bigint | null;
1924
+ blobGasUsed: bigint;
1925
+ difficulty: bigint;
1926
+ excessBlobGas: bigint;
1927
+ extraData: import("viem").Hex;
1928
+ gasLimit: bigint;
1929
+ gasUsed: bigint;
1930
+ hash: `0x${string}` | null;
1931
+ logsBloom: `0x${string}` | null;
1932
+ miner: import("viem").Address;
1933
+ mixHash: import("viem").Hash;
1934
+ nonce: `0x${string}` | null;
1935
+ number: bigint | null;
1936
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
1937
+ parentHash: import("viem").Hash;
1938
+ receiptsRoot: import("viem").Hex;
1939
+ sealFields: import("viem").Hex[];
1940
+ sha3Uncles: import("viem").Hash;
1941
+ size: bigint;
1942
+ stateRoot: import("viem").Hash;
1943
+ timestamp: bigint;
1944
+ totalDifficulty: bigint | null;
1945
+ transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
1946
+ transactionsRoot: import("viem").Hash;
1947
+ uncles: import("viem").Hash[];
1948
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
1949
+ withdrawalsRoot?: `0x${string}` | undefined;
1950
+ } & {};
1951
+ type: "block";
1952
+ };
1953
+ readonly transaction: {
1954
+ exclude: [] | undefined;
1955
+ format: (args: import("viem/chains").CeloRpcTransaction, action?: string | undefined) => ({
1956
+ r: import("viem").Hex;
1957
+ s: import("viem").Hex;
1958
+ v: bigint;
1959
+ to: import("viem").Address | null;
1960
+ from: import("viem").Address;
1961
+ gas: bigint;
1962
+ nonce: number;
1963
+ value: bigint;
1964
+ blockHash: `0x${string}` | null;
1965
+ blockNumber: bigint | null;
1966
+ hash: import("viem").Hash;
1967
+ input: import("viem").Hex;
1968
+ transactionIndex: number | null;
1969
+ typeHex: import("viem").Hex | null;
1970
+ accessList?: undefined | undefined;
1971
+ authorizationList?: undefined | undefined;
1972
+ blobVersionedHashes?: undefined | undefined;
1973
+ chainId?: number | undefined;
1974
+ yParity?: undefined | undefined;
1975
+ type: "legacy";
1976
+ gasPrice: bigint;
1977
+ maxFeePerBlobGas?: undefined | undefined;
1978
+ maxFeePerGas?: undefined | undefined;
1979
+ maxPriorityFeePerGas?: undefined | undefined;
1980
+ feeCurrency: import("viem").Address | null;
1981
+ mint?: undefined;
1982
+ isSystemTx?: undefined;
1983
+ sourceHash?: undefined;
1984
+ gatewayFee?: undefined;
1985
+ gatewayFeeRecipient?: undefined;
1986
+ } | {
1987
+ blockHash: `0x${string}` | null;
1988
+ blockNumber: bigint | null;
1989
+ from: import("viem").Address;
1990
+ gas: bigint;
1991
+ hash: import("viem").Hash;
1992
+ input: import("viem").Hex;
1993
+ nonce: number;
1994
+ r: import("viem").Hex;
1995
+ s: import("viem").Hex;
1996
+ to: import("viem").Address | null;
1997
+ transactionIndex: number | null;
1998
+ typeHex: import("viem").Hex | null;
1999
+ v: bigint;
2000
+ value: bigint;
2001
+ yParity: number;
2002
+ accessList: import("viem").AccessList;
2003
+ authorizationList?: undefined | undefined;
2004
+ blobVersionedHashes?: undefined | undefined;
2005
+ chainId: number;
2006
+ type: "eip2930";
2007
+ gasPrice: bigint;
2008
+ maxFeePerBlobGas?: undefined | undefined;
2009
+ maxFeePerGas?: undefined | undefined;
2010
+ maxPriorityFeePerGas?: undefined | undefined;
2011
+ feeCurrency: import("viem").Address | null;
2012
+ mint?: undefined;
2013
+ isSystemTx?: undefined;
2014
+ sourceHash?: undefined;
2015
+ gatewayFee?: undefined;
2016
+ gatewayFeeRecipient?: undefined;
2017
+ } | {
2018
+ blockHash: `0x${string}` | null;
2019
+ blockNumber: bigint | null;
2020
+ from: import("viem").Address;
2021
+ gas: bigint;
2022
+ hash: import("viem").Hash;
2023
+ input: import("viem").Hex;
2024
+ nonce: number;
2025
+ r: import("viem").Hex;
2026
+ s: import("viem").Hex;
2027
+ to: import("viem").Address | null;
2028
+ transactionIndex: number | null;
2029
+ typeHex: import("viem").Hex | null;
2030
+ v: bigint;
2031
+ value: bigint;
2032
+ yParity: number;
2033
+ accessList: import("viem").AccessList;
2034
+ authorizationList?: undefined | undefined;
2035
+ blobVersionedHashes?: undefined | undefined;
2036
+ chainId: number;
2037
+ type: "eip1559";
2038
+ gasPrice?: undefined | undefined;
2039
+ maxFeePerBlobGas?: undefined | undefined;
2040
+ maxFeePerGas: bigint;
2041
+ maxPriorityFeePerGas: bigint;
2042
+ feeCurrency: import("viem").Address | null;
2043
+ mint?: undefined;
2044
+ isSystemTx?: undefined;
2045
+ sourceHash?: undefined;
2046
+ gatewayFee?: undefined;
2047
+ gatewayFeeRecipient?: undefined;
2048
+ } | {
2049
+ blockHash: `0x${string}` | null;
2050
+ blockNumber: bigint | null;
2051
+ from: import("viem").Address;
2052
+ gas: bigint;
2053
+ hash: import("viem").Hash;
2054
+ input: import("viem").Hex;
2055
+ nonce: number;
2056
+ r: import("viem").Hex;
2057
+ s: import("viem").Hex;
2058
+ to: import("viem").Address | null;
2059
+ transactionIndex: number | null;
2060
+ typeHex: import("viem").Hex | null;
2061
+ v: bigint;
2062
+ value: bigint;
2063
+ yParity: number;
2064
+ accessList: import("viem").AccessList;
2065
+ authorizationList?: undefined | undefined;
2066
+ blobVersionedHashes: readonly import("viem").Hex[];
2067
+ chainId: number;
2068
+ type: "eip4844";
2069
+ gasPrice?: undefined | undefined;
2070
+ maxFeePerBlobGas: bigint;
2071
+ maxFeePerGas: bigint;
2072
+ maxPriorityFeePerGas: bigint;
2073
+ feeCurrency: import("viem").Address | null;
2074
+ mint?: undefined;
2075
+ isSystemTx?: undefined;
2076
+ sourceHash?: undefined;
2077
+ gatewayFee?: undefined;
2078
+ gatewayFeeRecipient?: undefined;
2079
+ } | {
2080
+ blockHash: `0x${string}` | null;
2081
+ blockNumber: bigint | null;
2082
+ from: import("viem").Address;
2083
+ gas: bigint;
2084
+ hash: import("viem").Hash;
2085
+ input: import("viem").Hex;
2086
+ nonce: number;
2087
+ r: import("viem").Hex;
2088
+ s: import("viem").Hex;
2089
+ to: import("viem").Address | null;
2090
+ transactionIndex: number | null;
2091
+ typeHex: import("viem").Hex | null;
2092
+ v: bigint;
2093
+ value: bigint;
2094
+ yParity: number;
2095
+ accessList: import("viem").AccessList;
2096
+ authorizationList: import("viem").SignedAuthorizationList;
2097
+ blobVersionedHashes?: undefined | undefined;
2098
+ chainId: number;
2099
+ type: "eip7702";
2100
+ gasPrice?: undefined | undefined;
2101
+ maxFeePerBlobGas?: undefined | undefined;
2102
+ maxFeePerGas: bigint;
2103
+ maxPriorityFeePerGas: bigint;
2104
+ feeCurrency: import("viem").Address | null;
2105
+ mint?: undefined;
2106
+ isSystemTx?: undefined;
2107
+ sourceHash?: undefined;
2108
+ gatewayFee?: undefined;
2109
+ gatewayFeeRecipient?: undefined;
2110
+ } | {
2111
+ blockHash: `0x${string}` | null;
2112
+ blockNumber: bigint | null;
2113
+ from: import("viem").Address;
2114
+ gas: bigint;
2115
+ hash: import("viem").Hash;
2116
+ input: import("viem").Hex;
2117
+ nonce: number;
2118
+ r: import("viem").Hex;
2119
+ s: import("viem").Hex;
2120
+ to: import("viem").Address | null;
2121
+ transactionIndex: number | null;
2122
+ typeHex: import("viem").Hex | null;
2123
+ v: bigint;
2124
+ value: bigint;
2125
+ yParity: number;
2126
+ gasPrice?: undefined | undefined;
2127
+ maxFeePerBlobGas?: undefined | undefined;
2128
+ maxFeePerGas: bigint;
2129
+ maxPriorityFeePerGas: bigint;
2130
+ accessList: import("viem").AccessList;
2131
+ chainId: number;
2132
+ feeCurrency: import("viem").Address | null;
2133
+ gatewayFee: bigint | null;
2134
+ gatewayFeeRecipient: import("viem").Address | null;
2135
+ type: "cip42";
2136
+ blobVersionedHashes?: undefined;
2137
+ authorizationList?: undefined;
2138
+ mint?: undefined;
2139
+ isSystemTx?: undefined;
2140
+ sourceHash?: undefined;
2141
+ } | {
2142
+ blockHash: `0x${string}` | null;
2143
+ blockNumber: bigint | null;
2144
+ from: import("viem").Address;
2145
+ gas: bigint;
2146
+ hash: import("viem").Hash;
2147
+ input: import("viem").Hex;
2148
+ nonce: number;
2149
+ r: import("viem").Hex;
2150
+ s: import("viem").Hex;
2151
+ to: import("viem").Address | null;
2152
+ transactionIndex: number | null;
2153
+ typeHex: import("viem").Hex | null;
2154
+ v: bigint;
2155
+ value: bigint;
2156
+ yParity: number;
2157
+ gasPrice?: undefined | undefined;
2158
+ maxFeePerBlobGas?: undefined | undefined;
2159
+ maxFeePerGas: bigint;
2160
+ maxPriorityFeePerGas: bigint;
2161
+ accessList: import("viem").AccessList;
2162
+ chainId: number;
2163
+ feeCurrency: import("viem").Address | null;
2164
+ type: "cip64";
2165
+ blobVersionedHashes?: undefined;
2166
+ authorizationList?: undefined;
2167
+ mint?: undefined;
2168
+ isSystemTx?: undefined;
2169
+ sourceHash?: undefined;
2170
+ gatewayFee?: undefined;
2171
+ gatewayFeeRecipient?: undefined;
2172
+ } | {
2173
+ blockHash: `0x${string}` | null;
2174
+ blockNumber: bigint | null;
2175
+ from: import("viem").Address;
2176
+ gas: bigint;
2177
+ hash: import("viem").Hash;
2178
+ input: import("viem").Hex;
2179
+ nonce: number;
2180
+ r: import("viem").Hex;
2181
+ s: import("viem").Hex;
2182
+ to: import("viem").Address | null;
2183
+ transactionIndex: number | null;
2184
+ typeHex: import("viem").Hex | null;
2185
+ v: bigint;
2186
+ value: bigint;
2187
+ yParity: number;
2188
+ gasPrice?: undefined | undefined;
2189
+ maxFeePerBlobGas?: undefined | undefined;
2190
+ maxFeePerGas: bigint;
2191
+ maxPriorityFeePerGas: bigint;
2192
+ isSystemTx?: boolean;
2193
+ mint?: bigint | undefined | undefined;
2194
+ sourceHash: import("viem").Hex;
2195
+ type: "deposit";
2196
+ blobVersionedHashes?: undefined;
2197
+ accessList?: undefined;
2198
+ authorizationList?: undefined;
2199
+ chainId?: undefined;
2200
+ feeCurrency?: undefined;
2201
+ gatewayFee?: undefined;
2202
+ gatewayFeeRecipient?: undefined;
2203
+ }) & {};
2204
+ type: "transaction";
2205
+ };
2206
+ readonly transactionRequest: {
2207
+ exclude: [] | undefined;
2208
+ format: (args: import("viem/chains").CeloTransactionRequest, action?: string | undefined) => ({
2209
+ data?: `0x${string}` | undefined;
2210
+ from?: `0x${string}` | undefined;
2211
+ gas?: `0x${string}` | undefined;
2212
+ nonce?: `0x${string}` | undefined;
2213
+ to?: `0x${string}` | null | undefined;
2214
+ type?: "0x0" | undefined;
2215
+ value?: `0x${string}` | undefined;
2216
+ gasPrice?: `0x${string}` | undefined;
2217
+ maxFeePerBlobGas?: undefined | undefined;
2218
+ maxFeePerGas?: undefined | undefined;
2219
+ maxPriorityFeePerGas?: undefined | undefined;
2220
+ blobs?: undefined;
2221
+ blobVersionedHashes?: undefined;
2222
+ kzg?: undefined;
2223
+ accessList?: undefined;
2224
+ sidecars?: undefined;
2225
+ authorizationList?: undefined;
2226
+ feeCurrency?: `0x${string}` | undefined;
2227
+ } | {
2228
+ data?: `0x${string}` | undefined;
2229
+ from?: `0x${string}` | undefined;
2230
+ gas?: `0x${string}` | undefined;
2231
+ nonce?: `0x${string}` | undefined;
2232
+ to?: `0x${string}` | null | undefined;
2233
+ type?: "0x1" | undefined;
2234
+ value?: `0x${string}` | undefined;
2235
+ gasPrice?: `0x${string}` | undefined;
2236
+ maxFeePerBlobGas?: undefined | undefined;
2237
+ maxFeePerGas?: undefined | undefined;
2238
+ maxPriorityFeePerGas?: undefined | undefined;
2239
+ accessList?: import("viem").AccessList | undefined;
2240
+ blobs?: undefined;
2241
+ blobVersionedHashes?: undefined;
2242
+ kzg?: undefined;
2243
+ sidecars?: undefined;
2244
+ authorizationList?: undefined;
2245
+ feeCurrency?: `0x${string}` | undefined;
2246
+ } | {
2247
+ data?: `0x${string}` | undefined;
2248
+ from?: `0x${string}` | undefined;
2249
+ gas?: `0x${string}` | undefined;
2250
+ nonce?: `0x${string}` | undefined;
2251
+ to?: `0x${string}` | null | undefined;
2252
+ type?: "0x2" | undefined;
2253
+ value?: `0x${string}` | undefined;
2254
+ gasPrice?: undefined | undefined;
2255
+ maxFeePerBlobGas?: undefined | undefined;
2256
+ maxFeePerGas?: `0x${string}` | undefined;
2257
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2258
+ accessList?: import("viem").AccessList | undefined;
2259
+ blobs?: undefined;
2260
+ blobVersionedHashes?: undefined;
2261
+ kzg?: undefined;
2262
+ sidecars?: undefined;
2263
+ authorizationList?: undefined;
2264
+ feeCurrency?: `0x${string}` | undefined;
2265
+ } | {
2266
+ type?: "0x3" | undefined;
2267
+ data?: `0x${string}` | undefined;
2268
+ from?: `0x${string}` | undefined;
2269
+ gas?: `0x${string}` | undefined;
2270
+ nonce?: `0x${string}` | undefined;
2271
+ value?: `0x${string}` | undefined;
2272
+ to: `0x${string}` | null;
2273
+ gasPrice?: undefined | undefined;
2274
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2275
+ maxFeePerGas?: `0x${string}` | undefined;
2276
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2277
+ accessList?: import("viem").AccessList | undefined;
2278
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2279
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2280
+ blobVersionedHashes: readonly import("viem").Hex[];
2281
+ kzg?: undefined;
2282
+ authorizationList?: undefined;
2283
+ feeCurrency?: `0x${string}` | undefined;
2284
+ } | {
2285
+ type?: "0x3" | undefined;
2286
+ data?: `0x${string}` | undefined;
2287
+ from?: `0x${string}` | undefined;
2288
+ gas?: `0x${string}` | undefined;
2289
+ nonce?: `0x${string}` | undefined;
2290
+ value?: `0x${string}` | undefined;
2291
+ to: `0x${string}` | null;
2292
+ gasPrice?: undefined | undefined;
2293
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2294
+ maxFeePerGas?: `0x${string}` | undefined;
2295
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2296
+ accessList?: import("viem").AccessList | undefined;
2297
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2298
+ blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
2299
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2300
+ kzg?: import("viem").Kzg | undefined;
2301
+ authorizationList?: undefined;
2302
+ feeCurrency?: `0x${string}` | undefined;
2303
+ } | {
2304
+ type?: "0x4" | undefined;
2305
+ gasPrice?: undefined | undefined;
2306
+ maxFeePerBlobGas?: undefined | undefined;
2307
+ maxFeePerGas?: `0x${string}` | undefined;
2308
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2309
+ to?: `0x${string}` | null | undefined;
2310
+ data?: `0x${string}` | undefined;
2311
+ from?: `0x${string}` | undefined;
2312
+ gas?: `0x${string}` | undefined;
2313
+ nonce?: `0x${string}` | undefined;
2314
+ value?: `0x${string}` | undefined;
2315
+ accessList?: import("viem").AccessList | undefined;
2316
+ authorizationList?: import("viem").RpcAuthorizationList | undefined;
2317
+ blobs?: undefined;
2318
+ blobVersionedHashes?: undefined;
2319
+ kzg?: undefined;
2320
+ sidecars?: undefined;
2321
+ feeCurrency?: `0x${string}` | undefined;
2322
+ } | {
2323
+ data?: `0x${string}` | undefined;
2324
+ from?: `0x${string}` | undefined;
2325
+ gas?: `0x${string}` | undefined;
2326
+ nonce?: `0x${string}` | undefined;
2327
+ to?: `0x${string}` | null | undefined;
2328
+ type?: "0x7b" | undefined;
2329
+ value?: `0x${string}` | undefined;
2330
+ accessList?: import("viem").AccessList | undefined;
2331
+ feeCurrency?: `0x${string}` | undefined;
2332
+ gasPrice?: undefined | undefined;
2333
+ maxFeePerBlobGas?: undefined | undefined;
2334
+ maxFeePerGas?: `0x${string}` | undefined;
2335
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2336
+ blobs?: undefined;
2337
+ blobVersionedHashes?: undefined;
2338
+ kzg?: undefined;
2339
+ sidecars?: undefined;
2340
+ authorizationList?: undefined;
2341
+ }) & {};
2342
+ type: "transactionRequest";
2343
+ };
2344
+ }>;
2345
+ formatters: {
2346
+ readonly block: {
2347
+ exclude: [] | undefined;
2348
+ format: (args: import("viem/chains").CeloRpcBlock, action?: string | undefined) => {
2349
+ baseFeePerGas: bigint | null;
2350
+ blobGasUsed: bigint;
2351
+ difficulty: bigint;
2352
+ excessBlobGas: bigint;
2353
+ extraData: import("viem").Hex;
2354
+ gasLimit: bigint;
2355
+ gasUsed: bigint;
2356
+ hash: `0x${string}` | null;
2357
+ logsBloom: `0x${string}` | null;
2358
+ miner: import("viem").Address;
2359
+ mixHash: import("viem").Hash;
2360
+ nonce: `0x${string}` | null;
2361
+ number: bigint | null;
2362
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
2363
+ parentHash: import("viem").Hash;
2364
+ receiptsRoot: import("viem").Hex;
2365
+ sealFields: import("viem").Hex[];
2366
+ sha3Uncles: import("viem").Hash;
2367
+ size: bigint;
2368
+ stateRoot: import("viem").Hash;
2369
+ timestamp: bigint;
2370
+ totalDifficulty: bigint | null;
2371
+ transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
2372
+ transactionsRoot: import("viem").Hash;
2373
+ uncles: import("viem").Hash[];
2374
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
2375
+ withdrawalsRoot?: `0x${string}` | undefined;
2376
+ } & {};
2377
+ type: "block";
2378
+ };
2379
+ readonly transaction: {
2380
+ exclude: [] | undefined;
2381
+ format: (args: import("viem/chains").CeloRpcTransaction, action?: string | undefined) => ({
2382
+ r: import("viem").Hex;
2383
+ s: import("viem").Hex;
2384
+ v: bigint;
2385
+ to: import("viem").Address | null;
2386
+ from: import("viem").Address;
2387
+ gas: bigint;
2388
+ nonce: number;
2389
+ value: bigint;
2390
+ blockHash: `0x${string}` | null;
2391
+ blockNumber: bigint | null;
2392
+ hash: import("viem").Hash;
2393
+ input: import("viem").Hex;
2394
+ transactionIndex: number | null;
2395
+ typeHex: import("viem").Hex | null;
2396
+ accessList?: undefined | undefined;
2397
+ authorizationList?: undefined | undefined;
2398
+ blobVersionedHashes?: undefined | undefined;
2399
+ chainId?: number | undefined;
2400
+ yParity?: undefined | undefined;
2401
+ type: "legacy";
2402
+ gasPrice: bigint;
2403
+ maxFeePerBlobGas?: undefined | undefined;
2404
+ maxFeePerGas?: undefined | undefined;
2405
+ maxPriorityFeePerGas?: undefined | undefined;
2406
+ feeCurrency: import("viem").Address | null;
2407
+ mint?: undefined;
2408
+ isSystemTx?: undefined;
2409
+ sourceHash?: undefined;
2410
+ gatewayFee?: undefined;
2411
+ gatewayFeeRecipient?: undefined;
2412
+ } | {
2413
+ blockHash: `0x${string}` | null;
2414
+ blockNumber: bigint | null;
2415
+ from: import("viem").Address;
2416
+ gas: bigint;
2417
+ hash: import("viem").Hash;
2418
+ input: import("viem").Hex;
2419
+ nonce: number;
2420
+ r: import("viem").Hex;
2421
+ s: import("viem").Hex;
2422
+ to: import("viem").Address | null;
2423
+ transactionIndex: number | null;
2424
+ typeHex: import("viem").Hex | null;
2425
+ v: bigint;
2426
+ value: bigint;
2427
+ yParity: number;
2428
+ accessList: import("viem").AccessList;
2429
+ authorizationList?: undefined | undefined;
2430
+ blobVersionedHashes?: undefined | undefined;
2431
+ chainId: number;
2432
+ type: "eip2930";
2433
+ gasPrice: bigint;
2434
+ maxFeePerBlobGas?: undefined | undefined;
2435
+ maxFeePerGas?: undefined | undefined;
2436
+ maxPriorityFeePerGas?: undefined | undefined;
2437
+ feeCurrency: import("viem").Address | null;
2438
+ mint?: undefined;
2439
+ isSystemTx?: undefined;
2440
+ sourceHash?: undefined;
2441
+ gatewayFee?: undefined;
2442
+ gatewayFeeRecipient?: undefined;
2443
+ } | {
2444
+ blockHash: `0x${string}` | null;
2445
+ blockNumber: bigint | null;
2446
+ from: import("viem").Address;
2447
+ gas: bigint;
2448
+ hash: import("viem").Hash;
2449
+ input: import("viem").Hex;
2450
+ nonce: number;
2451
+ r: import("viem").Hex;
2452
+ s: import("viem").Hex;
2453
+ to: import("viem").Address | null;
2454
+ transactionIndex: number | null;
2455
+ typeHex: import("viem").Hex | null;
2456
+ v: bigint;
2457
+ value: bigint;
2458
+ yParity: number;
2459
+ accessList: import("viem").AccessList;
2460
+ authorizationList?: undefined | undefined;
2461
+ blobVersionedHashes?: undefined | undefined;
2462
+ chainId: number;
2463
+ type: "eip1559";
2464
+ gasPrice?: undefined | undefined;
2465
+ maxFeePerBlobGas?: undefined | undefined;
2466
+ maxFeePerGas: bigint;
2467
+ maxPriorityFeePerGas: bigint;
2468
+ feeCurrency: import("viem").Address | null;
2469
+ mint?: undefined;
2470
+ isSystemTx?: undefined;
2471
+ sourceHash?: undefined;
2472
+ gatewayFee?: undefined;
2473
+ gatewayFeeRecipient?: undefined;
2474
+ } | {
2475
+ blockHash: `0x${string}` | null;
2476
+ blockNumber: bigint | null;
2477
+ from: import("viem").Address;
2478
+ gas: bigint;
2479
+ hash: import("viem").Hash;
2480
+ input: import("viem").Hex;
2481
+ nonce: number;
2482
+ r: import("viem").Hex;
2483
+ s: import("viem").Hex;
2484
+ to: import("viem").Address | null;
2485
+ transactionIndex: number | null;
2486
+ typeHex: import("viem").Hex | null;
2487
+ v: bigint;
2488
+ value: bigint;
2489
+ yParity: number;
2490
+ accessList: import("viem").AccessList;
2491
+ authorizationList?: undefined | undefined;
2492
+ blobVersionedHashes: readonly import("viem").Hex[];
2493
+ chainId: number;
2494
+ type: "eip4844";
2495
+ gasPrice?: undefined | undefined;
2496
+ maxFeePerBlobGas: bigint;
2497
+ maxFeePerGas: bigint;
2498
+ maxPriorityFeePerGas: bigint;
2499
+ feeCurrency: import("viem").Address | null;
2500
+ mint?: undefined;
2501
+ isSystemTx?: undefined;
2502
+ sourceHash?: undefined;
2503
+ gatewayFee?: undefined;
2504
+ gatewayFeeRecipient?: undefined;
2505
+ } | {
2506
+ blockHash: `0x${string}` | null;
2507
+ blockNumber: bigint | null;
2508
+ from: import("viem").Address;
2509
+ gas: bigint;
2510
+ hash: import("viem").Hash;
2511
+ input: import("viem").Hex;
2512
+ nonce: number;
2513
+ r: import("viem").Hex;
2514
+ s: import("viem").Hex;
2515
+ to: import("viem").Address | null;
2516
+ transactionIndex: number | null;
2517
+ typeHex: import("viem").Hex | null;
2518
+ v: bigint;
2519
+ value: bigint;
2520
+ yParity: number;
2521
+ accessList: import("viem").AccessList;
2522
+ authorizationList: import("viem").SignedAuthorizationList;
2523
+ blobVersionedHashes?: undefined | undefined;
2524
+ chainId: number;
2525
+ type: "eip7702";
2526
+ gasPrice?: undefined | undefined;
2527
+ maxFeePerBlobGas?: undefined | undefined;
2528
+ maxFeePerGas: bigint;
2529
+ maxPriorityFeePerGas: bigint;
2530
+ feeCurrency: import("viem").Address | null;
2531
+ mint?: undefined;
2532
+ isSystemTx?: undefined;
2533
+ sourceHash?: undefined;
2534
+ gatewayFee?: undefined;
2535
+ gatewayFeeRecipient?: undefined;
2536
+ } | {
2537
+ blockHash: `0x${string}` | null;
2538
+ blockNumber: bigint | null;
2539
+ from: import("viem").Address;
2540
+ gas: bigint;
2541
+ hash: import("viem").Hash;
2542
+ input: import("viem").Hex;
2543
+ nonce: number;
2544
+ r: import("viem").Hex;
2545
+ s: import("viem").Hex;
2546
+ to: import("viem").Address | null;
2547
+ transactionIndex: number | null;
2548
+ typeHex: import("viem").Hex | null;
2549
+ v: bigint;
2550
+ value: bigint;
2551
+ yParity: number;
2552
+ gasPrice?: undefined | undefined;
2553
+ maxFeePerBlobGas?: undefined | undefined;
2554
+ maxFeePerGas: bigint;
2555
+ maxPriorityFeePerGas: bigint;
2556
+ accessList: import("viem").AccessList;
2557
+ chainId: number;
2558
+ feeCurrency: import("viem").Address | null;
2559
+ gatewayFee: bigint | null;
2560
+ gatewayFeeRecipient: import("viem").Address | null;
2561
+ type: "cip42";
2562
+ blobVersionedHashes?: undefined;
2563
+ authorizationList?: undefined;
2564
+ mint?: undefined;
2565
+ isSystemTx?: undefined;
2566
+ sourceHash?: undefined;
2567
+ } | {
2568
+ blockHash: `0x${string}` | null;
2569
+ blockNumber: bigint | null;
2570
+ from: import("viem").Address;
2571
+ gas: bigint;
2572
+ hash: import("viem").Hash;
2573
+ input: import("viem").Hex;
2574
+ nonce: number;
2575
+ r: import("viem").Hex;
2576
+ s: import("viem").Hex;
2577
+ to: import("viem").Address | null;
2578
+ transactionIndex: number | null;
2579
+ typeHex: import("viem").Hex | null;
2580
+ v: bigint;
2581
+ value: bigint;
2582
+ yParity: number;
2583
+ gasPrice?: undefined | undefined;
2584
+ maxFeePerBlobGas?: undefined | undefined;
2585
+ maxFeePerGas: bigint;
2586
+ maxPriorityFeePerGas: bigint;
2587
+ accessList: import("viem").AccessList;
2588
+ chainId: number;
2589
+ feeCurrency: import("viem").Address | null;
2590
+ type: "cip64";
2591
+ blobVersionedHashes?: undefined;
2592
+ authorizationList?: undefined;
2593
+ mint?: undefined;
2594
+ isSystemTx?: undefined;
2595
+ sourceHash?: undefined;
2596
+ gatewayFee?: undefined;
2597
+ gatewayFeeRecipient?: undefined;
2598
+ } | {
2599
+ blockHash: `0x${string}` | null;
2600
+ blockNumber: bigint | null;
2601
+ from: import("viem").Address;
2602
+ gas: bigint;
2603
+ hash: import("viem").Hash;
2604
+ input: import("viem").Hex;
2605
+ nonce: number;
2606
+ r: import("viem").Hex;
2607
+ s: import("viem").Hex;
2608
+ to: import("viem").Address | null;
2609
+ transactionIndex: number | null;
2610
+ typeHex: import("viem").Hex | null;
2611
+ v: bigint;
2612
+ value: bigint;
2613
+ yParity: number;
2614
+ gasPrice?: undefined | undefined;
2615
+ maxFeePerBlobGas?: undefined | undefined;
2616
+ maxFeePerGas: bigint;
2617
+ maxPriorityFeePerGas: bigint;
2618
+ isSystemTx?: boolean;
2619
+ mint?: bigint | undefined | undefined;
2620
+ sourceHash: import("viem").Hex;
2621
+ type: "deposit";
2622
+ blobVersionedHashes?: undefined;
2623
+ accessList?: undefined;
2624
+ authorizationList?: undefined;
2625
+ chainId?: undefined;
2626
+ feeCurrency?: undefined;
2627
+ gatewayFee?: undefined;
2628
+ gatewayFeeRecipient?: undefined;
2629
+ }) & {};
2630
+ type: "transaction";
2631
+ };
2632
+ readonly transactionRequest: {
2633
+ exclude: [] | undefined;
2634
+ format: (args: import("viem/chains").CeloTransactionRequest, action?: string | undefined) => ({
2635
+ data?: `0x${string}` | undefined;
2636
+ from?: `0x${string}` | undefined;
2637
+ gas?: `0x${string}` | undefined;
2638
+ nonce?: `0x${string}` | undefined;
2639
+ to?: `0x${string}` | null | undefined;
2640
+ type?: "0x0" | undefined;
2641
+ value?: `0x${string}` | undefined;
2642
+ gasPrice?: `0x${string}` | undefined;
2643
+ maxFeePerBlobGas?: undefined | undefined;
2644
+ maxFeePerGas?: undefined | undefined;
2645
+ maxPriorityFeePerGas?: undefined | undefined;
2646
+ blobs?: undefined;
2647
+ blobVersionedHashes?: undefined;
2648
+ kzg?: undefined;
2649
+ accessList?: undefined;
2650
+ sidecars?: undefined;
2651
+ authorizationList?: undefined;
2652
+ feeCurrency?: `0x${string}` | undefined;
2653
+ } | {
2654
+ data?: `0x${string}` | undefined;
2655
+ from?: `0x${string}` | undefined;
2656
+ gas?: `0x${string}` | undefined;
2657
+ nonce?: `0x${string}` | undefined;
2658
+ to?: `0x${string}` | null | undefined;
2659
+ type?: "0x1" | undefined;
2660
+ value?: `0x${string}` | undefined;
2661
+ gasPrice?: `0x${string}` | undefined;
2662
+ maxFeePerBlobGas?: undefined | undefined;
2663
+ maxFeePerGas?: undefined | undefined;
2664
+ maxPriorityFeePerGas?: undefined | undefined;
2665
+ accessList?: import("viem").AccessList | undefined;
2666
+ blobs?: undefined;
2667
+ blobVersionedHashes?: undefined;
2668
+ kzg?: undefined;
2669
+ sidecars?: undefined;
2670
+ authorizationList?: undefined;
2671
+ feeCurrency?: `0x${string}` | undefined;
2672
+ } | {
2673
+ data?: `0x${string}` | undefined;
2674
+ from?: `0x${string}` | undefined;
2675
+ gas?: `0x${string}` | undefined;
2676
+ nonce?: `0x${string}` | undefined;
2677
+ to?: `0x${string}` | null | undefined;
2678
+ type?: "0x2" | undefined;
2679
+ value?: `0x${string}` | undefined;
2680
+ gasPrice?: undefined | undefined;
2681
+ maxFeePerBlobGas?: undefined | undefined;
2682
+ maxFeePerGas?: `0x${string}` | undefined;
2683
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2684
+ accessList?: import("viem").AccessList | undefined;
2685
+ blobs?: undefined;
2686
+ blobVersionedHashes?: undefined;
2687
+ kzg?: undefined;
2688
+ sidecars?: undefined;
2689
+ authorizationList?: undefined;
2690
+ feeCurrency?: `0x${string}` | undefined;
2691
+ } | {
2692
+ type?: "0x3" | undefined;
2693
+ data?: `0x${string}` | undefined;
2694
+ from?: `0x${string}` | undefined;
2695
+ gas?: `0x${string}` | undefined;
2696
+ nonce?: `0x${string}` | undefined;
2697
+ value?: `0x${string}` | undefined;
2698
+ to: `0x${string}` | null;
2699
+ gasPrice?: undefined | undefined;
2700
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2701
+ maxFeePerGas?: `0x${string}` | undefined;
2702
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2703
+ accessList?: import("viem").AccessList | undefined;
2704
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2705
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2706
+ blobVersionedHashes: readonly import("viem").Hex[];
2707
+ kzg?: undefined;
2708
+ authorizationList?: undefined;
2709
+ feeCurrency?: `0x${string}` | undefined;
2710
+ } | {
2711
+ type?: "0x3" | undefined;
2712
+ data?: `0x${string}` | undefined;
2713
+ from?: `0x${string}` | undefined;
2714
+ gas?: `0x${string}` | undefined;
2715
+ nonce?: `0x${string}` | undefined;
2716
+ value?: `0x${string}` | undefined;
2717
+ to: `0x${string}` | null;
2718
+ gasPrice?: undefined | undefined;
2719
+ maxFeePerBlobGas?: `0x${string}` | undefined;
2720
+ maxFeePerGas?: `0x${string}` | undefined;
2721
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2722
+ accessList?: import("viem").AccessList | undefined;
2723
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2724
+ blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
2725
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2726
+ kzg?: import("viem").Kzg | undefined;
2727
+ authorizationList?: undefined;
2728
+ feeCurrency?: `0x${string}` | undefined;
2729
+ } | {
2730
+ type?: "0x4" | undefined;
2731
+ gasPrice?: undefined | undefined;
2732
+ maxFeePerBlobGas?: undefined | undefined;
2733
+ maxFeePerGas?: `0x${string}` | undefined;
2734
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2735
+ to?: `0x${string}` | null | undefined;
2736
+ data?: `0x${string}` | undefined;
2737
+ from?: `0x${string}` | undefined;
2738
+ gas?: `0x${string}` | undefined;
2739
+ nonce?: `0x${string}` | undefined;
2740
+ value?: `0x${string}` | undefined;
2741
+ accessList?: import("viem").AccessList | undefined;
2742
+ authorizationList?: import("viem").RpcAuthorizationList | undefined;
2743
+ blobs?: undefined;
2744
+ blobVersionedHashes?: undefined;
2745
+ kzg?: undefined;
2746
+ sidecars?: undefined;
2747
+ feeCurrency?: `0x${string}` | undefined;
2748
+ } | {
2749
+ data?: `0x${string}` | undefined;
2750
+ from?: `0x${string}` | undefined;
2751
+ gas?: `0x${string}` | undefined;
2752
+ nonce?: `0x${string}` | undefined;
2753
+ to?: `0x${string}` | null | undefined;
2754
+ type?: "0x7b" | undefined;
2755
+ value?: `0x${string}` | undefined;
2756
+ accessList?: import("viem").AccessList | undefined;
2757
+ feeCurrency?: `0x${string}` | undefined;
2758
+ gasPrice?: undefined | undefined;
2759
+ maxFeePerBlobGas?: undefined | undefined;
2760
+ maxFeePerGas?: `0x${string}` | undefined;
2761
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
2762
+ blobs?: undefined;
2763
+ blobVersionedHashes?: undefined;
2764
+ kzg?: undefined;
2765
+ sidecars?: undefined;
2766
+ authorizationList?: undefined;
2767
+ }) & {};
2768
+ type: "transactionRequest";
2769
+ };
2770
+ };
2771
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2772
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2773
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
2774
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
2775
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
2776
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
2777
+ }] | undefined;
2778
+ serializers: {
2779
+ readonly transaction: typeof import("viem/chains").serializeTransactionCelo;
2780
+ };
2781
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
2782
+ }] | [{
2783
+ blockExplorers: {
2784
+ readonly default: {
2785
+ readonly name: "Celo Explorer";
2786
+ readonly url: "https://celoscan.io";
2787
+ readonly apiUrl: "https://api.celoscan.io/api";
2788
+ };
2789
+ };
2790
+ blockTime: 1000;
2791
+ contracts: {
2792
+ readonly multicall3: {
2793
+ readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
2794
+ readonly blockCreated: 13112599;
2795
+ };
2796
+ };
2797
+ ensTlds?: readonly string[] | undefined;
2798
+ id: 42220;
2799
+ name: "Celo";
2800
+ nativeCurrency: {
2801
+ readonly decimals: 18;
2802
+ readonly name: "CELO";
2803
+ readonly symbol: "CELO";
2804
+ };
2805
+ experimental_preconfirmationTime?: number | undefined | undefined;
2806
+ rpcUrls: {
2807
+ readonly default: {
2808
+ readonly http: readonly ["https://forno.celo.org"];
2809
+ };
2810
+ };
2811
+ sourceId?: number | undefined | undefined;
2812
+ testnet: false;
2813
+ custom?: Record<string, unknown> | undefined;
2814
+ extendSchema?: Record<string, unknown> | undefined;
2815
+ fees: import("viem").ChainFees<{
2816
+ readonly block: {
2817
+ exclude: [] | undefined;
2818
+ format: (args: import("viem/chains").CeloRpcBlock, action?: string | undefined) => {
2819
+ baseFeePerGas: bigint | null;
2820
+ blobGasUsed: bigint;
2821
+ difficulty: bigint;
2822
+ excessBlobGas: bigint;
2823
+ extraData: import("viem").Hex;
2824
+ gasLimit: bigint;
2825
+ gasUsed: bigint;
2826
+ hash: `0x${string}` | null;
2827
+ logsBloom: `0x${string}` | null;
2828
+ miner: import("viem").Address;
2829
+ mixHash: import("viem").Hash;
2830
+ nonce: `0x${string}` | null;
2831
+ number: bigint | null;
2832
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
2833
+ parentHash: import("viem").Hash;
2834
+ receiptsRoot: import("viem").Hex;
2835
+ sealFields: import("viem").Hex[];
2836
+ sha3Uncles: import("viem").Hash;
2837
+ size: bigint;
2838
+ stateRoot: import("viem").Hash;
2839
+ timestamp: bigint;
2840
+ totalDifficulty: bigint | null;
2841
+ transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
2842
+ transactionsRoot: import("viem").Hash;
2843
+ uncles: import("viem").Hash[];
2844
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
2845
+ withdrawalsRoot?: `0x${string}` | undefined;
2846
+ } & {};
2847
+ type: "block";
2848
+ };
2849
+ readonly transaction: {
2850
+ exclude: [] | undefined;
2851
+ format: (args: import("viem/chains").CeloRpcTransaction, action?: string | undefined) => ({
2852
+ r: import("viem").Hex;
2853
+ s: import("viem").Hex;
2854
+ v: bigint;
2855
+ to: import("viem").Address | null;
2856
+ from: import("viem").Address;
2857
+ gas: bigint;
2858
+ nonce: number;
2859
+ value: bigint;
2860
+ blockHash: `0x${string}` | null;
2861
+ blockNumber: bigint | null;
2862
+ hash: import("viem").Hash;
2863
+ input: import("viem").Hex;
2864
+ transactionIndex: number | null;
2865
+ typeHex: import("viem").Hex | null;
2866
+ accessList?: undefined | undefined;
2867
+ authorizationList?: undefined | undefined;
2868
+ blobVersionedHashes?: undefined | undefined;
2869
+ chainId?: number | undefined;
2870
+ yParity?: undefined | undefined;
2871
+ type: "legacy";
2872
+ gasPrice: bigint;
2873
+ maxFeePerBlobGas?: undefined | undefined;
2874
+ maxFeePerGas?: undefined | undefined;
2875
+ maxPriorityFeePerGas?: undefined | undefined;
2876
+ feeCurrency: import("viem").Address | null;
2877
+ mint?: undefined;
2878
+ isSystemTx?: undefined;
2879
+ sourceHash?: undefined;
2880
+ gatewayFee?: undefined;
2881
+ gatewayFeeRecipient?: undefined;
2882
+ } | {
2883
+ blockHash: `0x${string}` | null;
2884
+ blockNumber: bigint | null;
2885
+ from: import("viem").Address;
2886
+ gas: bigint;
2887
+ hash: import("viem").Hash;
2888
+ input: import("viem").Hex;
2889
+ nonce: number;
2890
+ r: import("viem").Hex;
2891
+ s: import("viem").Hex;
2892
+ to: import("viem").Address | null;
2893
+ transactionIndex: number | null;
2894
+ typeHex: import("viem").Hex | null;
2895
+ v: bigint;
2896
+ value: bigint;
2897
+ yParity: number;
2898
+ accessList: import("viem").AccessList;
2899
+ authorizationList?: undefined | undefined;
2900
+ blobVersionedHashes?: undefined | undefined;
2901
+ chainId: number;
2902
+ type: "eip2930";
2903
+ gasPrice: bigint;
2904
+ maxFeePerBlobGas?: undefined | undefined;
2905
+ maxFeePerGas?: undefined | undefined;
2906
+ maxPriorityFeePerGas?: undefined | undefined;
2907
+ feeCurrency: import("viem").Address | null;
2908
+ mint?: undefined;
2909
+ isSystemTx?: undefined;
2910
+ sourceHash?: undefined;
2911
+ gatewayFee?: undefined;
2912
+ gatewayFeeRecipient?: undefined;
2913
+ } | {
2914
+ blockHash: `0x${string}` | null;
2915
+ blockNumber: bigint | null;
2916
+ from: import("viem").Address;
2917
+ gas: bigint;
2918
+ hash: import("viem").Hash;
2919
+ input: import("viem").Hex;
2920
+ nonce: number;
2921
+ r: import("viem").Hex;
2922
+ s: import("viem").Hex;
2923
+ to: import("viem").Address | null;
2924
+ transactionIndex: number | null;
2925
+ typeHex: import("viem").Hex | null;
2926
+ v: bigint;
2927
+ value: bigint;
2928
+ yParity: number;
2929
+ accessList: import("viem").AccessList;
2930
+ authorizationList?: undefined | undefined;
2931
+ blobVersionedHashes?: undefined | undefined;
2932
+ chainId: number;
2933
+ type: "eip1559";
2934
+ gasPrice?: undefined | undefined;
2935
+ maxFeePerBlobGas?: undefined | undefined;
2936
+ maxFeePerGas: bigint;
2937
+ maxPriorityFeePerGas: bigint;
2938
+ feeCurrency: import("viem").Address | null;
2939
+ mint?: undefined;
2940
+ isSystemTx?: undefined;
2941
+ sourceHash?: undefined;
2942
+ gatewayFee?: undefined;
2943
+ gatewayFeeRecipient?: undefined;
2944
+ } | {
2945
+ blockHash: `0x${string}` | null;
2946
+ blockNumber: bigint | null;
2947
+ from: import("viem").Address;
2948
+ gas: bigint;
2949
+ hash: import("viem").Hash;
2950
+ input: import("viem").Hex;
2951
+ nonce: number;
2952
+ r: import("viem").Hex;
2953
+ s: import("viem").Hex;
2954
+ to: import("viem").Address | null;
2955
+ transactionIndex: number | null;
2956
+ typeHex: import("viem").Hex | null;
2957
+ v: bigint;
2958
+ value: bigint;
2959
+ yParity: number;
2960
+ accessList: import("viem").AccessList;
2961
+ authorizationList?: undefined | undefined;
2962
+ blobVersionedHashes: readonly import("viem").Hex[];
2963
+ chainId: number;
2964
+ type: "eip4844";
2965
+ gasPrice?: undefined | undefined;
2966
+ maxFeePerBlobGas: bigint;
2967
+ maxFeePerGas: bigint;
2968
+ maxPriorityFeePerGas: bigint;
2969
+ feeCurrency: import("viem").Address | null;
2970
+ mint?: undefined;
2971
+ isSystemTx?: undefined;
2972
+ sourceHash?: undefined;
2973
+ gatewayFee?: undefined;
2974
+ gatewayFeeRecipient?: undefined;
2975
+ } | {
2976
+ blockHash: `0x${string}` | null;
2977
+ blockNumber: bigint | null;
2978
+ from: import("viem").Address;
2979
+ gas: bigint;
2980
+ hash: import("viem").Hash;
2981
+ input: import("viem").Hex;
2982
+ nonce: number;
2983
+ r: import("viem").Hex;
2984
+ s: import("viem").Hex;
2985
+ to: import("viem").Address | null;
2986
+ transactionIndex: number | null;
2987
+ typeHex: import("viem").Hex | null;
2988
+ v: bigint;
2989
+ value: bigint;
2990
+ yParity: number;
2991
+ accessList: import("viem").AccessList;
2992
+ authorizationList: import("viem").SignedAuthorizationList;
2993
+ blobVersionedHashes?: undefined | undefined;
2994
+ chainId: number;
2995
+ type: "eip7702";
2996
+ gasPrice?: undefined | undefined;
2997
+ maxFeePerBlobGas?: undefined | undefined;
2998
+ maxFeePerGas: bigint;
2999
+ maxPriorityFeePerGas: bigint;
3000
+ feeCurrency: import("viem").Address | null;
3001
+ mint?: undefined;
3002
+ isSystemTx?: undefined;
3003
+ sourceHash?: undefined;
3004
+ gatewayFee?: undefined;
3005
+ gatewayFeeRecipient?: undefined;
3006
+ } | {
3007
+ blockHash: `0x${string}` | null;
3008
+ blockNumber: bigint | null;
3009
+ from: import("viem").Address;
3010
+ gas: bigint;
3011
+ hash: import("viem").Hash;
3012
+ input: import("viem").Hex;
3013
+ nonce: number;
3014
+ r: import("viem").Hex;
3015
+ s: import("viem").Hex;
3016
+ to: import("viem").Address | null;
3017
+ transactionIndex: number | null;
3018
+ typeHex: import("viem").Hex | null;
3019
+ v: bigint;
3020
+ value: bigint;
3021
+ yParity: number;
3022
+ gasPrice?: undefined | undefined;
3023
+ maxFeePerBlobGas?: undefined | undefined;
3024
+ maxFeePerGas: bigint;
3025
+ maxPriorityFeePerGas: bigint;
3026
+ accessList: import("viem").AccessList;
3027
+ chainId: number;
3028
+ feeCurrency: import("viem").Address | null;
3029
+ gatewayFee: bigint | null;
3030
+ gatewayFeeRecipient: import("viem").Address | null;
3031
+ type: "cip42";
3032
+ blobVersionedHashes?: undefined;
3033
+ authorizationList?: undefined;
3034
+ mint?: undefined;
3035
+ isSystemTx?: undefined;
3036
+ sourceHash?: undefined;
3037
+ } | {
3038
+ blockHash: `0x${string}` | null;
3039
+ blockNumber: bigint | null;
3040
+ from: import("viem").Address;
3041
+ gas: bigint;
3042
+ hash: import("viem").Hash;
3043
+ input: import("viem").Hex;
3044
+ nonce: number;
3045
+ r: import("viem").Hex;
3046
+ s: import("viem").Hex;
3047
+ to: import("viem").Address | null;
3048
+ transactionIndex: number | null;
3049
+ typeHex: import("viem").Hex | null;
3050
+ v: bigint;
3051
+ value: bigint;
3052
+ yParity: number;
3053
+ gasPrice?: undefined | undefined;
3054
+ maxFeePerBlobGas?: undefined | undefined;
3055
+ maxFeePerGas: bigint;
3056
+ maxPriorityFeePerGas: bigint;
3057
+ accessList: import("viem").AccessList;
3058
+ chainId: number;
3059
+ feeCurrency: import("viem").Address | null;
3060
+ type: "cip64";
3061
+ blobVersionedHashes?: undefined;
3062
+ authorizationList?: undefined;
3063
+ mint?: undefined;
3064
+ isSystemTx?: undefined;
3065
+ sourceHash?: undefined;
3066
+ gatewayFee?: undefined;
3067
+ gatewayFeeRecipient?: undefined;
3068
+ } | {
3069
+ blockHash: `0x${string}` | null;
3070
+ blockNumber: bigint | null;
3071
+ from: import("viem").Address;
3072
+ gas: bigint;
3073
+ hash: import("viem").Hash;
3074
+ input: import("viem").Hex;
3075
+ nonce: number;
3076
+ r: import("viem").Hex;
3077
+ s: import("viem").Hex;
3078
+ to: import("viem").Address | null;
3079
+ transactionIndex: number | null;
3080
+ typeHex: import("viem").Hex | null;
3081
+ v: bigint;
3082
+ value: bigint;
3083
+ yParity: number;
3084
+ gasPrice?: undefined | undefined;
3085
+ maxFeePerBlobGas?: undefined | undefined;
3086
+ maxFeePerGas: bigint;
3087
+ maxPriorityFeePerGas: bigint;
3088
+ isSystemTx?: boolean;
3089
+ mint?: bigint | undefined | undefined;
3090
+ sourceHash: import("viem").Hex;
3091
+ type: "deposit";
3092
+ blobVersionedHashes?: undefined;
3093
+ accessList?: undefined;
3094
+ authorizationList?: undefined;
3095
+ chainId?: undefined;
3096
+ feeCurrency?: undefined;
3097
+ gatewayFee?: undefined;
3098
+ gatewayFeeRecipient?: undefined;
3099
+ }) & {};
3100
+ type: "transaction";
3101
+ };
3102
+ readonly transactionRequest: {
3103
+ exclude: [] | undefined;
3104
+ format: (args: import("viem/chains").CeloTransactionRequest, action?: string | undefined) => ({
3105
+ data?: `0x${string}` | undefined;
3106
+ from?: `0x${string}` | undefined;
3107
+ gas?: `0x${string}` | undefined;
3108
+ nonce?: `0x${string}` | undefined;
3109
+ to?: `0x${string}` | null | undefined;
3110
+ type?: "0x0" | undefined;
3111
+ value?: `0x${string}` | undefined;
3112
+ gasPrice?: `0x${string}` | undefined;
3113
+ maxFeePerBlobGas?: undefined | undefined;
3114
+ maxFeePerGas?: undefined | undefined;
3115
+ maxPriorityFeePerGas?: undefined | undefined;
3116
+ blobs?: undefined;
3117
+ blobVersionedHashes?: undefined;
3118
+ kzg?: undefined;
3119
+ accessList?: undefined;
3120
+ sidecars?: undefined;
3121
+ authorizationList?: undefined;
3122
+ feeCurrency?: `0x${string}` | undefined;
3123
+ } | {
3124
+ data?: `0x${string}` | undefined;
3125
+ from?: `0x${string}` | undefined;
3126
+ gas?: `0x${string}` | undefined;
3127
+ nonce?: `0x${string}` | undefined;
3128
+ to?: `0x${string}` | null | undefined;
3129
+ type?: "0x1" | undefined;
3130
+ value?: `0x${string}` | undefined;
3131
+ gasPrice?: `0x${string}` | undefined;
3132
+ maxFeePerBlobGas?: undefined | undefined;
3133
+ maxFeePerGas?: undefined | undefined;
3134
+ maxPriorityFeePerGas?: undefined | undefined;
3135
+ accessList?: import("viem").AccessList | undefined;
3136
+ blobs?: undefined;
3137
+ blobVersionedHashes?: undefined;
3138
+ kzg?: undefined;
3139
+ sidecars?: undefined;
3140
+ authorizationList?: undefined;
3141
+ feeCurrency?: `0x${string}` | undefined;
3142
+ } | {
3143
+ data?: `0x${string}` | undefined;
3144
+ from?: `0x${string}` | undefined;
3145
+ gas?: `0x${string}` | undefined;
3146
+ nonce?: `0x${string}` | undefined;
3147
+ to?: `0x${string}` | null | undefined;
3148
+ type?: "0x2" | undefined;
3149
+ value?: `0x${string}` | undefined;
3150
+ gasPrice?: undefined | undefined;
3151
+ maxFeePerBlobGas?: undefined | undefined;
3152
+ maxFeePerGas?: `0x${string}` | undefined;
3153
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3154
+ accessList?: import("viem").AccessList | undefined;
3155
+ blobs?: undefined;
3156
+ blobVersionedHashes?: undefined;
3157
+ kzg?: undefined;
3158
+ sidecars?: undefined;
3159
+ authorizationList?: undefined;
3160
+ feeCurrency?: `0x${string}` | undefined;
3161
+ } | {
3162
+ type?: "0x3" | undefined;
3163
+ data?: `0x${string}` | undefined;
3164
+ from?: `0x${string}` | undefined;
3165
+ gas?: `0x${string}` | undefined;
3166
+ nonce?: `0x${string}` | undefined;
3167
+ value?: `0x${string}` | undefined;
3168
+ to: `0x${string}` | null;
3169
+ gasPrice?: undefined | undefined;
3170
+ maxFeePerBlobGas?: `0x${string}` | undefined;
3171
+ maxFeePerGas?: `0x${string}` | undefined;
3172
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3173
+ accessList?: import("viem").AccessList | undefined;
3174
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3175
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3176
+ blobVersionedHashes: readonly import("viem").Hex[];
3177
+ kzg?: undefined;
3178
+ authorizationList?: undefined;
3179
+ feeCurrency?: `0x${string}` | undefined;
3180
+ } | {
3181
+ type?: "0x3" | undefined;
3182
+ data?: `0x${string}` | undefined;
3183
+ from?: `0x${string}` | undefined;
3184
+ gas?: `0x${string}` | undefined;
3185
+ nonce?: `0x${string}` | undefined;
3186
+ value?: `0x${string}` | undefined;
3187
+ to: `0x${string}` | null;
3188
+ gasPrice?: undefined | undefined;
3189
+ maxFeePerBlobGas?: `0x${string}` | undefined;
3190
+ maxFeePerGas?: `0x${string}` | undefined;
3191
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3192
+ accessList?: import("viem").AccessList | undefined;
3193
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3194
+ blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
3195
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3196
+ kzg?: import("viem").Kzg | undefined;
3197
+ authorizationList?: undefined;
3198
+ feeCurrency?: `0x${string}` | undefined;
3199
+ } | {
3200
+ type?: "0x4" | undefined;
3201
+ gasPrice?: undefined | undefined;
3202
+ maxFeePerBlobGas?: undefined | undefined;
3203
+ maxFeePerGas?: `0x${string}` | undefined;
3204
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3205
+ to?: `0x${string}` | null | undefined;
3206
+ data?: `0x${string}` | undefined;
3207
+ from?: `0x${string}` | undefined;
3208
+ gas?: `0x${string}` | undefined;
3209
+ nonce?: `0x${string}` | undefined;
3210
+ value?: `0x${string}` | undefined;
3211
+ accessList?: import("viem").AccessList | undefined;
3212
+ authorizationList?: import("viem").RpcAuthorizationList | undefined;
3213
+ blobs?: undefined;
3214
+ blobVersionedHashes?: undefined;
3215
+ kzg?: undefined;
3216
+ sidecars?: undefined;
3217
+ feeCurrency?: `0x${string}` | undefined;
3218
+ } | {
3219
+ data?: `0x${string}` | undefined;
3220
+ from?: `0x${string}` | undefined;
3221
+ gas?: `0x${string}` | undefined;
3222
+ nonce?: `0x${string}` | undefined;
3223
+ to?: `0x${string}` | null | undefined;
3224
+ type?: "0x7b" | undefined;
3225
+ value?: `0x${string}` | undefined;
3226
+ accessList?: import("viem").AccessList | undefined;
3227
+ feeCurrency?: `0x${string}` | undefined;
3228
+ gasPrice?: undefined | undefined;
3229
+ maxFeePerBlobGas?: undefined | undefined;
3230
+ maxFeePerGas?: `0x${string}` | undefined;
3231
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3232
+ blobs?: undefined;
3233
+ blobVersionedHashes?: undefined;
3234
+ kzg?: undefined;
3235
+ sidecars?: undefined;
3236
+ authorizationList?: undefined;
3237
+ }) & {};
3238
+ type: "transactionRequest";
3239
+ };
3240
+ }>;
3241
+ formatters: {
3242
+ readonly block: {
3243
+ exclude: [] | undefined;
3244
+ format: (args: import("viem/chains").CeloRpcBlock, action?: string | undefined) => {
3245
+ baseFeePerGas: bigint | null;
3246
+ blobGasUsed: bigint;
3247
+ difficulty: bigint;
3248
+ excessBlobGas: bigint;
3249
+ extraData: import("viem").Hex;
3250
+ gasLimit: bigint;
3251
+ gasUsed: bigint;
3252
+ hash: `0x${string}` | null;
3253
+ logsBloom: `0x${string}` | null;
3254
+ miner: import("viem").Address;
3255
+ mixHash: import("viem").Hash;
3256
+ nonce: `0x${string}` | null;
3257
+ number: bigint | null;
3258
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
3259
+ parentHash: import("viem").Hash;
3260
+ receiptsRoot: import("viem").Hex;
3261
+ sealFields: import("viem").Hex[];
3262
+ sha3Uncles: import("viem").Hash;
3263
+ size: bigint;
3264
+ stateRoot: import("viem").Hash;
3265
+ timestamp: bigint;
3266
+ totalDifficulty: bigint | null;
3267
+ transactions: `0x${string}`[] | import("viem/chains").CeloTransaction<boolean>[];
3268
+ transactionsRoot: import("viem").Hash;
3269
+ uncles: import("viem").Hash[];
3270
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
3271
+ withdrawalsRoot?: `0x${string}` | undefined;
3272
+ } & {};
3273
+ type: "block";
3274
+ };
3275
+ readonly transaction: {
3276
+ exclude: [] | undefined;
3277
+ format: (args: import("viem/chains").CeloRpcTransaction, action?: string | undefined) => ({
3278
+ r: import("viem").Hex;
3279
+ s: import("viem").Hex;
3280
+ v: bigint;
3281
+ to: import("viem").Address | null;
3282
+ from: import("viem").Address;
3283
+ gas: bigint;
3284
+ nonce: number;
3285
+ value: bigint;
3286
+ blockHash: `0x${string}` | null;
3287
+ blockNumber: bigint | null;
3288
+ hash: import("viem").Hash;
3289
+ input: import("viem").Hex;
3290
+ transactionIndex: number | null;
3291
+ typeHex: import("viem").Hex | null;
3292
+ accessList?: undefined | undefined;
3293
+ authorizationList?: undefined | undefined;
3294
+ blobVersionedHashes?: undefined | undefined;
3295
+ chainId?: number | undefined;
3296
+ yParity?: undefined | undefined;
3297
+ type: "legacy";
3298
+ gasPrice: bigint;
3299
+ maxFeePerBlobGas?: undefined | undefined;
3300
+ maxFeePerGas?: undefined | undefined;
3301
+ maxPriorityFeePerGas?: undefined | undefined;
3302
+ feeCurrency: import("viem").Address | null;
3303
+ mint?: undefined;
3304
+ isSystemTx?: undefined;
3305
+ sourceHash?: undefined;
3306
+ gatewayFee?: undefined;
3307
+ gatewayFeeRecipient?: undefined;
3308
+ } | {
3309
+ blockHash: `0x${string}` | null;
3310
+ blockNumber: bigint | null;
3311
+ from: import("viem").Address;
3312
+ gas: bigint;
3313
+ hash: import("viem").Hash;
3314
+ input: import("viem").Hex;
3315
+ nonce: number;
3316
+ r: import("viem").Hex;
3317
+ s: import("viem").Hex;
3318
+ to: import("viem").Address | null;
3319
+ transactionIndex: number | null;
3320
+ typeHex: import("viem").Hex | null;
3321
+ v: bigint;
3322
+ value: bigint;
3323
+ yParity: number;
3324
+ accessList: import("viem").AccessList;
3325
+ authorizationList?: undefined | undefined;
3326
+ blobVersionedHashes?: undefined | undefined;
3327
+ chainId: number;
3328
+ type: "eip2930";
3329
+ gasPrice: bigint;
3330
+ maxFeePerBlobGas?: undefined | undefined;
3331
+ maxFeePerGas?: undefined | undefined;
3332
+ maxPriorityFeePerGas?: undefined | undefined;
3333
+ feeCurrency: import("viem").Address | null;
3334
+ mint?: undefined;
3335
+ isSystemTx?: undefined;
3336
+ sourceHash?: undefined;
3337
+ gatewayFee?: undefined;
3338
+ gatewayFeeRecipient?: undefined;
3339
+ } | {
3340
+ blockHash: `0x${string}` | null;
3341
+ blockNumber: bigint | null;
3342
+ from: import("viem").Address;
3343
+ gas: bigint;
3344
+ hash: import("viem").Hash;
3345
+ input: import("viem").Hex;
3346
+ nonce: number;
3347
+ r: import("viem").Hex;
3348
+ s: import("viem").Hex;
3349
+ to: import("viem").Address | null;
3350
+ transactionIndex: number | null;
3351
+ typeHex: import("viem").Hex | null;
3352
+ v: bigint;
3353
+ value: bigint;
3354
+ yParity: number;
3355
+ accessList: import("viem").AccessList;
3356
+ authorizationList?: undefined | undefined;
3357
+ blobVersionedHashes?: undefined | undefined;
3358
+ chainId: number;
3359
+ type: "eip1559";
3360
+ gasPrice?: undefined | undefined;
3361
+ maxFeePerBlobGas?: undefined | undefined;
3362
+ maxFeePerGas: bigint;
3363
+ maxPriorityFeePerGas: bigint;
3364
+ feeCurrency: import("viem").Address | null;
3365
+ mint?: undefined;
3366
+ isSystemTx?: undefined;
3367
+ sourceHash?: undefined;
3368
+ gatewayFee?: undefined;
3369
+ gatewayFeeRecipient?: undefined;
3370
+ } | {
3371
+ blockHash: `0x${string}` | null;
3372
+ blockNumber: bigint | null;
3373
+ from: import("viem").Address;
3374
+ gas: bigint;
3375
+ hash: import("viem").Hash;
3376
+ input: import("viem").Hex;
3377
+ nonce: number;
3378
+ r: import("viem").Hex;
3379
+ s: import("viem").Hex;
3380
+ to: import("viem").Address | null;
3381
+ transactionIndex: number | null;
3382
+ typeHex: import("viem").Hex | null;
3383
+ v: bigint;
3384
+ value: bigint;
3385
+ yParity: number;
3386
+ accessList: import("viem").AccessList;
3387
+ authorizationList?: undefined | undefined;
3388
+ blobVersionedHashes: readonly import("viem").Hex[];
3389
+ chainId: number;
3390
+ type: "eip4844";
3391
+ gasPrice?: undefined | undefined;
3392
+ maxFeePerBlobGas: bigint;
3393
+ maxFeePerGas: bigint;
3394
+ maxPriorityFeePerGas: bigint;
3395
+ feeCurrency: import("viem").Address | null;
3396
+ mint?: undefined;
3397
+ isSystemTx?: undefined;
3398
+ sourceHash?: undefined;
3399
+ gatewayFee?: undefined;
3400
+ gatewayFeeRecipient?: undefined;
3401
+ } | {
3402
+ blockHash: `0x${string}` | null;
3403
+ blockNumber: bigint | null;
3404
+ from: import("viem").Address;
3405
+ gas: bigint;
3406
+ hash: import("viem").Hash;
3407
+ input: import("viem").Hex;
3408
+ nonce: number;
3409
+ r: import("viem").Hex;
3410
+ s: import("viem").Hex;
3411
+ to: import("viem").Address | null;
3412
+ transactionIndex: number | null;
3413
+ typeHex: import("viem").Hex | null;
3414
+ v: bigint;
3415
+ value: bigint;
3416
+ yParity: number;
3417
+ accessList: import("viem").AccessList;
3418
+ authorizationList: import("viem").SignedAuthorizationList;
3419
+ blobVersionedHashes?: undefined | undefined;
3420
+ chainId: number;
3421
+ type: "eip7702";
3422
+ gasPrice?: undefined | undefined;
3423
+ maxFeePerBlobGas?: undefined | undefined;
3424
+ maxFeePerGas: bigint;
3425
+ maxPriorityFeePerGas: bigint;
3426
+ feeCurrency: import("viem").Address | null;
3427
+ mint?: undefined;
3428
+ isSystemTx?: undefined;
3429
+ sourceHash?: undefined;
3430
+ gatewayFee?: undefined;
3431
+ gatewayFeeRecipient?: undefined;
3432
+ } | {
3433
+ blockHash: `0x${string}` | null;
3434
+ blockNumber: bigint | null;
3435
+ from: import("viem").Address;
3436
+ gas: bigint;
3437
+ hash: import("viem").Hash;
3438
+ input: import("viem").Hex;
3439
+ nonce: number;
3440
+ r: import("viem").Hex;
3441
+ s: import("viem").Hex;
3442
+ to: import("viem").Address | null;
3443
+ transactionIndex: number | null;
3444
+ typeHex: import("viem").Hex | null;
3445
+ v: bigint;
3446
+ value: bigint;
3447
+ yParity: number;
3448
+ gasPrice?: undefined | undefined;
3449
+ maxFeePerBlobGas?: undefined | undefined;
3450
+ maxFeePerGas: bigint;
3451
+ maxPriorityFeePerGas: bigint;
3452
+ accessList: import("viem").AccessList;
3453
+ chainId: number;
3454
+ feeCurrency: import("viem").Address | null;
3455
+ gatewayFee: bigint | null;
3456
+ gatewayFeeRecipient: import("viem").Address | null;
3457
+ type: "cip42";
3458
+ blobVersionedHashes?: undefined;
3459
+ authorizationList?: undefined;
3460
+ mint?: undefined;
3461
+ isSystemTx?: undefined;
3462
+ sourceHash?: undefined;
3463
+ } | {
3464
+ blockHash: `0x${string}` | null;
3465
+ blockNumber: bigint | null;
3466
+ from: import("viem").Address;
3467
+ gas: bigint;
3468
+ hash: import("viem").Hash;
3469
+ input: import("viem").Hex;
3470
+ nonce: number;
3471
+ r: import("viem").Hex;
3472
+ s: import("viem").Hex;
3473
+ to: import("viem").Address | null;
3474
+ transactionIndex: number | null;
3475
+ typeHex: import("viem").Hex | null;
3476
+ v: bigint;
3477
+ value: bigint;
3478
+ yParity: number;
3479
+ gasPrice?: undefined | undefined;
3480
+ maxFeePerBlobGas?: undefined | undefined;
3481
+ maxFeePerGas: bigint;
3482
+ maxPriorityFeePerGas: bigint;
3483
+ accessList: import("viem").AccessList;
3484
+ chainId: number;
3485
+ feeCurrency: import("viem").Address | null;
3486
+ type: "cip64";
3487
+ blobVersionedHashes?: undefined;
3488
+ authorizationList?: undefined;
3489
+ mint?: undefined;
3490
+ isSystemTx?: undefined;
3491
+ sourceHash?: undefined;
3492
+ gatewayFee?: undefined;
3493
+ gatewayFeeRecipient?: undefined;
3494
+ } | {
3495
+ blockHash: `0x${string}` | null;
3496
+ blockNumber: bigint | null;
3497
+ from: import("viem").Address;
3498
+ gas: bigint;
3499
+ hash: import("viem").Hash;
3500
+ input: import("viem").Hex;
3501
+ nonce: number;
3502
+ r: import("viem").Hex;
3503
+ s: import("viem").Hex;
3504
+ to: import("viem").Address | null;
3505
+ transactionIndex: number | null;
3506
+ typeHex: import("viem").Hex | null;
3507
+ v: bigint;
3508
+ value: bigint;
3509
+ yParity: number;
3510
+ gasPrice?: undefined | undefined;
3511
+ maxFeePerBlobGas?: undefined | undefined;
3512
+ maxFeePerGas: bigint;
3513
+ maxPriorityFeePerGas: bigint;
3514
+ isSystemTx?: boolean;
3515
+ mint?: bigint | undefined | undefined;
3516
+ sourceHash: import("viem").Hex;
3517
+ type: "deposit";
3518
+ blobVersionedHashes?: undefined;
3519
+ accessList?: undefined;
3520
+ authorizationList?: undefined;
3521
+ chainId?: undefined;
3522
+ feeCurrency?: undefined;
3523
+ gatewayFee?: undefined;
3524
+ gatewayFeeRecipient?: undefined;
3525
+ }) & {};
3526
+ type: "transaction";
3527
+ };
3528
+ readonly transactionRequest: {
3529
+ exclude: [] | undefined;
3530
+ format: (args: import("viem/chains").CeloTransactionRequest, action?: string | undefined) => ({
3531
+ data?: `0x${string}` | undefined;
3532
+ from?: `0x${string}` | undefined;
3533
+ gas?: `0x${string}` | undefined;
3534
+ nonce?: `0x${string}` | undefined;
3535
+ to?: `0x${string}` | null | undefined;
3536
+ type?: "0x0" | undefined;
3537
+ value?: `0x${string}` | undefined;
3538
+ gasPrice?: `0x${string}` | undefined;
3539
+ maxFeePerBlobGas?: undefined | undefined;
3540
+ maxFeePerGas?: undefined | undefined;
3541
+ maxPriorityFeePerGas?: undefined | undefined;
3542
+ blobs?: undefined;
3543
+ blobVersionedHashes?: undefined;
3544
+ kzg?: undefined;
3545
+ accessList?: undefined;
3546
+ sidecars?: undefined;
3547
+ authorizationList?: undefined;
3548
+ feeCurrency?: `0x${string}` | undefined;
3549
+ } | {
3550
+ data?: `0x${string}` | undefined;
3551
+ from?: `0x${string}` | undefined;
3552
+ gas?: `0x${string}` | undefined;
3553
+ nonce?: `0x${string}` | undefined;
3554
+ to?: `0x${string}` | null | undefined;
3555
+ type?: "0x1" | undefined;
3556
+ value?: `0x${string}` | undefined;
3557
+ gasPrice?: `0x${string}` | undefined;
3558
+ maxFeePerBlobGas?: undefined | undefined;
3559
+ maxFeePerGas?: undefined | undefined;
3560
+ maxPriorityFeePerGas?: undefined | undefined;
3561
+ accessList?: import("viem").AccessList | undefined;
3562
+ blobs?: undefined;
3563
+ blobVersionedHashes?: undefined;
3564
+ kzg?: undefined;
3565
+ sidecars?: undefined;
3566
+ authorizationList?: undefined;
3567
+ feeCurrency?: `0x${string}` | undefined;
3568
+ } | {
3569
+ data?: `0x${string}` | undefined;
3570
+ from?: `0x${string}` | undefined;
3571
+ gas?: `0x${string}` | undefined;
3572
+ nonce?: `0x${string}` | undefined;
3573
+ to?: `0x${string}` | null | undefined;
3574
+ type?: "0x2" | undefined;
3575
+ value?: `0x${string}` | undefined;
3576
+ gasPrice?: undefined | undefined;
3577
+ maxFeePerBlobGas?: undefined | undefined;
3578
+ maxFeePerGas?: `0x${string}` | undefined;
3579
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3580
+ accessList?: import("viem").AccessList | undefined;
3581
+ blobs?: undefined;
3582
+ blobVersionedHashes?: undefined;
3583
+ kzg?: undefined;
3584
+ sidecars?: undefined;
3585
+ authorizationList?: undefined;
3586
+ feeCurrency?: `0x${string}` | undefined;
3587
+ } | {
3588
+ type?: "0x3" | undefined;
3589
+ data?: `0x${string}` | undefined;
3590
+ from?: `0x${string}` | undefined;
3591
+ gas?: `0x${string}` | undefined;
3592
+ nonce?: `0x${string}` | undefined;
3593
+ value?: `0x${string}` | undefined;
3594
+ to: `0x${string}` | null;
3595
+ gasPrice?: undefined | undefined;
3596
+ maxFeePerBlobGas?: `0x${string}` | undefined;
3597
+ maxFeePerGas?: `0x${string}` | undefined;
3598
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3599
+ accessList?: import("viem").AccessList | undefined;
3600
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3601
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3602
+ blobVersionedHashes: readonly import("viem").Hex[];
3603
+ kzg?: undefined;
3604
+ authorizationList?: undefined;
3605
+ feeCurrency?: `0x${string}` | undefined;
3606
+ } | {
3607
+ type?: "0x3" | undefined;
3608
+ data?: `0x${string}` | undefined;
3609
+ from?: `0x${string}` | undefined;
3610
+ gas?: `0x${string}` | undefined;
3611
+ nonce?: `0x${string}` | undefined;
3612
+ value?: `0x${string}` | undefined;
3613
+ to: `0x${string}` | null;
3614
+ gasPrice?: undefined | undefined;
3615
+ maxFeePerBlobGas?: `0x${string}` | undefined;
3616
+ maxFeePerGas?: `0x${string}` | undefined;
3617
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3618
+ accessList?: import("viem").AccessList | undefined;
3619
+ sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3620
+ blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
3621
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3622
+ kzg?: import("viem").Kzg | undefined;
3623
+ authorizationList?: undefined;
3624
+ feeCurrency?: `0x${string}` | undefined;
3625
+ } | {
3626
+ type?: "0x4" | undefined;
3627
+ gasPrice?: undefined | undefined;
3628
+ maxFeePerBlobGas?: undefined | undefined;
3629
+ maxFeePerGas?: `0x${string}` | undefined;
3630
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3631
+ to?: `0x${string}` | null | undefined;
3632
+ data?: `0x${string}` | undefined;
3633
+ from?: `0x${string}` | undefined;
3634
+ gas?: `0x${string}` | undefined;
3635
+ nonce?: `0x${string}` | undefined;
3636
+ value?: `0x${string}` | undefined;
3637
+ accessList?: import("viem").AccessList | undefined;
3638
+ authorizationList?: import("viem").RpcAuthorizationList | undefined;
3639
+ blobs?: undefined;
3640
+ blobVersionedHashes?: undefined;
3641
+ kzg?: undefined;
3642
+ sidecars?: undefined;
3643
+ feeCurrency?: `0x${string}` | undefined;
3644
+ } | {
3645
+ data?: `0x${string}` | undefined;
3646
+ from?: `0x${string}` | undefined;
3647
+ gas?: `0x${string}` | undefined;
3648
+ nonce?: `0x${string}` | undefined;
3649
+ to?: `0x${string}` | null | undefined;
3650
+ type?: "0x7b" | undefined;
3651
+ value?: `0x${string}` | undefined;
3652
+ accessList?: import("viem").AccessList | undefined;
3653
+ feeCurrency?: `0x${string}` | undefined;
3654
+ gasPrice?: undefined | undefined;
3655
+ maxFeePerBlobGas?: undefined | undefined;
3656
+ maxFeePerGas?: `0x${string}` | undefined;
3657
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
3658
+ blobs?: undefined;
3659
+ blobVersionedHashes?: undefined;
3660
+ kzg?: undefined;
3661
+ sidecars?: undefined;
3662
+ authorizationList?: undefined;
3663
+ }) & {};
3664
+ type: "transactionRequest";
3665
+ };
3666
+ };
3667
+ prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3668
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3669
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
3670
+ phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
3671
+ }) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
3672
+ runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
3673
+ }] | undefined;
3674
+ serializers: {
3675
+ readonly transaction: typeof import("viem/chains").serializeTransactionCelo;
3676
+ };
3677
+ verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
3678
+ }], import("@rainbow-me/rainbowkit/dist/config/getDefaultConfig")._transports, import("wagmi").CreateConnectorFn<unknown, Record<string, unknown>, Record<string, unknown>>[]>;
3679
+ export declare function useMiniPayAutoConnect(): void;