viem 0.0.0-main.20231112T003114 → 0.0.0-main.20231112T014532

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 (90) hide show
  1. package/_cjs/chains/definitions/lukso.js +31 -0
  2. package/_cjs/chains/definitions/lukso.js.map +1 -0
  3. package/_cjs/chains/index.js +5 -3
  4. package/_cjs/chains/index.js.map +1 -1
  5. package/_cjs/constants/bytes.js +5 -0
  6. package/_cjs/constants/bytes.js.map +1 -0
  7. package/_cjs/constants/strings.js +5 -0
  8. package/_cjs/constants/strings.js.map +1 -0
  9. package/_cjs/errors/version.js +1 -1
  10. package/_cjs/index.js +10 -6
  11. package/_cjs/index.js.map +1 -1
  12. package/_cjs/utils/formatters/transaction.js +16 -0
  13. package/_cjs/utils/formatters/transaction.js.map +1 -1
  14. package/_cjs/utils/signature/hashMessage.js +2 -1
  15. package/_cjs/utils/signature/hashMessage.js.map +1 -1
  16. package/_esm/chains/definitions/lukso.js +28 -0
  17. package/_esm/chains/definitions/lukso.js.map +1 -0
  18. package/_esm/chains/index.js +1 -0
  19. package/_esm/chains/index.js.map +1 -1
  20. package/_esm/constants/bytes.js +2 -0
  21. package/_esm/constants/bytes.js.map +1 -0
  22. package/_esm/constants/strings.js +2 -0
  23. package/_esm/constants/strings.js.map +1 -0
  24. package/_esm/errors/version.js +1 -1
  25. package/_esm/index.js +2 -0
  26. package/_esm/index.js.map +1 -1
  27. package/_esm/utils/formatters/transaction.js +18 -0
  28. package/_esm/utils/formatters/transaction.js.map +1 -1
  29. package/_esm/utils/signature/hashMessage.js +2 -1
  30. package/_esm/utils/signature/hashMessage.js.map +1 -1
  31. package/_types/chains/celo/formatters.d.ts +11 -0
  32. package/_types/chains/celo/formatters.d.ts.map +1 -1
  33. package/_types/chains/definitions/base.d.ts +8 -0
  34. package/_types/chains/definitions/base.d.ts.map +1 -1
  35. package/_types/chains/definitions/baseGoerli.d.ts +8 -0
  36. package/_types/chains/definitions/baseGoerli.d.ts.map +1 -1
  37. package/_types/chains/definitions/baseSepolia.d.ts +8 -0
  38. package/_types/chains/definitions/baseSepolia.d.ts.map +1 -1
  39. package/_types/chains/definitions/celo.d.ts +11 -0
  40. package/_types/chains/definitions/celo.d.ts.map +1 -1
  41. package/_types/chains/definitions/celoAlfajores.d.ts +11 -0
  42. package/_types/chains/definitions/celoAlfajores.d.ts.map +1 -1
  43. package/_types/chains/definitions/celoCannoli.d.ts +11 -0
  44. package/_types/chains/definitions/celoCannoli.d.ts.map +1 -1
  45. package/_types/chains/definitions/lukso.d.ts +27 -0
  46. package/_types/chains/definitions/lukso.d.ts.map +1 -0
  47. package/_types/chains/definitions/optimism.d.ts +8 -0
  48. package/_types/chains/definitions/optimism.d.ts.map +1 -1
  49. package/_types/chains/definitions/optimismGoerli.d.ts +8 -0
  50. package/_types/chains/definitions/optimismGoerli.d.ts.map +1 -1
  51. package/_types/chains/definitions/optimismSepolia.d.ts +8 -0
  52. package/_types/chains/definitions/optimismSepolia.d.ts.map +1 -1
  53. package/_types/chains/definitions/zkSync.d.ts +11 -0
  54. package/_types/chains/definitions/zkSync.d.ts.map +1 -1
  55. package/_types/chains/definitions/zkSyncTestnet.d.ts +11 -0
  56. package/_types/chains/definitions/zkSyncTestnet.d.ts.map +1 -1
  57. package/_types/chains/definitions/zora.d.ts +8 -0
  58. package/_types/chains/definitions/zora.d.ts.map +1 -1
  59. package/_types/chains/definitions/zoraSepolia.d.ts +8 -0
  60. package/_types/chains/definitions/zoraSepolia.d.ts.map +1 -1
  61. package/_types/chains/definitions/zoraTestnet.d.ts +8 -0
  62. package/_types/chains/definitions/zoraTestnet.d.ts.map +1 -1
  63. package/_types/chains/index.d.ts +1 -0
  64. package/_types/chains/index.d.ts.map +1 -1
  65. package/_types/chains/optimism/formatters.d.ts +8 -0
  66. package/_types/chains/optimism/formatters.d.ts.map +1 -1
  67. package/_types/chains/zksync/formatters.d.ts +11 -0
  68. package/_types/chains/zksync/formatters.d.ts.map +1 -1
  69. package/_types/constants/bytes.d.ts +2 -0
  70. package/_types/constants/bytes.d.ts.map +1 -0
  71. package/_types/constants/strings.d.ts +2 -0
  72. package/_types/constants/strings.d.ts.map +1 -0
  73. package/_types/errors/version.d.ts +1 -1
  74. package/_types/index.d.ts +2 -0
  75. package/_types/index.d.ts.map +1 -1
  76. package/_types/types/transaction.d.ts +12 -0
  77. package/_types/types/transaction.d.ts.map +1 -1
  78. package/_types/utils/formatters/transaction.d.ts +1 -1
  79. package/_types/utils/formatters/transaction.d.ts.map +1 -1
  80. package/_types/utils/signature/hashMessage.d.ts.map +1 -1
  81. package/chains/definitions/lukso.ts +28 -0
  82. package/chains/index.ts +1 -0
  83. package/constants/bytes.ts +2 -0
  84. package/constants/strings.ts +1 -0
  85. package/errors/version.ts +1 -1
  86. package/index.ts +2 -0
  87. package/package.json +1 -1
  88. package/types/transaction.ts +12 -0
  89. package/utils/formatters/transaction.ts +20 -2
  90. package/utils/signature/hashMessage.ts +2 -1
@@ -117,6 +117,7 @@ export declare const formattersCelo: {
117
117
  maxPriorityFeePerGas?: undefined;
118
118
  accessList?: undefined;
119
119
  chainId?: number | undefined;
120
+ yParity?: number | undefined;
120
121
  type: "legacy";
121
122
  feeCurrency: `0x${string}` | null;
122
123
  gatewayFee: bigint | null;
@@ -141,6 +142,7 @@ export declare const formattersCelo: {
141
142
  maxPriorityFeePerGas: bigint;
142
143
  accessList?: undefined;
143
144
  chainId?: number | undefined;
145
+ yParity?: number | undefined;
144
146
  type: "cip42";
145
147
  feeCurrency: `0x${string}` | null;
146
148
  gatewayFee: bigint | null;
@@ -165,6 +167,7 @@ export declare const formattersCelo: {
165
167
  maxPriorityFeePerGas: bigint;
166
168
  accessList?: undefined;
167
169
  chainId?: number | undefined;
170
+ yParity?: number | undefined;
168
171
  type: "cip64";
169
172
  feeCurrency: `0x${string}` | null;
170
173
  gatewayFee?: undefined;
@@ -189,6 +192,7 @@ export declare const formattersCelo: {
189
192
  maxPriorityFeePerGas?: undefined;
190
193
  accessList: import("../../index.js").AccessList;
191
194
  chainId: number;
195
+ yParity?: number | undefined;
192
196
  type: "eip2930";
193
197
  feeCurrency: `0x${string}` | null;
194
198
  gatewayFee: bigint | null;
@@ -213,6 +217,7 @@ export declare const formattersCelo: {
213
217
  maxPriorityFeePerGas: bigint;
214
218
  accessList: import("../../index.js").AccessList;
215
219
  chainId: number;
220
+ yParity?: number | undefined;
216
221
  type: "eip1559";
217
222
  feeCurrency: `0x${string}` | null;
218
223
  gatewayFee: bigint | null;
@@ -237,6 +242,7 @@ export declare const formattersCelo: {
237
242
  maxPriorityFeePerGas: bigint;
238
243
  accessList: import("../../index.js").AccessList;
239
244
  chainId: number;
245
+ yParity?: number | undefined;
240
246
  type: "cip42";
241
247
  feeCurrency: `0x${string}` | null;
242
248
  gatewayFee: bigint | null;
@@ -261,6 +267,7 @@ export declare const formattersCelo: {
261
267
  maxPriorityFeePerGas: bigint;
262
268
  accessList: import("../../index.js").AccessList;
263
269
  chainId: number;
270
+ yParity?: number | undefined;
264
271
  type: "cip64";
265
272
  feeCurrency: `0x${string}` | null;
266
273
  gatewayFee?: undefined;
@@ -285,6 +292,7 @@ export declare const formattersCelo: {
285
292
  maxPriorityFeePerGas: undefined;
286
293
  accessList: import("../../index.js").AccessList;
287
294
  chainId: number;
295
+ yParity?: number | undefined;
288
296
  type: "eip2930";
289
297
  feeCurrency: `0x${string}` | null;
290
298
  gatewayFee: bigint | null;
@@ -309,6 +317,7 @@ export declare const formattersCelo: {
309
317
  maxPriorityFeePerGas: bigint;
310
318
  accessList: import("../../index.js").AccessList;
311
319
  chainId: number;
320
+ yParity?: number | undefined;
312
321
  type: "eip1559";
313
322
  feeCurrency: `0x${string}` | null;
314
323
  gatewayFee: bigint | null;
@@ -333,6 +342,7 @@ export declare const formattersCelo: {
333
342
  maxPriorityFeePerGas: bigint;
334
343
  accessList: import("../../index.js").AccessList;
335
344
  chainId: number;
345
+ yParity?: number | undefined;
336
346
  type: "cip42";
337
347
  feeCurrency: `0x${string}` | null;
338
348
  gatewayFee: bigint | null;
@@ -357,6 +367,7 @@ export declare const formattersCelo: {
357
367
  maxPriorityFeePerGas: bigint;
358
368
  accessList: import("../../index.js").AccessList;
359
369
  chainId: number;
370
+ yParity?: number | undefined;
360
371
  type: "cip64";
361
372
  feeCurrency: `0x${string}` | null;
362
373
  gatewayFee?: undefined;
@@ -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;AAW/C,OAAO,KAAK,EACV,kBAAkB,EAClB,kBAAkB,EAClB,kCAAkC,EAElC,eAAe,EAEf,sBAAsB,EACvB,MAAM,YAAY,CAAA;AAGnB,eAAO,MAAM,cAAc;;;;0BAKL,IAAI,EAAE,GAAG,kBAAkB,EAAE;;;;;;;;;;;;;;;;;;;;;0BAG/B,IAAI,EAAE,GAAG,eAAe,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyEV,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;AAW/C,OAAO,KAAK,EACV,kBAAkB,EAClB,kBAAkB,EAClB,kCAAkC,EAElC,eAAe,EAEf,sBAAsB,EACvB,MAAM,YAAY,CAAA;AAGnB,eAAO,MAAM,cAAc;;;;0BAKL,IAAI,EAAE,GAAG,kBAAkB,EAAE;;;;;;;;;;;;;;;;;;;;;0BAG/B,IAAI,EAAE,GAAG,eAAe,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyEV,CAAA"}
@@ -141,6 +141,7 @@ export declare const base: import("../../types/utils.js").Assign<{
141
141
  maxPriorityFeePerGas?: undefined;
142
142
  accessList?: undefined;
143
143
  chainId?: number | undefined;
144
+ yParity?: number | undefined;
144
145
  type: "legacy";
145
146
  isSystemTx?: undefined;
146
147
  mint?: undefined;
@@ -165,6 +166,7 @@ export declare const base: import("../../types/utils.js").Assign<{
165
166
  maxPriorityFeePerGas: bigint;
166
167
  accessList?: undefined;
167
168
  chainId?: number | undefined;
169
+ yParity?: number | undefined;
168
170
  type: "deposit";
169
171
  isSystemTx?: boolean | undefined;
170
172
  mint?: bigint | undefined;
@@ -189,6 +191,7 @@ export declare const base: import("../../types/utils.js").Assign<{
189
191
  maxPriorityFeePerGas?: undefined;
190
192
  accessList: import("../../index.js").AccessList;
191
193
  chainId: number;
194
+ yParity?: number | undefined;
192
195
  type: "eip2930";
193
196
  isSystemTx?: undefined;
194
197
  mint?: undefined;
@@ -213,6 +216,7 @@ export declare const base: import("../../types/utils.js").Assign<{
213
216
  maxPriorityFeePerGas: bigint;
214
217
  accessList: import("../../index.js").AccessList;
215
218
  chainId: number;
219
+ yParity?: number | undefined;
216
220
  type: "eip1559";
217
221
  isSystemTx?: undefined;
218
222
  mint?: undefined;
@@ -237,6 +241,7 @@ export declare const base: import("../../types/utils.js").Assign<{
237
241
  maxPriorityFeePerGas: bigint;
238
242
  accessList: import("../../index.js").AccessList;
239
243
  chainId: number;
244
+ yParity?: number | undefined;
240
245
  type: "deposit";
241
246
  isSystemTx?: boolean | undefined;
242
247
  mint?: bigint | undefined;
@@ -261,6 +266,7 @@ export declare const base: import("../../types/utils.js").Assign<{
261
266
  maxPriorityFeePerGas: undefined;
262
267
  accessList: import("../../index.js").AccessList;
263
268
  chainId: number;
269
+ yParity?: number | undefined;
264
270
  type: "eip2930";
265
271
  isSystemTx?: undefined;
266
272
  mint?: undefined;
@@ -285,6 +291,7 @@ export declare const base: import("../../types/utils.js").Assign<{
285
291
  maxPriorityFeePerGas: bigint;
286
292
  accessList: import("../../index.js").AccessList;
287
293
  chainId: number;
294
+ yParity?: number | undefined;
288
295
  type: "eip1559";
289
296
  isSystemTx?: undefined;
290
297
  mint?: undefined;
@@ -309,6 +316,7 @@ export declare const base: import("../../types/utils.js").Assign<{
309
316
  maxPriorityFeePerGas: bigint;
310
317
  accessList: import("../../index.js").AccessList;
311
318
  chainId: number;
319
+ yParity?: number | undefined;
312
320
  type: "deposit";
313
321
  isSystemTx?: boolean | undefined;
314
322
  mint?: bigint | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../chains/definitions/base.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8ChB,CAAA"}
1
+ {"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../chains/definitions/base.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8ChB,CAAA"}
@@ -135,6 +135,7 @@ export declare const baseGoerli: import("../../types/utils.js").Assign<{
135
135
  maxPriorityFeePerGas?: undefined;
136
136
  accessList?: undefined;
137
137
  chainId?: number | undefined;
138
+ yParity?: number | undefined;
138
139
  type: "legacy";
139
140
  isSystemTx?: undefined;
140
141
  mint?: undefined;
@@ -159,6 +160,7 @@ export declare const baseGoerli: import("../../types/utils.js").Assign<{
159
160
  maxPriorityFeePerGas: bigint;
160
161
  accessList?: undefined;
161
162
  chainId?: number | undefined;
163
+ yParity?: number | undefined;
162
164
  type: "deposit";
163
165
  isSystemTx?: boolean | undefined;
164
166
  mint?: bigint | undefined;
@@ -183,6 +185,7 @@ export declare const baseGoerli: import("../../types/utils.js").Assign<{
183
185
  maxPriorityFeePerGas?: undefined;
184
186
  accessList: import("../../index.js").AccessList;
185
187
  chainId: number;
188
+ yParity?: number | undefined;
186
189
  type: "eip2930";
187
190
  isSystemTx?: undefined;
188
191
  mint?: undefined;
@@ -207,6 +210,7 @@ export declare const baseGoerli: import("../../types/utils.js").Assign<{
207
210
  maxPriorityFeePerGas: bigint;
208
211
  accessList: import("../../index.js").AccessList;
209
212
  chainId: number;
213
+ yParity?: number | undefined;
210
214
  type: "eip1559";
211
215
  isSystemTx?: undefined;
212
216
  mint?: undefined;
@@ -231,6 +235,7 @@ export declare const baseGoerli: import("../../types/utils.js").Assign<{
231
235
  maxPriorityFeePerGas: bigint;
232
236
  accessList: import("../../index.js").AccessList;
233
237
  chainId: number;
238
+ yParity?: number | undefined;
234
239
  type: "deposit";
235
240
  isSystemTx?: boolean | undefined;
236
241
  mint?: bigint | undefined;
@@ -255,6 +260,7 @@ export declare const baseGoerli: import("../../types/utils.js").Assign<{
255
260
  maxPriorityFeePerGas: undefined;
256
261
  accessList: import("../../index.js").AccessList;
257
262
  chainId: number;
263
+ yParity?: number | undefined;
258
264
  type: "eip2930";
259
265
  isSystemTx?: undefined;
260
266
  mint?: undefined;
@@ -279,6 +285,7 @@ export declare const baseGoerli: import("../../types/utils.js").Assign<{
279
285
  maxPriorityFeePerGas: bigint;
280
286
  accessList: import("../../index.js").AccessList;
281
287
  chainId: number;
288
+ yParity?: number | undefined;
282
289
  type: "eip1559";
283
290
  isSystemTx?: undefined;
284
291
  mint?: undefined;
@@ -303,6 +310,7 @@ export declare const baseGoerli: import("../../types/utils.js").Assign<{
303
310
  maxPriorityFeePerGas: bigint;
304
311
  accessList: import("../../index.js").AccessList;
305
312
  chainId: number;
313
+ yParity?: number | undefined;
306
314
  type: "deposit";
307
315
  isSystemTx?: boolean | undefined;
308
316
  mint?: bigint | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"baseGoerli.d.ts","sourceRoot":"","sources":["../../../chains/definitions/baseGoerli.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCtB,CAAA"}
1
+ {"version":3,"file":"baseGoerli.d.ts","sourceRoot":"","sources":["../../../chains/definitions/baseGoerli.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCtB,CAAA"}
@@ -125,6 +125,7 @@ export declare const baseSepolia: import("../../types/utils.js").Assign<{
125
125
  maxPriorityFeePerGas?: undefined;
126
126
  accessList?: undefined;
127
127
  chainId?: number | undefined;
128
+ yParity?: number | undefined;
128
129
  type: "legacy";
129
130
  isSystemTx?: undefined;
130
131
  mint?: undefined;
@@ -149,6 +150,7 @@ export declare const baseSepolia: import("../../types/utils.js").Assign<{
149
150
  maxPriorityFeePerGas: bigint;
150
151
  accessList?: undefined;
151
152
  chainId?: number | undefined;
153
+ yParity?: number | undefined;
152
154
  type: "deposit";
153
155
  isSystemTx?: boolean | undefined;
154
156
  mint?: bigint | undefined;
@@ -173,6 +175,7 @@ export declare const baseSepolia: import("../../types/utils.js").Assign<{
173
175
  maxPriorityFeePerGas?: undefined;
174
176
  accessList: import("../../index.js").AccessList;
175
177
  chainId: number;
178
+ yParity?: number | undefined;
176
179
  type: "eip2930";
177
180
  isSystemTx?: undefined;
178
181
  mint?: undefined;
@@ -197,6 +200,7 @@ export declare const baseSepolia: import("../../types/utils.js").Assign<{
197
200
  maxPriorityFeePerGas: bigint;
198
201
  accessList: import("../../index.js").AccessList;
199
202
  chainId: number;
203
+ yParity?: number | undefined;
200
204
  type: "eip1559";
201
205
  isSystemTx?: undefined;
202
206
  mint?: undefined;
@@ -221,6 +225,7 @@ export declare const baseSepolia: import("../../types/utils.js").Assign<{
221
225
  maxPriorityFeePerGas: bigint;
222
226
  accessList: import("../../index.js").AccessList;
223
227
  chainId: number;
228
+ yParity?: number | undefined;
224
229
  type: "deposit";
225
230
  isSystemTx?: boolean | undefined;
226
231
  mint?: bigint | undefined;
@@ -245,6 +250,7 @@ export declare const baseSepolia: import("../../types/utils.js").Assign<{
245
250
  maxPriorityFeePerGas: undefined;
246
251
  accessList: import("../../index.js").AccessList;
247
252
  chainId: number;
253
+ yParity?: number | undefined;
248
254
  type: "eip2930";
249
255
  isSystemTx?: undefined;
250
256
  mint?: undefined;
@@ -269,6 +275,7 @@ export declare const baseSepolia: import("../../types/utils.js").Assign<{
269
275
  maxPriorityFeePerGas: bigint;
270
276
  accessList: import("../../index.js").AccessList;
271
277
  chainId: number;
278
+ yParity?: number | undefined;
272
279
  type: "eip1559";
273
280
  isSystemTx?: undefined;
274
281
  mint?: undefined;
@@ -293,6 +300,7 @@ export declare const baseSepolia: import("../../types/utils.js").Assign<{
293
300
  maxPriorityFeePerGas: bigint;
294
301
  accessList: import("../../index.js").AccessList;
295
302
  chainId: number;
303
+ yParity?: number | undefined;
296
304
  type: "deposit";
297
305
  isSystemTx?: boolean | undefined;
298
306
  mint?: bigint | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"baseSepolia.d.ts","sourceRoot":"","sources":["../../../chains/definitions/baseSepolia.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BvB,CAAA"}
1
+ {"version":3,"file":"baseSepolia.d.ts","sourceRoot":"","sources":["../../../chains/definitions/baseSepolia.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BvB,CAAA"}
@@ -152,6 +152,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
152
152
  maxPriorityFeePerGas?: undefined;
153
153
  accessList?: undefined;
154
154
  chainId?: number | undefined;
155
+ yParity?: number | undefined;
155
156
  type: "legacy";
156
157
  feeCurrency: `0x${string}` | null;
157
158
  gatewayFee: bigint | null;
@@ -176,6 +177,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
176
177
  maxPriorityFeePerGas: bigint;
177
178
  accessList?: undefined;
178
179
  chainId?: number | undefined;
180
+ yParity?: number | undefined;
179
181
  type: "cip42";
180
182
  feeCurrency: `0x${string}` | null;
181
183
  gatewayFee: bigint | null;
@@ -200,6 +202,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
200
202
  maxPriorityFeePerGas: bigint;
201
203
  accessList?: undefined;
202
204
  chainId?: number | undefined;
205
+ yParity?: number | undefined;
203
206
  type: "cip64";
204
207
  feeCurrency: `0x${string}` | null;
205
208
  gatewayFee?: undefined;
@@ -224,6 +227,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
224
227
  maxPriorityFeePerGas?: undefined;
225
228
  accessList: import("../../index.js").AccessList;
226
229
  chainId: number;
230
+ yParity?: number | undefined;
227
231
  type: "eip2930";
228
232
  feeCurrency: `0x${string}` | null;
229
233
  gatewayFee: bigint | null;
@@ -248,6 +252,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
248
252
  maxPriorityFeePerGas: bigint;
249
253
  accessList: import("../../index.js").AccessList;
250
254
  chainId: number;
255
+ yParity?: number | undefined;
251
256
  type: "eip1559";
252
257
  feeCurrency: `0x${string}` | null;
253
258
  gatewayFee: bigint | null;
@@ -272,6 +277,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
272
277
  maxPriorityFeePerGas: bigint;
273
278
  accessList: import("../../index.js").AccessList;
274
279
  chainId: number;
280
+ yParity?: number | undefined;
275
281
  type: "cip42";
276
282
  feeCurrency: `0x${string}` | null;
277
283
  gatewayFee: bigint | null;
@@ -296,6 +302,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
296
302
  maxPriorityFeePerGas: bigint;
297
303
  accessList: import("../../index.js").AccessList;
298
304
  chainId: number;
305
+ yParity?: number | undefined;
299
306
  type: "cip64";
300
307
  feeCurrency: `0x${string}` | null;
301
308
  gatewayFee?: undefined;
@@ -320,6 +327,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
320
327
  maxPriorityFeePerGas: undefined;
321
328
  accessList: import("../../index.js").AccessList;
322
329
  chainId: number;
330
+ yParity?: number | undefined;
323
331
  type: "eip2930";
324
332
  feeCurrency: `0x${string}` | null;
325
333
  gatewayFee: bigint | null;
@@ -344,6 +352,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
344
352
  maxPriorityFeePerGas: bigint;
345
353
  accessList: import("../../index.js").AccessList;
346
354
  chainId: number;
355
+ yParity?: number | undefined;
347
356
  type: "eip1559";
348
357
  feeCurrency: `0x${string}` | null;
349
358
  gatewayFee: bigint | null;
@@ -368,6 +377,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
368
377
  maxPriorityFeePerGas: bigint;
369
378
  accessList: import("../../index.js").AccessList;
370
379
  chainId: number;
380
+ yParity?: number | undefined;
371
381
  type: "cip42";
372
382
  feeCurrency: `0x${string}` | null;
373
383
  gatewayFee: bigint | null;
@@ -392,6 +402,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
392
402
  maxPriorityFeePerGas: bigint;
393
403
  accessList: import("../../index.js").AccessList;
394
404
  chainId: number;
405
+ yParity?: number | undefined;
395
406
  type: "cip64";
396
407
  feeCurrency: `0x${string}` | null;
397
408
  gatewayFee?: undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"celo.d.ts","sourceRoot":"","sources":["../../../chains/definitions/celo.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsChB,CAAA"}
1
+ {"version":3,"file":"celo.d.ts","sourceRoot":"","sources":["../../../chains/definitions/celo.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsChB,CAAA"}
@@ -152,6 +152,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
152
152
  maxPriorityFeePerGas?: undefined;
153
153
  accessList?: undefined;
154
154
  chainId?: number | undefined;
155
+ yParity?: number | undefined;
155
156
  type: "legacy";
156
157
  feeCurrency: `0x${string}` | null;
157
158
  gatewayFee: bigint | null;
@@ -176,6 +177,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
176
177
  maxPriorityFeePerGas: bigint;
177
178
  accessList?: undefined;
178
179
  chainId?: number | undefined;
180
+ yParity?: number | undefined;
179
181
  type: "cip42";
180
182
  feeCurrency: `0x${string}` | null;
181
183
  gatewayFee: bigint | null;
@@ -200,6 +202,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
200
202
  maxPriorityFeePerGas: bigint;
201
203
  accessList?: undefined;
202
204
  chainId?: number | undefined;
205
+ yParity?: number | undefined;
203
206
  type: "cip64";
204
207
  feeCurrency: `0x${string}` | null;
205
208
  gatewayFee?: undefined;
@@ -224,6 +227,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
224
227
  maxPriorityFeePerGas?: undefined;
225
228
  accessList: import("../../index.js").AccessList;
226
229
  chainId: number;
230
+ yParity?: number | undefined;
227
231
  type: "eip2930";
228
232
  feeCurrency: `0x${string}` | null;
229
233
  gatewayFee: bigint | null;
@@ -248,6 +252,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
248
252
  maxPriorityFeePerGas: bigint;
249
253
  accessList: import("../../index.js").AccessList;
250
254
  chainId: number;
255
+ yParity?: number | undefined;
251
256
  type: "eip1559";
252
257
  feeCurrency: `0x${string}` | null;
253
258
  gatewayFee: bigint | null;
@@ -272,6 +277,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
272
277
  maxPriorityFeePerGas: bigint;
273
278
  accessList: import("../../index.js").AccessList;
274
279
  chainId: number;
280
+ yParity?: number | undefined;
275
281
  type: "cip42";
276
282
  feeCurrency: `0x${string}` | null;
277
283
  gatewayFee: bigint | null;
@@ -296,6 +302,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
296
302
  maxPriorityFeePerGas: bigint;
297
303
  accessList: import("../../index.js").AccessList;
298
304
  chainId: number;
305
+ yParity?: number | undefined;
299
306
  type: "cip64";
300
307
  feeCurrency: `0x${string}` | null;
301
308
  gatewayFee?: undefined;
@@ -320,6 +327,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
320
327
  maxPriorityFeePerGas: undefined;
321
328
  accessList: import("../../index.js").AccessList;
322
329
  chainId: number;
330
+ yParity?: number | undefined;
323
331
  type: "eip2930";
324
332
  feeCurrency: `0x${string}` | null;
325
333
  gatewayFee: bigint | null;
@@ -344,6 +352,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
344
352
  maxPriorityFeePerGas: bigint;
345
353
  accessList: import("../../index.js").AccessList;
346
354
  chainId: number;
355
+ yParity?: number | undefined;
347
356
  type: "eip1559";
348
357
  feeCurrency: `0x${string}` | null;
349
358
  gatewayFee: bigint | null;
@@ -368,6 +377,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
368
377
  maxPriorityFeePerGas: bigint;
369
378
  accessList: import("../../index.js").AccessList;
370
379
  chainId: number;
380
+ yParity?: number | undefined;
371
381
  type: "cip42";
372
382
  feeCurrency: `0x${string}` | null;
373
383
  gatewayFee: bigint | null;
@@ -392,6 +402,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
392
402
  maxPriorityFeePerGas: bigint;
393
403
  accessList: import("../../index.js").AccessList;
394
404
  chainId: number;
405
+ yParity?: number | undefined;
395
406
  type: "cip64";
396
407
  feeCurrency: `0x${string}` | null;
397
408
  gatewayFee?: undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"celoAlfajores.d.ts","sourceRoot":"","sources":["../../../chains/definitions/celoAlfajores.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCzB,CAAA"}
1
+ {"version":3,"file":"celoAlfajores.d.ts","sourceRoot":"","sources":["../../../chains/definitions/celoAlfajores.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCzB,CAAA"}
@@ -145,6 +145,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
145
145
  maxPriorityFeePerGas?: undefined;
146
146
  accessList?: undefined;
147
147
  chainId?: number | undefined;
148
+ yParity?: number | undefined;
148
149
  type: "legacy";
149
150
  feeCurrency: `0x${string}` | null;
150
151
  gatewayFee: bigint | null;
@@ -169,6 +170,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
169
170
  maxPriorityFeePerGas: bigint;
170
171
  accessList?: undefined;
171
172
  chainId?: number | undefined;
173
+ yParity?: number | undefined;
172
174
  type: "cip42";
173
175
  feeCurrency: `0x${string}` | null;
174
176
  gatewayFee: bigint | null;
@@ -193,6 +195,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
193
195
  maxPriorityFeePerGas: bigint;
194
196
  accessList?: undefined;
195
197
  chainId?: number | undefined;
198
+ yParity?: number | undefined;
196
199
  type: "cip64";
197
200
  feeCurrency: `0x${string}` | null;
198
201
  gatewayFee?: undefined;
@@ -217,6 +220,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
217
220
  maxPriorityFeePerGas?: undefined;
218
221
  accessList: import("../../index.js").AccessList;
219
222
  chainId: number;
223
+ yParity?: number | undefined;
220
224
  type: "eip2930";
221
225
  feeCurrency: `0x${string}` | null;
222
226
  gatewayFee: bigint | null;
@@ -241,6 +245,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
241
245
  maxPriorityFeePerGas: bigint;
242
246
  accessList: import("../../index.js").AccessList;
243
247
  chainId: number;
248
+ yParity?: number | undefined;
244
249
  type: "eip1559";
245
250
  feeCurrency: `0x${string}` | null;
246
251
  gatewayFee: bigint | null;
@@ -265,6 +270,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
265
270
  maxPriorityFeePerGas: bigint;
266
271
  accessList: import("../../index.js").AccessList;
267
272
  chainId: number;
273
+ yParity?: number | undefined;
268
274
  type: "cip42";
269
275
  feeCurrency: `0x${string}` | null;
270
276
  gatewayFee: bigint | null;
@@ -289,6 +295,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
289
295
  maxPriorityFeePerGas: bigint;
290
296
  accessList: import("../../index.js").AccessList;
291
297
  chainId: number;
298
+ yParity?: number | undefined;
292
299
  type: "cip64";
293
300
  feeCurrency: `0x${string}` | null;
294
301
  gatewayFee?: undefined;
@@ -313,6 +320,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
313
320
  maxPriorityFeePerGas: undefined;
314
321
  accessList: import("../../index.js").AccessList;
315
322
  chainId: number;
323
+ yParity?: number | undefined;
316
324
  type: "eip2930";
317
325
  feeCurrency: `0x${string}` | null;
318
326
  gatewayFee: bigint | null;
@@ -337,6 +345,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
337
345
  maxPriorityFeePerGas: bigint;
338
346
  accessList: import("../../index.js").AccessList;
339
347
  chainId: number;
348
+ yParity?: number | undefined;
340
349
  type: "eip1559";
341
350
  feeCurrency: `0x${string}` | null;
342
351
  gatewayFee: bigint | null;
@@ -361,6 +370,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
361
370
  maxPriorityFeePerGas: bigint;
362
371
  accessList: import("../../index.js").AccessList;
363
372
  chainId: number;
373
+ yParity?: number | undefined;
364
374
  type: "cip42";
365
375
  feeCurrency: `0x${string}` | null;
366
376
  gatewayFee: bigint | null;
@@ -385,6 +395,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
385
395
  maxPriorityFeePerGas: bigint;
386
396
  accessList: import("../../index.js").AccessList;
387
397
  chainId: number;
398
+ yParity?: number | undefined;
388
399
  type: "cip64";
389
400
  feeCurrency: `0x${string}` | null;
390
401
  gatewayFee?: undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"celoCannoli.d.ts","sourceRoot":"","sources":["../../../chains/definitions/celoCannoli.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCvB,CAAA"}
1
+ {"version":3,"file":"celoCannoli.d.ts","sourceRoot":"","sources":["../../../chains/definitions/celoCannoli.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCvB,CAAA"}
@@ -0,0 +1,27 @@
1
+ export declare const lukso: import("../../types/utils.js").Assign<{
2
+ readonly id: 42;
3
+ readonly network: "lukso";
4
+ readonly name: "LUKSO";
5
+ readonly nativeCurrency: {
6
+ readonly name: "LUKSO";
7
+ readonly symbol: "LYX";
8
+ readonly decimals: 18;
9
+ };
10
+ readonly rpcUrls: {
11
+ readonly default: {
12
+ readonly http: readonly ["https://rpc.mainnet.lukso.network"];
13
+ readonly webSocket: readonly ["wss://ws-rpc.mainnet.lukso.network"];
14
+ };
15
+ readonly public: {
16
+ readonly http: readonly ["https://rpc.mainnet.lukso.network"];
17
+ readonly webSocket: readonly ["wss://ws-rpc.mainnet.lukso.network"];
18
+ };
19
+ };
20
+ readonly blockExplorers: {
21
+ readonly default: {
22
+ readonly name: "LUKSO Mainnet Explorer";
23
+ readonly url: "https://explorer.execution.mainnet.lukso.network";
24
+ };
25
+ };
26
+ }, import("../../types/chain.js").ChainConfig<undefined>>;
27
+ //# sourceMappingURL=lukso.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lukso.d.ts","sourceRoot":"","sources":["../../../chains/definitions/lukso.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;yDAyBhB,CAAA"}