viem 0.0.0-main.20231112T003540 → 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 (57) hide show
  1. package/_cjs/errors/node.js +11 -11
  2. package/_cjs/errors/node.js.map +1 -1
  3. package/_cjs/errors/rpc.js +18 -18
  4. package/_cjs/errors/rpc.js.map +1 -1
  5. package/_cjs/errors/version.js +1 -1
  6. package/_cjs/utils/formatters/transaction.js +16 -0
  7. package/_cjs/utils/formatters/transaction.js.map +1 -1
  8. package/_esm/errors/node.js +11 -22
  9. package/_esm/errors/node.js.map +1 -1
  10. package/_esm/errors/rpc.js +18 -36
  11. package/_esm/errors/rpc.js.map +1 -1
  12. package/_esm/errors/version.js +1 -1
  13. package/_esm/utils/formatters/transaction.js +18 -0
  14. package/_esm/utils/formatters/transaction.js.map +1 -1
  15. package/_types/chains/celo/formatters.d.ts +11 -0
  16. package/_types/chains/celo/formatters.d.ts.map +1 -1
  17. package/_types/chains/definitions/base.d.ts +8 -0
  18. package/_types/chains/definitions/base.d.ts.map +1 -1
  19. package/_types/chains/definitions/baseGoerli.d.ts +8 -0
  20. package/_types/chains/definitions/baseGoerli.d.ts.map +1 -1
  21. package/_types/chains/definitions/baseSepolia.d.ts +8 -0
  22. package/_types/chains/definitions/baseSepolia.d.ts.map +1 -1
  23. package/_types/chains/definitions/celo.d.ts +11 -0
  24. package/_types/chains/definitions/celo.d.ts.map +1 -1
  25. package/_types/chains/definitions/celoAlfajores.d.ts +11 -0
  26. package/_types/chains/definitions/celoAlfajores.d.ts.map +1 -1
  27. package/_types/chains/definitions/celoCannoli.d.ts +11 -0
  28. package/_types/chains/definitions/celoCannoli.d.ts.map +1 -1
  29. package/_types/chains/definitions/optimism.d.ts +8 -0
  30. package/_types/chains/definitions/optimism.d.ts.map +1 -1
  31. package/_types/chains/definitions/optimismGoerli.d.ts +8 -0
  32. package/_types/chains/definitions/optimismGoerli.d.ts.map +1 -1
  33. package/_types/chains/definitions/optimismSepolia.d.ts +8 -0
  34. package/_types/chains/definitions/optimismSepolia.d.ts.map +1 -1
  35. package/_types/chains/definitions/zkSync.d.ts +11 -0
  36. package/_types/chains/definitions/zkSync.d.ts.map +1 -1
  37. package/_types/chains/definitions/zkSyncTestnet.d.ts +11 -0
  38. package/_types/chains/definitions/zkSyncTestnet.d.ts.map +1 -1
  39. package/_types/chains/definitions/zora.d.ts +8 -0
  40. package/_types/chains/definitions/zora.d.ts.map +1 -1
  41. package/_types/chains/definitions/zoraSepolia.d.ts +8 -0
  42. package/_types/chains/definitions/zoraSepolia.d.ts.map +1 -1
  43. package/_types/chains/definitions/zoraTestnet.d.ts +8 -0
  44. package/_types/chains/definitions/zoraTestnet.d.ts.map +1 -1
  45. package/_types/chains/optimism/formatters.d.ts +8 -0
  46. package/_types/chains/optimism/formatters.d.ts.map +1 -1
  47. package/_types/chains/zksync/formatters.d.ts +11 -0
  48. package/_types/chains/zksync/formatters.d.ts.map +1 -1
  49. package/_types/errors/version.d.ts +1 -1
  50. package/_types/types/transaction.d.ts +12 -0
  51. package/_types/types/transaction.d.ts.map +1 -1
  52. package/_types/utils/formatters/transaction.d.ts +1 -1
  53. package/_types/utils/formatters/transaction.d.ts.map +1 -1
  54. package/errors/version.ts +1 -1
  55. package/package.json +1 -1
  56. package/types/transaction.ts +12 -0
  57. package/utils/formatters/transaction.ts +20 -2
@@ -42,7 +42,7 @@ export class ProviderRpcError extends RpcError {
42
42
  this.data = options.data;
43
43
  }
44
44
  }
45
- class ParseRpcError extends RpcError {
45
+ export class ParseRpcError extends RpcError {
46
46
  constructor(cause) {
47
47
  super(cause, {
48
48
  code: ParseRpcError.code,
@@ -62,8 +62,7 @@ Object.defineProperty(ParseRpcError, "code", {
62
62
  writable: true,
63
63
  value: -32700
64
64
  });
65
- export { ParseRpcError };
66
- class InvalidRequestRpcError extends RpcError {
65
+ export class InvalidRequestRpcError extends RpcError {
67
66
  constructor(cause) {
68
67
  super(cause, {
69
68
  code: InvalidRequestRpcError.code,
@@ -83,8 +82,7 @@ Object.defineProperty(InvalidRequestRpcError, "code", {
83
82
  writable: true,
84
83
  value: -32600
85
84
  });
86
- export { InvalidRequestRpcError };
87
- class MethodNotFoundRpcError extends RpcError {
85
+ export class MethodNotFoundRpcError extends RpcError {
88
86
  constructor(cause) {
89
87
  super(cause, {
90
88
  code: MethodNotFoundRpcError.code,
@@ -104,8 +102,7 @@ Object.defineProperty(MethodNotFoundRpcError, "code", {
104
102
  writable: true,
105
103
  value: -32601
106
104
  });
107
- export { MethodNotFoundRpcError };
108
- class InvalidParamsRpcError extends RpcError {
105
+ export class InvalidParamsRpcError extends RpcError {
109
106
  constructor(cause) {
110
107
  super(cause, {
111
108
  code: InvalidParamsRpcError.code,
@@ -128,8 +125,7 @@ Object.defineProperty(InvalidParamsRpcError, "code", {
128
125
  writable: true,
129
126
  value: -32602
130
127
  });
131
- export { InvalidParamsRpcError };
132
- class InternalRpcError extends RpcError {
128
+ export class InternalRpcError extends RpcError {
133
129
  constructor(cause) {
134
130
  super(cause, {
135
131
  code: InternalRpcError.code,
@@ -149,8 +145,7 @@ Object.defineProperty(InternalRpcError, "code", {
149
145
  writable: true,
150
146
  value: -32603
151
147
  });
152
- export { InternalRpcError };
153
- class InvalidInputRpcError extends RpcError {
148
+ export class InvalidInputRpcError extends RpcError {
154
149
  constructor(cause) {
155
150
  super(cause, {
156
151
  code: InvalidInputRpcError.code,
@@ -173,8 +168,7 @@ Object.defineProperty(InvalidInputRpcError, "code", {
173
168
  writable: true,
174
169
  value: -32000
175
170
  });
176
- export { InvalidInputRpcError };
177
- class ResourceNotFoundRpcError extends RpcError {
171
+ export class ResourceNotFoundRpcError extends RpcError {
178
172
  constructor(cause) {
179
173
  super(cause, {
180
174
  code: ResourceNotFoundRpcError.code,
@@ -194,8 +188,7 @@ Object.defineProperty(ResourceNotFoundRpcError, "code", {
194
188
  writable: true,
195
189
  value: -32001
196
190
  });
197
- export { ResourceNotFoundRpcError };
198
- class ResourceUnavailableRpcError extends RpcError {
191
+ export class ResourceUnavailableRpcError extends RpcError {
199
192
  constructor(cause) {
200
193
  super(cause, {
201
194
  code: ResourceUnavailableRpcError.code,
@@ -215,8 +208,7 @@ Object.defineProperty(ResourceUnavailableRpcError, "code", {
215
208
  writable: true,
216
209
  value: -32002
217
210
  });
218
- export { ResourceUnavailableRpcError };
219
- class TransactionRejectedRpcError extends RpcError {
211
+ export class TransactionRejectedRpcError extends RpcError {
220
212
  constructor(cause) {
221
213
  super(cause, {
222
214
  code: TransactionRejectedRpcError.code,
@@ -236,8 +228,7 @@ Object.defineProperty(TransactionRejectedRpcError, "code", {
236
228
  writable: true,
237
229
  value: -32003
238
230
  });
239
- export { TransactionRejectedRpcError };
240
- class MethodNotSupportedRpcError extends RpcError {
231
+ export class MethodNotSupportedRpcError extends RpcError {
241
232
  constructor(cause) {
242
233
  super(cause, {
243
234
  code: MethodNotSupportedRpcError.code,
@@ -257,8 +248,7 @@ Object.defineProperty(MethodNotSupportedRpcError, "code", {
257
248
  writable: true,
258
249
  value: -32004
259
250
  });
260
- export { MethodNotSupportedRpcError };
261
- class LimitExceededRpcError extends RpcError {
251
+ export class LimitExceededRpcError extends RpcError {
262
252
  constructor(cause) {
263
253
  super(cause, {
264
254
  code: LimitExceededRpcError.code,
@@ -278,8 +268,7 @@ Object.defineProperty(LimitExceededRpcError, "code", {
278
268
  writable: true,
279
269
  value: -32005
280
270
  });
281
- export { LimitExceededRpcError };
282
- class JsonRpcVersionUnsupportedError extends RpcError {
271
+ export class JsonRpcVersionUnsupportedError extends RpcError {
283
272
  constructor(cause) {
284
273
  super(cause, {
285
274
  code: JsonRpcVersionUnsupportedError.code,
@@ -299,8 +288,7 @@ Object.defineProperty(JsonRpcVersionUnsupportedError, "code", {
299
288
  writable: true,
300
289
  value: -32006
301
290
  });
302
- export { JsonRpcVersionUnsupportedError };
303
- class UserRejectedRequestError extends ProviderRpcError {
291
+ export class UserRejectedRequestError extends ProviderRpcError {
304
292
  constructor(cause) {
305
293
  super(cause, {
306
294
  code: UserRejectedRequestError.code,
@@ -320,8 +308,7 @@ Object.defineProperty(UserRejectedRequestError, "code", {
320
308
  writable: true,
321
309
  value: 4001
322
310
  });
323
- export { UserRejectedRequestError };
324
- class UnauthorizedProviderError extends ProviderRpcError {
311
+ export class UnauthorizedProviderError extends ProviderRpcError {
325
312
  constructor(cause) {
326
313
  super(cause, {
327
314
  code: UnauthorizedProviderError.code,
@@ -341,8 +328,7 @@ Object.defineProperty(UnauthorizedProviderError, "code", {
341
328
  writable: true,
342
329
  value: 4100
343
330
  });
344
- export { UnauthorizedProviderError };
345
- class UnsupportedProviderMethodError extends ProviderRpcError {
331
+ export class UnsupportedProviderMethodError extends ProviderRpcError {
346
332
  constructor(cause) {
347
333
  super(cause, {
348
334
  code: UnsupportedProviderMethodError.code,
@@ -362,8 +348,7 @@ Object.defineProperty(UnsupportedProviderMethodError, "code", {
362
348
  writable: true,
363
349
  value: 4200
364
350
  });
365
- export { UnsupportedProviderMethodError };
366
- class ProviderDisconnectedError extends ProviderRpcError {
351
+ export class ProviderDisconnectedError extends ProviderRpcError {
367
352
  constructor(cause) {
368
353
  super(cause, {
369
354
  code: ProviderDisconnectedError.code,
@@ -383,8 +368,7 @@ Object.defineProperty(ProviderDisconnectedError, "code", {
383
368
  writable: true,
384
369
  value: 4900
385
370
  });
386
- export { ProviderDisconnectedError };
387
- class ChainDisconnectedError extends ProviderRpcError {
371
+ export class ChainDisconnectedError extends ProviderRpcError {
388
372
  constructor(cause) {
389
373
  super(cause, {
390
374
  code: ChainDisconnectedError.code,
@@ -404,8 +388,7 @@ Object.defineProperty(ChainDisconnectedError, "code", {
404
388
  writable: true,
405
389
  value: 4901
406
390
  });
407
- export { ChainDisconnectedError };
408
- class SwitchChainError extends ProviderRpcError {
391
+ export class SwitchChainError extends ProviderRpcError {
409
392
  constructor(cause) {
410
393
  super(cause, {
411
394
  code: SwitchChainError.code,
@@ -425,7 +408,6 @@ Object.defineProperty(SwitchChainError, "code", {
425
408
  writable: true,
426
409
  value: 4902
427
410
  });
428
- export { SwitchChainError };
429
411
  export class UnknownRpcError extends RpcError {
430
412
  constructor(cause) {
431
413
  super(cause, {
@@ -1 +1 @@
1
- {"version":3,"file":"rpc.js","sourceRoot":"","sources":["../../errors/rpc.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"rpc.js","sourceRoot":"","sources":["../../errors/rpc.ts"],"names":[],"mappings":"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"}
@@ -1,2 +1,2 @@
1
- export const version = '0.0.0-main.20231112T003540';
1
+ export const version = '0.0.0-main.20231112T014532';
2
2
  //# sourceMappingURL=version.js.map
@@ -31,10 +31,28 @@ export function formatTransaction(transaction) {
31
31
  value: transaction.value ? BigInt(transaction.value) : undefined,
32
32
  v: transaction.v ? BigInt(transaction.v) : undefined,
33
33
  };
34
+ transaction_.yParity = (() => {
35
+ // If `yParity` is provided, we will use it.
36
+ if (transaction.yParity) {
37
+ if (transaction.yParity === '0x')
38
+ return 0;
39
+ return Number(transaction.yParity);
40
+ }
41
+ // If no `yParity` provided, derive from `v`.
42
+ if (typeof transaction_.v === 'bigint') {
43
+ if (transaction_.v === 0n)
44
+ return 0;
45
+ if (transaction_.v === 1n)
46
+ return 1;
47
+ return transaction_.v === 27n ? 0 : 1;
48
+ }
49
+ return undefined;
50
+ })();
34
51
  if (transaction_.type === 'legacy') {
35
52
  delete transaction_.accessList;
36
53
  delete transaction_.maxFeePerGas;
37
54
  delete transaction_.maxPriorityFeePerGas;
55
+ delete transaction_.yParity;
38
56
  }
39
57
  if (transaction_.type === 'eip2930') {
40
58
  delete transaction_.maxFeePerGas;
@@ -1 +1 @@
1
- {"version":3,"file":"transaction.js","sourceRoot":"","sources":["../../../utils/formatters/transaction.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAA;AACpD,OAAO,EAAiC,eAAe,EAAE,MAAM,gBAAgB,CAAA;AA0B/E,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,KAAK,EAAE,QAAQ;IACf,KAAK,EAAE,SAAS;IAChB,KAAK,EAAE,SAAS;CACR,CAAA;AAIV,MAAM,UAAU,iBAAiB,CAAC,WAAoC;IACpE,MAAM,YAAY,GAAG;QACnB,GAAG,WAAW;QACd,SAAS,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI;QAC/D,WAAW,EAAE,WAAW,CAAC,WAAW;YAClC,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,WAAW,CAAC;YACjC,CAAC,CAAC,IAAI;QACR,OAAO,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,WAAW,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS;QAC3E,GAAG,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,SAAS;QAC1D,QAAQ,EAAE,WAAW,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS;QACzE,YAAY,EAAE,WAAW,CAAC,YAAY;YACpC,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,YAAY,CAAC;YAClC,CAAC,CAAC,SAAS;QACb,oBAAoB,EAAE,WAAW,CAAC,oBAAoB;YACpD,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,oBAAoB,CAAC;YAC1C,CAAC,CAAC,SAAS;QACb,KAAK,EAAE,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,WAAW,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS;QACrE,EAAE,EAAE,WAAW,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI;QAC1C,gBAAgB,EAAE,WAAW,CAAC,gBAAgB;YAC5C,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,gBAAgB,CAAC;YACtC,CAAC,CAAC,IAAI;QACR,IAAI,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,eAAe,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS;QACtE,OAAO,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS;QACxD,KAAK,EAAE,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS;QAChE,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS;KACrD,CAAA;IAED,IAAI,YAAY,CAAC,IAAI,KAAK,QAAQ,EAAE;QAClC,OAAO,YAAY,CAAC,UAAU,CAAA;QAC9B,OAAO,YAAY,CAAC,YAAY,CAAA;QAChC,OAAO,YAAY,CAAC,oBAAoB,CAAA;KACzC;IACD,IAAI,YAAY,CAAC,IAAI,KAAK,SAAS,EAAE;QACnC,OAAO,YAAY,CAAC,YAAY,CAAA;QAChC,OAAO,YAAY,CAAC,oBAAoB,CAAA;KACzC;IACD,OAAO,YAA2B,CAAA;AACpC,CAAC;AAID,MAAM,CAAC,MAAM,iBAAiB,GAAG,aAAa,CAAC,eAAe,CAC5D,aAAa,EACb,iBAAiB,CAClB,CAAA"}
1
+ {"version":3,"file":"transaction.js","sourceRoot":"","sources":["../../../utils/formatters/transaction.ts"],"names":[],"mappings":"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"}
@@ -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"}