viem 0.0.0-main.20240130T224622 → 0.0.0-main.20240131T000757

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 (88) hide show
  1. package/_cjs/actions/public/getTransaction.js.map +1 -1
  2. package/_cjs/errors/version.js +1 -1
  3. package/_cjs/index.js.map +1 -1
  4. package/_cjs/utils/formatters/transaction.js +9 -0
  5. package/_cjs/utils/formatters/transaction.js.map +1 -1
  6. package/_cjs/utils/formatters/transactionReceipt.js +6 -1
  7. package/_cjs/utils/formatters/transactionReceipt.js.map +1 -1
  8. package/_cjs/utils/formatters/transactionRequest.js +1 -0
  9. package/_cjs/utils/formatters/transactionRequest.js.map +1 -1
  10. package/_esm/actions/public/getTransaction.js.map +1 -1
  11. package/_esm/errors/version.js +1 -1
  12. package/_esm/index.js.map +1 -1
  13. package/_esm/utils/formatters/transaction.js +9 -0
  14. package/_esm/utils/formatters/transaction.js.map +1 -1
  15. package/_esm/utils/formatters/transactionReceipt.js +6 -1
  16. package/_esm/utils/formatters/transactionReceipt.js.map +1 -1
  17. package/_esm/utils/formatters/transactionRequest.js +1 -0
  18. package/_esm/utils/formatters/transactionRequest.js.map +1 -1
  19. package/_types/actions/public/getTransaction.d.ts +2 -1
  20. package/_types/actions/public/getTransaction.d.ts.map +1 -1
  21. package/_types/chains/celo/chainConfig.d.ts +373 -65
  22. package/_types/chains/celo/chainConfig.d.ts.map +1 -1
  23. package/_types/chains/celo/formatters.d.ts +373 -65
  24. package/_types/chains/celo/formatters.d.ts.map +1 -1
  25. package/_types/chains/definitions/base.d.ts +277 -49
  26. package/_types/chains/definitions/base.d.ts.map +1 -1
  27. package/_types/chains/definitions/baseGoerli.d.ts +277 -49
  28. package/_types/chains/definitions/baseGoerli.d.ts.map +1 -1
  29. package/_types/chains/definitions/baseSepolia.d.ts +277 -49
  30. package/_types/chains/definitions/baseSepolia.d.ts.map +1 -1
  31. package/_types/chains/definitions/celo.d.ts +373 -65
  32. package/_types/chains/definitions/celo.d.ts.map +1 -1
  33. package/_types/chains/definitions/celoAlfajores.d.ts +373 -65
  34. package/_types/chains/definitions/celoAlfajores.d.ts.map +1 -1
  35. package/_types/chains/definitions/optimism.d.ts +277 -49
  36. package/_types/chains/definitions/optimism.d.ts.map +1 -1
  37. package/_types/chains/definitions/optimismGoerli.d.ts +277 -49
  38. package/_types/chains/definitions/optimismGoerli.d.ts.map +1 -1
  39. package/_types/chains/definitions/optimismSepolia.d.ts +277 -49
  40. package/_types/chains/definitions/optimismSepolia.d.ts.map +1 -1
  41. package/_types/chains/definitions/pgn.d.ts +277 -49
  42. package/_types/chains/definitions/pgn.d.ts.map +1 -1
  43. package/_types/chains/definitions/pgnTestnet.d.ts +277 -49
  44. package/_types/chains/definitions/pgnTestnet.d.ts.map +1 -1
  45. package/_types/chains/definitions/zkSync.d.ts +120 -6
  46. package/_types/chains/definitions/zkSync.d.ts.map +1 -1
  47. package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +120 -6
  48. package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts.map +1 -1
  49. package/_types/chains/definitions/zkSyncTestnet.d.ts +120 -6
  50. package/_types/chains/definitions/zkSyncTestnet.d.ts.map +1 -1
  51. package/_types/chains/definitions/zora.d.ts +277 -49
  52. package/_types/chains/definitions/zora.d.ts.map +1 -1
  53. package/_types/chains/definitions/zoraSepolia.d.ts +277 -49
  54. package/_types/chains/definitions/zoraSepolia.d.ts.map +1 -1
  55. package/_types/chains/definitions/zoraTestnet.d.ts +277 -49
  56. package/_types/chains/definitions/zoraTestnet.d.ts.map +1 -1
  57. package/_types/chains/opStack/chainConfig.d.ts +277 -49
  58. package/_types/chains/opStack/chainConfig.d.ts.map +1 -1
  59. package/_types/chains/opStack/formatters.d.ts +277 -49
  60. package/_types/chains/opStack/formatters.d.ts.map +1 -1
  61. package/_types/chains/zksync/chainConfig.d.ts +120 -6
  62. package/_types/chains/zksync/chainConfig.d.ts.map +1 -1
  63. package/_types/chains/zksync/formatters.d.ts +120 -6
  64. package/_types/chains/zksync/formatters.d.ts.map +1 -1
  65. package/_types/errors/version.d.ts +1 -1
  66. package/_types/index.d.ts +2 -2
  67. package/_types/index.d.ts.map +1 -1
  68. package/_types/types/fee.d.ts +9 -3
  69. package/_types/types/fee.d.ts.map +1 -1
  70. package/_types/types/rpc.d.ts +2 -2
  71. package/_types/types/rpc.d.ts.map +1 -1
  72. package/_types/types/transaction.d.ts +20 -5
  73. package/_types/types/transaction.d.ts.map +1 -1
  74. package/_types/utils/formatters/transaction.d.ts +387 -2
  75. package/_types/utils/formatters/transaction.d.ts.map +1 -1
  76. package/_types/utils/formatters/transactionReceipt.d.ts.map +1 -1
  77. package/_types/utils/formatters/transactionRequest.d.ts +2 -1
  78. package/_types/utils/formatters/transactionRequest.d.ts.map +1 -1
  79. package/actions/public/getTransaction.ts +2 -1
  80. package/errors/version.ts +1 -1
  81. package/index.ts +2 -0
  82. package/package.json +1 -1
  83. package/types/fee.ts +14 -2
  84. package/types/rpc.ts +3 -1
  85. package/types/transaction.ts +37 -6
  86. package/utils/formatters/transaction.ts +9 -0
  87. package/utils/formatters/transactionReceipt.ts +8 -1
  88. package/utils/formatters/transactionRequest.ts +1 -0
@@ -1 +1 @@
1
- {"version":3,"file":"formatters.d.ts","sourceRoot":"","sources":["../../../chains/celo/formatters.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAA;AAU/C,OAAO,KAAK,EACV,kBAAkB,EAClB,kBAAkB,EAElB,eAAe,EACf,sBAAsB,EACvB,MAAM,YAAY,CAAA;AAGnB,eAAO,MAAM,UAAU;;;;0BAKD,IAAI,EAAE,GAAG,kBAAkB,EAAE;;;;;;;;;;;;;;;;;;;;;0BAG/B,IAAI,EAAE,GAAG,eAAe,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6DV,CAAA"}
1
+ {"version":3,"file":"formatters.d.ts","sourceRoot":"","sources":["../../../chains/celo/formatters.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAA;AAU/C,OAAO,KAAK,EACV,kBAAkB,EAClB,kBAAkB,EAElB,eAAe,EACf,sBAAsB,EACvB,MAAM,YAAY,CAAA;AAGnB,eAAO,MAAM,UAAU;;;;0BAKD,IAAI,EAAE,GAAG,kBAAkB,EAAE;;;;;;;;;;;;;;;;;;;;;0BAG/B,IAAI,EAAE,GAAG,eAAe,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6DV,CAAA"}
@@ -92,11 +92,17 @@ export declare const base: {
92
92
  readonly transaction: {
93
93
  exclude: [] | undefined;
94
94
  format: (args: ({
95
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
96
+ gas?: `0x${string}` | undefined;
97
+ value?: `0x${string}` | undefined;
98
+ gasPrice?: `0x${string}` | undefined;
99
+ maxFeePerBlobGas?: `0x${string}` | undefined;
100
+ maxFeePerGas?: `0x${string}` | undefined;
101
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
95
102
  yParity?: `0x${string}` | undefined;
96
103
  blockHash?: `0x${string}` | null | undefined;
97
104
  blockNumber?: `0x${string}` | null | undefined;
98
105
  from?: `0x${string}` | undefined;
99
- gas?: `0x${string}` | undefined;
100
106
  hash?: `0x${string}` | undefined;
101
107
  input?: `0x${string}` | undefined;
102
108
  nonce?: `0x${string}` | undefined;
@@ -105,23 +111,25 @@ export declare const base: {
105
111
  to?: `0x${string}` | null | undefined;
106
112
  transactionIndex?: `0x${string}` | null | undefined;
107
113
  v?: `0x${string}` | undefined;
108
- value?: `0x${string}` | undefined;
109
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
110
- gasPrice?: `0x${string}` | undefined;
111
- maxFeePerGas?: `0x${string}` | undefined;
112
- maxPriorityFeePerGas?: `0x${string}` | undefined;
113
114
  accessList?: undefined;
115
+ blobVersionedHashes?: undefined;
114
116
  chainId?: `0x${string}` | undefined;
115
117
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
116
118
  isSystemTx?: undefined;
117
119
  mint?: undefined;
118
120
  sourceHash?: undefined;
119
121
  }) | ({
122
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
123
+ gas?: `0x${string}` | undefined;
124
+ value?: `0x${string}` | undefined;
125
+ gasPrice?: `0x${string}` | undefined;
126
+ maxFeePerBlobGas?: `0x${string}` | undefined;
127
+ maxFeePerGas?: `0x${string}` | undefined;
128
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
120
129
  yParity?: `0x${string}` | undefined;
121
130
  blockHash?: `0x${string}` | null | undefined;
122
131
  blockNumber?: `0x${string}` | null | undefined;
123
132
  from?: `0x${string}` | undefined;
124
- gas?: `0x${string}` | undefined;
125
133
  hash?: `0x${string}` | undefined;
126
134
  input?: `0x${string}` | undefined;
127
135
  nonce?: `0x${string}` | undefined;
@@ -130,12 +138,8 @@ export declare const base: {
130
138
  to?: `0x${string}` | null | undefined;
131
139
  transactionIndex?: `0x${string}` | null | undefined;
132
140
  v?: `0x${string}` | undefined;
133
- value?: `0x${string}` | undefined;
134
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
135
- gasPrice?: `0x${string}` | undefined;
136
- maxFeePerGas?: `0x${string}` | undefined;
137
- maxPriorityFeePerGas?: `0x${string}` | undefined;
138
141
  accessList?: undefined;
142
+ blobVersionedHashes?: undefined;
139
143
  chainId?: `0x${string}` | undefined;
140
144
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
141
145
  isSystemTx?: boolean | undefined;
@@ -143,11 +147,17 @@ export declare const base: {
143
147
  sourceHash: `0x${string}`;
144
148
  type: "0x7e";
145
149
  }) | ({
150
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
151
+ gas?: `0x${string}` | undefined;
152
+ value?: `0x${string}` | undefined;
153
+ gasPrice?: `0x${string}` | undefined;
154
+ maxFeePerBlobGas?: `0x${string}` | undefined;
155
+ maxFeePerGas?: `0x${string}` | undefined;
156
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
146
157
  yParity?: `0x${string}` | undefined;
147
158
  blockHash?: `0x${string}` | null | undefined;
148
159
  blockNumber?: `0x${string}` | null | undefined;
149
160
  from?: `0x${string}` | undefined;
150
- gas?: `0x${string}` | undefined;
151
161
  hash?: `0x${string}` | undefined;
152
162
  input?: `0x${string}` | undefined;
153
163
  nonce?: `0x${string}` | undefined;
@@ -156,23 +166,25 @@ export declare const base: {
156
166
  to?: `0x${string}` | null | undefined;
157
167
  transactionIndex?: `0x${string}` | null | undefined;
158
168
  v?: `0x${string}` | undefined;
159
- value?: `0x${string}` | undefined;
160
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
161
- gasPrice?: `0x${string}` | undefined;
162
- maxFeePerGas?: `0x${string}` | undefined;
163
- maxPriorityFeePerGas?: `0x${string}` | undefined;
164
169
  accessList?: import("../../index.js").AccessList | undefined;
170
+ blobVersionedHashes?: undefined;
165
171
  chainId?: `0x${string}` | undefined;
166
172
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
167
173
  isSystemTx?: undefined;
168
174
  mint?: undefined;
169
175
  sourceHash?: undefined;
170
176
  }) | ({
177
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
178
+ gas?: `0x${string}` | undefined;
179
+ value?: `0x${string}` | undefined;
180
+ gasPrice?: `0x${string}` | undefined;
181
+ maxFeePerBlobGas?: `0x${string}` | undefined;
182
+ maxFeePerGas?: `0x${string}` | undefined;
183
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
171
184
  yParity?: `0x${string}` | undefined;
172
185
  blockHash?: `0x${string}` | null | undefined;
173
186
  blockNumber?: `0x${string}` | null | undefined;
174
187
  from?: `0x${string}` | undefined;
175
- gas?: `0x${string}` | undefined;
176
188
  hash?: `0x${string}` | undefined;
177
189
  input?: `0x${string}` | undefined;
178
190
  nonce?: `0x${string}` | undefined;
@@ -181,23 +193,25 @@ export declare const base: {
181
193
  to?: `0x${string}` | null | undefined;
182
194
  transactionIndex?: `0x${string}` | null | undefined;
183
195
  v?: `0x${string}` | undefined;
184
- value?: `0x${string}` | undefined;
185
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
186
- gasPrice?: `0x${string}` | undefined;
187
- maxFeePerGas?: `0x${string}` | undefined;
188
- maxPriorityFeePerGas?: `0x${string}` | undefined;
189
196
  accessList?: import("../../index.js").AccessList | undefined;
197
+ blobVersionedHashes?: undefined;
190
198
  chainId?: `0x${string}` | undefined;
191
199
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
192
200
  isSystemTx?: undefined;
193
201
  mint?: undefined;
194
202
  sourceHash?: undefined;
195
203
  }) | ({
204
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
205
+ gas?: `0x${string}` | undefined;
206
+ value?: `0x${string}` | undefined;
207
+ gasPrice?: `0x${string}` | undefined;
208
+ maxFeePerBlobGas?: `0x${string}` | undefined;
209
+ maxFeePerGas?: `0x${string}` | undefined;
210
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
196
211
  yParity?: `0x${string}` | undefined;
197
212
  blockHash?: `0x${string}` | null | undefined;
198
213
  blockNumber?: `0x${string}` | null | undefined;
199
214
  from?: `0x${string}` | undefined;
200
- gas?: `0x${string}` | undefined;
201
215
  hash?: `0x${string}` | undefined;
202
216
  input?: `0x${string}` | undefined;
203
217
  nonce?: `0x${string}` | undefined;
@@ -206,23 +220,25 @@ export declare const base: {
206
220
  to?: `0x${string}` | null | undefined;
207
221
  transactionIndex?: `0x${string}` | null | undefined;
208
222
  v?: `0x${string}` | undefined;
209
- value?: `0x${string}` | undefined;
210
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
211
- gasPrice?: `0x${string}` | undefined;
212
- maxFeePerGas?: `0x${string}` | undefined;
213
- maxPriorityFeePerGas?: `0x${string}` | undefined;
214
223
  accessList?: import("../../index.js").AccessList | undefined;
224
+ blobVersionedHashes?: undefined;
215
225
  chainId?: `0x${string}` | undefined;
216
226
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
217
227
  isSystemTx?: undefined;
218
228
  mint?: undefined;
219
229
  sourceHash?: undefined;
220
230
  }) | ({
231
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
232
+ gas?: `0x${string}` | undefined;
233
+ value?: `0x${string}` | undefined;
234
+ gasPrice?: `0x${string}` | undefined;
235
+ maxFeePerBlobGas?: `0x${string}` | undefined;
236
+ maxFeePerGas?: `0x${string}` | undefined;
237
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
221
238
  yParity?: `0x${string}` | undefined;
222
239
  blockHash?: `0x${string}` | null | undefined;
223
240
  blockNumber?: `0x${string}` | null | undefined;
224
241
  from?: `0x${string}` | undefined;
225
- gas?: `0x${string}` | undefined;
226
242
  hash?: `0x${string}` | undefined;
227
243
  input?: `0x${string}` | undefined;
228
244
  nonce?: `0x${string}` | undefined;
@@ -231,12 +247,8 @@ export declare const base: {
231
247
  to?: `0x${string}` | null | undefined;
232
248
  transactionIndex?: `0x${string}` | null | undefined;
233
249
  v?: `0x${string}` | undefined;
234
- value?: `0x${string}` | undefined;
235
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
236
- gasPrice?: `0x${string}` | undefined;
237
- maxFeePerGas?: `0x${string}` | undefined;
238
- maxPriorityFeePerGas?: `0x${string}` | undefined;
239
250
  accessList?: import("../../index.js").AccessList | undefined;
251
+ blobVersionedHashes?: undefined;
240
252
  chainId?: `0x${string}` | undefined;
241
253
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
242
254
  isSystemTx?: boolean | undefined;
@@ -244,11 +256,17 @@ export declare const base: {
244
256
  sourceHash: `0x${string}`;
245
257
  type: "0x7e";
246
258
  }) | ({
259
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
260
+ gas?: `0x${string}` | undefined;
261
+ value?: `0x${string}` | undefined;
262
+ gasPrice?: `0x${string}` | undefined;
263
+ maxFeePerBlobGas?: `0x${string}` | undefined;
264
+ maxFeePerGas?: `0x${string}` | undefined;
265
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
247
266
  yParity?: `0x${string}` | undefined;
248
267
  blockHash?: `0x${string}` | null | undefined;
249
268
  blockNumber?: `0x${string}` | null | undefined;
250
269
  from?: `0x${string}` | undefined;
251
- gas?: `0x${string}` | undefined;
252
270
  hash?: `0x${string}` | undefined;
253
271
  input?: `0x${string}` | undefined;
254
272
  nonce?: `0x${string}` | undefined;
@@ -257,23 +275,79 @@ export declare const base: {
257
275
  to?: `0x${string}` | null | undefined;
258
276
  transactionIndex?: `0x${string}` | null | undefined;
259
277
  v?: `0x${string}` | undefined;
278
+ accessList?: import("../../index.js").AccessList | undefined;
279
+ blobVersionedHashes?: undefined;
280
+ chainId?: `0x${string}` | undefined;
281
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
282
+ isSystemTx?: undefined;
283
+ mint?: undefined;
284
+ sourceHash?: undefined;
285
+ }) | ({
286
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
287
+ gas?: `0x${string}` | undefined;
260
288
  value?: `0x${string}` | undefined;
261
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
262
289
  gasPrice?: `0x${string}` | undefined;
290
+ maxFeePerBlobGas?: `0x${string}` | undefined;
263
291
  maxFeePerGas?: `0x${string}` | undefined;
264
292
  maxPriorityFeePerGas?: `0x${string}` | undefined;
293
+ yParity?: `0x${string}` | undefined;
294
+ blockHash?: `0x${string}` | null | undefined;
295
+ blockNumber?: `0x${string}` | null | undefined;
296
+ from?: `0x${string}` | undefined;
297
+ hash?: `0x${string}` | undefined;
298
+ input?: `0x${string}` | undefined;
299
+ nonce?: `0x${string}` | undefined;
300
+ r?: `0x${string}` | undefined;
301
+ s?: `0x${string}` | undefined;
302
+ to?: `0x${string}` | null | undefined;
303
+ transactionIndex?: `0x${string}` | null | undefined;
304
+ v?: `0x${string}` | undefined;
265
305
  accessList?: import("../../index.js").AccessList | undefined;
306
+ blobVersionedHashes?: undefined;
266
307
  chainId?: `0x${string}` | undefined;
267
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
308
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
268
309
  isSystemTx?: undefined;
269
310
  mint?: undefined;
270
311
  sourceHash?: undefined;
271
312
  }) | ({
313
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
314
+ gas?: `0x${string}` | undefined;
315
+ value?: `0x${string}` | undefined;
316
+ gasPrice?: `0x${string}` | undefined;
317
+ maxFeePerBlobGas?: `0x${string}` | undefined;
318
+ maxFeePerGas?: `0x${string}` | undefined;
319
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
272
320
  yParity?: `0x${string}` | undefined;
273
321
  blockHash?: `0x${string}` | null | undefined;
274
322
  blockNumber?: `0x${string}` | null | undefined;
275
323
  from?: `0x${string}` | undefined;
324
+ hash?: `0x${string}` | undefined;
325
+ input?: `0x${string}` | undefined;
326
+ nonce?: `0x${string}` | undefined;
327
+ r?: `0x${string}` | undefined;
328
+ s?: `0x${string}` | undefined;
329
+ to?: `0x${string}` | null | undefined;
330
+ transactionIndex?: `0x${string}` | null | undefined;
331
+ v?: `0x${string}` | undefined;
332
+ accessList?: import("../../index.js").AccessList | undefined;
333
+ blobVersionedHashes?: undefined;
334
+ chainId?: `0x${string}` | undefined;
335
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
336
+ isSystemTx?: undefined;
337
+ mint?: undefined;
338
+ sourceHash?: undefined;
339
+ }) | ({
340
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
276
341
  gas?: `0x${string}` | undefined;
342
+ value?: `0x${string}` | undefined;
343
+ gasPrice?: `0x${string}` | undefined;
344
+ maxFeePerBlobGas?: `0x${string}` | undefined;
345
+ maxFeePerGas?: `0x${string}` | undefined;
346
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
347
+ yParity?: `0x${string}` | undefined;
348
+ blockHash?: `0x${string}` | null | undefined;
349
+ blockNumber?: `0x${string}` | null | undefined;
350
+ from?: `0x${string}` | undefined;
277
351
  hash?: `0x${string}` | undefined;
278
352
  input?: `0x${string}` | undefined;
279
353
  nonce?: `0x${string}` | undefined;
@@ -282,23 +356,53 @@ export declare const base: {
282
356
  to?: `0x${string}` | null | undefined;
283
357
  transactionIndex?: `0x${string}` | null | undefined;
284
358
  v?: `0x${string}` | undefined;
359
+ accessList?: import("../../index.js").AccessList | undefined;
360
+ blobVersionedHashes?: undefined;
361
+ chainId?: `0x${string}` | undefined;
362
+ } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
363
+ isSystemTx?: boolean | undefined;
364
+ mint?: `0x${string}` | undefined;
365
+ sourceHash: `0x${string}`;
366
+ type: "0x7e";
367
+ }) | ({
368
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
369
+ gas?: `0x${string}` | undefined;
285
370
  value?: `0x${string}` | undefined;
286
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
287
371
  gasPrice?: `0x${string}` | undefined;
372
+ maxFeePerBlobGas?: `0x${string}` | undefined;
288
373
  maxFeePerGas?: `0x${string}` | undefined;
289
374
  maxPriorityFeePerGas?: `0x${string}` | undefined;
375
+ yParity?: `0x${string}` | undefined;
376
+ blockHash?: `0x${string}` | null | undefined;
377
+ blockNumber?: `0x${string}` | null | undefined;
378
+ from?: `0x${string}` | undefined;
379
+ hash?: `0x${string}` | undefined;
380
+ input?: `0x${string}` | undefined;
381
+ nonce?: `0x${string}` | undefined;
382
+ r?: `0x${string}` | undefined;
383
+ s?: `0x${string}` | undefined;
384
+ to?: `0x${string}` | null | undefined;
385
+ transactionIndex?: `0x${string}` | null | undefined;
386
+ v?: `0x${string}` | undefined;
290
387
  accessList?: import("../../index.js").AccessList | undefined;
388
+ blobVersionedHashes?: `0x${string}`[] | undefined;
291
389
  chainId?: `0x${string}` | undefined;
292
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
390
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
293
391
  isSystemTx?: undefined;
294
392
  mint?: undefined;
295
393
  sourceHash?: undefined;
296
394
  }) | ({
395
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
396
+ gas?: `0x${string}` | undefined;
397
+ value?: `0x${string}` | undefined;
398
+ gasPrice?: `0x${string}` | undefined;
399
+ maxFeePerBlobGas?: `0x${string}` | undefined;
400
+ maxFeePerGas?: `0x${string}` | undefined;
401
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
297
402
  yParity?: `0x${string}` | undefined;
298
403
  blockHash?: `0x${string}` | null | undefined;
299
404
  blockNumber?: `0x${string}` | null | undefined;
300
405
  from?: `0x${string}` | undefined;
301
- gas?: `0x${string}` | undefined;
302
406
  hash?: `0x${string}` | undefined;
303
407
  input?: `0x${string}` | undefined;
304
408
  nonce?: `0x${string}` | undefined;
@@ -307,23 +411,52 @@ export declare const base: {
307
411
  to?: `0x${string}` | null | undefined;
308
412
  transactionIndex?: `0x${string}` | null | undefined;
309
413
  v?: `0x${string}` | undefined;
414
+ accessList?: import("../../index.js").AccessList | undefined;
415
+ blobVersionedHashes?: `0x${string}`[] | undefined;
416
+ chainId?: `0x${string}` | undefined;
417
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
418
+ isSystemTx?: undefined;
419
+ mint?: undefined;
420
+ sourceHash?: undefined;
421
+ }) | ({
422
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
423
+ gas?: `0x${string}` | undefined;
310
424
  value?: `0x${string}` | undefined;
311
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
312
425
  gasPrice?: `0x${string}` | undefined;
426
+ maxFeePerBlobGas?: `0x${string}` | undefined;
313
427
  maxFeePerGas?: `0x${string}` | undefined;
314
428
  maxPriorityFeePerGas?: `0x${string}` | undefined;
429
+ yParity?: `0x${string}` | undefined;
430
+ blockHash?: `0x${string}` | null | undefined;
431
+ blockNumber?: `0x${string}` | null | undefined;
432
+ from?: `0x${string}` | undefined;
433
+ hash?: `0x${string}` | undefined;
434
+ input?: `0x${string}` | undefined;
435
+ nonce?: `0x${string}` | undefined;
436
+ r?: `0x${string}` | undefined;
437
+ s?: `0x${string}` | undefined;
438
+ to?: `0x${string}` | null | undefined;
439
+ transactionIndex?: `0x${string}` | null | undefined;
440
+ v?: `0x${string}` | undefined;
315
441
  accessList?: import("../../index.js").AccessList | undefined;
442
+ blobVersionedHashes?: `0x${string}`[] | undefined;
316
443
  chainId?: `0x${string}` | undefined;
317
444
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
318
445
  isSystemTx?: undefined;
319
446
  mint?: undefined;
320
447
  sourceHash?: undefined;
321
448
  }) | ({
449
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
450
+ gas?: `0x${string}` | undefined;
451
+ value?: `0x${string}` | undefined;
452
+ gasPrice?: `0x${string}` | undefined;
453
+ maxFeePerBlobGas?: `0x${string}` | undefined;
454
+ maxFeePerGas?: `0x${string}` | undefined;
455
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
322
456
  yParity?: `0x${string}` | undefined;
323
457
  blockHash?: `0x${string}` | null | undefined;
324
458
  blockNumber?: `0x${string}` | null | undefined;
325
459
  from?: `0x${string}` | undefined;
326
- gas?: `0x${string}` | undefined;
327
460
  hash?: `0x${string}` | undefined;
328
461
  input?: `0x${string}` | undefined;
329
462
  nonce?: `0x${string}` | undefined;
@@ -332,12 +465,35 @@ export declare const base: {
332
465
  to?: `0x${string}` | null | undefined;
333
466
  transactionIndex?: `0x${string}` | null | undefined;
334
467
  v?: `0x${string}` | undefined;
468
+ accessList?: import("../../index.js").AccessList | undefined;
469
+ blobVersionedHashes?: `0x${string}`[] | undefined;
470
+ chainId?: `0x${string}` | undefined;
471
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP4844<`0x${string}`, `0x${string}`, boolean, "0x3">, "yParity">, "typeHex"> & {
472
+ isSystemTx?: undefined;
473
+ mint?: undefined;
474
+ sourceHash?: undefined;
475
+ }) | ({
476
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
477
+ gas?: `0x${string}` | undefined;
335
478
  value?: `0x${string}` | undefined;
336
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
337
479
  gasPrice?: `0x${string}` | undefined;
480
+ maxFeePerBlobGas?: `0x${string}` | undefined;
338
481
  maxFeePerGas?: `0x${string}` | undefined;
339
482
  maxPriorityFeePerGas?: `0x${string}` | undefined;
483
+ yParity?: `0x${string}` | undefined;
484
+ blockHash?: `0x${string}` | null | undefined;
485
+ blockNumber?: `0x${string}` | null | undefined;
486
+ from?: `0x${string}` | undefined;
487
+ hash?: `0x${string}` | undefined;
488
+ input?: `0x${string}` | undefined;
489
+ nonce?: `0x${string}` | undefined;
490
+ r?: `0x${string}` | undefined;
491
+ s?: `0x${string}` | undefined;
492
+ to?: `0x${string}` | null | undefined;
493
+ transactionIndex?: `0x${string}` | null | undefined;
494
+ v?: `0x${string}` | undefined;
340
495
  accessList?: import("../../index.js").AccessList | undefined;
496
+ blobVersionedHashes?: `0x${string}`[] | undefined;
341
497
  chainId?: `0x${string}` | undefined;
342
498
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
343
499
  isSystemTx?: boolean | undefined;
@@ -345,10 +501,11 @@ export declare const base: {
345
501
  sourceHash: `0x${string}`;
346
502
  type: "0x7e";
347
503
  })) => ({
504
+ gas: bigint;
505
+ value: bigint;
348
506
  blockHash: `0x${string}` | null;
349
507
  blockNumber: bigint | null;
350
508
  from: `0x${string}`;
351
- gas: bigint;
352
509
  hash: `0x${string}`;
353
510
  input: `0x${string}`;
354
511
  nonce: number;
@@ -358,11 +515,12 @@ export declare const base: {
358
515
  transactionIndex: number | null;
359
516
  typeHex: `0x${string}` | null;
360
517
  v: bigint;
361
- value: bigint;
362
518
  gasPrice: bigint;
519
+ maxFeePerBlobGas?: undefined;
363
520
  maxFeePerGas?: undefined;
364
521
  maxPriorityFeePerGas?: undefined;
365
522
  accessList?: undefined;
523
+ blobVersionedHashes?: undefined;
366
524
  chainId?: number | undefined;
367
525
  yParity?: undefined;
368
526
  type: "legacy";
@@ -370,10 +528,11 @@ export declare const base: {
370
528
  mint?: undefined;
371
529
  sourceHash?: undefined;
372
530
  } | {
531
+ gas: bigint;
532
+ value: bigint;
373
533
  blockHash: `0x${string}` | null;
374
534
  blockNumber: bigint | null;
375
535
  from: `0x${string}`;
376
- gas: bigint;
377
536
  hash: `0x${string}`;
378
537
  input: `0x${string}`;
379
538
  nonce: number;
@@ -383,11 +542,12 @@ export declare const base: {
383
542
  transactionIndex: number | null;
384
543
  typeHex: `0x${string}` | null;
385
544
  v: bigint;
386
- value: bigint;
387
545
  gasPrice: undefined;
546
+ maxFeePerBlobGas?: undefined;
388
547
  maxFeePerGas: bigint;
389
548
  maxPriorityFeePerGas: bigint;
390
549
  accessList?: undefined;
550
+ blobVersionedHashes?: undefined;
391
551
  chainId?: number | undefined;
392
552
  yParity: number;
393
553
  type: "deposit";
@@ -411,9 +571,11 @@ export declare const base: {
411
571
  value: bigint;
412
572
  yParity: number;
413
573
  gasPrice: bigint;
574
+ maxFeePerBlobGas?: undefined;
414
575
  maxFeePerGas?: undefined;
415
576
  maxPriorityFeePerGas?: undefined;
416
577
  accessList: import("../../index.js").AccessList;
578
+ blobVersionedHashes?: undefined;
417
579
  chainId: number;
418
580
  type: "eip2930";
419
581
  isSystemTx?: undefined;
@@ -436,9 +598,11 @@ export declare const base: {
436
598
  value: bigint;
437
599
  yParity: number;
438
600
  gasPrice: undefined;
601
+ maxFeePerBlobGas?: undefined;
439
602
  maxFeePerGas: bigint;
440
603
  maxPriorityFeePerGas: bigint;
441
604
  accessList: import("../../index.js").AccessList;
605
+ blobVersionedHashes?: undefined;
442
606
  chainId: number;
443
607
  type: "eip1559";
444
608
  isSystemTx?: undefined;
@@ -461,9 +625,11 @@ export declare const base: {
461
625
  value: bigint;
462
626
  yParity: number;
463
627
  gasPrice: undefined;
628
+ maxFeePerBlobGas?: undefined;
464
629
  maxFeePerGas: bigint;
465
630
  maxPriorityFeePerGas: bigint;
466
631
  accessList: import("../../index.js").AccessList;
632
+ blobVersionedHashes?: undefined;
467
633
  chainId: number;
468
634
  type: "deposit";
469
635
  isSystemTx?: boolean | undefined;
@@ -486,9 +652,11 @@ export declare const base: {
486
652
  value: bigint;
487
653
  yParity: number;
488
654
  gasPrice: bigint;
655
+ maxFeePerBlobGas?: undefined;
489
656
  maxFeePerGas: undefined;
490
657
  maxPriorityFeePerGas: undefined;
491
658
  accessList: import("../../index.js").AccessList;
659
+ blobVersionedHashes?: undefined;
492
660
  chainId: number;
493
661
  type: "eip2930";
494
662
  isSystemTx?: undefined;
@@ -511,9 +679,11 @@ export declare const base: {
511
679
  value: bigint;
512
680
  yParity: number;
513
681
  gasPrice?: undefined;
682
+ maxFeePerBlobGas?: undefined;
514
683
  maxFeePerGas: bigint;
515
684
  maxPriorityFeePerGas: bigint;
516
685
  accessList: import("../../index.js").AccessList;
686
+ blobVersionedHashes?: undefined;
517
687
  chainId: number;
518
688
  type: "eip1559";
519
689
  isSystemTx?: undefined;
@@ -536,9 +706,65 @@ export declare const base: {
536
706
  value: bigint;
537
707
  yParity: number;
538
708
  gasPrice?: undefined;
709
+ maxFeePerBlobGas?: undefined;
710
+ maxFeePerGas: bigint;
711
+ maxPriorityFeePerGas: bigint;
712
+ accessList: import("../../index.js").AccessList;
713
+ blobVersionedHashes?: undefined;
714
+ chainId: number;
715
+ type: "deposit";
716
+ isSystemTx?: boolean | undefined;
717
+ mint?: bigint | undefined;
718
+ sourceHash: `0x${string}`;
719
+ } | {
720
+ blockHash: `0x${string}` | null;
721
+ blockNumber: bigint | null;
722
+ from: `0x${string}`;
723
+ gas: bigint;
724
+ hash: `0x${string}`;
725
+ input: `0x${string}`;
726
+ nonce: number;
727
+ r: `0x${string}`;
728
+ s: `0x${string}`;
729
+ to: `0x${string}` | null;
730
+ transactionIndex: number | null;
731
+ typeHex: `0x${string}` | null;
732
+ v: bigint;
733
+ value: bigint;
734
+ yParity: number;
735
+ gasPrice?: undefined;
736
+ maxFeePerBlobGas: bigint;
737
+ maxFeePerGas: bigint;
738
+ maxPriorityFeePerGas: bigint;
739
+ accessList: import("../../index.js").AccessList;
740
+ blobVersionedHashes: `0x${string}`[];
741
+ chainId: number;
742
+ type: "eip4844";
743
+ isSystemTx?: undefined;
744
+ mint?: undefined;
745
+ sourceHash?: undefined;
746
+ } | {
747
+ blockHash: `0x${string}` | null;
748
+ blockNumber: bigint | null;
749
+ from: `0x${string}`;
750
+ gas: bigint;
751
+ hash: `0x${string}`;
752
+ input: `0x${string}`;
753
+ nonce: number;
754
+ r: `0x${string}`;
755
+ s: `0x${string}`;
756
+ to: `0x${string}` | null;
757
+ transactionIndex: number | null;
758
+ typeHex: `0x${string}` | null;
759
+ v: bigint;
760
+ value: bigint;
761
+ yParity: number;
762
+ gasPrice?: undefined;
763
+ maxFeePerBlobGas: undefined;
539
764
  maxFeePerGas: bigint;
540
765
  maxPriorityFeePerGas: bigint;
541
766
  accessList: import("../../index.js").AccessList;
767
+ blobVersionedHashes: `0x${string}`[];
542
768
  chainId: number;
543
769
  type: "deposit";
544
770
  isSystemTx?: boolean | undefined;
@@ -550,6 +776,8 @@ export declare const base: {
550
776
  readonly transactionReceipt: {
551
777
  exclude: [] | undefined;
552
778
  format: (args: import("../index.js").Assign<Partial<import("../../index.js").RpcTransactionReceipt>, import("../index.js").OpStackRpcTransactionReceiptOverrides>) => {
779
+ blobGasPrice?: bigint | undefined;
780
+ blobGasUsed?: bigint | undefined;
553
781
  blockHash: `0x${string}`;
554
782
  blockNumber: bigint;
555
783
  contractAddress: `0x${string}` | null;
@@ -1 +1 @@
1
- {"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../chains/definitions/base.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoCf,CAAA"}
1
+ {"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../chains/definitions/base.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoCf,CAAA"}