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
@@ -132,16 +132,16 @@ export declare const shape: {
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;
@@ -114,16 +114,16 @@ export declare const shapeSepolia: {
114
114
  r: import("../../index.js").Hex;
115
115
  s: import("../../index.js").Hex;
116
116
  v: bigint;
117
- value: bigint;
118
- gas: bigint;
119
117
  to: import("abitype").Address | null;
120
118
  from: import("abitype").Address;
119
+ gas: bigint;
121
120
  nonce: number;
121
+ value: bigint;
122
122
  blockHash: `0x${string}` | null;
123
123
  blockNumber: bigint | null;
124
- transactionIndex: number | null;
125
124
  hash: import("../../index.js").Hash;
126
125
  input: import("../../index.js").Hex;
126
+ transactionIndex: number | null;
127
127
  typeHex: import("../../index.js").Hex | null;
128
128
  accessList?: undefined | undefined;
129
129
  authorizationList?: undefined | undefined;
@@ -133,16 +133,16 @@ export declare const snax: {
133
133
  r: import("../../index.js").Hex;
134
134
  s: import("../../index.js").Hex;
135
135
  v: bigint;
136
- value: bigint;
137
- gas: bigint;
138
136
  to: import("abitype").Address | null;
139
137
  from: import("abitype").Address;
138
+ gas: bigint;
140
139
  nonce: number;
140
+ value: bigint;
141
141
  blockHash: `0x${string}` | null;
142
142
  blockNumber: bigint | null;
143
- transactionIndex: number | null;
144
143
  hash: import("../../index.js").Hash;
145
144
  input: import("../../index.js").Hex;
145
+ transactionIndex: number | null;
146
146
  typeHex: import("../../index.js").Hex | null;
147
147
  accessList?: undefined | undefined;
148
148
  authorizationList?: undefined | undefined;
@@ -133,16 +133,16 @@ export declare const snaxTestnet: {
133
133
  r: import("../../index.js").Hex;
134
134
  s: import("../../index.js").Hex;
135
135
  v: bigint;
136
- value: bigint;
137
- gas: bigint;
138
136
  to: import("abitype").Address | null;
139
137
  from: import("abitype").Address;
138
+ gas: bigint;
140
139
  nonce: number;
140
+ value: bigint;
141
141
  blockHash: `0x${string}` | null;
142
142
  blockNumber: bigint | null;
143
- transactionIndex: number | null;
144
143
  hash: import("../../index.js").Hash;
145
144
  input: import("../../index.js").Hex;
145
+ transactionIndex: number | null;
146
146
  typeHex: import("../../index.js").Hex | null;
147
147
  accessList?: undefined | undefined;
148
148
  authorizationList?: undefined | undefined;
@@ -136,16 +136,16 @@ export declare const soneium: {
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;
@@ -136,16 +136,16 @@ export declare const soneiumMinato: {
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;
@@ -76,16 +76,16 @@ export declare const sophon: {
76
76
  r: import("../../index.js").Hex;
77
77
  s: import("../../index.js").Hex;
78
78
  v: bigint;
79
- value: bigint;
80
- gas: bigint;
81
79
  to: import("abitype").Address | null;
82
80
  from: import("abitype").Address;
81
+ gas: bigint;
83
82
  nonce: number;
83
+ value: bigint;
84
84
  blockHash: `0x${string}` | null;
85
85
  blockNumber: bigint | null;
86
- transactionIndex: number | null;
87
86
  hash: import("../../index.js").Hash;
88
87
  input: import("../../index.js").Hex;
88
+ transactionIndex: number | null;
89
89
  typeHex: import("../../index.js").Hex | null;
90
90
  accessList?: undefined | undefined;
91
91
  authorizationList?: undefined | undefined;
@@ -259,15 +259,15 @@ export declare const sophon: {
259
259
  readonly transactionReceipt: {
260
260
  exclude: [] | undefined;
261
261
  format: (args: import("../index.js").ZkSyncRpcTransactionReceipt, action?: string | undefined) => {
262
- contractAddress: import("abitype").Address | null | undefined;
263
262
  type: import("../index.js").ZkSyncTransactionType;
264
- status: "success" | "reverted";
263
+ contractAddress: import("abitype").Address | null | undefined;
265
264
  to: import("abitype").Address | null;
266
265
  from: import("abitype").Address;
267
266
  blockHash: import("../../index.js").Hash;
268
267
  blockNumber: bigint;
269
- transactionHash: import("../../index.js").Hash;
270
268
  transactionIndex: number;
269
+ status: "success" | "reverted";
270
+ transactionHash: import("../../index.js").Hash;
271
271
  logsBloom: import("../../index.js").Hex;
272
272
  blobGasUsed?: bigint | undefined;
273
273
  gasUsed: bigint;
@@ -344,10 +344,10 @@ export declare const sophon: {
344
344
  } | {
345
345
  type?: "0x3" | undefined;
346
346
  data?: `0x${string}` | undefined;
347
- value?: `0x${string}` | undefined;
348
- gas?: `0x${string}` | undefined;
349
347
  from?: `0x${string}` | undefined;
348
+ gas?: `0x${string}` | undefined;
350
349
  nonce?: `0x${string}` | undefined;
350
+ value?: `0x${string}` | undefined;
351
351
  to: `0x${string}` | null;
352
352
  gasPrice?: undefined | undefined;
353
353
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -363,10 +363,10 @@ export declare const sophon: {
363
363
  } | {
364
364
  type?: "0x3" | undefined;
365
365
  data?: `0x${string}` | undefined;
366
- value?: `0x${string}` | undefined;
367
- gas?: `0x${string}` | undefined;
368
366
  from?: `0x${string}` | undefined;
367
+ gas?: `0x${string}` | undefined;
369
368
  nonce?: `0x${string}` | undefined;
369
+ value?: `0x${string}` | undefined;
370
370
  to: `0x${string}` | null;
371
371
  gasPrice?: undefined | undefined;
372
372
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -380,17 +380,17 @@ export declare const sophon: {
380
380
  authorizationList?: undefined;
381
381
  eip712Meta?: undefined | undefined;
382
382
  } | {
383
+ type?: "0x4" | undefined;
383
384
  gasPrice?: undefined | undefined;
384
385
  maxFeePerBlobGas?: undefined | undefined;
385
386
  maxFeePerGas?: `0x${string}` | undefined;
386
387
  maxPriorityFeePerGas?: `0x${string}` | undefined;
387
- type?: "0x4" | undefined;
388
- data?: `0x${string}` | undefined;
389
- value?: `0x${string}` | undefined;
390
- gas?: `0x${string}` | undefined;
391
388
  to?: `0x${string}` | null | undefined;
389
+ data?: `0x${string}` | undefined;
392
390
  from?: `0x${string}` | undefined;
391
+ gas?: `0x${string}` | undefined;
393
392
  nonce?: `0x${string}` | undefined;
393
+ value?: `0x${string}` | undefined;
394
394
  accessList?: import("../../index.js").AccessList | undefined;
395
395
  authorizationList?: import("../../index.js").RpcAuthorizationList | undefined;
396
396
  blobs?: undefined;
@@ -76,16 +76,16 @@ export declare const sophonTestnet: {
76
76
  r: import("../../index.js").Hex;
77
77
  s: import("../../index.js").Hex;
78
78
  v: bigint;
79
- value: bigint;
80
- gas: bigint;
81
79
  to: import("abitype").Address | null;
82
80
  from: import("abitype").Address;
81
+ gas: bigint;
83
82
  nonce: number;
83
+ value: bigint;
84
84
  blockHash: `0x${string}` | null;
85
85
  blockNumber: bigint | null;
86
- transactionIndex: number | null;
87
86
  hash: import("../../index.js").Hash;
88
87
  input: import("../../index.js").Hex;
88
+ transactionIndex: number | null;
89
89
  typeHex: import("../../index.js").Hex | null;
90
90
  accessList?: undefined | undefined;
91
91
  authorizationList?: undefined | undefined;
@@ -259,15 +259,15 @@ export declare const sophonTestnet: {
259
259
  readonly transactionReceipt: {
260
260
  exclude: [] | undefined;
261
261
  format: (args: import("../index.js").ZkSyncRpcTransactionReceipt, action?: string | undefined) => {
262
- contractAddress: import("abitype").Address | null | undefined;
263
262
  type: import("../index.js").ZkSyncTransactionType;
264
- status: "success" | "reverted";
263
+ contractAddress: import("abitype").Address | null | undefined;
265
264
  to: import("abitype").Address | null;
266
265
  from: import("abitype").Address;
267
266
  blockHash: import("../../index.js").Hash;
268
267
  blockNumber: bigint;
269
- transactionHash: import("../../index.js").Hash;
270
268
  transactionIndex: number;
269
+ status: "success" | "reverted";
270
+ transactionHash: import("../../index.js").Hash;
271
271
  logsBloom: import("../../index.js").Hex;
272
272
  blobGasUsed?: bigint | undefined;
273
273
  gasUsed: bigint;
@@ -344,10 +344,10 @@ export declare const sophonTestnet: {
344
344
  } | {
345
345
  type?: "0x3" | undefined;
346
346
  data?: `0x${string}` | undefined;
347
- value?: `0x${string}` | undefined;
348
- gas?: `0x${string}` | undefined;
349
347
  from?: `0x${string}` | undefined;
348
+ gas?: `0x${string}` | undefined;
350
349
  nonce?: `0x${string}` | undefined;
350
+ value?: `0x${string}` | undefined;
351
351
  to: `0x${string}` | null;
352
352
  gasPrice?: undefined | undefined;
353
353
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -363,10 +363,10 @@ export declare const sophonTestnet: {
363
363
  } | {
364
364
  type?: "0x3" | undefined;
365
365
  data?: `0x${string}` | undefined;
366
- value?: `0x${string}` | undefined;
367
- gas?: `0x${string}` | undefined;
368
366
  from?: `0x${string}` | undefined;
367
+ gas?: `0x${string}` | undefined;
369
368
  nonce?: `0x${string}` | undefined;
369
+ value?: `0x${string}` | undefined;
370
370
  to: `0x${string}` | null;
371
371
  gasPrice?: undefined | undefined;
372
372
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -380,17 +380,17 @@ export declare const sophonTestnet: {
380
380
  authorizationList?: undefined;
381
381
  eip712Meta?: undefined | undefined;
382
382
  } | {
383
+ type?: "0x4" | undefined;
383
384
  gasPrice?: undefined | undefined;
384
385
  maxFeePerBlobGas?: undefined | undefined;
385
386
  maxFeePerGas?: `0x${string}` | undefined;
386
387
  maxPriorityFeePerGas?: `0x${string}` | undefined;
387
- type?: "0x4" | undefined;
388
- data?: `0x${string}` | undefined;
389
- value?: `0x${string}` | undefined;
390
- gas?: `0x${string}` | undefined;
391
388
  to?: `0x${string}` | null | undefined;
389
+ data?: `0x${string}` | undefined;
392
390
  from?: `0x${string}` | undefined;
391
+ gas?: `0x${string}` | undefined;
393
392
  nonce?: `0x${string}` | undefined;
393
+ value?: `0x${string}` | undefined;
394
394
  accessList?: import("../../index.js").AccessList | undefined;
395
395
  authorizationList?: import("../../index.js").RpcAuthorizationList | undefined;
396
396
  blobs?: undefined;
@@ -137,16 +137,16 @@ export declare const superseed: {
137
137
  r: import("../../index.js").Hex;
138
138
  s: import("../../index.js").Hex;
139
139
  v: bigint;
140
- value: bigint;
141
- gas: bigint;
142
140
  to: import("abitype").Address | null;
143
141
  from: import("abitype").Address;
142
+ gas: bigint;
144
143
  nonce: number;
144
+ value: bigint;
145
145
  blockHash: `0x${string}` | null;
146
146
  blockNumber: bigint | null;
147
- transactionIndex: number | null;
148
147
  hash: import("../../index.js").Hash;
149
148
  input: import("../../index.js").Hex;
149
+ transactionIndex: number | null;
150
150
  typeHex: import("../../index.js").Hex | null;
151
151
  accessList?: undefined | undefined;
152
152
  authorizationList?: undefined | undefined;
@@ -125,16 +125,16 @@ export declare const superseedSepolia: {
125
125
  r: import("../../index.js").Hex;
126
126
  s: import("../../index.js").Hex;
127
127
  v: bigint;
128
- value: bigint;
129
- gas: bigint;
130
128
  to: import("abitype").Address | null;
131
129
  from: import("abitype").Address;
130
+ gas: bigint;
132
131
  nonce: number;
132
+ value: bigint;
133
133
  blockHash: `0x${string}` | null;
134
134
  blockNumber: bigint | null;
135
- transactionIndex: number | null;
136
135
  hash: import("../../index.js").Hash;
137
136
  input: import("../../index.js").Hex;
137
+ transactionIndex: number | null;
138
138
  typeHex: import("../../index.js").Hex | null;
139
139
  accessList?: undefined | undefined;
140
140
  authorizationList?: undefined | undefined;
@@ -114,16 +114,16 @@ export declare const swellchain: {
114
114
  r: import("../../index.js").Hex;
115
115
  s: import("../../index.js").Hex;
116
116
  v: bigint;
117
- value: bigint;
118
- gas: bigint;
119
117
  to: import("abitype").Address | null;
120
118
  from: import("abitype").Address;
119
+ gas: bigint;
121
120
  nonce: number;
121
+ value: bigint;
122
122
  blockHash: `0x${string}` | null;
123
123
  blockNumber: bigint | null;
124
- transactionIndex: number | null;
125
124
  hash: import("../../index.js").Hash;
126
125
  input: import("../../index.js").Hex;
126
+ transactionIndex: number | null;
127
127
  typeHex: import("../../index.js").Hex | null;
128
128
  accessList?: undefined | undefined;
129
129
  authorizationList?: undefined | undefined;
@@ -114,16 +114,16 @@ export declare const swellchainTestnet: {
114
114
  r: import("../../index.js").Hex;
115
115
  s: import("../../index.js").Hex;
116
116
  v: bigint;
117
- value: bigint;
118
- gas: bigint;
119
117
  to: import("abitype").Address | null;
120
118
  from: import("abitype").Address;
119
+ gas: bigint;
121
120
  nonce: number;
121
+ value: bigint;
122
122
  blockHash: `0x${string}` | null;
123
123
  blockNumber: bigint | null;
124
- transactionIndex: number | null;
125
124
  hash: import("../../index.js").Hash;
126
125
  input: import("../../index.js").Hex;
126
+ transactionIndex: number | null;
127
127
  typeHex: import("../../index.js").Hex | null;
128
128
  accessList?: undefined | undefined;
129
129
  authorizationList?: undefined | undefined;
@@ -1,8 +1,8 @@
1
- export declare const tempoTestnet: {
1
+ export declare const tempoAndantino: {
2
2
  blockExplorers: {
3
3
  readonly default: {
4
4
  readonly name: "Tempo Explorer";
5
- readonly url: "https://explore.tempo.xyz";
5
+ readonly url: "https://explore.testnet.tempo.xyz";
6
6
  };
7
7
  };
8
8
  blockTime: 1000;
@@ -17,7 +17,7 @@ export declare const tempoTestnet: {
17
17
  } | undefined;
18
18
  ensTlds?: readonly string[] | undefined;
19
19
  id: 42429;
20
- name: "Tempo Testnet";
20
+ name: "Tempo Testnet (Andantino)";
21
21
  nativeCurrency: {
22
22
  readonly name: "USD";
23
23
  readonly symbol: "USD";
@@ -44,16 +44,16 @@ export declare const tempoTestnet: {
44
44
  r: import("../../index.js").Hex;
45
45
  s: import("../../index.js").Hex;
46
46
  v: bigint;
47
- value: bigint;
48
- gas: bigint;
49
47
  to: import("abitype").Address | null;
50
48
  from: import("abitype").Address;
49
+ gas: bigint;
51
50
  nonce: number;
51
+ value: bigint;
52
52
  blockHash: `0x${string}` | null;
53
53
  blockNumber: bigint | null;
54
- transactionIndex: number | null;
55
54
  hash: import("../../index.js").Hash;
56
55
  input: import("../../index.js").Hex;
56
+ transactionIndex: number | null;
57
57
  typeHex: import("../../index.js").Hex | null;
58
58
  accessList?: undefined | undefined;
59
59
  authorizationList?: undefined | undefined;
@@ -206,13 +206,13 @@ export declare const tempoTestnet: {
206
206
  keyAuthorization?: undefined;
207
207
  validBefore?: undefined;
208
208
  } | {
209
- gas: bigint;
210
209
  from: import("abitype").Address;
210
+ gas: bigint;
211
211
  nonce: number;
212
212
  blockHash: `0x${string}` | null;
213
213
  blockNumber: bigint | null;
214
- transactionIndex: number | null;
215
214
  hash: import("../../index.js").Hash;
215
+ transactionIndex: number | null;
216
216
  typeHex: import("../../index.js").Hex | null;
217
217
  r?: `0x${string}` | undefined;
218
218
  s?: `0x${string}` | undefined;
@@ -239,8 +239,8 @@ export declare const tempoTestnet: {
239
239
  maxFeePerBlobGas?: undefined | undefined;
240
240
  maxFeePerGas: bigint;
241
241
  maxPriorityFeePerGas: bigint;
242
- value?: undefined;
243
242
  to?: undefined;
243
+ value?: undefined;
244
244
  blobVersionedHashes?: undefined;
245
245
  input?: undefined;
246
246
  }) & {};
@@ -351,10 +351,10 @@ export declare const tempoTestnet: {
351
351
  } | {
352
352
  type?: "0x3" | undefined;
353
353
  data?: `0x${string}` | undefined;
354
- value?: `0x${string}` | undefined;
355
- gas?: `0x${string}` | undefined;
356
354
  from?: `0x${string}` | undefined;
355
+ gas?: `0x${string}` | undefined;
357
356
  nonce?: `0x${string}` | undefined;
357
+ value?: `0x${string}` | undefined;
358
358
  to: `0x${string}` | null;
359
359
  gasPrice?: undefined | undefined;
360
360
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -376,10 +376,10 @@ export declare const tempoTestnet: {
376
376
  } | {
377
377
  type?: "0x3" | undefined;
378
378
  data?: `0x${string}` | undefined;
379
- value?: `0x${string}` | undefined;
380
- gas?: `0x${string}` | undefined;
381
379
  from?: `0x${string}` | undefined;
380
+ gas?: `0x${string}` | undefined;
382
381
  nonce?: `0x${string}` | undefined;
382
+ value?: `0x${string}` | undefined;
383
383
  to: `0x${string}` | null;
384
384
  gasPrice?: undefined | undefined;
385
385
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -399,17 +399,17 @@ export declare const tempoTestnet: {
399
399
  validBefore?: undefined;
400
400
  feePayer?: undefined;
401
401
  } | {
402
+ type?: "0x4" | undefined;
402
403
  gasPrice?: undefined | undefined;
403
404
  maxFeePerBlobGas?: undefined | undefined;
404
405
  maxFeePerGas?: `0x${string}` | undefined;
405
406
  maxPriorityFeePerGas?: `0x${string}` | undefined;
406
- type?: "0x4" | undefined;
407
- data?: `0x${string}` | undefined;
408
- value?: `0x${string}` | undefined;
409
- gas?: `0x${string}` | undefined;
410
407
  to?: `0x${string}` | null | undefined;
408
+ data?: `0x${string}` | undefined;
411
409
  from?: `0x${string}` | undefined;
410
+ gas?: `0x${string}` | undefined;
412
411
  nonce?: `0x${string}` | undefined;
412
+ value?: `0x${string}` | undefined;
413
413
  accessList?: import("../../index.js").AccessList | undefined;
414
414
  authorizationList?: import("../../index.js").RpcAuthorizationList | undefined;
415
415
  blobs?: undefined;
@@ -468,10 +468,10 @@ export declare const tempoTestnet: {
468
468
  readonly blockExplorers: {
469
469
  readonly default: {
470
470
  readonly name: "Tempo Explorer";
471
- readonly url: "https://explore.tempo.xyz";
471
+ readonly url: "https://explore.testnet.tempo.xyz";
472
472
  };
473
473
  };
474
- readonly name: "Tempo Testnet";
474
+ readonly name: "Tempo Testnet (Andantino)";
475
475
  readonly nativeCurrency: {
476
476
  readonly name: "USD";
477
477
  readonly symbol: "USD";
@@ -494,16 +494,16 @@ export declare const tempoTestnet: {
494
494
  r: import("../../index.js").Hex;
495
495
  s: import("../../index.js").Hex;
496
496
  v: bigint;
497
- value: bigint;
498
- gas: bigint;
499
497
  to: import("abitype").Address | null;
500
498
  from: import("abitype").Address;
499
+ gas: bigint;
501
500
  nonce: number;
501
+ value: bigint;
502
502
  blockHash: `0x${string}` | null;
503
503
  blockNumber: bigint | null;
504
- transactionIndex: number | null;
505
504
  hash: import("../../index.js").Hash;
506
505
  input: import("../../index.js").Hex;
506
+ transactionIndex: number | null;
507
507
  typeHex: import("../../index.js").Hex | null;
508
508
  accessList?: undefined | undefined;
509
509
  authorizationList?: undefined | undefined;
@@ -656,13 +656,13 @@ export declare const tempoTestnet: {
656
656
  keyAuthorization?: undefined;
657
657
  validBefore?: undefined;
658
658
  } | {
659
- gas: bigint;
660
659
  from: import("abitype").Address;
660
+ gas: bigint;
661
661
  nonce: number;
662
662
  blockHash: `0x${string}` | null;
663
663
  blockNumber: bigint | null;
664
- transactionIndex: number | null;
665
664
  hash: import("../../index.js").Hash;
665
+ transactionIndex: number | null;
666
666
  typeHex: import("../../index.js").Hex | null;
667
667
  r?: `0x${string}` | undefined;
668
668
  s?: `0x${string}` | undefined;
@@ -689,8 +689,8 @@ export declare const tempoTestnet: {
689
689
  maxFeePerBlobGas?: undefined | undefined;
690
690
  maxFeePerGas: bigint;
691
691
  maxPriorityFeePerGas: bigint;
692
- value?: undefined;
693
692
  to?: undefined;
693
+ value?: undefined;
694
694
  blobVersionedHashes?: undefined;
695
695
  input?: undefined;
696
696
  }) & {};
@@ -801,10 +801,10 @@ export declare const tempoTestnet: {
801
801
  } | {
802
802
  type?: "0x3" | undefined;
803
803
  data?: `0x${string}` | undefined;
804
- value?: `0x${string}` | undefined;
805
- gas?: `0x${string}` | undefined;
806
804
  from?: `0x${string}` | undefined;
805
+ gas?: `0x${string}` | undefined;
807
806
  nonce?: `0x${string}` | undefined;
807
+ value?: `0x${string}` | undefined;
808
808
  to: `0x${string}` | null;
809
809
  gasPrice?: undefined | undefined;
810
810
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -826,10 +826,10 @@ export declare const tempoTestnet: {
826
826
  } | {
827
827
  type?: "0x3" | undefined;
828
828
  data?: `0x${string}` | undefined;
829
- value?: `0x${string}` | undefined;
830
- gas?: `0x${string}` | undefined;
831
829
  from?: `0x${string}` | undefined;
830
+ gas?: `0x${string}` | undefined;
832
831
  nonce?: `0x${string}` | undefined;
832
+ value?: `0x${string}` | undefined;
833
833
  to: `0x${string}` | null;
834
834
  gasPrice?: undefined | undefined;
835
835
  maxFeePerBlobGas?: `0x${string}` | undefined;
@@ -849,17 +849,17 @@ export declare const tempoTestnet: {
849
849
  validBefore?: undefined;
850
850
  feePayer?: undefined;
851
851
  } | {
852
+ type?: "0x4" | undefined;
852
853
  gasPrice?: undefined | undefined;
853
854
  maxFeePerBlobGas?: undefined | undefined;
854
855
  maxFeePerGas?: `0x${string}` | undefined;
855
856
  maxPriorityFeePerGas?: `0x${string}` | undefined;
856
- type?: "0x4" | undefined;
857
- data?: `0x${string}` | undefined;
858
- value?: `0x${string}` | undefined;
859
- gas?: `0x${string}` | undefined;
860
857
  to?: `0x${string}` | null | undefined;
858
+ data?: `0x${string}` | undefined;
861
859
  from?: `0x${string}` | undefined;
860
+ gas?: `0x${string}` | undefined;
862
861
  nonce?: `0x${string}` | undefined;
862
+ value?: `0x${string}` | undefined;
863
863
  accessList?: import("../../index.js").AccessList | undefined;
864
864
  authorizationList?: import("../../index.js").RpcAuthorizationList | undefined;
865
865
  blobs?: undefined;
@@ -913,4 +913,4 @@ export declare const tempoTestnet: {
913
913
  readonly verifyHash: (client: import("../../index.js").Client, parameters: import("../../index.js").VerifyHashActionParameters) => Promise<boolean>;
914
914
  }>, extended_1>;
915
915
  };
916
- //# sourceMappingURL=tempoTestnet.d.ts.map
916
+ //# sourceMappingURL=tempoAndantino.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tempoAndantino.d.ts","sourceRoot":"","sources":["../../../chains/definitions/tempoAndantino.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqBzB,CAAA"}