viem 2.0.0-alpha.3 → 2.0.0-alpha.5

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/_cjs/actions/wallet/writeContract.js.map +1 -1
  2. package/_cjs/chains/{utils/index.js → utils.js} +5 -5
  3. package/_cjs/chains/utils.js.map +1 -0
  4. package/_cjs/clients/decorators/wallet.js.map +1 -1
  5. package/_cjs/errors/node.js +11 -11
  6. package/_cjs/errors/node.js.map +1 -1
  7. package/_cjs/errors/rpc.js +18 -18
  8. package/_cjs/errors/rpc.js.map +1 -1
  9. package/_cjs/errors/version.js +1 -1
  10. package/_esm/actions/wallet/writeContract.js.map +1 -1
  11. package/_esm/chains/utils.js +5 -0
  12. package/_esm/chains/utils.js.map +1 -0
  13. package/_esm/clients/decorators/wallet.js.map +1 -1
  14. package/_esm/errors/node.js +22 -11
  15. package/_esm/errors/node.js.map +1 -1
  16. package/_esm/errors/rpc.js +36 -18
  17. package/_esm/errors/rpc.js.map +1 -1
  18. package/_esm/errors/version.js +1 -1
  19. package/_types/actions/wallet/writeContract.d.ts +3 -3
  20. package/_types/actions/wallet/writeContract.d.ts.map +1 -1
  21. package/_types/chains/celo/formatters.d.ts +7 -7
  22. package/_types/chains/definitions/base.d.ts +33 -33
  23. package/_types/chains/definitions/baseGoerli.d.ts +33 -33
  24. package/_types/chains/definitions/celo.d.ts +36 -36
  25. package/_types/chains/definitions/celoAlfajores.d.ts +36 -36
  26. package/_types/chains/definitions/celoCannoli.d.ts +36 -36
  27. package/_types/chains/definitions/optimism.d.ts +33 -33
  28. package/_types/chains/definitions/optimismGoerli.d.ts +33 -33
  29. package/_types/chains/definitions/zora.d.ts +33 -33
  30. package/_types/chains/definitions/zoraTestnet.d.ts +33 -33
  31. package/_types/chains/optimism/formatters.d.ts +7 -7
  32. package/_types/chains/{utils/index.d.ts → utils.d.ts} +7 -7
  33. package/_types/chains/utils.d.ts.map +1 -0
  34. package/_types/errors/version.d.ts +1 -1
  35. package/_types/types/utils.d.ts +12 -8
  36. package/_types/types/utils.d.ts.map +1 -1
  37. package/_types/utils/formatters/transaction.d.ts +2 -2
  38. package/_types/utils/formatters/transaction.d.ts.map +1 -1
  39. package/actions/wallet/writeContract.ts +35 -29
  40. package/chains/utils/package.json +3 -3
  41. package/chains/{utils/index.ts → utils.ts} +6 -6
  42. package/clients/decorators/wallet.ts +1 -1
  43. package/errors/version.ts +1 -1
  44. package/package.json +5 -5
  45. package/types/utils.ts +32 -11
  46. package/utils/formatters/transaction.ts +2 -2
  47. package/_cjs/chains/utils/index.js.map +0 -1
  48. package/_esm/chains/utils/index.js +0 -5
  49. package/_esm/chains/utils/index.js.map +0 -1
  50. package/_types/chains/utils/index.d.ts.map +0 -1
@@ -38,8 +38,8 @@ export declare const celo: {
38
38
  formatters?: {
39
39
  readonly block: {
40
40
  exclude: ("nonce" | "difficulty" | "gasLimit" | "mixHash" | "uncles")[] | undefined;
41
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcBlock>, import("../celo/types.js").CeloBlockOverrides & {
42
- transactions: `0x${string}`[] | import("../celo/types.js").CeloRpcTransaction[];
41
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcBlock>, import("../utils.js").CeloBlockOverrides & {
42
+ transactions: `0x${string}`[] | import("../utils.js").CeloRpcTransaction[];
43
43
  }>) => {
44
44
  baseFeePerGas: bigint | null;
45
45
  difficulty: bigint;
@@ -60,7 +60,7 @@ export declare const celo: {
60
60
  stateRoot: `0x${string}`;
61
61
  timestamp: bigint;
62
62
  totalDifficulty: bigint | null;
63
- transactions: `0x${string}`[] | import("../celo/types.js").CeloTransaction[];
63
+ transactions: `0x${string}`[] | import("../utils.js").CeloTransaction[];
64
64
  transactionsRoot: `0x${string}`;
65
65
  uncles: `0x${string}`[];
66
66
  randomness: {
@@ -98,7 +98,7 @@ export declare const celo: {
98
98
  v?: `0x${string}` | undefined;
99
99
  accessList?: undefined;
100
100
  chainId?: `0x${string}` | undefined;
101
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
101
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
102
102
  feeCurrency: `0x${string}` | null;
103
103
  gatewayFee: `0x${string}` | null;
104
104
  gatewayFeeRecipient: `0x${string}` | null;
@@ -147,7 +147,7 @@ export declare const celo: {
147
147
  v?: `0x${string}` | undefined;
148
148
  accessList?: import("../../index.js").AccessList | undefined;
149
149
  chainId?: `0x${string}` | undefined;
150
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
150
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
151
151
  feeCurrency: `0x${string}` | null;
152
152
  gatewayFee: `0x${string}` | null;
153
153
  gatewayFeeRecipient: `0x${string}` | null;
@@ -171,7 +171,7 @@ export declare const celo: {
171
171
  v?: `0x${string}` | undefined;
172
172
  accessList?: import("../../index.js").AccessList | undefined;
173
173
  chainId?: `0x${string}` | undefined;
174
- } & Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
174
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
175
175
  feeCurrency: `0x${string}` | null;
176
176
  gatewayFee: `0x${string}` | null;
177
177
  gatewayFeeRecipient: `0x${string}` | null;
@@ -195,7 +195,7 @@ export declare const celo: {
195
195
  v?: `0x${string}` | undefined;
196
196
  accessList?: import("../../index.js").AccessList | undefined;
197
197
  chainId?: `0x${string}` | undefined;
198
- } & Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
198
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
199
199
  feeCurrency: `0x${string}` | null;
200
200
  gatewayFee: `0x${string}` | null;
201
201
  gatewayFeeRecipient: `0x${string}` | null;
@@ -244,7 +244,7 @@ export declare const celo: {
244
244
  v?: `0x${string}` | undefined;
245
245
  accessList?: import("../../index.js").AccessList | undefined;
246
246
  chainId?: `0x${string}` | undefined;
247
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
247
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
248
248
  feeCurrency: `0x${string}` | null;
249
249
  gatewayFee: `0x${string}` | null;
250
250
  gatewayFeeRecipient: `0x${string}` | null;
@@ -268,7 +268,7 @@ export declare const celo: {
268
268
  v?: `0x${string}` | undefined;
269
269
  accessList?: import("../../index.js").AccessList | undefined;
270
270
  chainId?: `0x${string}` | undefined;
271
- } & Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
271
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
272
272
  feeCurrency: `0x${string}` | null;
273
273
  gatewayFee: `0x${string}` | null;
274
274
  gatewayFeeRecipient: `0x${string}` | null;
@@ -292,7 +292,7 @@ export declare const celo: {
292
292
  v?: `0x${string}` | undefined;
293
293
  accessList?: import("../../index.js").AccessList | undefined;
294
294
  chainId?: `0x${string}` | undefined;
295
- } & Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
295
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
296
296
  feeCurrency: `0x${string}` | null;
297
297
  gatewayFee: `0x${string}` | null;
298
298
  gatewayFeeRecipient: `0x${string}` | null;
@@ -518,7 +518,7 @@ export declare const celo: {
518
518
  };
519
519
  readonly transactionReceipt: {
520
520
  exclude: [] | undefined;
521
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../celo/types.js").CeloRpcTransactionReceiptOverrides>) => {
521
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../utils.js").CeloRpcTransactionReceiptOverrides>) => {
522
522
  blockHash: `0x${string}`;
523
523
  blockNumber: bigint;
524
524
  contractAddress: `0x${string}` | null;
@@ -541,7 +541,7 @@ export declare const celo: {
541
541
  };
542
542
  readonly transactionRequest: {
543
543
  exclude: [] | undefined;
544
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").TransactionRequest>, import("../celo/types.js").CeloTransactionRequest>) => ({
544
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").TransactionRequest>, import("../utils.js").CeloTransactionRequest>) => ({
545
545
  data?: `0x${string}` | undefined;
546
546
  from: `0x${string}`;
547
547
  gas?: `0x${string}` | undefined;
@@ -728,8 +728,8 @@ export declare const celo: {
728
728
  serializers?: import("../../index.js").ChainSerializers<{
729
729
  readonly block: {
730
730
  exclude: ("nonce" | "difficulty" | "gasLimit" | "mixHash" | "uncles")[] | undefined;
731
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcBlock>, import("../celo/types.js").CeloBlockOverrides & {
732
- transactions: `0x${string}`[] | import("../celo/types.js").CeloRpcTransaction[];
731
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcBlock>, import("../utils.js").CeloBlockOverrides & {
732
+ transactions: `0x${string}`[] | import("../utils.js").CeloRpcTransaction[];
733
733
  }>) => {
734
734
  baseFeePerGas: bigint | null;
735
735
  difficulty: bigint;
@@ -750,7 +750,7 @@ export declare const celo: {
750
750
  stateRoot: `0x${string}`;
751
751
  timestamp: bigint;
752
752
  totalDifficulty: bigint | null;
753
- transactions: `0x${string}`[] | import("../celo/types.js").CeloTransaction[];
753
+ transactions: `0x${string}`[] | import("../utils.js").CeloTransaction[];
754
754
  transactionsRoot: `0x${string}`;
755
755
  uncles: `0x${string}`[];
756
756
  randomness: {
@@ -788,7 +788,7 @@ export declare const celo: {
788
788
  v?: `0x${string}` | undefined;
789
789
  accessList?: undefined;
790
790
  chainId?: `0x${string}` | undefined;
791
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
791
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
792
792
  feeCurrency: `0x${string}` | null;
793
793
  gatewayFee: `0x${string}` | null;
794
794
  gatewayFeeRecipient: `0x${string}` | null;
@@ -837,7 +837,7 @@ export declare const celo: {
837
837
  v?: `0x${string}` | undefined;
838
838
  accessList?: import("../../index.js").AccessList | undefined;
839
839
  chainId?: `0x${string}` | undefined;
840
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
840
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
841
841
  feeCurrency: `0x${string}` | null;
842
842
  gatewayFee: `0x${string}` | null;
843
843
  gatewayFeeRecipient: `0x${string}` | null;
@@ -861,7 +861,7 @@ export declare const celo: {
861
861
  v?: `0x${string}` | undefined;
862
862
  accessList?: import("../../index.js").AccessList | undefined;
863
863
  chainId?: `0x${string}` | undefined;
864
- } & Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
864
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
865
865
  feeCurrency: `0x${string}` | null;
866
866
  gatewayFee: `0x${string}` | null;
867
867
  gatewayFeeRecipient: `0x${string}` | null;
@@ -885,7 +885,7 @@ export declare const celo: {
885
885
  v?: `0x${string}` | undefined;
886
886
  accessList?: import("../../index.js").AccessList | undefined;
887
887
  chainId?: `0x${string}` | undefined;
888
- } & Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
888
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
889
889
  feeCurrency: `0x${string}` | null;
890
890
  gatewayFee: `0x${string}` | null;
891
891
  gatewayFeeRecipient: `0x${string}` | null;
@@ -934,7 +934,7 @@ export declare const celo: {
934
934
  v?: `0x${string}` | undefined;
935
935
  accessList?: import("../../index.js").AccessList | undefined;
936
936
  chainId?: `0x${string}` | undefined;
937
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
937
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
938
938
  feeCurrency: `0x${string}` | null;
939
939
  gatewayFee: `0x${string}` | null;
940
940
  gatewayFeeRecipient: `0x${string}` | null;
@@ -958,7 +958,7 @@ export declare const celo: {
958
958
  v?: `0x${string}` | undefined;
959
959
  accessList?: import("../../index.js").AccessList | undefined;
960
960
  chainId?: `0x${string}` | undefined;
961
- } & Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
961
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
962
962
  feeCurrency: `0x${string}` | null;
963
963
  gatewayFee: `0x${string}` | null;
964
964
  gatewayFeeRecipient: `0x${string}` | null;
@@ -982,7 +982,7 @@ export declare const celo: {
982
982
  v?: `0x${string}` | undefined;
983
983
  accessList?: import("../../index.js").AccessList | undefined;
984
984
  chainId?: `0x${string}` | undefined;
985
- } & Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
985
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
986
986
  feeCurrency: `0x${string}` | null;
987
987
  gatewayFee: `0x${string}` | null;
988
988
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1208,7 +1208,7 @@ export declare const celo: {
1208
1208
  };
1209
1209
  readonly transactionReceipt: {
1210
1210
  exclude: [] | undefined;
1211
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../celo/types.js").CeloRpcTransactionReceiptOverrides>) => {
1211
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../utils.js").CeloRpcTransactionReceiptOverrides>) => {
1212
1212
  blockHash: `0x${string}`;
1213
1213
  blockNumber: bigint;
1214
1214
  contractAddress: `0x${string}` | null;
@@ -1231,7 +1231,7 @@ export declare const celo: {
1231
1231
  };
1232
1232
  readonly transactionRequest: {
1233
1233
  exclude: [] | undefined;
1234
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").TransactionRequest>, import("../celo/types.js").CeloTransactionRequest>) => ({
1234
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").TransactionRequest>, import("../utils.js").CeloTransactionRequest>) => ({
1235
1235
  data?: `0x${string}` | undefined;
1236
1236
  from: `0x${string}`;
1237
1237
  gas?: `0x${string}` | undefined;
@@ -1418,8 +1418,8 @@ export declare const celo: {
1418
1418
  fees?: import("../../index.js").ChainFees<{
1419
1419
  readonly block: {
1420
1420
  exclude: ("nonce" | "difficulty" | "gasLimit" | "mixHash" | "uncles")[] | undefined;
1421
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcBlock>, import("../celo/types.js").CeloBlockOverrides & {
1422
- transactions: `0x${string}`[] | import("../celo/types.js").CeloRpcTransaction[];
1421
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcBlock>, import("../utils.js").CeloBlockOverrides & {
1422
+ transactions: `0x${string}`[] | import("../utils.js").CeloRpcTransaction[];
1423
1423
  }>) => {
1424
1424
  baseFeePerGas: bigint | null;
1425
1425
  difficulty: bigint;
@@ -1440,7 +1440,7 @@ export declare const celo: {
1440
1440
  stateRoot: `0x${string}`;
1441
1441
  timestamp: bigint;
1442
1442
  totalDifficulty: bigint | null;
1443
- transactions: `0x${string}`[] | import("../celo/types.js").CeloTransaction[];
1443
+ transactions: `0x${string}`[] | import("../utils.js").CeloTransaction[];
1444
1444
  transactionsRoot: `0x${string}`;
1445
1445
  uncles: `0x${string}`[];
1446
1446
  randomness: {
@@ -1478,7 +1478,7 @@ export declare const celo: {
1478
1478
  v?: `0x${string}` | undefined;
1479
1479
  accessList?: undefined;
1480
1480
  chainId?: `0x${string}` | undefined;
1481
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
1481
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
1482
1482
  feeCurrency: `0x${string}` | null;
1483
1483
  gatewayFee: `0x${string}` | null;
1484
1484
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1527,7 +1527,7 @@ export declare const celo: {
1527
1527
  v?: `0x${string}` | undefined;
1528
1528
  accessList?: import("../../index.js").AccessList | undefined;
1529
1529
  chainId?: `0x${string}` | undefined;
1530
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
1530
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
1531
1531
  feeCurrency: `0x${string}` | null;
1532
1532
  gatewayFee: `0x${string}` | null;
1533
1533
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1551,7 +1551,7 @@ export declare const celo: {
1551
1551
  v?: `0x${string}` | undefined;
1552
1552
  accessList?: import("../../index.js").AccessList | undefined;
1553
1553
  chainId?: `0x${string}` | undefined;
1554
- } & Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
1554
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
1555
1555
  feeCurrency: `0x${string}` | null;
1556
1556
  gatewayFee: `0x${string}` | null;
1557
1557
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1575,7 +1575,7 @@ export declare const celo: {
1575
1575
  v?: `0x${string}` | undefined;
1576
1576
  accessList?: import("../../index.js").AccessList | undefined;
1577
1577
  chainId?: `0x${string}` | undefined;
1578
- } & Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
1578
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
1579
1579
  feeCurrency: `0x${string}` | null;
1580
1580
  gatewayFee: `0x${string}` | null;
1581
1581
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1624,7 +1624,7 @@ export declare const celo: {
1624
1624
  v?: `0x${string}` | undefined;
1625
1625
  accessList?: import("../../index.js").AccessList | undefined;
1626
1626
  chainId?: `0x${string}` | undefined;
1627
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
1627
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
1628
1628
  feeCurrency: `0x${string}` | null;
1629
1629
  gatewayFee: `0x${string}` | null;
1630
1630
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1648,7 +1648,7 @@ export declare const celo: {
1648
1648
  v?: `0x${string}` | undefined;
1649
1649
  accessList?: import("../../index.js").AccessList | undefined;
1650
1650
  chainId?: `0x${string}` | undefined;
1651
- } & Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
1651
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
1652
1652
  feeCurrency: `0x${string}` | null;
1653
1653
  gatewayFee: `0x${string}` | null;
1654
1654
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1672,7 +1672,7 @@ export declare const celo: {
1672
1672
  v?: `0x${string}` | undefined;
1673
1673
  accessList?: import("../../index.js").AccessList | undefined;
1674
1674
  chainId?: `0x${string}` | undefined;
1675
- } & Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
1675
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
1676
1676
  feeCurrency: `0x${string}` | null;
1677
1677
  gatewayFee: `0x${string}` | null;
1678
1678
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1898,7 +1898,7 @@ export declare const celo: {
1898
1898
  };
1899
1899
  readonly transactionReceipt: {
1900
1900
  exclude: [] | undefined;
1901
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../celo/types.js").CeloRpcTransactionReceiptOverrides>) => {
1901
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../utils.js").CeloRpcTransactionReceiptOverrides>) => {
1902
1902
  blockHash: `0x${string}`;
1903
1903
  blockNumber: bigint;
1904
1904
  contractAddress: `0x${string}` | null;
@@ -1921,7 +1921,7 @@ export declare const celo: {
1921
1921
  };
1922
1922
  readonly transactionRequest: {
1923
1923
  exclude: [] | undefined;
1924
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").TransactionRequest>, import("../celo/types.js").CeloTransactionRequest>) => ({
1924
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").TransactionRequest>, import("../utils.js").CeloTransactionRequest>) => ({
1925
1925
  data?: `0x${string}` | undefined;
1926
1926
  from: `0x${string}`;
1927
1927
  gas?: `0x${string}` | undefined;
@@ -38,8 +38,8 @@ export declare const celoAlfajores: {
38
38
  formatters?: {
39
39
  readonly block: {
40
40
  exclude: ("nonce" | "difficulty" | "gasLimit" | "mixHash" | "uncles")[] | undefined;
41
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcBlock>, import("../celo/types.js").CeloBlockOverrides & {
42
- transactions: `0x${string}`[] | import("../celo/types.js").CeloRpcTransaction[];
41
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcBlock>, import("../utils.js").CeloBlockOverrides & {
42
+ transactions: `0x${string}`[] | import("../utils.js").CeloRpcTransaction[];
43
43
  }>) => {
44
44
  baseFeePerGas: bigint | null;
45
45
  difficulty: bigint;
@@ -60,7 +60,7 @@ export declare const celoAlfajores: {
60
60
  stateRoot: `0x${string}`;
61
61
  timestamp: bigint;
62
62
  totalDifficulty: bigint | null;
63
- transactions: `0x${string}`[] | import("../celo/types.js").CeloTransaction[];
63
+ transactions: `0x${string}`[] | import("../utils.js").CeloTransaction[];
64
64
  transactionsRoot: `0x${string}`;
65
65
  uncles: `0x${string}`[];
66
66
  randomness: {
@@ -98,7 +98,7 @@ export declare const celoAlfajores: {
98
98
  v?: `0x${string}` | undefined;
99
99
  accessList?: undefined;
100
100
  chainId?: `0x${string}` | undefined;
101
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
101
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
102
102
  feeCurrency: `0x${string}` | null;
103
103
  gatewayFee: `0x${string}` | null;
104
104
  gatewayFeeRecipient: `0x${string}` | null;
@@ -147,7 +147,7 @@ export declare const celoAlfajores: {
147
147
  v?: `0x${string}` | undefined;
148
148
  accessList?: import("../../index.js").AccessList | undefined;
149
149
  chainId?: `0x${string}` | undefined;
150
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
150
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
151
151
  feeCurrency: `0x${string}` | null;
152
152
  gatewayFee: `0x${string}` | null;
153
153
  gatewayFeeRecipient: `0x${string}` | null;
@@ -171,7 +171,7 @@ export declare const celoAlfajores: {
171
171
  v?: `0x${string}` | undefined;
172
172
  accessList?: import("../../index.js").AccessList | undefined;
173
173
  chainId?: `0x${string}` | undefined;
174
- } & Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
174
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
175
175
  feeCurrency: `0x${string}` | null;
176
176
  gatewayFee: `0x${string}` | null;
177
177
  gatewayFeeRecipient: `0x${string}` | null;
@@ -195,7 +195,7 @@ export declare const celoAlfajores: {
195
195
  v?: `0x${string}` | undefined;
196
196
  accessList?: import("../../index.js").AccessList | undefined;
197
197
  chainId?: `0x${string}` | undefined;
198
- } & Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
198
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
199
199
  feeCurrency: `0x${string}` | null;
200
200
  gatewayFee: `0x${string}` | null;
201
201
  gatewayFeeRecipient: `0x${string}` | null;
@@ -244,7 +244,7 @@ export declare const celoAlfajores: {
244
244
  v?: `0x${string}` | undefined;
245
245
  accessList?: import("../../index.js").AccessList | undefined;
246
246
  chainId?: `0x${string}` | undefined;
247
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
247
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
248
248
  feeCurrency: `0x${string}` | null;
249
249
  gatewayFee: `0x${string}` | null;
250
250
  gatewayFeeRecipient: `0x${string}` | null;
@@ -268,7 +268,7 @@ export declare const celoAlfajores: {
268
268
  v?: `0x${string}` | undefined;
269
269
  accessList?: import("../../index.js").AccessList | undefined;
270
270
  chainId?: `0x${string}` | undefined;
271
- } & Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
271
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
272
272
  feeCurrency: `0x${string}` | null;
273
273
  gatewayFee: `0x${string}` | null;
274
274
  gatewayFeeRecipient: `0x${string}` | null;
@@ -292,7 +292,7 @@ export declare const celoAlfajores: {
292
292
  v?: `0x${string}` | undefined;
293
293
  accessList?: import("../../index.js").AccessList | undefined;
294
294
  chainId?: `0x${string}` | undefined;
295
- } & Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
295
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
296
296
  feeCurrency: `0x${string}` | null;
297
297
  gatewayFee: `0x${string}` | null;
298
298
  gatewayFeeRecipient: `0x${string}` | null;
@@ -518,7 +518,7 @@ export declare const celoAlfajores: {
518
518
  };
519
519
  readonly transactionReceipt: {
520
520
  exclude: [] | undefined;
521
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../celo/types.js").CeloRpcTransactionReceiptOverrides>) => {
521
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../utils.js").CeloRpcTransactionReceiptOverrides>) => {
522
522
  blockHash: `0x${string}`;
523
523
  blockNumber: bigint;
524
524
  contractAddress: `0x${string}` | null;
@@ -541,7 +541,7 @@ export declare const celoAlfajores: {
541
541
  };
542
542
  readonly transactionRequest: {
543
543
  exclude: [] | undefined;
544
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").TransactionRequest>, import("../celo/types.js").CeloTransactionRequest>) => ({
544
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").TransactionRequest>, import("../utils.js").CeloTransactionRequest>) => ({
545
545
  data?: `0x${string}` | undefined;
546
546
  from: `0x${string}`;
547
547
  gas?: `0x${string}` | undefined;
@@ -728,8 +728,8 @@ export declare const celoAlfajores: {
728
728
  serializers?: import("../../index.js").ChainSerializers<{
729
729
  readonly block: {
730
730
  exclude: ("nonce" | "difficulty" | "gasLimit" | "mixHash" | "uncles")[] | undefined;
731
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcBlock>, import("../celo/types.js").CeloBlockOverrides & {
732
- transactions: `0x${string}`[] | import("../celo/types.js").CeloRpcTransaction[];
731
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcBlock>, import("../utils.js").CeloBlockOverrides & {
732
+ transactions: `0x${string}`[] | import("../utils.js").CeloRpcTransaction[];
733
733
  }>) => {
734
734
  baseFeePerGas: bigint | null;
735
735
  difficulty: bigint;
@@ -750,7 +750,7 @@ export declare const celoAlfajores: {
750
750
  stateRoot: `0x${string}`;
751
751
  timestamp: bigint;
752
752
  totalDifficulty: bigint | null;
753
- transactions: `0x${string}`[] | import("../celo/types.js").CeloTransaction[];
753
+ transactions: `0x${string}`[] | import("../utils.js").CeloTransaction[];
754
754
  transactionsRoot: `0x${string}`;
755
755
  uncles: `0x${string}`[];
756
756
  randomness: {
@@ -788,7 +788,7 @@ export declare const celoAlfajores: {
788
788
  v?: `0x${string}` | undefined;
789
789
  accessList?: undefined;
790
790
  chainId?: `0x${string}` | undefined;
791
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
791
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
792
792
  feeCurrency: `0x${string}` | null;
793
793
  gatewayFee: `0x${string}` | null;
794
794
  gatewayFeeRecipient: `0x${string}` | null;
@@ -837,7 +837,7 @@ export declare const celoAlfajores: {
837
837
  v?: `0x${string}` | undefined;
838
838
  accessList?: import("../../index.js").AccessList | undefined;
839
839
  chainId?: `0x${string}` | undefined;
840
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
840
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
841
841
  feeCurrency: `0x${string}` | null;
842
842
  gatewayFee: `0x${string}` | null;
843
843
  gatewayFeeRecipient: `0x${string}` | null;
@@ -861,7 +861,7 @@ export declare const celoAlfajores: {
861
861
  v?: `0x${string}` | undefined;
862
862
  accessList?: import("../../index.js").AccessList | undefined;
863
863
  chainId?: `0x${string}` | undefined;
864
- } & Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
864
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
865
865
  feeCurrency: `0x${string}` | null;
866
866
  gatewayFee: `0x${string}` | null;
867
867
  gatewayFeeRecipient: `0x${string}` | null;
@@ -885,7 +885,7 @@ export declare const celoAlfajores: {
885
885
  v?: `0x${string}` | undefined;
886
886
  accessList?: import("../../index.js").AccessList | undefined;
887
887
  chainId?: `0x${string}` | undefined;
888
- } & Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
888
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
889
889
  feeCurrency: `0x${string}` | null;
890
890
  gatewayFee: `0x${string}` | null;
891
891
  gatewayFeeRecipient: `0x${string}` | null;
@@ -934,7 +934,7 @@ export declare const celoAlfajores: {
934
934
  v?: `0x${string}` | undefined;
935
935
  accessList?: import("../../index.js").AccessList | undefined;
936
936
  chainId?: `0x${string}` | undefined;
937
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
937
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
938
938
  feeCurrency: `0x${string}` | null;
939
939
  gatewayFee: `0x${string}` | null;
940
940
  gatewayFeeRecipient: `0x${string}` | null;
@@ -958,7 +958,7 @@ export declare const celoAlfajores: {
958
958
  v?: `0x${string}` | undefined;
959
959
  accessList?: import("../../index.js").AccessList | undefined;
960
960
  chainId?: `0x${string}` | undefined;
961
- } & Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
961
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
962
962
  feeCurrency: `0x${string}` | null;
963
963
  gatewayFee: `0x${string}` | null;
964
964
  gatewayFeeRecipient: `0x${string}` | null;
@@ -982,7 +982,7 @@ export declare const celoAlfajores: {
982
982
  v?: `0x${string}` | undefined;
983
983
  accessList?: import("../../index.js").AccessList | undefined;
984
984
  chainId?: `0x${string}` | undefined;
985
- } & Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
985
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
986
986
  feeCurrency: `0x${string}` | null;
987
987
  gatewayFee: `0x${string}` | null;
988
988
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1208,7 +1208,7 @@ export declare const celoAlfajores: {
1208
1208
  };
1209
1209
  readonly transactionReceipt: {
1210
1210
  exclude: [] | undefined;
1211
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../celo/types.js").CeloRpcTransactionReceiptOverrides>) => {
1211
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../utils.js").CeloRpcTransactionReceiptOverrides>) => {
1212
1212
  blockHash: `0x${string}`;
1213
1213
  blockNumber: bigint;
1214
1214
  contractAddress: `0x${string}` | null;
@@ -1231,7 +1231,7 @@ export declare const celoAlfajores: {
1231
1231
  };
1232
1232
  readonly transactionRequest: {
1233
1233
  exclude: [] | undefined;
1234
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").TransactionRequest>, import("../celo/types.js").CeloTransactionRequest>) => ({
1234
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").TransactionRequest>, import("../utils.js").CeloTransactionRequest>) => ({
1235
1235
  data?: `0x${string}` | undefined;
1236
1236
  from: `0x${string}`;
1237
1237
  gas?: `0x${string}` | undefined;
@@ -1418,8 +1418,8 @@ export declare const celoAlfajores: {
1418
1418
  fees?: import("../../index.js").ChainFees<{
1419
1419
  readonly block: {
1420
1420
  exclude: ("nonce" | "difficulty" | "gasLimit" | "mixHash" | "uncles")[] | undefined;
1421
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcBlock>, import("../celo/types.js").CeloBlockOverrides & {
1422
- transactions: `0x${string}`[] | import("../celo/types.js").CeloRpcTransaction[];
1421
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcBlock>, import("../utils.js").CeloBlockOverrides & {
1422
+ transactions: `0x${string}`[] | import("../utils.js").CeloRpcTransaction[];
1423
1423
  }>) => {
1424
1424
  baseFeePerGas: bigint | null;
1425
1425
  difficulty: bigint;
@@ -1440,7 +1440,7 @@ export declare const celoAlfajores: {
1440
1440
  stateRoot: `0x${string}`;
1441
1441
  timestamp: bigint;
1442
1442
  totalDifficulty: bigint | null;
1443
- transactions: `0x${string}`[] | import("../celo/types.js").CeloTransaction[];
1443
+ transactions: `0x${string}`[] | import("../utils.js").CeloTransaction[];
1444
1444
  transactionsRoot: `0x${string}`;
1445
1445
  uncles: `0x${string}`[];
1446
1446
  randomness: {
@@ -1478,7 +1478,7 @@ export declare const celoAlfajores: {
1478
1478
  v?: `0x${string}` | undefined;
1479
1479
  accessList?: undefined;
1480
1480
  chainId?: `0x${string}` | undefined;
1481
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
1481
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
1482
1482
  feeCurrency: `0x${string}` | null;
1483
1483
  gatewayFee: `0x${string}` | null;
1484
1484
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1527,7 +1527,7 @@ export declare const celoAlfajores: {
1527
1527
  v?: `0x${string}` | undefined;
1528
1528
  accessList?: import("../../index.js").AccessList | undefined;
1529
1529
  chainId?: `0x${string}` | undefined;
1530
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
1530
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
1531
1531
  feeCurrency: `0x${string}` | null;
1532
1532
  gatewayFee: `0x${string}` | null;
1533
1533
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1551,7 +1551,7 @@ export declare const celoAlfajores: {
1551
1551
  v?: `0x${string}` | undefined;
1552
1552
  accessList?: import("../../index.js").AccessList | undefined;
1553
1553
  chainId?: `0x${string}` | undefined;
1554
- } & Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
1554
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
1555
1555
  feeCurrency: `0x${string}` | null;
1556
1556
  gatewayFee: `0x${string}` | null;
1557
1557
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1575,7 +1575,7 @@ export declare const celoAlfajores: {
1575
1575
  v?: `0x${string}` | undefined;
1576
1576
  accessList?: import("../../index.js").AccessList | undefined;
1577
1577
  chainId?: `0x${string}` | undefined;
1578
- } & Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
1578
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
1579
1579
  feeCurrency: `0x${string}` | null;
1580
1580
  gatewayFee: `0x${string}` | null;
1581
1581
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1624,7 +1624,7 @@ export declare const celoAlfajores: {
1624
1624
  v?: `0x${string}` | undefined;
1625
1625
  accessList?: import("../../index.js").AccessList | undefined;
1626
1626
  chainId?: `0x${string}` | undefined;
1627
- } & Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
1627
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
1628
1628
  feeCurrency: `0x${string}` | null;
1629
1629
  gatewayFee: `0x${string}` | null;
1630
1630
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1648,7 +1648,7 @@ export declare const celoAlfajores: {
1648
1648
  v?: `0x${string}` | undefined;
1649
1649
  accessList?: import("../../index.js").AccessList | undefined;
1650
1650
  chainId?: `0x${string}` | undefined;
1651
- } & Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
1651
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
1652
1652
  feeCurrency: `0x${string}` | null;
1653
1653
  gatewayFee: `0x${string}` | null;
1654
1654
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1672,7 +1672,7 @@ export declare const celoAlfajores: {
1672
1672
  v?: `0x${string}` | undefined;
1673
1673
  accessList?: import("../../index.js").AccessList | undefined;
1674
1674
  chainId?: `0x${string}` | undefined;
1675
- } & Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
1675
+ } & import("../../types/utils.js").Omit<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
1676
1676
  feeCurrency: `0x${string}` | null;
1677
1677
  gatewayFee: `0x${string}` | null;
1678
1678
  gatewayFeeRecipient: `0x${string}` | null;
@@ -1898,7 +1898,7 @@ export declare const celoAlfajores: {
1898
1898
  };
1899
1899
  readonly transactionReceipt: {
1900
1900
  exclude: [] | undefined;
1901
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../celo/types.js").CeloRpcTransactionReceiptOverrides>) => {
1901
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../utils.js").CeloRpcTransactionReceiptOverrides>) => {
1902
1902
  blockHash: `0x${string}`;
1903
1903
  blockNumber: bigint;
1904
1904
  contractAddress: `0x${string}` | null;
@@ -1921,7 +1921,7 @@ export declare const celoAlfajores: {
1921
1921
  };
1922
1922
  readonly transactionRequest: {
1923
1923
  exclude: [] | undefined;
1924
- format: (args: import("../index.js").Assign<Partial<import("../../index.js").TransactionRequest>, import("../celo/types.js").CeloTransactionRequest>) => ({
1924
+ format: (args: import("../index.js").Assign<Partial<import("../../index.js").TransactionRequest>, import("../utils.js").CeloTransactionRequest>) => ({
1925
1925
  data?: `0x${string}` | undefined;
1926
1926
  from: `0x${string}`;
1927
1927
  gas?: `0x${string}` | undefined;