tempo.ts 0.2.1 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/README.md +24 -0
  2. package/dist/chains.d.ts +56 -1572
  3. package/dist/chains.d.ts.map +1 -1
  4. package/dist/viem/Abis.d.ts +103 -35
  5. package/dist/viem/Abis.d.ts.map +1 -1
  6. package/dist/viem/Abis.js +78 -27
  7. package/dist/viem/Abis.js.map +1 -1
  8. package/dist/viem/Actions/amm.d.ts +24 -42
  9. package/dist/viem/Actions/amm.d.ts.map +1 -1
  10. package/dist/viem/Actions/dex.d.ts +314 -66
  11. package/dist/viem/Actions/dex.d.ts.map +1 -1
  12. package/dist/viem/Actions/dex.js +10 -9
  13. package/dist/viem/Actions/dex.js.map +1 -1
  14. package/dist/viem/Actions/fee.d.ts +1 -1
  15. package/dist/viem/Actions/fee.d.ts.map +1 -1
  16. package/dist/viem/Actions/fee.js +3 -1
  17. package/dist/viem/Actions/fee.js.map +1 -1
  18. package/dist/viem/Actions/reward.d.ts +15 -3
  19. package/dist/viem/Actions/reward.d.ts.map +1 -1
  20. package/dist/viem/Actions/token.d.ts +75 -15
  21. package/dist/viem/Actions/token.d.ts.map +1 -1
  22. package/dist/viem/Chain.d.ts +8 -5
  23. package/dist/viem/Chain.d.ts.map +1 -1
  24. package/dist/viem/Chain.js +38 -25
  25. package/dist/viem/Chain.js.map +1 -1
  26. package/dist/viem/Decorator.d.ts +2 -2
  27. package/dist/viem/Decorator.d.ts.map +1 -1
  28. package/dist/viem/Decorator.js +1 -1
  29. package/dist/viem/Decorator.js.map +1 -1
  30. package/dist/wagmi/Actions/dex.d.ts +8 -8
  31. package/dist/wagmi/Actions/dex.d.ts.map +1 -1
  32. package/dist/wagmi/Actions/dex.js +9 -9
  33. package/dist/wagmi/Actions/dex.js.map +1 -1
  34. package/dist/wagmi/Hooks/dex.d.ts +4 -4
  35. package/dist/wagmi/Hooks/dex.d.ts.map +1 -1
  36. package/dist/wagmi/Hooks/dex.js +2 -2
  37. package/dist/wagmi/Hooks/dex.js.map +1 -1
  38. package/package.json +1 -54
  39. package/src/ox/TransactionEnvelopeAA.test.ts +42 -50
  40. package/src/prool/internal/chain.json +84 -80
  41. package/src/viem/Abis.ts +79 -27
  42. package/src/viem/Actions/dex.test.ts +12 -12
  43. package/src/viem/Actions/dex.ts +18 -14
  44. package/src/viem/Actions/fee.ts +3 -1
  45. package/src/viem/Chain.ts +59 -32
  46. package/src/viem/Decorator.ts +6 -6
  47. package/src/viem/e2e.test.ts +6 -6
  48. package/src/wagmi/Actions/dex.test.ts +12 -12
  49. package/src/wagmi/Actions/dex.ts +15 -15
  50. package/src/wagmi/Hooks/dex.ts +8 -8
package/dist/chains.d.ts CHANGED
@@ -1,1574 +1,58 @@
1
1
  import * as Chain from './viem/Chain.js';
2
- export declare const tempoAndantino: (<properties_1 extends Chain.define.Properties | undefined>(properties?: properties_1) => {
3
- readonly blockTime: 1000;
4
- readonly contracts: {
5
- readonly multicall3: {
6
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
7
- readonly blockCreated: 0;
8
- };
9
- };
10
- readonly formatters: {
11
- readonly transaction: {
12
- exclude: [] | undefined;
13
- format: (args: import("./viem/Transaction.js").TransactionRpc, action?: string | undefined) => ({
14
- r: import("viem").Hex;
15
- s: import("viem").Hex;
16
- v: bigint;
17
- nonce: number;
18
- from: import("viem").Address;
19
- gas: bigint;
20
- to: import("viem").Address | null;
21
- value: bigint;
22
- input: import("viem").Hex;
23
- blockHash: `0x${string}` | null;
24
- blockNumber: bigint | null;
25
- hash: import("viem").Hash;
26
- transactionIndex: number | null;
27
- typeHex: import("viem").Hex | null;
28
- accessList?: undefined | undefined;
29
- authorizationList?: undefined | undefined;
30
- blobVersionedHashes?: undefined | undefined;
31
- chainId?: number | undefined;
32
- yParity?: undefined | undefined;
33
- type: "legacy";
34
- gasPrice: bigint;
35
- maxFeePerBlobGas?: undefined | undefined;
36
- maxFeePerGas?: undefined | undefined;
37
- maxPriorityFeePerGas?: undefined | undefined;
38
- calls?: undefined;
39
- feePayerSignature?: undefined;
40
- feeToken?: undefined;
41
- nonceKey?: undefined;
42
- validBefore?: undefined;
43
- validAfter?: undefined;
44
- feePayer?: undefined;
45
- } | {
46
- blockHash: `0x${string}` | null;
47
- blockNumber: bigint | null;
48
- from: import("viem").Address;
49
- gas: bigint;
50
- hash: import("viem").Hash;
51
- input: import("viem").Hex;
52
- nonce: number;
53
- r: import("viem").Hex;
54
- s: import("viem").Hex;
55
- to: import("viem").Address | null;
56
- transactionIndex: number | null;
57
- typeHex: import("viem").Hex | null;
58
- v: bigint;
59
- value: bigint;
60
- yParity: number;
61
- accessList: import("viem").AccessList;
62
- authorizationList?: undefined | undefined;
63
- blobVersionedHashes?: undefined | undefined;
64
- chainId: number;
65
- type: "eip2930";
66
- gasPrice: bigint;
67
- maxFeePerBlobGas?: undefined | undefined;
68
- maxFeePerGas?: undefined | undefined;
69
- maxPriorityFeePerGas?: undefined | undefined;
70
- calls?: undefined;
71
- feePayerSignature?: undefined;
72
- feeToken?: undefined;
73
- nonceKey?: undefined;
74
- validBefore?: undefined;
75
- validAfter?: undefined;
76
- feePayer?: undefined;
77
- } | {
78
- blockHash: `0x${string}` | null;
79
- blockNumber: bigint | null;
80
- from: import("viem").Address;
81
- gas: bigint;
82
- hash: import("viem").Hash;
83
- input: import("viem").Hex;
84
- nonce: number;
85
- r: import("viem").Hex;
86
- s: import("viem").Hex;
87
- to: import("viem").Address | null;
88
- transactionIndex: number | null;
89
- typeHex: import("viem").Hex | null;
90
- v: bigint;
91
- value: bigint;
92
- yParity: number;
93
- accessList: import("viem").AccessList;
94
- authorizationList?: undefined | undefined;
95
- blobVersionedHashes?: undefined | undefined;
96
- chainId: number;
97
- type: "eip1559";
98
- gasPrice?: undefined | undefined;
99
- maxFeePerBlobGas?: undefined | undefined;
100
- maxFeePerGas: bigint;
101
- maxPriorityFeePerGas: bigint;
102
- calls?: undefined;
103
- feePayerSignature?: undefined;
104
- feeToken?: undefined;
105
- nonceKey?: undefined;
106
- validBefore?: undefined;
107
- validAfter?: undefined;
108
- feePayer?: undefined;
109
- } | {
110
- blockHash: `0x${string}` | null;
111
- blockNumber: bigint | null;
112
- from: import("viem").Address;
113
- gas: bigint;
114
- hash: import("viem").Hash;
115
- input: import("viem").Hex;
116
- nonce: number;
117
- r: import("viem").Hex;
118
- s: import("viem").Hex;
119
- to: import("viem").Address | null;
120
- transactionIndex: number | null;
121
- typeHex: import("viem").Hex | null;
122
- v: bigint;
123
- value: bigint;
124
- yParity: number;
125
- accessList: import("viem").AccessList;
126
- authorizationList?: undefined | undefined;
127
- blobVersionedHashes: readonly import("viem").Hex[];
128
- chainId: number;
129
- type: "eip4844";
130
- gasPrice?: undefined | undefined;
131
- maxFeePerBlobGas: bigint;
132
- maxFeePerGas: bigint;
133
- maxPriorityFeePerGas: bigint;
134
- calls?: undefined;
135
- feePayerSignature?: undefined;
136
- feeToken?: undefined;
137
- nonceKey?: undefined;
138
- validBefore?: undefined;
139
- validAfter?: undefined;
140
- feePayer?: undefined;
141
- } | {
142
- blockHash: `0x${string}` | null;
143
- blockNumber: bigint | null;
144
- from: import("viem").Address;
145
- gas: bigint;
146
- hash: import("viem").Hash;
147
- input: import("viem").Hex;
148
- nonce: number;
149
- r: import("viem").Hex;
150
- s: import("viem").Hex;
151
- to: import("viem").Address | null;
152
- transactionIndex: number | null;
153
- typeHex: import("viem").Hex | null;
154
- v: bigint;
155
- value: bigint;
156
- yParity: number;
157
- accessList: import("viem").AccessList;
158
- authorizationList: import("viem").SignedAuthorizationList;
159
- blobVersionedHashes?: undefined | undefined;
160
- chainId: number;
161
- type: "eip7702";
162
- gasPrice?: undefined | undefined;
163
- maxFeePerBlobGas?: undefined | undefined;
164
- maxFeePerGas: bigint;
165
- maxPriorityFeePerGas: bigint;
166
- calls?: undefined;
167
- feePayerSignature?: undefined;
168
- feeToken?: undefined;
169
- nonceKey?: undefined;
170
- validBefore?: undefined;
171
- validAfter?: undefined;
172
- feePayer?: undefined;
173
- } | {
174
- nonce: number;
175
- from: import("viem").Address;
176
- gas: bigint;
177
- blockHash: `0x${string}` | null;
178
- blockNumber: bigint | null;
179
- hash: import("viem").Hash;
180
- transactionIndex: number | null;
181
- typeHex: import("viem").Hex | null;
182
- r?: `0x${string}` | undefined;
183
- s?: `0x${string}` | undefined;
184
- yParity?: number | undefined;
185
- v?: bigint | undefined;
186
- accessList: import("viem").AccessList;
187
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
188
- calls: readonly import("./ox/TransactionEnvelopeAA.js").Call<bigint>[];
189
- chainId: number;
190
- feeToken?: `0x${string}` | undefined;
191
- feePayer?: `0x${string}` | undefined;
192
- feePayerSignature?: import("viem").Signature | undefined;
193
- nonceKey?: bigint | undefined;
194
- type: "aa";
195
- validBefore?: number | undefined;
196
- validAfter?: number | undefined;
197
- gasPrice?: undefined | undefined;
198
- maxFeePerBlobGas?: undefined | undefined;
199
- maxFeePerGas: bigint;
200
- maxPriorityFeePerGas: bigint;
201
- to?: undefined;
202
- value?: undefined;
203
- input?: undefined;
204
- blobVersionedHashes?: undefined;
205
- }) & {};
206
- type: "transaction";
207
- };
208
- readonly transactionRequest: {
209
- exclude: [] | undefined;
210
- format: (args: import("./internal/types.js").UnionOmit<import("./viem/Transaction.js").TransactionRequest, "feeToken"> & import("./viem/internal/types.js").GetFeeTokenParameter<{
211
- id: number;
212
- name: string;
213
- nativeCurrency: {
214
- name: string;
215
- symbol: string;
216
- decimals: number;
217
- };
218
- rpcUrls: {
219
- default: {
220
- http: string[];
221
- };
222
- };
223
- } & properties_1> & {
224
- account?: import("viem").Account | undefined;
225
- }, action?: string | undefined) => ({
226
- data?: `0x${string}` | undefined;
227
- from?: `0x${string}` | undefined;
228
- gas?: `0x${string}` | undefined;
229
- nonce?: `0x${string}` | undefined;
230
- to?: `0x${string}` | null | undefined;
231
- type?: "0x0" | undefined;
232
- value?: `0x${string}` | undefined;
233
- gasPrice?: `0x${string}` | undefined;
234
- maxFeePerBlobGas?: undefined | undefined;
235
- maxFeePerGas?: undefined | undefined;
236
- maxPriorityFeePerGas?: undefined | undefined;
237
- accessList?: undefined;
238
- authorizationList?: undefined;
239
- blobVersionedHashes?: undefined;
240
- blobs?: undefined;
241
- kzg?: undefined;
242
- sidecars?: undefined;
243
- calls?: undefined;
244
- feeToken?: undefined;
245
- feePayer?: undefined;
246
- } | {
247
- data?: `0x${string}` | undefined;
248
- from?: `0x${string}` | undefined;
249
- gas?: `0x${string}` | undefined;
250
- nonce?: `0x${string}` | undefined;
251
- to?: `0x${string}` | null | undefined;
252
- type?: "0x1" | undefined;
253
- value?: `0x${string}` | undefined;
254
- gasPrice?: `0x${string}` | undefined;
255
- maxFeePerBlobGas?: undefined | undefined;
256
- maxFeePerGas?: undefined | undefined;
257
- maxPriorityFeePerGas?: undefined | undefined;
258
- accessList?: import("viem").AccessList | undefined;
259
- authorizationList?: undefined;
260
- blobVersionedHashes?: undefined;
261
- blobs?: undefined;
262
- kzg?: undefined;
263
- sidecars?: undefined;
264
- calls?: undefined;
265
- feeToken?: undefined;
266
- feePayer?: undefined;
267
- } | {
268
- data?: `0x${string}` | undefined;
269
- from?: `0x${string}` | undefined;
270
- gas?: `0x${string}` | undefined;
271
- nonce?: `0x${string}` | undefined;
272
- to?: `0x${string}` | null | undefined;
273
- type?: "0x2" | undefined;
274
- value?: `0x${string}` | undefined;
275
- gasPrice?: undefined | undefined;
276
- maxFeePerBlobGas?: undefined | undefined;
277
- maxFeePerGas?: `0x${string}` | undefined;
278
- maxPriorityFeePerGas?: `0x${string}` | undefined;
279
- accessList?: import("viem").AccessList | undefined;
280
- authorizationList?: undefined;
281
- blobVersionedHashes?: undefined;
282
- blobs?: undefined;
283
- kzg?: undefined;
284
- sidecars?: undefined;
285
- calls?: undefined;
286
- feeToken?: undefined;
287
- feePayer?: undefined;
288
- } | {
289
- type?: "0x3" | undefined;
290
- nonce?: `0x${string}` | undefined;
291
- from?: `0x${string}` | undefined;
292
- gas?: `0x${string}` | undefined;
293
- value?: `0x${string}` | undefined;
294
- data?: `0x${string}` | undefined;
295
- to: `0x${string}` | null;
296
- gasPrice?: undefined | undefined;
297
- maxFeePerBlobGas?: `0x${string}` | undefined;
298
- maxFeePerGas?: `0x${string}` | undefined;
299
- maxPriorityFeePerGas?: `0x${string}` | undefined;
300
- accessList?: import("viem").AccessList | undefined;
301
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
302
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
303
- blobVersionedHashes: readonly import("viem").Hex[];
304
- kzg?: undefined;
305
- authorizationList?: undefined;
306
- calls?: undefined;
307
- feeToken?: undefined;
308
- feePayer?: undefined;
309
- } | {
310
- type?: "0x3" | undefined;
311
- nonce?: `0x${string}` | undefined;
312
- from?: `0x${string}` | undefined;
313
- gas?: `0x${string}` | undefined;
314
- value?: `0x${string}` | undefined;
315
- data?: `0x${string}` | undefined;
316
- to: `0x${string}` | null;
317
- gasPrice?: undefined | undefined;
318
- maxFeePerBlobGas?: `0x${string}` | undefined;
319
- maxFeePerGas?: `0x${string}` | undefined;
320
- maxPriorityFeePerGas?: `0x${string}` | undefined;
321
- accessList?: import("viem").AccessList | undefined;
322
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
323
- blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
324
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
325
- kzg?: import("viem").Kzg | undefined;
326
- authorizationList?: undefined;
327
- calls?: undefined;
328
- feeToken?: undefined;
329
- feePayer?: undefined;
330
- } | {
331
- type?: "0x4" | undefined;
332
- nonce?: `0x${string}` | undefined;
333
- accessList?: import("viem").AccessList | undefined;
334
- from?: `0x${string}` | undefined;
335
- gas?: `0x${string}` | undefined;
336
- maxFeePerGas?: `0x${string}` | undefined;
337
- maxPriorityFeePerGas?: `0x${string}` | undefined;
338
- to?: `0x${string}` | null | undefined;
339
- value?: `0x${string}` | undefined;
340
- data?: `0x${string}` | undefined;
341
- gasPrice?: undefined | undefined;
342
- maxFeePerBlobGas?: undefined | undefined;
343
- authorizationList?: import("viem").RpcAuthorizationList | undefined;
344
- blobVersionedHashes?: undefined;
345
- blobs?: undefined;
346
- kzg?: undefined;
347
- sidecars?: undefined;
348
- calls?: undefined;
349
- feeToken?: undefined;
350
- feePayer?: undefined;
351
- } | {
352
- data?: `0x${string}` | undefined;
353
- from?: `0x${string}` | undefined;
354
- gas?: `0x${string}` | undefined;
355
- nonce?: `0x${string}` | undefined;
356
- to?: `0x${string}` | null | undefined;
357
- type?: "0x76" | undefined;
358
- value?: `0x${string}` | undefined;
359
- gasPrice?: undefined | undefined;
360
- maxFeePerBlobGas?: undefined | undefined;
361
- maxFeePerGas?: `0x${string}` | undefined;
362
- maxPriorityFeePerGas?: `0x${string}` | undefined;
363
- accessList?: import("viem").AccessList | undefined;
364
- authorizationList?: import("viem").AuthorizationList<`0x${string}`, boolean> | undefined;
365
- calls?: readonly import("./ox/TransactionEnvelopeAA.js").Call<`0x${string}`>[] | undefined;
366
- feePayer?: true | import("viem").Account | undefined;
367
- feeToken?: bigint | `0x${string}` | undefined;
368
- blobVersionedHashes?: undefined;
369
- blobs?: undefined;
370
- kzg?: undefined;
371
- sidecars?: undefined;
372
- }) & {};
373
- type: "transactionRequest";
374
- };
375
- };
376
- readonly serializers: {
377
- readonly transaction: import("viem").SerializeTransactionFn;
378
- };
379
- } & {
380
- id: number;
381
- name: string;
382
- nativeCurrency: {
383
- name: string;
384
- symbol: string;
385
- decimals: number;
386
- };
387
- rpcUrls: {
388
- default: {
389
- http: string[];
390
- };
391
- };
392
- } & properties_1) & {
393
- id: number;
394
- };
395
- export declare const tempoDev: (<properties_1 extends Chain.define.Properties | undefined>(properties?: properties_1) => {
396
- readonly blockTime: 1000;
397
- readonly contracts: {
398
- readonly multicall3: {
399
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
400
- readonly blockCreated: 0;
401
- };
402
- };
403
- readonly formatters: {
404
- readonly transaction: {
405
- exclude: [] | undefined;
406
- format: (args: import("./viem/Transaction.js").TransactionRpc, action?: string | undefined) => ({
407
- r: import("viem").Hex;
408
- s: import("viem").Hex;
409
- v: bigint;
410
- nonce: number;
411
- from: import("viem").Address;
412
- gas: bigint;
413
- to: import("viem").Address | null;
414
- value: bigint;
415
- input: import("viem").Hex;
416
- blockHash: `0x${string}` | null;
417
- blockNumber: bigint | null;
418
- hash: import("viem").Hash;
419
- transactionIndex: number | null;
420
- typeHex: import("viem").Hex | null;
421
- accessList?: undefined | undefined;
422
- authorizationList?: undefined | undefined;
423
- blobVersionedHashes?: undefined | undefined;
424
- chainId?: number | undefined;
425
- yParity?: undefined | undefined;
426
- type: "legacy";
427
- gasPrice: bigint;
428
- maxFeePerBlobGas?: undefined | undefined;
429
- maxFeePerGas?: undefined | undefined;
430
- maxPriorityFeePerGas?: undefined | undefined;
431
- calls?: undefined;
432
- feePayerSignature?: undefined;
433
- feeToken?: undefined;
434
- nonceKey?: undefined;
435
- validBefore?: undefined;
436
- validAfter?: undefined;
437
- feePayer?: undefined;
438
- } | {
439
- blockHash: `0x${string}` | null;
440
- blockNumber: bigint | null;
441
- from: import("viem").Address;
442
- gas: bigint;
443
- hash: import("viem").Hash;
444
- input: import("viem").Hex;
445
- nonce: number;
446
- r: import("viem").Hex;
447
- s: import("viem").Hex;
448
- to: import("viem").Address | null;
449
- transactionIndex: number | null;
450
- typeHex: import("viem").Hex | null;
451
- v: bigint;
452
- value: bigint;
453
- yParity: number;
454
- accessList: import("viem").AccessList;
455
- authorizationList?: undefined | undefined;
456
- blobVersionedHashes?: undefined | undefined;
457
- chainId: number;
458
- type: "eip2930";
459
- gasPrice: bigint;
460
- maxFeePerBlobGas?: undefined | undefined;
461
- maxFeePerGas?: undefined | undefined;
462
- maxPriorityFeePerGas?: undefined | undefined;
463
- calls?: undefined;
464
- feePayerSignature?: undefined;
465
- feeToken?: undefined;
466
- nonceKey?: undefined;
467
- validBefore?: undefined;
468
- validAfter?: undefined;
469
- feePayer?: undefined;
470
- } | {
471
- blockHash: `0x${string}` | null;
472
- blockNumber: bigint | null;
473
- from: import("viem").Address;
474
- gas: bigint;
475
- hash: import("viem").Hash;
476
- input: import("viem").Hex;
477
- nonce: number;
478
- r: import("viem").Hex;
479
- s: import("viem").Hex;
480
- to: import("viem").Address | null;
481
- transactionIndex: number | null;
482
- typeHex: import("viem").Hex | null;
483
- v: bigint;
484
- value: bigint;
485
- yParity: number;
486
- accessList: import("viem").AccessList;
487
- authorizationList?: undefined | undefined;
488
- blobVersionedHashes?: undefined | undefined;
489
- chainId: number;
490
- type: "eip1559";
491
- gasPrice?: undefined | undefined;
492
- maxFeePerBlobGas?: undefined | undefined;
493
- maxFeePerGas: bigint;
494
- maxPriorityFeePerGas: bigint;
495
- calls?: undefined;
496
- feePayerSignature?: undefined;
497
- feeToken?: undefined;
498
- nonceKey?: undefined;
499
- validBefore?: undefined;
500
- validAfter?: undefined;
501
- feePayer?: undefined;
502
- } | {
503
- blockHash: `0x${string}` | null;
504
- blockNumber: bigint | null;
505
- from: import("viem").Address;
506
- gas: bigint;
507
- hash: import("viem").Hash;
508
- input: import("viem").Hex;
509
- nonce: number;
510
- r: import("viem").Hex;
511
- s: import("viem").Hex;
512
- to: import("viem").Address | null;
513
- transactionIndex: number | null;
514
- typeHex: import("viem").Hex | null;
515
- v: bigint;
516
- value: bigint;
517
- yParity: number;
518
- accessList: import("viem").AccessList;
519
- authorizationList?: undefined | undefined;
520
- blobVersionedHashes: readonly import("viem").Hex[];
521
- chainId: number;
522
- type: "eip4844";
523
- gasPrice?: undefined | undefined;
524
- maxFeePerBlobGas: bigint;
525
- maxFeePerGas: bigint;
526
- maxPriorityFeePerGas: bigint;
527
- calls?: undefined;
528
- feePayerSignature?: undefined;
529
- feeToken?: undefined;
530
- nonceKey?: undefined;
531
- validBefore?: undefined;
532
- validAfter?: undefined;
533
- feePayer?: undefined;
534
- } | {
535
- blockHash: `0x${string}` | null;
536
- blockNumber: bigint | null;
537
- from: import("viem").Address;
538
- gas: bigint;
539
- hash: import("viem").Hash;
540
- input: import("viem").Hex;
541
- nonce: number;
542
- r: import("viem").Hex;
543
- s: import("viem").Hex;
544
- to: import("viem").Address | null;
545
- transactionIndex: number | null;
546
- typeHex: import("viem").Hex | null;
547
- v: bigint;
548
- value: bigint;
549
- yParity: number;
550
- accessList: import("viem").AccessList;
551
- authorizationList: import("viem").SignedAuthorizationList;
552
- blobVersionedHashes?: undefined | undefined;
553
- chainId: number;
554
- type: "eip7702";
555
- gasPrice?: undefined | undefined;
556
- maxFeePerBlobGas?: undefined | undefined;
557
- maxFeePerGas: bigint;
558
- maxPriorityFeePerGas: bigint;
559
- calls?: undefined;
560
- feePayerSignature?: undefined;
561
- feeToken?: undefined;
562
- nonceKey?: undefined;
563
- validBefore?: undefined;
564
- validAfter?: undefined;
565
- feePayer?: undefined;
566
- } | {
567
- nonce: number;
568
- from: import("viem").Address;
569
- gas: bigint;
570
- blockHash: `0x${string}` | null;
571
- blockNumber: bigint | null;
572
- hash: import("viem").Hash;
573
- transactionIndex: number | null;
574
- typeHex: import("viem").Hex | null;
575
- r?: `0x${string}` | undefined;
576
- s?: `0x${string}` | undefined;
577
- yParity?: number | undefined;
578
- v?: bigint | undefined;
579
- accessList: import("viem").AccessList;
580
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
581
- calls: readonly import("./ox/TransactionEnvelopeAA.js").Call<bigint>[];
582
- chainId: number;
583
- feeToken?: `0x${string}` | undefined;
584
- feePayer?: `0x${string}` | undefined;
585
- feePayerSignature?: import("viem").Signature | undefined;
586
- nonceKey?: bigint | undefined;
587
- type: "aa";
588
- validBefore?: number | undefined;
589
- validAfter?: number | undefined;
590
- gasPrice?: undefined | undefined;
591
- maxFeePerBlobGas?: undefined | undefined;
592
- maxFeePerGas: bigint;
593
- maxPriorityFeePerGas: bigint;
594
- to?: undefined;
595
- value?: undefined;
596
- input?: undefined;
597
- blobVersionedHashes?: undefined;
598
- }) & {};
599
- type: "transaction";
600
- };
601
- readonly transactionRequest: {
602
- exclude: [] | undefined;
603
- format: (args: import("./internal/types.js").UnionOmit<import("./viem/Transaction.js").TransactionRequest, "feeToken"> & import("./viem/internal/types.js").GetFeeTokenParameter<{
604
- id: number;
605
- name: string;
606
- nativeCurrency: {
607
- name: string;
608
- symbol: string;
609
- decimals: number;
610
- };
611
- rpcUrls: {
612
- default: {
613
- http: string[];
614
- };
615
- };
616
- } & properties_1> & {
617
- account?: import("viem").Account | undefined;
618
- }, action?: string | undefined) => ({
619
- data?: `0x${string}` | undefined;
620
- from?: `0x${string}` | undefined;
621
- gas?: `0x${string}` | undefined;
622
- nonce?: `0x${string}` | undefined;
623
- to?: `0x${string}` | null | undefined;
624
- type?: "0x0" | undefined;
625
- value?: `0x${string}` | undefined;
626
- gasPrice?: `0x${string}` | undefined;
627
- maxFeePerBlobGas?: undefined | undefined;
628
- maxFeePerGas?: undefined | undefined;
629
- maxPriorityFeePerGas?: undefined | undefined;
630
- accessList?: undefined;
631
- authorizationList?: undefined;
632
- blobVersionedHashes?: undefined;
633
- blobs?: undefined;
634
- kzg?: undefined;
635
- sidecars?: undefined;
636
- calls?: undefined;
637
- feeToken?: undefined;
638
- feePayer?: undefined;
639
- } | {
640
- data?: `0x${string}` | undefined;
641
- from?: `0x${string}` | undefined;
642
- gas?: `0x${string}` | undefined;
643
- nonce?: `0x${string}` | undefined;
644
- to?: `0x${string}` | null | undefined;
645
- type?: "0x1" | undefined;
646
- value?: `0x${string}` | undefined;
647
- gasPrice?: `0x${string}` | undefined;
648
- maxFeePerBlobGas?: undefined | undefined;
649
- maxFeePerGas?: undefined | undefined;
650
- maxPriorityFeePerGas?: undefined | undefined;
651
- accessList?: import("viem").AccessList | undefined;
652
- authorizationList?: undefined;
653
- blobVersionedHashes?: undefined;
654
- blobs?: undefined;
655
- kzg?: undefined;
656
- sidecars?: undefined;
657
- calls?: undefined;
658
- feeToken?: undefined;
659
- feePayer?: undefined;
660
- } | {
661
- data?: `0x${string}` | undefined;
662
- from?: `0x${string}` | undefined;
663
- gas?: `0x${string}` | undefined;
664
- nonce?: `0x${string}` | undefined;
665
- to?: `0x${string}` | null | undefined;
666
- type?: "0x2" | undefined;
667
- value?: `0x${string}` | undefined;
668
- gasPrice?: undefined | undefined;
669
- maxFeePerBlobGas?: undefined | undefined;
670
- maxFeePerGas?: `0x${string}` | undefined;
671
- maxPriorityFeePerGas?: `0x${string}` | undefined;
672
- accessList?: import("viem").AccessList | undefined;
673
- authorizationList?: undefined;
674
- blobVersionedHashes?: undefined;
675
- blobs?: undefined;
676
- kzg?: undefined;
677
- sidecars?: undefined;
678
- calls?: undefined;
679
- feeToken?: undefined;
680
- feePayer?: undefined;
681
- } | {
682
- type?: "0x3" | undefined;
683
- nonce?: `0x${string}` | undefined;
684
- from?: `0x${string}` | undefined;
685
- gas?: `0x${string}` | undefined;
686
- value?: `0x${string}` | undefined;
687
- data?: `0x${string}` | undefined;
688
- to: `0x${string}` | null;
689
- gasPrice?: undefined | undefined;
690
- maxFeePerBlobGas?: `0x${string}` | undefined;
691
- maxFeePerGas?: `0x${string}` | undefined;
692
- maxPriorityFeePerGas?: `0x${string}` | undefined;
693
- accessList?: import("viem").AccessList | undefined;
694
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
695
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
696
- blobVersionedHashes: readonly import("viem").Hex[];
697
- kzg?: undefined;
698
- authorizationList?: undefined;
699
- calls?: undefined;
700
- feeToken?: undefined;
701
- feePayer?: undefined;
702
- } | {
703
- type?: "0x3" | undefined;
704
- nonce?: `0x${string}` | undefined;
705
- from?: `0x${string}` | undefined;
706
- gas?: `0x${string}` | undefined;
707
- value?: `0x${string}` | undefined;
708
- data?: `0x${string}` | undefined;
709
- to: `0x${string}` | null;
710
- gasPrice?: undefined | undefined;
711
- maxFeePerBlobGas?: `0x${string}` | undefined;
712
- maxFeePerGas?: `0x${string}` | undefined;
713
- maxPriorityFeePerGas?: `0x${string}` | undefined;
714
- accessList?: import("viem").AccessList | undefined;
715
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
716
- blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
717
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
718
- kzg?: import("viem").Kzg | undefined;
719
- authorizationList?: undefined;
720
- calls?: undefined;
721
- feeToken?: undefined;
722
- feePayer?: undefined;
723
- } | {
724
- type?: "0x4" | undefined;
725
- nonce?: `0x${string}` | undefined;
726
- accessList?: import("viem").AccessList | undefined;
727
- from?: `0x${string}` | undefined;
728
- gas?: `0x${string}` | undefined;
729
- maxFeePerGas?: `0x${string}` | undefined;
730
- maxPriorityFeePerGas?: `0x${string}` | undefined;
731
- to?: `0x${string}` | null | undefined;
732
- value?: `0x${string}` | undefined;
733
- data?: `0x${string}` | undefined;
734
- gasPrice?: undefined | undefined;
735
- maxFeePerBlobGas?: undefined | undefined;
736
- authorizationList?: import("viem").RpcAuthorizationList | undefined;
737
- blobVersionedHashes?: undefined;
738
- blobs?: undefined;
739
- kzg?: undefined;
740
- sidecars?: undefined;
741
- calls?: undefined;
742
- feeToken?: undefined;
743
- feePayer?: undefined;
744
- } | {
745
- data?: `0x${string}` | undefined;
746
- from?: `0x${string}` | undefined;
747
- gas?: `0x${string}` | undefined;
748
- nonce?: `0x${string}` | undefined;
749
- to?: `0x${string}` | null | undefined;
750
- type?: "0x76" | undefined;
751
- value?: `0x${string}` | undefined;
752
- gasPrice?: undefined | undefined;
753
- maxFeePerBlobGas?: undefined | undefined;
754
- maxFeePerGas?: `0x${string}` | undefined;
755
- maxPriorityFeePerGas?: `0x${string}` | undefined;
756
- accessList?: import("viem").AccessList | undefined;
757
- authorizationList?: import("viem").AuthorizationList<`0x${string}`, boolean> | undefined;
758
- calls?: readonly import("./ox/TransactionEnvelopeAA.js").Call<`0x${string}`>[] | undefined;
759
- feePayer?: true | import("viem").Account | undefined;
760
- feeToken?: bigint | `0x${string}` | undefined;
761
- blobVersionedHashes?: undefined;
762
- blobs?: undefined;
763
- kzg?: undefined;
764
- sidecars?: undefined;
765
- }) & {};
766
- type: "transactionRequest";
767
- };
768
- };
769
- readonly serializers: {
770
- readonly transaction: import("viem").SerializeTransactionFn;
771
- };
772
- } & {
773
- id: number;
774
- name: string;
775
- nativeCurrency: {
776
- name: string;
777
- symbol: string;
778
- decimals: number;
779
- };
780
- rpcUrls: {
781
- default: {
782
- http: string[];
783
- };
784
- };
785
- } & properties_1) & {
786
- id: number;
787
- };
788
- export declare const tempoLocal: (<properties_1 extends Chain.define.Properties | undefined>(properties?: properties_1) => {
789
- readonly blockTime: 1000;
790
- readonly contracts: {
791
- readonly multicall3: {
792
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
793
- readonly blockCreated: 0;
794
- };
795
- };
796
- readonly formatters: {
797
- readonly transaction: {
798
- exclude: [] | undefined;
799
- format: (args: import("./viem/Transaction.js").TransactionRpc, action?: string | undefined) => ({
800
- r: import("viem").Hex;
801
- s: import("viem").Hex;
802
- v: bigint;
803
- nonce: number;
804
- from: import("viem").Address;
805
- gas: bigint;
806
- to: import("viem").Address | null;
807
- value: bigint;
808
- input: import("viem").Hex;
809
- blockHash: `0x${string}` | null;
810
- blockNumber: bigint | null;
811
- hash: import("viem").Hash;
812
- transactionIndex: number | null;
813
- typeHex: import("viem").Hex | null;
814
- accessList?: undefined | undefined;
815
- authorizationList?: undefined | undefined;
816
- blobVersionedHashes?: undefined | undefined;
817
- chainId?: number | undefined;
818
- yParity?: undefined | undefined;
819
- type: "legacy";
820
- gasPrice: bigint;
821
- maxFeePerBlobGas?: undefined | undefined;
822
- maxFeePerGas?: undefined | undefined;
823
- maxPriorityFeePerGas?: undefined | undefined;
824
- calls?: undefined;
825
- feePayerSignature?: undefined;
826
- feeToken?: undefined;
827
- nonceKey?: undefined;
828
- validBefore?: undefined;
829
- validAfter?: undefined;
830
- feePayer?: undefined;
831
- } | {
832
- blockHash: `0x${string}` | null;
833
- blockNumber: bigint | null;
834
- from: import("viem").Address;
835
- gas: bigint;
836
- hash: import("viem").Hash;
837
- input: import("viem").Hex;
838
- nonce: number;
839
- r: import("viem").Hex;
840
- s: import("viem").Hex;
841
- to: import("viem").Address | null;
842
- transactionIndex: number | null;
843
- typeHex: import("viem").Hex | null;
844
- v: bigint;
845
- value: bigint;
846
- yParity: number;
847
- accessList: import("viem").AccessList;
848
- authorizationList?: undefined | undefined;
849
- blobVersionedHashes?: undefined | undefined;
850
- chainId: number;
851
- type: "eip2930";
852
- gasPrice: bigint;
853
- maxFeePerBlobGas?: undefined | undefined;
854
- maxFeePerGas?: undefined | undefined;
855
- maxPriorityFeePerGas?: undefined | undefined;
856
- calls?: undefined;
857
- feePayerSignature?: undefined;
858
- feeToken?: undefined;
859
- nonceKey?: undefined;
860
- validBefore?: undefined;
861
- validAfter?: undefined;
862
- feePayer?: undefined;
863
- } | {
864
- blockHash: `0x${string}` | null;
865
- blockNumber: bigint | null;
866
- from: import("viem").Address;
867
- gas: bigint;
868
- hash: import("viem").Hash;
869
- input: import("viem").Hex;
870
- nonce: number;
871
- r: import("viem").Hex;
872
- s: import("viem").Hex;
873
- to: import("viem").Address | null;
874
- transactionIndex: number | null;
875
- typeHex: import("viem").Hex | null;
876
- v: bigint;
877
- value: bigint;
878
- yParity: number;
879
- accessList: import("viem").AccessList;
880
- authorizationList?: undefined | undefined;
881
- blobVersionedHashes?: undefined | undefined;
882
- chainId: number;
883
- type: "eip1559";
884
- gasPrice?: undefined | undefined;
885
- maxFeePerBlobGas?: undefined | undefined;
886
- maxFeePerGas: bigint;
887
- maxPriorityFeePerGas: bigint;
888
- calls?: undefined;
889
- feePayerSignature?: undefined;
890
- feeToken?: undefined;
891
- nonceKey?: undefined;
892
- validBefore?: undefined;
893
- validAfter?: undefined;
894
- feePayer?: undefined;
895
- } | {
896
- blockHash: `0x${string}` | null;
897
- blockNumber: bigint | null;
898
- from: import("viem").Address;
899
- gas: bigint;
900
- hash: import("viem").Hash;
901
- input: import("viem").Hex;
902
- nonce: number;
903
- r: import("viem").Hex;
904
- s: import("viem").Hex;
905
- to: import("viem").Address | null;
906
- transactionIndex: number | null;
907
- typeHex: import("viem").Hex | null;
908
- v: bigint;
909
- value: bigint;
910
- yParity: number;
911
- accessList: import("viem").AccessList;
912
- authorizationList?: undefined | undefined;
913
- blobVersionedHashes: readonly import("viem").Hex[];
914
- chainId: number;
915
- type: "eip4844";
916
- gasPrice?: undefined | undefined;
917
- maxFeePerBlobGas: bigint;
918
- maxFeePerGas: bigint;
919
- maxPriorityFeePerGas: bigint;
920
- calls?: undefined;
921
- feePayerSignature?: undefined;
922
- feeToken?: undefined;
923
- nonceKey?: undefined;
924
- validBefore?: undefined;
925
- validAfter?: undefined;
926
- feePayer?: undefined;
927
- } | {
928
- blockHash: `0x${string}` | null;
929
- blockNumber: bigint | null;
930
- from: import("viem").Address;
931
- gas: bigint;
932
- hash: import("viem").Hash;
933
- input: import("viem").Hex;
934
- nonce: number;
935
- r: import("viem").Hex;
936
- s: import("viem").Hex;
937
- to: import("viem").Address | null;
938
- transactionIndex: number | null;
939
- typeHex: import("viem").Hex | null;
940
- v: bigint;
941
- value: bigint;
942
- yParity: number;
943
- accessList: import("viem").AccessList;
944
- authorizationList: import("viem").SignedAuthorizationList;
945
- blobVersionedHashes?: undefined | undefined;
946
- chainId: number;
947
- type: "eip7702";
948
- gasPrice?: undefined | undefined;
949
- maxFeePerBlobGas?: undefined | undefined;
950
- maxFeePerGas: bigint;
951
- maxPriorityFeePerGas: bigint;
952
- calls?: undefined;
953
- feePayerSignature?: undefined;
954
- feeToken?: undefined;
955
- nonceKey?: undefined;
956
- validBefore?: undefined;
957
- validAfter?: undefined;
958
- feePayer?: undefined;
959
- } | {
960
- nonce: number;
961
- from: import("viem").Address;
962
- gas: bigint;
963
- blockHash: `0x${string}` | null;
964
- blockNumber: bigint | null;
965
- hash: import("viem").Hash;
966
- transactionIndex: number | null;
967
- typeHex: import("viem").Hex | null;
968
- r?: `0x${string}` | undefined;
969
- s?: `0x${string}` | undefined;
970
- yParity?: number | undefined;
971
- v?: bigint | undefined;
972
- accessList: import("viem").AccessList;
973
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
974
- calls: readonly import("./ox/TransactionEnvelopeAA.js").Call<bigint>[];
975
- chainId: number;
976
- feeToken?: `0x${string}` | undefined;
977
- feePayer?: `0x${string}` | undefined;
978
- feePayerSignature?: import("viem").Signature | undefined;
979
- nonceKey?: bigint | undefined;
980
- type: "aa";
981
- validBefore?: number | undefined;
982
- validAfter?: number | undefined;
983
- gasPrice?: undefined | undefined;
984
- maxFeePerBlobGas?: undefined | undefined;
985
- maxFeePerGas: bigint;
986
- maxPriorityFeePerGas: bigint;
987
- to?: undefined;
988
- value?: undefined;
989
- input?: undefined;
990
- blobVersionedHashes?: undefined;
991
- }) & {};
992
- type: "transaction";
993
- };
994
- readonly transactionRequest: {
995
- exclude: [] | undefined;
996
- format: (args: import("./internal/types.js").UnionOmit<import("./viem/Transaction.js").TransactionRequest, "feeToken"> & import("./viem/internal/types.js").GetFeeTokenParameter<{
997
- id: number;
998
- name: string;
999
- nativeCurrency: {
1000
- name: string;
1001
- symbol: string;
1002
- decimals: number;
1003
- };
1004
- rpcUrls: {
1005
- default: {
1006
- http: string[];
1007
- };
1008
- };
1009
- } & properties_1> & {
1010
- account?: import("viem").Account | undefined;
1011
- }, action?: string | undefined) => ({
1012
- data?: `0x${string}` | undefined;
1013
- from?: `0x${string}` | undefined;
1014
- gas?: `0x${string}` | undefined;
1015
- nonce?: `0x${string}` | undefined;
1016
- to?: `0x${string}` | null | undefined;
1017
- type?: "0x0" | undefined;
1018
- value?: `0x${string}` | undefined;
1019
- gasPrice?: `0x${string}` | undefined;
1020
- maxFeePerBlobGas?: undefined | undefined;
1021
- maxFeePerGas?: undefined | undefined;
1022
- maxPriorityFeePerGas?: undefined | undefined;
1023
- accessList?: undefined;
1024
- authorizationList?: undefined;
1025
- blobVersionedHashes?: undefined;
1026
- blobs?: undefined;
1027
- kzg?: undefined;
1028
- sidecars?: undefined;
1029
- calls?: undefined;
1030
- feeToken?: undefined;
1031
- feePayer?: undefined;
1032
- } | {
1033
- data?: `0x${string}` | undefined;
1034
- from?: `0x${string}` | undefined;
1035
- gas?: `0x${string}` | undefined;
1036
- nonce?: `0x${string}` | undefined;
1037
- to?: `0x${string}` | null | undefined;
1038
- type?: "0x1" | undefined;
1039
- value?: `0x${string}` | undefined;
1040
- gasPrice?: `0x${string}` | undefined;
1041
- maxFeePerBlobGas?: undefined | undefined;
1042
- maxFeePerGas?: undefined | undefined;
1043
- maxPriorityFeePerGas?: undefined | undefined;
1044
- accessList?: import("viem").AccessList | undefined;
1045
- authorizationList?: undefined;
1046
- blobVersionedHashes?: undefined;
1047
- blobs?: undefined;
1048
- kzg?: undefined;
1049
- sidecars?: undefined;
1050
- calls?: undefined;
1051
- feeToken?: undefined;
1052
- feePayer?: undefined;
1053
- } | {
1054
- data?: `0x${string}` | undefined;
1055
- from?: `0x${string}` | undefined;
1056
- gas?: `0x${string}` | undefined;
1057
- nonce?: `0x${string}` | undefined;
1058
- to?: `0x${string}` | null | undefined;
1059
- type?: "0x2" | undefined;
1060
- value?: `0x${string}` | undefined;
1061
- gasPrice?: undefined | undefined;
1062
- maxFeePerBlobGas?: undefined | undefined;
1063
- maxFeePerGas?: `0x${string}` | undefined;
1064
- maxPriorityFeePerGas?: `0x${string}` | undefined;
1065
- accessList?: import("viem").AccessList | undefined;
1066
- authorizationList?: undefined;
1067
- blobVersionedHashes?: undefined;
1068
- blobs?: undefined;
1069
- kzg?: undefined;
1070
- sidecars?: undefined;
1071
- calls?: undefined;
1072
- feeToken?: undefined;
1073
- feePayer?: undefined;
1074
- } | {
1075
- type?: "0x3" | undefined;
1076
- nonce?: `0x${string}` | undefined;
1077
- from?: `0x${string}` | undefined;
1078
- gas?: `0x${string}` | undefined;
1079
- value?: `0x${string}` | undefined;
1080
- data?: `0x${string}` | undefined;
1081
- to: `0x${string}` | null;
1082
- gasPrice?: undefined | undefined;
1083
- maxFeePerBlobGas?: `0x${string}` | undefined;
1084
- maxFeePerGas?: `0x${string}` | undefined;
1085
- maxPriorityFeePerGas?: `0x${string}` | undefined;
1086
- accessList?: import("viem").AccessList | undefined;
1087
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1088
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1089
- blobVersionedHashes: readonly import("viem").Hex[];
1090
- kzg?: undefined;
1091
- authorizationList?: undefined;
1092
- calls?: undefined;
1093
- feeToken?: undefined;
1094
- feePayer?: undefined;
1095
- } | {
1096
- type?: "0x3" | undefined;
1097
- nonce?: `0x${string}` | undefined;
1098
- from?: `0x${string}` | undefined;
1099
- gas?: `0x${string}` | undefined;
1100
- value?: `0x${string}` | undefined;
1101
- data?: `0x${string}` | undefined;
1102
- to: `0x${string}` | null;
1103
- gasPrice?: undefined | undefined;
1104
- maxFeePerBlobGas?: `0x${string}` | undefined;
1105
- maxFeePerGas?: `0x${string}` | undefined;
1106
- maxPriorityFeePerGas?: `0x${string}` | undefined;
1107
- accessList?: import("viem").AccessList | undefined;
1108
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1109
- blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
1110
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1111
- kzg?: import("viem").Kzg | undefined;
1112
- authorizationList?: undefined;
1113
- calls?: undefined;
1114
- feeToken?: undefined;
1115
- feePayer?: undefined;
1116
- } | {
1117
- type?: "0x4" | undefined;
1118
- nonce?: `0x${string}` | undefined;
1119
- accessList?: import("viem").AccessList | undefined;
1120
- from?: `0x${string}` | undefined;
1121
- gas?: `0x${string}` | undefined;
1122
- maxFeePerGas?: `0x${string}` | undefined;
1123
- maxPriorityFeePerGas?: `0x${string}` | undefined;
1124
- to?: `0x${string}` | null | undefined;
1125
- value?: `0x${string}` | undefined;
1126
- data?: `0x${string}` | undefined;
1127
- gasPrice?: undefined | undefined;
1128
- maxFeePerBlobGas?: undefined | undefined;
1129
- authorizationList?: import("viem").RpcAuthorizationList | undefined;
1130
- blobVersionedHashes?: undefined;
1131
- blobs?: undefined;
1132
- kzg?: undefined;
1133
- sidecars?: undefined;
1134
- calls?: undefined;
1135
- feeToken?: undefined;
1136
- feePayer?: undefined;
1137
- } | {
1138
- data?: `0x${string}` | undefined;
1139
- from?: `0x${string}` | undefined;
1140
- gas?: `0x${string}` | undefined;
1141
- nonce?: `0x${string}` | undefined;
1142
- to?: `0x${string}` | null | undefined;
1143
- type?: "0x76" | undefined;
1144
- value?: `0x${string}` | undefined;
1145
- gasPrice?: undefined | undefined;
1146
- maxFeePerBlobGas?: undefined | undefined;
1147
- maxFeePerGas?: `0x${string}` | undefined;
1148
- maxPriorityFeePerGas?: `0x${string}` | undefined;
1149
- accessList?: import("viem").AccessList | undefined;
1150
- authorizationList?: import("viem").AuthorizationList<`0x${string}`, boolean> | undefined;
1151
- calls?: readonly import("./ox/TransactionEnvelopeAA.js").Call<`0x${string}`>[] | undefined;
1152
- feePayer?: true | import("viem").Account | undefined;
1153
- feeToken?: bigint | `0x${string}` | undefined;
1154
- blobVersionedHashes?: undefined;
1155
- blobs?: undefined;
1156
- kzg?: undefined;
1157
- sidecars?: undefined;
1158
- }) & {};
1159
- type: "transactionRequest";
1160
- };
1161
- };
1162
- readonly serializers: {
1163
- readonly transaction: import("viem").SerializeTransactionFn;
1164
- };
1165
- } & {
1166
- id: number;
1167
- name: string;
1168
- nativeCurrency: {
1169
- name: string;
1170
- symbol: string;
1171
- decimals: number;
1172
- };
1173
- rpcUrls: {
1174
- default: {
1175
- http: string[];
1176
- };
1177
- };
1178
- } & properties_1) & {
1179
- id: number;
1180
- };
1181
- export declare const tempo: (<properties_1 extends Chain.define.Properties | undefined>(properties?: properties_1) => {
1182
- readonly blockTime: 1000;
1183
- readonly contracts: {
1184
- readonly multicall3: {
1185
- readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1186
- readonly blockCreated: 0;
1187
- };
1188
- };
1189
- readonly formatters: {
1190
- readonly transaction: {
1191
- exclude: [] | undefined;
1192
- format: (args: import("./viem/Transaction.js").TransactionRpc, action?: string | undefined) => ({
1193
- r: import("viem").Hex;
1194
- s: import("viem").Hex;
1195
- v: bigint;
1196
- nonce: number;
1197
- from: import("viem").Address;
1198
- gas: bigint;
1199
- to: import("viem").Address | null;
1200
- value: bigint;
1201
- input: import("viem").Hex;
1202
- blockHash: `0x${string}` | null;
1203
- blockNumber: bigint | null;
1204
- hash: import("viem").Hash;
1205
- transactionIndex: number | null;
1206
- typeHex: import("viem").Hex | null;
1207
- accessList?: undefined | undefined;
1208
- authorizationList?: undefined | undefined;
1209
- blobVersionedHashes?: undefined | undefined;
1210
- chainId?: number | undefined;
1211
- yParity?: undefined | undefined;
1212
- type: "legacy";
1213
- gasPrice: bigint;
1214
- maxFeePerBlobGas?: undefined | undefined;
1215
- maxFeePerGas?: undefined | undefined;
1216
- maxPriorityFeePerGas?: undefined | undefined;
1217
- calls?: undefined;
1218
- feePayerSignature?: undefined;
1219
- feeToken?: undefined;
1220
- nonceKey?: undefined;
1221
- validBefore?: undefined;
1222
- validAfter?: undefined;
1223
- feePayer?: undefined;
1224
- } | {
1225
- blockHash: `0x${string}` | null;
1226
- blockNumber: bigint | null;
1227
- from: import("viem").Address;
1228
- gas: bigint;
1229
- hash: import("viem").Hash;
1230
- input: import("viem").Hex;
1231
- nonce: number;
1232
- r: import("viem").Hex;
1233
- s: import("viem").Hex;
1234
- to: import("viem").Address | null;
1235
- transactionIndex: number | null;
1236
- typeHex: import("viem").Hex | null;
1237
- v: bigint;
1238
- value: bigint;
1239
- yParity: number;
1240
- accessList: import("viem").AccessList;
1241
- authorizationList?: undefined | undefined;
1242
- blobVersionedHashes?: undefined | undefined;
1243
- chainId: number;
1244
- type: "eip2930";
1245
- gasPrice: bigint;
1246
- maxFeePerBlobGas?: undefined | undefined;
1247
- maxFeePerGas?: undefined | undefined;
1248
- maxPriorityFeePerGas?: undefined | undefined;
1249
- calls?: undefined;
1250
- feePayerSignature?: undefined;
1251
- feeToken?: undefined;
1252
- nonceKey?: undefined;
1253
- validBefore?: undefined;
1254
- validAfter?: undefined;
1255
- feePayer?: undefined;
1256
- } | {
1257
- blockHash: `0x${string}` | null;
1258
- blockNumber: bigint | null;
1259
- from: import("viem").Address;
1260
- gas: bigint;
1261
- hash: import("viem").Hash;
1262
- input: import("viem").Hex;
1263
- nonce: number;
1264
- r: import("viem").Hex;
1265
- s: import("viem").Hex;
1266
- to: import("viem").Address | null;
1267
- transactionIndex: number | null;
1268
- typeHex: import("viem").Hex | null;
1269
- v: bigint;
1270
- value: bigint;
1271
- yParity: number;
1272
- accessList: import("viem").AccessList;
1273
- authorizationList?: undefined | undefined;
1274
- blobVersionedHashes?: undefined | undefined;
1275
- chainId: number;
1276
- type: "eip1559";
1277
- gasPrice?: undefined | undefined;
1278
- maxFeePerBlobGas?: undefined | undefined;
1279
- maxFeePerGas: bigint;
1280
- maxPriorityFeePerGas: bigint;
1281
- calls?: undefined;
1282
- feePayerSignature?: undefined;
1283
- feeToken?: undefined;
1284
- nonceKey?: undefined;
1285
- validBefore?: undefined;
1286
- validAfter?: undefined;
1287
- feePayer?: undefined;
1288
- } | {
1289
- blockHash: `0x${string}` | null;
1290
- blockNumber: bigint | null;
1291
- from: import("viem").Address;
1292
- gas: bigint;
1293
- hash: import("viem").Hash;
1294
- input: import("viem").Hex;
1295
- nonce: number;
1296
- r: import("viem").Hex;
1297
- s: import("viem").Hex;
1298
- to: import("viem").Address | null;
1299
- transactionIndex: number | null;
1300
- typeHex: import("viem").Hex | null;
1301
- v: bigint;
1302
- value: bigint;
1303
- yParity: number;
1304
- accessList: import("viem").AccessList;
1305
- authorizationList?: undefined | undefined;
1306
- blobVersionedHashes: readonly import("viem").Hex[];
1307
- chainId: number;
1308
- type: "eip4844";
1309
- gasPrice?: undefined | undefined;
1310
- maxFeePerBlobGas: bigint;
1311
- maxFeePerGas: bigint;
1312
- maxPriorityFeePerGas: bigint;
1313
- calls?: undefined;
1314
- feePayerSignature?: undefined;
1315
- feeToken?: undefined;
1316
- nonceKey?: undefined;
1317
- validBefore?: undefined;
1318
- validAfter?: undefined;
1319
- feePayer?: undefined;
1320
- } | {
1321
- blockHash: `0x${string}` | null;
1322
- blockNumber: bigint | null;
1323
- from: import("viem").Address;
1324
- gas: bigint;
1325
- hash: import("viem").Hash;
1326
- input: import("viem").Hex;
1327
- nonce: number;
1328
- r: import("viem").Hex;
1329
- s: import("viem").Hex;
1330
- to: import("viem").Address | null;
1331
- transactionIndex: number | null;
1332
- typeHex: import("viem").Hex | null;
1333
- v: bigint;
1334
- value: bigint;
1335
- yParity: number;
1336
- accessList: import("viem").AccessList;
1337
- authorizationList: import("viem").SignedAuthorizationList;
1338
- blobVersionedHashes?: undefined | undefined;
1339
- chainId: number;
1340
- type: "eip7702";
1341
- gasPrice?: undefined | undefined;
1342
- maxFeePerBlobGas?: undefined | undefined;
1343
- maxFeePerGas: bigint;
1344
- maxPriorityFeePerGas: bigint;
1345
- calls?: undefined;
1346
- feePayerSignature?: undefined;
1347
- feeToken?: undefined;
1348
- nonceKey?: undefined;
1349
- validBefore?: undefined;
1350
- validAfter?: undefined;
1351
- feePayer?: undefined;
1352
- } | {
1353
- nonce: number;
1354
- from: import("viem").Address;
1355
- gas: bigint;
1356
- blockHash: `0x${string}` | null;
1357
- blockNumber: bigint | null;
1358
- hash: import("viem").Hash;
1359
- transactionIndex: number | null;
1360
- typeHex: import("viem").Hex | null;
1361
- r?: `0x${string}` | undefined;
1362
- s?: `0x${string}` | undefined;
1363
- yParity?: number | undefined;
1364
- v?: bigint | undefined;
1365
- accessList: import("viem").AccessList;
1366
- authorizationList?: import("viem").SignedAuthorizationList | undefined;
1367
- calls: readonly import("./ox/TransactionEnvelopeAA.js").Call<bigint>[];
1368
- chainId: number;
1369
- feeToken?: `0x${string}` | undefined;
1370
- feePayer?: `0x${string}` | undefined;
1371
- feePayerSignature?: import("viem").Signature | undefined;
1372
- nonceKey?: bigint | undefined;
1373
- type: "aa";
1374
- validBefore?: number | undefined;
1375
- validAfter?: number | undefined;
1376
- gasPrice?: undefined | undefined;
1377
- maxFeePerBlobGas?: undefined | undefined;
1378
- maxFeePerGas: bigint;
1379
- maxPriorityFeePerGas: bigint;
1380
- to?: undefined;
1381
- value?: undefined;
1382
- input?: undefined;
1383
- blobVersionedHashes?: undefined;
1384
- }) & {};
1385
- type: "transaction";
1386
- };
1387
- readonly transactionRequest: {
1388
- exclude: [] | undefined;
1389
- format: (args: import("./internal/types.js").UnionOmit<import("./viem/Transaction.js").TransactionRequest, "feeToken"> & import("./viem/internal/types.js").GetFeeTokenParameter<{
1390
- id: number;
1391
- name: string;
1392
- nativeCurrency: {
1393
- name: string;
1394
- symbol: string;
1395
- decimals: number;
1396
- };
1397
- rpcUrls: {
1398
- default: {
1399
- http: string[];
1400
- };
1401
- };
1402
- } & properties_1> & {
1403
- account?: import("viem").Account | undefined;
1404
- }, action?: string | undefined) => ({
1405
- data?: `0x${string}` | undefined;
1406
- from?: `0x${string}` | undefined;
1407
- gas?: `0x${string}` | undefined;
1408
- nonce?: `0x${string}` | undefined;
1409
- to?: `0x${string}` | null | undefined;
1410
- type?: "0x0" | undefined;
1411
- value?: `0x${string}` | undefined;
1412
- gasPrice?: `0x${string}` | undefined;
1413
- maxFeePerBlobGas?: undefined | undefined;
1414
- maxFeePerGas?: undefined | undefined;
1415
- maxPriorityFeePerGas?: undefined | undefined;
1416
- accessList?: undefined;
1417
- authorizationList?: undefined;
1418
- blobVersionedHashes?: undefined;
1419
- blobs?: undefined;
1420
- kzg?: undefined;
1421
- sidecars?: undefined;
1422
- calls?: undefined;
1423
- feeToken?: undefined;
1424
- feePayer?: undefined;
1425
- } | {
1426
- data?: `0x${string}` | undefined;
1427
- from?: `0x${string}` | undefined;
1428
- gas?: `0x${string}` | undefined;
1429
- nonce?: `0x${string}` | undefined;
1430
- to?: `0x${string}` | null | undefined;
1431
- type?: "0x1" | undefined;
1432
- value?: `0x${string}` | undefined;
1433
- gasPrice?: `0x${string}` | undefined;
1434
- maxFeePerBlobGas?: undefined | undefined;
1435
- maxFeePerGas?: undefined | undefined;
1436
- maxPriorityFeePerGas?: undefined | undefined;
1437
- accessList?: import("viem").AccessList | undefined;
1438
- authorizationList?: undefined;
1439
- blobVersionedHashes?: undefined;
1440
- blobs?: undefined;
1441
- kzg?: undefined;
1442
- sidecars?: undefined;
1443
- calls?: undefined;
1444
- feeToken?: undefined;
1445
- feePayer?: undefined;
1446
- } | {
1447
- data?: `0x${string}` | undefined;
1448
- from?: `0x${string}` | undefined;
1449
- gas?: `0x${string}` | undefined;
1450
- nonce?: `0x${string}` | undefined;
1451
- to?: `0x${string}` | null | undefined;
1452
- type?: "0x2" | undefined;
1453
- value?: `0x${string}` | undefined;
1454
- gasPrice?: undefined | undefined;
1455
- maxFeePerBlobGas?: undefined | undefined;
1456
- maxFeePerGas?: `0x${string}` | undefined;
1457
- maxPriorityFeePerGas?: `0x${string}` | undefined;
1458
- accessList?: import("viem").AccessList | undefined;
1459
- authorizationList?: undefined;
1460
- blobVersionedHashes?: undefined;
1461
- blobs?: undefined;
1462
- kzg?: undefined;
1463
- sidecars?: undefined;
1464
- calls?: undefined;
1465
- feeToken?: undefined;
1466
- feePayer?: undefined;
1467
- } | {
1468
- type?: "0x3" | undefined;
1469
- nonce?: `0x${string}` | undefined;
1470
- from?: `0x${string}` | undefined;
1471
- gas?: `0x${string}` | undefined;
1472
- value?: `0x${string}` | undefined;
1473
- data?: `0x${string}` | undefined;
1474
- to: `0x${string}` | null;
1475
- gasPrice?: undefined | undefined;
1476
- maxFeePerBlobGas?: `0x${string}` | undefined;
1477
- maxFeePerGas?: `0x${string}` | undefined;
1478
- maxPriorityFeePerGas?: `0x${string}` | undefined;
1479
- accessList?: import("viem").AccessList | undefined;
1480
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1481
- blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1482
- blobVersionedHashes: readonly import("viem").Hex[];
1483
- kzg?: undefined;
1484
- authorizationList?: undefined;
1485
- calls?: undefined;
1486
- feeToken?: undefined;
1487
- feePayer?: undefined;
1488
- } | {
1489
- type?: "0x3" | undefined;
1490
- nonce?: `0x${string}` | undefined;
1491
- from?: `0x${string}` | undefined;
1492
- gas?: `0x${string}` | undefined;
1493
- value?: `0x${string}` | undefined;
1494
- data?: `0x${string}` | undefined;
1495
- to: `0x${string}` | null;
1496
- gasPrice?: undefined | undefined;
1497
- maxFeePerBlobGas?: `0x${string}` | undefined;
1498
- maxFeePerGas?: `0x${string}` | undefined;
1499
- maxPriorityFeePerGas?: `0x${string}` | undefined;
1500
- accessList?: import("viem").AccessList | undefined;
1501
- sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1502
- blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
1503
- blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1504
- kzg?: import("viem").Kzg | undefined;
1505
- authorizationList?: undefined;
1506
- calls?: undefined;
1507
- feeToken?: undefined;
1508
- feePayer?: undefined;
1509
- } | {
1510
- type?: "0x4" | undefined;
1511
- nonce?: `0x${string}` | undefined;
1512
- accessList?: import("viem").AccessList | undefined;
1513
- from?: `0x${string}` | undefined;
1514
- gas?: `0x${string}` | undefined;
1515
- maxFeePerGas?: `0x${string}` | undefined;
1516
- maxPriorityFeePerGas?: `0x${string}` | undefined;
1517
- to?: `0x${string}` | null | undefined;
1518
- value?: `0x${string}` | undefined;
1519
- data?: `0x${string}` | undefined;
1520
- gasPrice?: undefined | undefined;
1521
- maxFeePerBlobGas?: undefined | undefined;
1522
- authorizationList?: import("viem").RpcAuthorizationList | undefined;
1523
- blobVersionedHashes?: undefined;
1524
- blobs?: undefined;
1525
- kzg?: undefined;
1526
- sidecars?: undefined;
1527
- calls?: undefined;
1528
- feeToken?: undefined;
1529
- feePayer?: undefined;
1530
- } | {
1531
- data?: `0x${string}` | undefined;
1532
- from?: `0x${string}` | undefined;
1533
- gas?: `0x${string}` | undefined;
1534
- nonce?: `0x${string}` | undefined;
1535
- to?: `0x${string}` | null | undefined;
1536
- type?: "0x76" | undefined;
1537
- value?: `0x${string}` | undefined;
1538
- gasPrice?: undefined | undefined;
1539
- maxFeePerBlobGas?: undefined | undefined;
1540
- maxFeePerGas?: `0x${string}` | undefined;
1541
- maxPriorityFeePerGas?: `0x${string}` | undefined;
1542
- accessList?: import("viem").AccessList | undefined;
1543
- authorizationList?: import("viem").AuthorizationList<`0x${string}`, boolean> | undefined;
1544
- calls?: readonly import("./ox/TransactionEnvelopeAA.js").Call<`0x${string}`>[] | undefined;
1545
- feePayer?: true | import("viem").Account | undefined;
1546
- feeToken?: bigint | `0x${string}` | undefined;
1547
- blobVersionedHashes?: undefined;
1548
- blobs?: undefined;
1549
- kzg?: undefined;
1550
- sidecars?: undefined;
1551
- }) & {};
1552
- type: "transactionRequest";
1553
- };
1554
- };
1555
- readonly serializers: {
1556
- readonly transaction: import("viem").SerializeTransactionFn;
1557
- };
1558
- } & {
1559
- id: number;
1560
- name: string;
1561
- nativeCurrency: {
1562
- name: string;
1563
- symbol: string;
1564
- decimals: number;
1565
- };
1566
- rpcUrls: {
1567
- default: {
1568
- http: string[];
1569
- };
1570
- };
1571
- } & properties_1) & {
1572
- id: number;
1573
- };
2
+ export declare const tempoAndantino: Chain.define.ReturnValue<{
3
+ readonly id: 42429;
4
+ readonly name: "Tempo Andantino";
5
+ readonly nativeCurrency: {
6
+ readonly name: "USD";
7
+ readonly symbol: "USD";
8
+ readonly decimals: 6;
9
+ };
10
+ readonly rpcUrls: {
11
+ readonly default: {
12
+ readonly http: readonly ["https://rpc.testnet.tempo.xyz"];
13
+ };
14
+ };
15
+ }>;
16
+ export declare const tempoDev: Chain.define.ReturnValue<{
17
+ readonly id: 42429;
18
+ readonly name: "Tempo Devnet";
19
+ readonly nativeCurrency: {
20
+ readonly name: "USD";
21
+ readonly symbol: "USD";
22
+ readonly decimals: 6;
23
+ };
24
+ readonly rpcUrls: {
25
+ readonly default: {
26
+ readonly http: readonly ["https://devnet.tempoxyz.dev"];
27
+ };
28
+ };
29
+ }>;
30
+ export declare const tempoLocal: Chain.define.ReturnValue<{
31
+ readonly id: 1337;
32
+ readonly name: "Tempo";
33
+ readonly nativeCurrency: {
34
+ readonly name: "USD";
35
+ readonly symbol: "USD";
36
+ readonly decimals: 6;
37
+ };
38
+ readonly rpcUrls: {
39
+ readonly default: {
40
+ readonly http: readonly ["http://localhost:8545"];
41
+ };
42
+ };
43
+ }>;
44
+ export declare const tempo: Chain.define.ReturnValue<{
45
+ readonly id: 42429;
46
+ readonly name: "Tempo Andantino";
47
+ readonly nativeCurrency: {
48
+ readonly name: "USD";
49
+ readonly symbol: "USD";
50
+ readonly decimals: 6;
51
+ };
52
+ readonly rpcUrls: {
53
+ readonly default: {
54
+ readonly http: readonly ["https://rpc.testnet.tempo.xyz"];
55
+ };
56
+ };
57
+ }>;
1574
58
  //# sourceMappingURL=chains.d.ts.map