viem 2.43.5 → 2.44.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (229) hide show
  1. package/CHANGELOG.md +48 -0
  2. package/_cjs/account-abstraction/utils/userOperation/toPackedUserOperation.js +11 -1
  3. package/_cjs/account-abstraction/utils/userOperation/toPackedUserOperation.js.map +1 -1
  4. package/_cjs/actions/wallet/sendTransactionSync.js +1 -0
  5. package/_cjs/actions/wallet/sendTransactionSync.js.map +1 -1
  6. package/_cjs/chains/definitions/codex.js +47 -0
  7. package/_cjs/chains/definitions/codex.js.map +1 -0
  8. package/_cjs/chains/definitions/codexTestnet.js +47 -0
  9. package/_cjs/chains/definitions/codexTestnet.js.map +1 -0
  10. package/_cjs/chains/definitions/paseoPassetHub.js +26 -0
  11. package/_cjs/chains/definitions/paseoPassetHub.js.map +1 -0
  12. package/_cjs/chains/definitions/{tempoTestnet.js → tempoAndantino.js} +5 -5
  13. package/_cjs/chains/definitions/tempoAndantino.js.map +1 -0
  14. package/_cjs/chains/definitions/tempoDevnet.js +6 -0
  15. package/_cjs/chains/definitions/tempoDevnet.js.map +1 -1
  16. package/_cjs/chains/definitions/tempoModerato.js +28 -0
  17. package/_cjs/chains/definitions/tempoModerato.js.map +1 -0
  18. package/_cjs/chains/index.js +23 -14
  19. package/_cjs/chains/index.js.map +1 -1
  20. package/_cjs/errors/version.js +1 -1
  21. package/_cjs/index.js.map +1 -1
  22. package/_cjs/tempo/Abis.js +610 -752
  23. package/_cjs/tempo/Abis.js.map +1 -1
  24. package/_cjs/tempo/Addresses.js +2 -2
  25. package/_cjs/tempo/Addresses.js.map +1 -1
  26. package/_cjs/tempo/Decorator.js +5 -5
  27. package/_cjs/tempo/Decorator.js.map +1 -1
  28. package/_cjs/tempo/actions/amm.js +4 -38
  29. package/_cjs/tempo/actions/amm.js.map +1 -1
  30. package/_cjs/tempo/actions/dex.js +98 -46
  31. package/_cjs/tempo/actions/dex.js.map +1 -1
  32. package/_cjs/tempo/actions/nonce.js +0 -35
  33. package/_cjs/tempo/actions/nonce.js.map +1 -1
  34. package/_cjs/tempo/actions/reward.js +81 -62
  35. package/_cjs/tempo/actions/reward.js.map +1 -1
  36. package/_cjs/tempo/actions/token.js +11 -2
  37. package/_cjs/tempo/actions/token.js.map +1 -1
  38. package/_cjs/tempo/chainConfig.js +7 -6
  39. package/_cjs/tempo/chainConfig.js.map +1 -1
  40. package/_cjs/tempo/index.js +2 -1
  41. package/_cjs/tempo/index.js.map +1 -1
  42. package/_esm/account-abstraction/utils/userOperation/toPackedUserOperation.js +16 -2
  43. package/_esm/account-abstraction/utils/userOperation/toPackedUserOperation.js.map +1 -1
  44. package/_esm/actions/wallet/sendTransactionSync.js +1 -0
  45. package/_esm/actions/wallet/sendTransactionSync.js.map +1 -1
  46. package/_esm/chains/definitions/codex.js +44 -0
  47. package/_esm/chains/definitions/codex.js.map +1 -0
  48. package/_esm/chains/definitions/codexTestnet.js +44 -0
  49. package/_esm/chains/definitions/codexTestnet.js.map +1 -0
  50. package/_esm/chains/definitions/paseoPassetHub.js +23 -0
  51. package/_esm/chains/definitions/paseoPassetHub.js.map +1 -0
  52. package/_esm/chains/definitions/{tempoTestnet.js → tempoAndantino.js} +4 -4
  53. package/_esm/chains/definitions/tempoAndantino.js.map +1 -0
  54. package/_esm/chains/definitions/tempoDevnet.js +6 -0
  55. package/_esm/chains/definitions/tempoDevnet.js.map +1 -1
  56. package/_esm/chains/definitions/tempoModerato.js +25 -0
  57. package/_esm/chains/definitions/tempoModerato.js.map +1 -0
  58. package/_esm/chains/index.js +9 -1
  59. package/_esm/chains/index.js.map +1 -1
  60. package/_esm/errors/version.js +1 -1
  61. package/_esm/index.js.map +1 -1
  62. package/_esm/tempo/Abis.js +609 -751
  63. package/_esm/tempo/Abis.js.map +1 -1
  64. package/_esm/tempo/Addresses.js +1 -1
  65. package/_esm/tempo/Addresses.js.map +1 -1
  66. package/_esm/tempo/Decorator.js +5 -5
  67. package/_esm/tempo/Decorator.js.map +1 -1
  68. package/_esm/tempo/actions/amm.js +4 -62
  69. package/_esm/tempo/actions/amm.js.map +1 -1
  70. package/_esm/tempo/actions/dex.js +192 -48
  71. package/_esm/tempo/actions/dex.js.map +1 -1
  72. package/_esm/tempo/actions/nonce.js +0 -94
  73. package/_esm/tempo/actions/nonce.js.map +1 -1
  74. package/_esm/tempo/actions/reward.js +227 -189
  75. package/_esm/tempo/actions/reward.js.map +1 -1
  76. package/_esm/tempo/actions/token.js +11 -2
  77. package/_esm/tempo/actions/token.js.map +1 -1
  78. package/_esm/tempo/chainConfig.js +5 -3
  79. package/_esm/tempo/chainConfig.js.map +1 -1
  80. package/_esm/tempo/index.js +1 -1
  81. package/_esm/tempo/index.js.map +1 -1
  82. package/_types/account-abstraction/utils/userOperation/toPackedUserOperation.d.ts.map +1 -1
  83. package/_types/actions/wallet/sendTransactionSync.d.ts.map +1 -1
  84. package/_types/celo/chainConfig.d.ts +22 -22
  85. package/_types/celo/formatters.d.ts +11 -11
  86. package/_types/chains/definitions/abstract.d.ts +14 -14
  87. package/_types/chains/definitions/abstractTestnet.d.ts +14 -14
  88. package/_types/chains/definitions/ancient8.d.ts +3 -3
  89. package/_types/chains/definitions/ancient8Sepolia.d.ts +3 -3
  90. package/_types/chains/definitions/base.d.ts +6 -6
  91. package/_types/chains/definitions/baseGoerli.d.ts +3 -3
  92. package/_types/chains/definitions/baseSepolia.d.ts +6 -6
  93. package/_types/chains/definitions/blast.d.ts +3 -3
  94. package/_types/chains/definitions/bob.d.ts +3 -3
  95. package/_types/chains/definitions/bobSepolia.d.ts +3 -3
  96. package/_types/chains/definitions/celo.d.ts +22 -22
  97. package/_types/chains/definitions/celoAlfajores.d.ts +22 -22
  98. package/_types/chains/definitions/celoSepolia.d.ts +22 -22
  99. package/_types/chains/definitions/codex.d.ts +310 -0
  100. package/_types/chains/definitions/codex.d.ts.map +1 -0
  101. package/_types/chains/definitions/codexTestnet.d.ts +310 -0
  102. package/_types/chains/definitions/codexTestnet.d.ts.map +1 -0
  103. package/_types/chains/definitions/dchain.d.ts +3 -3
  104. package/_types/chains/definitions/dchainTestnet.d.ts +3 -3
  105. package/_types/chains/definitions/elysiumTestnet.d.ts +3 -3
  106. package/_types/chains/definitions/fraxtal.d.ts +3 -3
  107. package/_types/chains/definitions/fraxtalTestnet.d.ts +3 -3
  108. package/_types/chains/definitions/funkiMainnet.d.ts +3 -3
  109. package/_types/chains/definitions/funkiSepolia.d.ts +3 -3
  110. package/_types/chains/definitions/garnet.d.ts +3 -3
  111. package/_types/chains/definitions/giwaSepolia.d.ts +6 -6
  112. package/_types/chains/definitions/ink.d.ts +3 -3
  113. package/_types/chains/definitions/inkSepolia.d.ts +3 -3
  114. package/_types/chains/definitions/lisk.d.ts +3 -3
  115. package/_types/chains/definitions/liskSepolia.d.ts +3 -3
  116. package/_types/chains/definitions/metalL2.d.ts +3 -3
  117. package/_types/chains/definitions/mode.d.ts +3 -3
  118. package/_types/chains/definitions/modeTestnet.d.ts +3 -3
  119. package/_types/chains/definitions/optimism.d.ts +3 -3
  120. package/_types/chains/definitions/optimismGoerli.d.ts +3 -3
  121. package/_types/chains/definitions/optimismSepolia.d.ts +3 -3
  122. package/_types/chains/definitions/paseoPassetHub.d.ts +48 -0
  123. package/_types/chains/definitions/paseoPassetHub.d.ts.map +1 -0
  124. package/_types/chains/definitions/pgn.d.ts +3 -3
  125. package/_types/chains/definitions/pgnTestnet.d.ts +3 -3
  126. package/_types/chains/definitions/playfiAlbireo.d.ts +14 -14
  127. package/_types/chains/definitions/pyrope.d.ts +3 -3
  128. package/_types/chains/definitions/redstone.d.ts +3 -3
  129. package/_types/chains/definitions/rss3.d.ts +3 -3
  130. package/_types/chains/definitions/rss3Sepolia.d.ts +3 -3
  131. package/_types/chains/definitions/shape.d.ts +3 -3
  132. package/_types/chains/definitions/shapeSepolia.d.ts +3 -3
  133. package/_types/chains/definitions/snax.d.ts +3 -3
  134. package/_types/chains/definitions/snaxTestnet.d.ts +3 -3
  135. package/_types/chains/definitions/soneium.d.ts +3 -3
  136. package/_types/chains/definitions/soneiumMinato.d.ts +3 -3
  137. package/_types/chains/definitions/sophon.d.ts +14 -14
  138. package/_types/chains/definitions/sophonTestnet.d.ts +14 -14
  139. package/_types/chains/definitions/superseed.d.ts +3 -3
  140. package/_types/chains/definitions/superseedSepolia.d.ts +3 -3
  141. package/_types/chains/definitions/swellchain.d.ts +3 -3
  142. package/_types/chains/definitions/swellchainTestnet.d.ts +3 -3
  143. package/_types/chains/definitions/{tempoTestnet.d.ts → tempoAndantino.d.ts} +34 -34
  144. package/_types/chains/definitions/tempoAndantino.d.ts.map +1 -0
  145. package/_types/chains/definitions/tempoDevnet.d.ts +39 -39
  146. package/_types/chains/definitions/tempoDevnet.d.ts.map +1 -1
  147. package/_types/chains/definitions/tempoLocalnet.d.ts +28 -28
  148. package/_types/chains/definitions/tempoModerato.d.ts +916 -0
  149. package/_types/chains/definitions/{tempoTestnet.d.ts.map → tempoModerato.d.ts.map} +1 -1
  150. package/_types/chains/definitions/treasure.d.ts +14 -14
  151. package/_types/chains/definitions/treasureTopaz.d.ts +14 -14
  152. package/_types/chains/definitions/unichain.d.ts +3 -3
  153. package/_types/chains/definitions/unichainSepolia.d.ts +3 -3
  154. package/_types/chains/definitions/worldchain.d.ts +3 -3
  155. package/_types/chains/definitions/worldchainSepolia.d.ts +3 -3
  156. package/_types/chains/definitions/zircuit.d.ts +3 -3
  157. package/_types/chains/definitions/zircuitGarfieldTestnet.d.ts +3 -3
  158. package/_types/chains/definitions/zircuitTestnet.d.ts +3 -3
  159. package/_types/chains/definitions/zksync.d.ts +14 -14
  160. package/_types/chains/definitions/zksyncInMemoryNode.d.ts +14 -14
  161. package/_types/chains/definitions/zksyncLocalCustomHyperchain.d.ts +14 -14
  162. package/_types/chains/definitions/zksyncLocalHyperchain.d.ts +14 -14
  163. package/_types/chains/definitions/zksyncLocalNode.d.ts +14 -14
  164. package/_types/chains/definitions/zksyncSepoliaTestnet.d.ts +14 -14
  165. package/_types/chains/definitions/zora.d.ts +3 -3
  166. package/_types/chains/definitions/zoraSepolia.d.ts +3 -3
  167. package/_types/chains/definitions/zoraTestnet.d.ts +3 -3
  168. package/_types/chains/index.d.ts +9 -1
  169. package/_types/chains/index.d.ts.map +1 -1
  170. package/_types/errors/version.d.ts +1 -1
  171. package/_types/index.d.ts +2 -0
  172. package/_types/index.d.ts.map +1 -1
  173. package/_types/op-stack/chainConfig.d.ts +3 -3
  174. package/_types/op-stack/formatters.d.ts +3 -3
  175. package/_types/tempo/Abis.d.ts +937 -1194
  176. package/_types/tempo/Abis.d.ts.map +1 -1
  177. package/_types/tempo/Addresses.d.ts +1 -1
  178. package/_types/tempo/Addresses.d.ts.map +1 -1
  179. package/_types/tempo/Decorator.d.ts +91 -85
  180. package/_types/tempo/Decorator.d.ts.map +1 -1
  181. package/_types/tempo/actions/amm.d.ts +19 -360
  182. package/_types/tempo/actions/amm.d.ts.map +1 -1
  183. package/_types/tempo/actions/dex.d.ts +765 -237
  184. package/_types/tempo/actions/dex.d.ts.map +1 -1
  185. package/_types/tempo/actions/fee.d.ts +30 -11
  186. package/_types/tempo/actions/fee.d.ts.map +1 -1
  187. package/_types/tempo/actions/nonce.d.ts +0 -105
  188. package/_types/tempo/actions/nonce.d.ts.map +1 -1
  189. package/_types/tempo/actions/policy.d.ts +60 -0
  190. package/_types/tempo/actions/policy.d.ts.map +1 -1
  191. package/_types/tempo/actions/reward.d.ts +350 -526
  192. package/_types/tempo/actions/reward.d.ts.map +1 -1
  193. package/_types/tempo/actions/token.d.ts +368 -1984
  194. package/_types/tempo/actions/token.d.ts.map +1 -1
  195. package/_types/tempo/chainConfig.d.ts +15 -16
  196. package/_types/tempo/chainConfig.d.ts.map +1 -1
  197. package/_types/tempo/index.d.ts +1 -1
  198. package/_types/tempo/index.d.ts.map +1 -1
  199. package/_types/tempo/internal/types.d.ts +1 -1
  200. package/_types/tempo/internal/types.d.ts.map +1 -1
  201. package/_types/utils/formatters/transaction.d.ts +1 -1
  202. package/_types/utils/formatters/transactionRequest.d.ts +1 -1
  203. package/_types/zksync/chainConfig.d.ts +14 -14
  204. package/_types/zksync/formatters.d.ts +14 -14
  205. package/account-abstraction/utils/userOperation/toPackedUserOperation.ts +17 -2
  206. package/actions/wallet/sendTransactionSync.ts +1 -0
  207. package/chains/definitions/codex.ts +45 -0
  208. package/chains/definitions/codexTestnet.ts +45 -0
  209. package/chains/definitions/paseoPassetHub.ts +23 -0
  210. package/chains/definitions/{tempoTestnet.ts → tempoAndantino.ts} +3 -3
  211. package/chains/definitions/tempoDevnet.ts +6 -0
  212. package/chains/definitions/tempoModerato.ts +25 -0
  213. package/chains/index.ts +10 -1
  214. package/errors/version.ts +1 -1
  215. package/index.ts +9 -0
  216. package/package.json +2 -2
  217. package/tempo/Abis.ts +607 -752
  218. package/tempo/Addresses.ts +1 -1
  219. package/tempo/Decorator.ts +115 -106
  220. package/tempo/actions/amm.ts +13 -115
  221. package/tempo/actions/dex.ts +274 -72
  222. package/tempo/actions/nonce.ts +0 -148
  223. package/tempo/actions/reward.ts +310 -257
  224. package/tempo/actions/token.ts +16 -2
  225. package/tempo/chainConfig.ts +7 -4
  226. package/tempo/index.ts +1 -1
  227. package/tempo/internal/types.ts +6 -1
  228. package/_cjs/chains/definitions/tempoTestnet.js.map +0 -1
  229. package/_esm/chains/definitions/tempoTestnet.js.map +0 -1
@@ -127,16 +127,16 @@ export declare const ancient8: {
127
127
  r: import("../../index.js").Hex;
128
128
  s: import("../../index.js").Hex;
129
129
  v: bigint;
130
- value: bigint;
131
- gas: bigint;
132
130
  to: import("abitype").Address | null;
133
131
  from: import("abitype").Address;
132
+ gas: bigint;
134
133
  nonce: number;
134
+ value: bigint;
135
135
  blockHash: `0x${string}` | null;
136
136
  blockNumber: bigint | null;
137
- transactionIndex: number | null;
138
137
  hash: import("../../index.js").Hash;
139
138
  input: import("../../index.js").Hex;
139
+ transactionIndex: number | null;
140
140
  typeHex: import("../../index.js").Hex | null;
141
141
  accessList?: undefined | undefined;
142
142
  authorizationList?: undefined | undefined;
@@ -127,16 +127,16 @@ export declare const ancient8Sepolia: {
127
127
  r: import("../../index.js").Hex;
128
128
  s: import("../../index.js").Hex;
129
129
  v: bigint;
130
- value: bigint;
131
- gas: bigint;
132
130
  to: import("abitype").Address | null;
133
131
  from: import("abitype").Address;
132
+ gas: bigint;
134
133
  nonce: number;
134
+ value: bigint;
135
135
  blockHash: `0x${string}` | null;
136
136
  blockNumber: bigint | null;
137
- transactionIndex: number | null;
138
137
  hash: import("../../index.js").Hash;
139
138
  input: import("../../index.js").Hex;
139
+ transactionIndex: number | null;
140
140
  typeHex: import("../../index.js").Hex | null;
141
141
  accessList?: undefined | undefined;
142
142
  authorizationList?: undefined | undefined;
@@ -136,16 +136,16 @@ export declare const base: {
136
136
  r: import("../../index.js").Hex;
137
137
  s: import("../../index.js").Hex;
138
138
  v: bigint;
139
- value: bigint;
140
- gas: bigint;
141
139
  to: import("abitype").Address | null;
142
140
  from: import("abitype").Address;
141
+ gas: bigint;
143
142
  nonce: number;
143
+ value: bigint;
144
144
  blockHash: `0x${string}` | null;
145
145
  blockNumber: bigint | null;
146
- transactionIndex: number | null;
147
146
  hash: import("../../index.js").Hash;
148
147
  input: import("../../index.js").Hex;
148
+ transactionIndex: number | null;
149
149
  typeHex: import("../../index.js").Hex | null;
150
150
  accessList?: undefined | undefined;
151
151
  authorizationList?: undefined | undefined;
@@ -453,16 +453,16 @@ export declare const basePreconf: {
453
453
  r: import("../../index.js").Hex;
454
454
  s: import("../../index.js").Hex;
455
455
  v: bigint;
456
- value: bigint;
457
- gas: bigint;
458
456
  to: import("abitype").Address | null;
459
457
  from: import("abitype").Address;
458
+ gas: bigint;
460
459
  nonce: number;
460
+ value: bigint;
461
461
  blockHash: `0x${string}` | null;
462
462
  blockNumber: bigint | null;
463
- transactionIndex: number | null;
464
463
  hash: import("../../index.js").Hash;
465
464
  input: import("../../index.js").Hex;
465
+ transactionIndex: number | null;
466
466
  typeHex: import("../../index.js").Hex | null;
467
467
  accessList?: undefined | undefined;
468
468
  authorizationList?: undefined | undefined;
@@ -129,16 +129,16 @@ export declare const baseGoerli: {
129
129
  r: import("../../index.js").Hex;
130
130
  s: import("../../index.js").Hex;
131
131
  v: bigint;
132
- value: bigint;
133
- gas: bigint;
134
132
  to: import("abitype").Address | null;
135
133
  from: import("abitype").Address;
134
+ gas: bigint;
136
135
  nonce: number;
136
+ value: bigint;
137
137
  blockHash: `0x${string}` | null;
138
138
  blockNumber: bigint | null;
139
- transactionIndex: number | null;
140
139
  hash: import("../../index.js").Hash;
141
140
  input: import("../../index.js").Hex;
141
+ transactionIndex: number | null;
142
142
  typeHex: import("../../index.js").Hex | null;
143
143
  accessList?: undefined | undefined;
144
144
  authorizationList?: undefined | undefined;
@@ -136,16 +136,16 @@ export declare const baseSepolia: {
136
136
  r: import("../../index.js").Hex;
137
137
  s: import("../../index.js").Hex;
138
138
  v: bigint;
139
- value: bigint;
140
- gas: bigint;
141
139
  to: import("abitype").Address | null;
142
140
  from: import("abitype").Address;
141
+ gas: bigint;
143
142
  nonce: number;
143
+ value: bigint;
144
144
  blockHash: `0x${string}` | null;
145
145
  blockNumber: bigint | null;
146
- transactionIndex: number | null;
147
146
  hash: import("../../index.js").Hash;
148
147
  input: import("../../index.js").Hex;
148
+ transactionIndex: number | null;
149
149
  typeHex: import("../../index.js").Hex | null;
150
150
  accessList?: undefined | undefined;
151
151
  authorizationList?: undefined | undefined;
@@ -454,16 +454,16 @@ export declare const baseSepoliaPreconf: {
454
454
  r: import("../../index.js").Hex;
455
455
  s: import("../../index.js").Hex;
456
456
  v: bigint;
457
- value: bigint;
458
- gas: bigint;
459
457
  to: import("abitype").Address | null;
460
458
  from: import("abitype").Address;
459
+ gas: bigint;
461
460
  nonce: number;
461
+ value: bigint;
462
462
  blockHash: `0x${string}` | null;
463
463
  blockNumber: bigint | null;
464
- transactionIndex: number | null;
465
464
  hash: import("../../index.js").Hash;
466
465
  input: import("../../index.js").Hex;
466
+ transactionIndex: number | null;
467
467
  typeHex: import("../../index.js").Hex | null;
468
468
  accessList?: undefined | undefined;
469
469
  authorizationList?: undefined | undefined;
@@ -132,16 +132,16 @@ export declare const blast: {
132
132
  r: import("../../index.js").Hex;
133
133
  s: import("../../index.js").Hex;
134
134
  v: bigint;
135
- value: bigint;
136
- gas: bigint;
137
135
  to: import("abitype").Address | null;
138
136
  from: import("abitype").Address;
137
+ gas: bigint;
139
138
  nonce: number;
139
+ value: bigint;
140
140
  blockHash: `0x${string}` | null;
141
141
  blockNumber: bigint | null;
142
- transactionIndex: number | null;
143
142
  hash: import("../../index.js").Hash;
144
143
  input: import("../../index.js").Hex;
144
+ transactionIndex: number | null;
145
145
  typeHex: import("../../index.js").Hex | null;
146
146
  accessList?: undefined | undefined;
147
147
  authorizationList?: undefined | undefined;
@@ -126,16 +126,16 @@ export declare const bob: {
126
126
  r: import("../../index.js").Hex;
127
127
  s: import("../../index.js").Hex;
128
128
  v: bigint;
129
- value: bigint;
130
- gas: bigint;
131
129
  to: import("abitype").Address | null;
132
130
  from: import("abitype").Address;
131
+ gas: bigint;
133
132
  nonce: number;
133
+ value: bigint;
134
134
  blockHash: `0x${string}` | null;
135
135
  blockNumber: bigint | null;
136
- transactionIndex: number | null;
137
136
  hash: import("../../index.js").Hash;
138
137
  input: import("../../index.js").Hex;
138
+ transactionIndex: number | null;
139
139
  typeHex: import("../../index.js").Hex | null;
140
140
  accessList?: undefined | undefined;
141
141
  authorizationList?: undefined | undefined;
@@ -126,16 +126,16 @@ export declare const bobSepolia: {
126
126
  r: import("../../index.js").Hex;
127
127
  s: import("../../index.js").Hex;
128
128
  v: bigint;
129
- value: bigint;
130
- gas: bigint;
131
129
  to: import("abitype").Address | null;
132
130
  from: import("abitype").Address;
131
+ gas: bigint;
133
132
  nonce: number;
133
+ value: bigint;
134
134
  blockHash: `0x${string}` | null;
135
135
  blockNumber: bigint | null;
136
- transactionIndex: number | null;
137
136
  hash: import("../../index.js").Hash;
138
137
  input: import("../../index.js").Hex;
138
+ transactionIndex: number | null;
139
139
  typeHex: import("../../index.js").Hex | null;
140
140
  accessList?: undefined | undefined;
141
141
  authorizationList?: undefined | undefined;
@@ -71,16 +71,16 @@ export declare const celo: {
71
71
  r: import("../../index.js").Hex;
72
72
  s: import("../../index.js").Hex;
73
73
  v: bigint;
74
- value: bigint;
75
- gas: bigint;
76
74
  to: import("abitype").Address | null;
77
75
  from: import("abitype").Address;
76
+ gas: bigint;
78
77
  nonce: number;
78
+ value: bigint;
79
79
  blockHash: `0x${string}` | null;
80
80
  blockNumber: bigint | null;
81
- transactionIndex: number | null;
82
81
  hash: import("../../index.js").Hash;
83
82
  input: import("../../index.js").Hex;
83
+ transactionIndex: number | null;
84
84
  typeHex: import("../../index.js").Hex | null;
85
85
  accessList?: undefined | undefined;
86
86
  authorizationList?: undefined | undefined;
@@ -380,10 +380,10 @@ export declare const celo: {
380
380
  } | {
381
381
  type?: "0x3" | undefined;
382
382
  data?: `0x${string}` | undefined;
383
- value?: `0x${string}` | undefined;
384
- gas?: `0x${string}` | undefined;
385
383
  from?: `0x${string}` | undefined;
384
+ gas?: `0x${string}` | undefined;
386
385
  nonce?: `0x${string}` | undefined;
386
+ value?: `0x${string}` | undefined;
387
387
  to: `0x${string}` | null;
388
388
  gasPrice?: undefined | undefined;
389
389
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -399,10 +399,10 @@ export declare const celo: {
399
399
  } | {
400
400
  type?: "0x3" | undefined;
401
401
  data?: `0x${string}` | undefined;
402
- value?: `0x${string}` | undefined;
403
- gas?: `0x${string}` | undefined;
404
402
  from?: `0x${string}` | undefined;
403
+ gas?: `0x${string}` | undefined;
405
404
  nonce?: `0x${string}` | undefined;
405
+ value?: `0x${string}` | undefined;
406
406
  to: `0x${string}` | null;
407
407
  gasPrice?: undefined | undefined;
408
408
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -416,17 +416,17 @@ export declare const celo: {
416
416
  authorizationList?: undefined;
417
417
  feeCurrency?: `0x${string}` | undefined;
418
418
  } | {
419
+ type?: "0x4" | undefined;
419
420
  gasPrice?: undefined | undefined;
420
421
  maxFeePerBlobGas?: undefined | undefined;
421
422
  maxFeePerGas?: `0x${string}` | undefined;
422
423
  maxPriorityFeePerGas?: `0x${string}` | undefined;
423
- type?: "0x4" | undefined;
424
- data?: `0x${string}` | undefined;
425
- value?: `0x${string}` | undefined;
426
- gas?: `0x${string}` | undefined;
427
424
  to?: `0x${string}` | null | undefined;
425
+ data?: `0x${string}` | undefined;
428
426
  from?: `0x${string}` | undefined;
427
+ gas?: `0x${string}` | undefined;
429
428
  nonce?: `0x${string}` | undefined;
429
+ value?: `0x${string}` | undefined;
430
430
  accessList?: import("../../index.js").AccessList | undefined;
431
431
  authorizationList?: import("../../index.js").RpcAuthorizationList | undefined;
432
432
  blobs?: undefined;
@@ -497,16 +497,16 @@ export declare const celo: {
497
497
  r: import("../../index.js").Hex;
498
498
  s: import("../../index.js").Hex;
499
499
  v: bigint;
500
- value: bigint;
501
- gas: bigint;
502
500
  to: import("abitype").Address | null;
503
501
  from: import("abitype").Address;
502
+ gas: bigint;
504
503
  nonce: number;
504
+ value: bigint;
505
505
  blockHash: `0x${string}` | null;
506
506
  blockNumber: bigint | null;
507
- transactionIndex: number | null;
508
507
  hash: import("../../index.js").Hash;
509
508
  input: import("../../index.js").Hex;
509
+ transactionIndex: number | null;
510
510
  typeHex: import("../../index.js").Hex | null;
511
511
  accessList?: undefined | undefined;
512
512
  authorizationList?: undefined | undefined;
@@ -806,10 +806,10 @@ export declare const celo: {
806
806
  } | {
807
807
  type?: "0x3" | undefined;
808
808
  data?: `0x${string}` | undefined;
809
- value?: `0x${string}` | undefined;
810
- gas?: `0x${string}` | undefined;
811
809
  from?: `0x${string}` | undefined;
810
+ gas?: `0x${string}` | undefined;
812
811
  nonce?: `0x${string}` | undefined;
812
+ value?: `0x${string}` | undefined;
813
813
  to: `0x${string}` | null;
814
814
  gasPrice?: undefined | undefined;
815
815
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -825,10 +825,10 @@ export declare const celo: {
825
825
  } | {
826
826
  type?: "0x3" | undefined;
827
827
  data?: `0x${string}` | undefined;
828
- value?: `0x${string}` | undefined;
829
- gas?: `0x${string}` | undefined;
830
828
  from?: `0x${string}` | undefined;
829
+ gas?: `0x${string}` | undefined;
831
830
  nonce?: `0x${string}` | undefined;
831
+ value?: `0x${string}` | undefined;
832
832
  to: `0x${string}` | null;
833
833
  gasPrice?: undefined | undefined;
834
834
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -842,17 +842,17 @@ export declare const celo: {
842
842
  authorizationList?: undefined;
843
843
  feeCurrency?: `0x${string}` | undefined;
844
844
  } | {
845
+ type?: "0x4" | undefined;
845
846
  gasPrice?: undefined | undefined;
846
847
  maxFeePerBlobGas?: undefined | undefined;
847
848
  maxFeePerGas?: `0x${string}` | undefined;
848
849
  maxPriorityFeePerGas?: `0x${string}` | undefined;
849
- type?: "0x4" | undefined;
850
- data?: `0x${string}` | undefined;
851
- value?: `0x${string}` | undefined;
852
- gas?: `0x${string}` | undefined;
853
850
  to?: `0x${string}` | null | undefined;
851
+ data?: `0x${string}` | undefined;
854
852
  from?: `0x${string}` | undefined;
853
+ gas?: `0x${string}` | undefined;
855
854
  nonce?: `0x${string}` | undefined;
855
+ value?: `0x${string}` | undefined;
856
856
  accessList?: import("../../index.js").AccessList | undefined;
857
857
  authorizationList?: import("../../index.js").RpcAuthorizationList | undefined;
858
858
  blobs?: undefined;
@@ -113,16 +113,16 @@ export declare const celoAlfajores: {
113
113
  r: import("../../index.js").Hex;
114
114
  s: import("../../index.js").Hex;
115
115
  v: bigint;
116
- value: bigint;
117
- gas: bigint;
118
116
  to: import("abitype").Address | null;
119
117
  from: import("abitype").Address;
118
+ gas: bigint;
120
119
  nonce: number;
120
+ value: bigint;
121
121
  blockHash: `0x${string}` | null;
122
122
  blockNumber: bigint | null;
123
- transactionIndex: number | null;
124
123
  hash: import("../../index.js").Hash;
125
124
  input: import("../../index.js").Hex;
125
+ transactionIndex: number | null;
126
126
  typeHex: import("../../index.js").Hex | null;
127
127
  accessList?: undefined | undefined;
128
128
  authorizationList?: undefined | undefined;
@@ -422,10 +422,10 @@ export declare const celoAlfajores: {
422
422
  } | {
423
423
  type?: "0x3" | undefined;
424
424
  data?: `0x${string}` | undefined;
425
- value?: `0x${string}` | undefined;
426
- gas?: `0x${string}` | undefined;
427
425
  from?: `0x${string}` | undefined;
426
+ gas?: `0x${string}` | undefined;
428
427
  nonce?: `0x${string}` | undefined;
428
+ value?: `0x${string}` | undefined;
429
429
  to: `0x${string}` | null;
430
430
  gasPrice?: undefined | undefined;
431
431
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -441,10 +441,10 @@ export declare const celoAlfajores: {
441
441
  } | {
442
442
  type?: "0x3" | undefined;
443
443
  data?: `0x${string}` | undefined;
444
- value?: `0x${string}` | undefined;
445
- gas?: `0x${string}` | undefined;
446
444
  from?: `0x${string}` | undefined;
445
+ gas?: `0x${string}` | undefined;
447
446
  nonce?: `0x${string}` | undefined;
447
+ value?: `0x${string}` | undefined;
448
448
  to: `0x${string}` | null;
449
449
  gasPrice?: undefined | undefined;
450
450
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -458,17 +458,17 @@ export declare const celoAlfajores: {
458
458
  authorizationList?: undefined;
459
459
  feeCurrency?: `0x${string}` | undefined;
460
460
  } | {
461
+ type?: "0x4" | undefined;
461
462
  gasPrice?: undefined | undefined;
462
463
  maxFeePerBlobGas?: undefined | undefined;
463
464
  maxFeePerGas?: `0x${string}` | undefined;
464
465
  maxPriorityFeePerGas?: `0x${string}` | undefined;
465
- type?: "0x4" | undefined;
466
- data?: `0x${string}` | undefined;
467
- value?: `0x${string}` | undefined;
468
- gas?: `0x${string}` | undefined;
469
466
  to?: `0x${string}` | null | undefined;
467
+ data?: `0x${string}` | undefined;
470
468
  from?: `0x${string}` | undefined;
469
+ gas?: `0x${string}` | undefined;
471
470
  nonce?: `0x${string}` | undefined;
471
+ value?: `0x${string}` | undefined;
472
472
  accessList?: import("../../index.js").AccessList | undefined;
473
473
  authorizationList?: import("../../index.js").RpcAuthorizationList | undefined;
474
474
  blobs?: undefined;
@@ -539,16 +539,16 @@ export declare const celoAlfajores: {
539
539
  r: import("../../index.js").Hex;
540
540
  s: import("../../index.js").Hex;
541
541
  v: bigint;
542
- value: bigint;
543
- gas: bigint;
544
542
  to: import("abitype").Address | null;
545
543
  from: import("abitype").Address;
544
+ gas: bigint;
546
545
  nonce: number;
546
+ value: bigint;
547
547
  blockHash: `0x${string}` | null;
548
548
  blockNumber: bigint | null;
549
- transactionIndex: number | null;
550
549
  hash: import("../../index.js").Hash;
551
550
  input: import("../../index.js").Hex;
551
+ transactionIndex: number | null;
552
552
  typeHex: import("../../index.js").Hex | null;
553
553
  accessList?: undefined | undefined;
554
554
  authorizationList?: undefined | undefined;
@@ -848,10 +848,10 @@ export declare const celoAlfajores: {
848
848
  } | {
849
849
  type?: "0x3" | undefined;
850
850
  data?: `0x${string}` | undefined;
851
- value?: `0x${string}` | undefined;
852
- gas?: `0x${string}` | undefined;
853
851
  from?: `0x${string}` | undefined;
852
+ gas?: `0x${string}` | undefined;
854
853
  nonce?: `0x${string}` | undefined;
854
+ value?: `0x${string}` | undefined;
855
855
  to: `0x${string}` | null;
856
856
  gasPrice?: undefined | undefined;
857
857
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -867,10 +867,10 @@ export declare const celoAlfajores: {
867
867
  } | {
868
868
  type?: "0x3" | undefined;
869
869
  data?: `0x${string}` | undefined;
870
- value?: `0x${string}` | undefined;
871
- gas?: `0x${string}` | undefined;
872
870
  from?: `0x${string}` | undefined;
871
+ gas?: `0x${string}` | undefined;
873
872
  nonce?: `0x${string}` | undefined;
873
+ value?: `0x${string}` | undefined;
874
874
  to: `0x${string}` | null;
875
875
  gasPrice?: undefined | undefined;
876
876
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -884,17 +884,17 @@ export declare const celoAlfajores: {
884
884
  authorizationList?: undefined;
885
885
  feeCurrency?: `0x${string}` | undefined;
886
886
  } | {
887
+ type?: "0x4" | undefined;
887
888
  gasPrice?: undefined | undefined;
888
889
  maxFeePerBlobGas?: undefined | undefined;
889
890
  maxFeePerGas?: `0x${string}` | undefined;
890
891
  maxPriorityFeePerGas?: `0x${string}` | undefined;
891
- type?: "0x4" | undefined;
892
- data?: `0x${string}` | undefined;
893
- value?: `0x${string}` | undefined;
894
- gas?: `0x${string}` | undefined;
895
892
  to?: `0x${string}` | null | undefined;
893
+ data?: `0x${string}` | undefined;
896
894
  from?: `0x${string}` | undefined;
895
+ gas?: `0x${string}` | undefined;
897
896
  nonce?: `0x${string}` | undefined;
897
+ value?: `0x${string}` | undefined;
898
898
  accessList?: import("../../index.js").AccessList | undefined;
899
899
  authorizationList?: import("../../index.js").RpcAuthorizationList | undefined;
900
900
  blobs?: undefined;
@@ -107,16 +107,16 @@ export declare const celoSepolia: {
107
107
  r: import("../../index.js").Hex;
108
108
  s: import("../../index.js").Hex;
109
109
  v: bigint;
110
- value: bigint;
111
- gas: bigint;
112
110
  to: import("abitype").Address | null;
113
111
  from: import("abitype").Address;
112
+ gas: bigint;
114
113
  nonce: number;
114
+ value: bigint;
115
115
  blockHash: `0x${string}` | null;
116
116
  blockNumber: bigint | null;
117
- transactionIndex: number | null;
118
117
  hash: import("../../index.js").Hash;
119
118
  input: import("../../index.js").Hex;
119
+ transactionIndex: number | null;
120
120
  typeHex: import("../../index.js").Hex | null;
121
121
  accessList?: undefined | undefined;
122
122
  authorizationList?: undefined | undefined;
@@ -416,10 +416,10 @@ export declare const celoSepolia: {
416
416
  } | {
417
417
  type?: "0x3" | undefined;
418
418
  data?: `0x${string}` | undefined;
419
- value?: `0x${string}` | undefined;
420
- gas?: `0x${string}` | undefined;
421
419
  from?: `0x${string}` | undefined;
420
+ gas?: `0x${string}` | undefined;
422
421
  nonce?: `0x${string}` | undefined;
422
+ value?: `0x${string}` | undefined;
423
423
  to: `0x${string}` | null;
424
424
  gasPrice?: undefined | undefined;
425
425
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -435,10 +435,10 @@ export declare const celoSepolia: {
435
435
  } | {
436
436
  type?: "0x3" | undefined;
437
437
  data?: `0x${string}` | undefined;
438
- value?: `0x${string}` | undefined;
439
- gas?: `0x${string}` | undefined;
440
438
  from?: `0x${string}` | undefined;
439
+ gas?: `0x${string}` | undefined;
441
440
  nonce?: `0x${string}` | undefined;
441
+ value?: `0x${string}` | undefined;
442
442
  to: `0x${string}` | null;
443
443
  gasPrice?: undefined | undefined;
444
444
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -452,17 +452,17 @@ export declare const celoSepolia: {
452
452
  authorizationList?: undefined;
453
453
  feeCurrency?: `0x${string}` | undefined;
454
454
  } | {
455
+ type?: "0x4" | undefined;
455
456
  gasPrice?: undefined | undefined;
456
457
  maxFeePerBlobGas?: undefined | undefined;
457
458
  maxFeePerGas?: `0x${string}` | undefined;
458
459
  maxPriorityFeePerGas?: `0x${string}` | undefined;
459
- type?: "0x4" | undefined;
460
- data?: `0x${string}` | undefined;
461
- value?: `0x${string}` | undefined;
462
- gas?: `0x${string}` | undefined;
463
460
  to?: `0x${string}` | null | undefined;
461
+ data?: `0x${string}` | undefined;
464
462
  from?: `0x${string}` | undefined;
463
+ gas?: `0x${string}` | undefined;
465
464
  nonce?: `0x${string}` | undefined;
465
+ value?: `0x${string}` | undefined;
466
466
  accessList?: import("../../index.js").AccessList | undefined;
467
467
  authorizationList?: import("../../index.js").RpcAuthorizationList | undefined;
468
468
  blobs?: undefined;
@@ -533,16 +533,16 @@ export declare const celoSepolia: {
533
533
  r: import("../../index.js").Hex;
534
534
  s: import("../../index.js").Hex;
535
535
  v: bigint;
536
- value: bigint;
537
- gas: bigint;
538
536
  to: import("abitype").Address | null;
539
537
  from: import("abitype").Address;
538
+ gas: bigint;
540
539
  nonce: number;
540
+ value: bigint;
541
541
  blockHash: `0x${string}` | null;
542
542
  blockNumber: bigint | null;
543
- transactionIndex: number | null;
544
543
  hash: import("../../index.js").Hash;
545
544
  input: import("../../index.js").Hex;
545
+ transactionIndex: number | null;
546
546
  typeHex: import("../../index.js").Hex | null;
547
547
  accessList?: undefined | undefined;
548
548
  authorizationList?: undefined | undefined;
@@ -842,10 +842,10 @@ export declare const celoSepolia: {
842
842
  } | {
843
843
  type?: "0x3" | undefined;
844
844
  data?: `0x${string}` | undefined;
845
- value?: `0x${string}` | undefined;
846
- gas?: `0x${string}` | undefined;
847
845
  from?: `0x${string}` | undefined;
846
+ gas?: `0x${string}` | undefined;
848
847
  nonce?: `0x${string}` | undefined;
848
+ value?: `0x${string}` | undefined;
849
849
  to: `0x${string}` | null;
850
850
  gasPrice?: undefined | undefined;
851
851
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -861,10 +861,10 @@ export declare const celoSepolia: {
861
861
  } | {
862
862
  type?: "0x3" | undefined;
863
863
  data?: `0x${string}` | undefined;
864
- value?: `0x${string}` | undefined;
865
- gas?: `0x${string}` | undefined;
866
864
  from?: `0x${string}` | undefined;
865
+ gas?: `0x${string}` | undefined;
867
866
  nonce?: `0x${string}` | undefined;
867
+ value?: `0x${string}` | undefined;
868
868
  to: `0x${string}` | null;
869
869
  gasPrice?: undefined | undefined;
870
870
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -878,17 +878,17 @@ export declare const celoSepolia: {
878
878
  authorizationList?: undefined;
879
879
  feeCurrency?: `0x${string}` | undefined;
880
880
  } | {
881
+ type?: "0x4" | undefined;
881
882
  gasPrice?: undefined | undefined;
882
883
  maxFeePerBlobGas?: undefined | undefined;
883
884
  maxFeePerGas?: `0x${string}` | undefined;
884
885
  maxPriorityFeePerGas?: `0x${string}` | undefined;
885
- type?: "0x4" | undefined;
886
- data?: `0x${string}` | undefined;
887
- value?: `0x${string}` | undefined;
888
- gas?: `0x${string}` | undefined;
889
886
  to?: `0x${string}` | null | undefined;
887
+ data?: `0x${string}` | undefined;
890
888
  from?: `0x${string}` | undefined;
889
+ gas?: `0x${string}` | undefined;
891
890
  nonce?: `0x${string}` | undefined;
891
+ value?: `0x${string}` | undefined;
892
892
  accessList?: import("../../index.js").AccessList | undefined;
893
893
  authorizationList?: import("../../index.js").RpcAuthorizationList | undefined;
894
894
  blobs?: undefined;