viem 2.0.0-beta.5 → 2.0.0-beta.6
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.
- package/_cjs/errors/node.js +11 -11
- package/_cjs/errors/node.js.map +1 -1
- package/_cjs/errors/rpc.js +18 -18
- package/_cjs/errors/rpc.js.map +1 -1
- package/_cjs/errors/version.js +1 -1
- package/_esm/errors/node.js +22 -11
- package/_esm/errors/node.js.map +1 -1
- package/_esm/errors/rpc.js +36 -18
- package/_esm/errors/rpc.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_types/chains/celo/chainConfig.d.ts +7 -7
- package/_types/chains/celo/formatters.d.ts +7 -7
- package/_types/chains/definitions/base.d.ts +7 -7
- package/_types/chains/definitions/baseGoerli.d.ts +7 -7
- package/_types/chains/definitions/baseSepolia.d.ts +7 -7
- package/_types/chains/definitions/celo.d.ts +7 -7
- package/_types/chains/definitions/celoAlfajores.d.ts +7 -7
- package/_types/chains/definitions/celoCannoli.d.ts +7 -7
- package/_types/chains/definitions/optimism.d.ts +7 -7
- package/_types/chains/definitions/optimismGoerli.d.ts +7 -7
- package/_types/chains/definitions/optimismSepolia.d.ts +7 -7
- package/_types/chains/definitions/zora.d.ts +7 -7
- package/_types/chains/definitions/zoraSepolia.d.ts +7 -7
- package/_types/chains/definitions/zoraTestnet.d.ts +7 -7
- package/_types/chains/index.d.ts +1 -1
- package/_types/chains/index.d.ts.map +1 -1
- package/_types/chains/opStack/chainConfig.d.ts +7 -7
- package/_types/chains/opStack/formatters.d.ts +7 -7
- package/_types/errors/version.d.ts +1 -1
- package/chains/index.ts +1 -1
- package/errors/version.ts +1 -1
- package/package.json +1 -1
package/_esm/errors/rpc.js
CHANGED
@@ -42,7 +42,7 @@ export class ProviderRpcError extends RpcError {
|
|
42
42
|
this.data = options.data;
|
43
43
|
}
|
44
44
|
}
|
45
|
-
|
45
|
+
class ParseRpcError extends RpcError {
|
46
46
|
constructor(cause) {
|
47
47
|
super(cause, {
|
48
48
|
code: ParseRpcError.code,
|
@@ -62,7 +62,8 @@ Object.defineProperty(ParseRpcError, "code", {
|
|
62
62
|
writable: true,
|
63
63
|
value: -32700
|
64
64
|
});
|
65
|
-
export
|
65
|
+
export { ParseRpcError };
|
66
|
+
class InvalidRequestRpcError extends RpcError {
|
66
67
|
constructor(cause) {
|
67
68
|
super(cause, {
|
68
69
|
code: InvalidRequestRpcError.code,
|
@@ -82,7 +83,8 @@ Object.defineProperty(InvalidRequestRpcError, "code", {
|
|
82
83
|
writable: true,
|
83
84
|
value: -32600
|
84
85
|
});
|
85
|
-
export
|
86
|
+
export { InvalidRequestRpcError };
|
87
|
+
class MethodNotFoundRpcError extends RpcError {
|
86
88
|
constructor(cause) {
|
87
89
|
super(cause, {
|
88
90
|
code: MethodNotFoundRpcError.code,
|
@@ -102,7 +104,8 @@ Object.defineProperty(MethodNotFoundRpcError, "code", {
|
|
102
104
|
writable: true,
|
103
105
|
value: -32601
|
104
106
|
});
|
105
|
-
export
|
107
|
+
export { MethodNotFoundRpcError };
|
108
|
+
class InvalidParamsRpcError extends RpcError {
|
106
109
|
constructor(cause) {
|
107
110
|
super(cause, {
|
108
111
|
code: InvalidParamsRpcError.code,
|
@@ -125,7 +128,8 @@ Object.defineProperty(InvalidParamsRpcError, "code", {
|
|
125
128
|
writable: true,
|
126
129
|
value: -32602
|
127
130
|
});
|
128
|
-
export
|
131
|
+
export { InvalidParamsRpcError };
|
132
|
+
class InternalRpcError extends RpcError {
|
129
133
|
constructor(cause) {
|
130
134
|
super(cause, {
|
131
135
|
code: InternalRpcError.code,
|
@@ -145,7 +149,8 @@ Object.defineProperty(InternalRpcError, "code", {
|
|
145
149
|
writable: true,
|
146
150
|
value: -32603
|
147
151
|
});
|
148
|
-
export
|
152
|
+
export { InternalRpcError };
|
153
|
+
class InvalidInputRpcError extends RpcError {
|
149
154
|
constructor(cause) {
|
150
155
|
super(cause, {
|
151
156
|
code: InvalidInputRpcError.code,
|
@@ -168,7 +173,8 @@ Object.defineProperty(InvalidInputRpcError, "code", {
|
|
168
173
|
writable: true,
|
169
174
|
value: -32000
|
170
175
|
});
|
171
|
-
export
|
176
|
+
export { InvalidInputRpcError };
|
177
|
+
class ResourceNotFoundRpcError extends RpcError {
|
172
178
|
constructor(cause) {
|
173
179
|
super(cause, {
|
174
180
|
code: ResourceNotFoundRpcError.code,
|
@@ -188,7 +194,8 @@ Object.defineProperty(ResourceNotFoundRpcError, "code", {
|
|
188
194
|
writable: true,
|
189
195
|
value: -32001
|
190
196
|
});
|
191
|
-
export
|
197
|
+
export { ResourceNotFoundRpcError };
|
198
|
+
class ResourceUnavailableRpcError extends RpcError {
|
192
199
|
constructor(cause) {
|
193
200
|
super(cause, {
|
194
201
|
code: ResourceUnavailableRpcError.code,
|
@@ -208,7 +215,8 @@ Object.defineProperty(ResourceUnavailableRpcError, "code", {
|
|
208
215
|
writable: true,
|
209
216
|
value: -32002
|
210
217
|
});
|
211
|
-
export
|
218
|
+
export { ResourceUnavailableRpcError };
|
219
|
+
class TransactionRejectedRpcError extends RpcError {
|
212
220
|
constructor(cause) {
|
213
221
|
super(cause, {
|
214
222
|
code: TransactionRejectedRpcError.code,
|
@@ -228,7 +236,8 @@ Object.defineProperty(TransactionRejectedRpcError, "code", {
|
|
228
236
|
writable: true,
|
229
237
|
value: -32003
|
230
238
|
});
|
231
|
-
export
|
239
|
+
export { TransactionRejectedRpcError };
|
240
|
+
class MethodNotSupportedRpcError extends RpcError {
|
232
241
|
constructor(cause) {
|
233
242
|
super(cause, {
|
234
243
|
code: MethodNotSupportedRpcError.code,
|
@@ -248,7 +257,8 @@ Object.defineProperty(MethodNotSupportedRpcError, "code", {
|
|
248
257
|
writable: true,
|
249
258
|
value: -32004
|
250
259
|
});
|
251
|
-
export
|
260
|
+
export { MethodNotSupportedRpcError };
|
261
|
+
class LimitExceededRpcError extends RpcError {
|
252
262
|
constructor(cause) {
|
253
263
|
super(cause, {
|
254
264
|
code: LimitExceededRpcError.code,
|
@@ -268,7 +278,8 @@ Object.defineProperty(LimitExceededRpcError, "code", {
|
|
268
278
|
writable: true,
|
269
279
|
value: -32005
|
270
280
|
});
|
271
|
-
export
|
281
|
+
export { LimitExceededRpcError };
|
282
|
+
class JsonRpcVersionUnsupportedError extends RpcError {
|
272
283
|
constructor(cause) {
|
273
284
|
super(cause, {
|
274
285
|
code: JsonRpcVersionUnsupportedError.code,
|
@@ -288,7 +299,8 @@ Object.defineProperty(JsonRpcVersionUnsupportedError, "code", {
|
|
288
299
|
writable: true,
|
289
300
|
value: -32006
|
290
301
|
});
|
291
|
-
export
|
302
|
+
export { JsonRpcVersionUnsupportedError };
|
303
|
+
class UserRejectedRequestError extends ProviderRpcError {
|
292
304
|
constructor(cause) {
|
293
305
|
super(cause, {
|
294
306
|
code: UserRejectedRequestError.code,
|
@@ -308,7 +320,8 @@ Object.defineProperty(UserRejectedRequestError, "code", {
|
|
308
320
|
writable: true,
|
309
321
|
value: 4001
|
310
322
|
});
|
311
|
-
export
|
323
|
+
export { UserRejectedRequestError };
|
324
|
+
class UnauthorizedProviderError extends ProviderRpcError {
|
312
325
|
constructor(cause) {
|
313
326
|
super(cause, {
|
314
327
|
code: UnauthorizedProviderError.code,
|
@@ -328,7 +341,8 @@ Object.defineProperty(UnauthorizedProviderError, "code", {
|
|
328
341
|
writable: true,
|
329
342
|
value: 4100
|
330
343
|
});
|
331
|
-
export
|
344
|
+
export { UnauthorizedProviderError };
|
345
|
+
class UnsupportedProviderMethodError extends ProviderRpcError {
|
332
346
|
constructor(cause) {
|
333
347
|
super(cause, {
|
334
348
|
code: UnsupportedProviderMethodError.code,
|
@@ -348,7 +362,8 @@ Object.defineProperty(UnsupportedProviderMethodError, "code", {
|
|
348
362
|
writable: true,
|
349
363
|
value: 4200
|
350
364
|
});
|
351
|
-
export
|
365
|
+
export { UnsupportedProviderMethodError };
|
366
|
+
class ProviderDisconnectedError extends ProviderRpcError {
|
352
367
|
constructor(cause) {
|
353
368
|
super(cause, {
|
354
369
|
code: ProviderDisconnectedError.code,
|
@@ -368,7 +383,8 @@ Object.defineProperty(ProviderDisconnectedError, "code", {
|
|
368
383
|
writable: true,
|
369
384
|
value: 4900
|
370
385
|
});
|
371
|
-
export
|
386
|
+
export { ProviderDisconnectedError };
|
387
|
+
class ChainDisconnectedError extends ProviderRpcError {
|
372
388
|
constructor(cause) {
|
373
389
|
super(cause, {
|
374
390
|
code: ChainDisconnectedError.code,
|
@@ -388,7 +404,8 @@ Object.defineProperty(ChainDisconnectedError, "code", {
|
|
388
404
|
writable: true,
|
389
405
|
value: 4901
|
390
406
|
});
|
391
|
-
export
|
407
|
+
export { ChainDisconnectedError };
|
408
|
+
class SwitchChainError extends ProviderRpcError {
|
392
409
|
constructor(cause) {
|
393
410
|
super(cause, {
|
394
411
|
code: SwitchChainError.code,
|
@@ -408,6 +425,7 @@ Object.defineProperty(SwitchChainError, "code", {
|
|
408
425
|
writable: true,
|
409
426
|
value: 4902
|
410
427
|
});
|
428
|
+
export { SwitchChainError };
|
411
429
|
export class UnknownRpcError extends RpcError {
|
412
430
|
constructor(cause) {
|
413
431
|
super(cause, {
|
package/_esm/errors/rpc.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"rpc.js","sourceRoot":"","sources":["../../errors/rpc.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AACrC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAE9C,MAAM,gBAAgB,GAAG,CAAC,CAAC,CAAA;AA+B3B,MAAM,OAAO,QAA8C,SAAQ,SAAS;IAK1E,YACE,KAAY,EACZ,EAAE,IAAI,EAAE,QAAQ,EAAE,YAAY,EAAE,YAAY,EAA0B;QAEtE,KAAK,CAAC,YAAY,EAAE;YAClB,KAAK;YACL,QAAQ;YACR,YAAY,EACV,YAAY,IAAK,KAAqC,EAAE,YAAY;SACvE,CAAC,CAAA;QAbK;;;;mBAAO,UAAU;WAAA;QAE1B;;;;;WAA2B;QAYzB,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAA;QACtB,IAAI,CAAC,IAAI,GAAG,CACV,KAAK,YAAY,eAAe,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,gBAAgB,CAChE,CAAA;IACZ,CAAC;CACF;AAkBD,MAAM,OAAO,gBAEX,SAAQ,QAA8B;IAKtC,YACE,KAAY,EACZ,OAIC;QAED,KAAK,CAAC,KAAK,EAAE,OAAO,CAAC,CAAA;QAZd;;;;mBAAO,kBAAkB;WAAA;QAElC;;;;;WAAQ;QAYN,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAA;IAC1B,CAAC;CACF;AAWD,
|
1
|
+
{"version":3,"file":"rpc.js","sourceRoot":"","sources":["../../errors/rpc.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AACrC,OAAO,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAE9C,MAAM,gBAAgB,GAAG,CAAC,CAAC,CAAA;AA+B3B,MAAM,OAAO,QAA8C,SAAQ,SAAS;IAK1E,YACE,KAAY,EACZ,EAAE,IAAI,EAAE,QAAQ,EAAE,YAAY,EAAE,YAAY,EAA0B;QAEtE,KAAK,CAAC,YAAY,EAAE;YAClB,KAAK;YACL,QAAQ;YACR,YAAY,EACV,YAAY,IAAK,KAAqC,EAAE,YAAY;SACvE,CAAC,CAAA;QAbK;;;;mBAAO,UAAU;WAAA;QAE1B;;;;;WAA2B;QAYzB,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAA;QACtB,IAAI,CAAC,IAAI,GAAG,CACV,KAAK,YAAY,eAAe,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,IAAI,gBAAgB,CAChE,CAAA;IACZ,CAAC;CACF;AAkBD,MAAM,OAAO,gBAEX,SAAQ,QAA8B;IAKtC,YACE,KAAY,EACZ,OAIC;QAED,KAAK,CAAC,KAAK,EAAE,OAAO,CAAC,CAAA;QAZd;;;;mBAAO,kBAAkB;WAAA;QAElC;;;;;WAAQ;QAYN,IAAI,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAA;IAC1B,CAAC;CACF;AAWD,MAAa,aAAc,SAAQ,QAAQ;IAIzC,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,aAAa,CAAC,IAAI;YACxB,YAAY,EACV,uGAAuG;SAC1G,CAAC,CAAA;QARK;;;;mBAAO,eAAe;WAAA;IAS/B,CAAC;;AARM;;;;WAAO,CAAC,KAAc;EAAlB,CAAkB;SAFlB,aAAa;AAsB1B,MAAa,sBAAuB,SAAQ,QAAQ;IAIlD,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,sBAAsB,CAAC,IAAI;YACjC,YAAY,EAAE,qCAAqC;SACpD,CAAC,CAAA;QAPK;;;;mBAAO,wBAAwB;WAAA;IAQxC,CAAC;;AAPM;;;;WAAO,CAAC,KAAc;EAAlB,CAAkB;SAFlB,sBAAsB;AAqBnC,MAAa,sBAAuB,SAAQ,QAAQ;IAIlD,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,sBAAsB,CAAC,IAAI;YACjC,YAAY,EAAE,+CAA+C;SAC9D,CAAC,CAAA;QAPK;;;;mBAAO,wBAAwB;WAAA;IAQxC,CAAC;;AAPM;;;;WAAO,CAAC,KAAc;EAAlB,CAAkB;SAFlB,sBAAsB;AAqBnC,MAAa,qBAAsB,SAAQ,QAAQ;IAIjD,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,qBAAqB,CAAC,IAAI;YAChC,YAAY,EAAE;gBACZ,qDAAqD;gBACrD,wDAAwD;aACzD,CAAC,IAAI,CAAC,IAAI,CAAC;SACb,CAAC,CAAA;QAVK;;;;mBAAO,uBAAuB;WAAA;IAWvC,CAAC;;AAVM;;;;WAAO,CAAC,KAAc;EAAlB,CAAkB;SAFlB,qBAAqB;AAwBlC,MAAa,gBAAiB,SAAQ,QAAQ;IAI5C,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,gBAAgB,CAAC,IAAI;YAC3B,YAAY,EAAE,iCAAiC;SAChD,CAAC,CAAA;QAPK;;;;mBAAO,kBAAkB;WAAA;IAQlC,CAAC;;AAPM;;;;WAAO,CAAC,KAAc;EAAlB,CAAkB;SAFlB,gBAAgB;AAqB7B,MAAa,oBAAqB,SAAQ,QAAQ;IAIhD,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,oBAAoB,CAAC,IAAI;YAC/B,YAAY,EAAE;gBACZ,gCAAgC;gBAChC,wDAAwD;aACzD,CAAC,IAAI,CAAC,IAAI,CAAC;SACb,CAAC,CAAA;QAVK;;;;mBAAO,sBAAsB;WAAA;IAWtC,CAAC;;AAVM;;;;WAAO,CAAC,KAAc;EAAlB,CAAkB;SAFlB,oBAAoB;AAwBjC,MAAa,wBAAyB,SAAQ,QAAQ;IAIpD,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,wBAAwB,CAAC,IAAI;YACnC,YAAY,EAAE,+BAA+B;SAC9C,CAAC,CAAA;QAPK;;;;mBAAO,0BAA0B;WAAA;IAQ1C,CAAC;;AAPM;;;;WAAO,CAAC,KAAc;EAAlB,CAAkB;SAFlB,wBAAwB;AAqBrC,MAAa,2BAA4B,SAAQ,QAAQ;IAIvD,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,2BAA2B,CAAC,IAAI;YACtC,YAAY,EAAE,mCAAmC;SAClD,CAAC,CAAA;QAPK;;;;mBAAO,6BAA6B;WAAA;IAQ7C,CAAC;;AAPM;;;;WAAO,CAAC,KAAc;EAAlB,CAAkB;SAFlB,2BAA2B;AAqBxC,MAAa,2BAA4B,SAAQ,QAAQ;IAIvD,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,2BAA2B,CAAC,IAAI;YACtC,YAAY,EAAE,8BAA8B;SAC7C,CAAC,CAAA;QAPK;;;;mBAAO,6BAA6B;WAAA;IAQ7C,CAAC;;AAPM;;;;WAAO,CAAC,KAAc;EAAlB,CAAkB;SAFlB,2BAA2B;AAqBxC,MAAa,0BAA2B,SAAQ,QAAQ;IAItD,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,0BAA0B,CAAC,IAAI;YACrC,YAAY,EAAE,4BAA4B;SAC3C,CAAC,CAAA;QAPK;;;;mBAAO,4BAA4B;WAAA;IAQ5C,CAAC;;AAPM;;;;WAAO,CAAC,KAAc;EAAlB,CAAkB;SAFlB,0BAA0B;AAqBvC,MAAa,qBAAsB,SAAQ,QAAQ;IAIjD,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,qBAAqB,CAAC,IAAI;YAChC,YAAY,EAAE,gCAAgC;SAC/C,CAAC,CAAA;QAPK;;;;mBAAO,uBAAuB;WAAA;IAQvC,CAAC;;AAPM;;;;WAAO,CAAC,KAAc;EAAlB,CAAkB;SAFlB,qBAAqB;AAsBlC,MAAa,8BAA+B,SAAQ,QAAQ;IAI1D,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,8BAA8B,CAAC,IAAI;YACzC,YAAY,EAAE,gDAAgD;SAC/D,CAAC,CAAA;QAPK;;;;mBAAO,gCAAgC;WAAA;IAQhD,CAAC;;AAPM;;;;WAAO,CAAC,KAAc;EAAlB,CAAkB;SAFlB,8BAA8B;AAqB3C,MAAa,wBAAyB,SAAQ,gBAAgB;IAI5D,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,wBAAwB,CAAC,IAAI;YACnC,YAAY,EAAE,4BAA4B;SAC3C,CAAC,CAAA;QAPK;;;;mBAAO,0BAA0B;WAAA;IAQ1C,CAAC;;AAPM;;;;WAAO,IAAa;EAAhB,CAAgB;SAFhB,wBAAwB;AAqBrC,MAAa,yBAA0B,SAAQ,gBAAgB;IAI7D,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,yBAAyB,CAAC,IAAI;YACpC,YAAY,EACV,0EAA0E;SAC7E,CAAC,CAAA;QARK;;;;mBAAO,2BAA2B;WAAA;IAS3C,CAAC;;AARM;;;;WAAO,IAAa;EAAhB,CAAgB;SAFhB,yBAAyB;AAuBtC,MAAa,8BAA+B,SAAQ,gBAAgB;IAIlE,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,8BAA8B,CAAC,IAAI;YACzC,YAAY,EAAE,qDAAqD;SACpE,CAAC,CAAA;QAPK;;;;mBAAO,gCAAgC;WAAA;IAQhD,CAAC;;AAPM;;;;WAAO,IAAa;EAAhB,CAAgB;SAFhB,8BAA8B;AAqB3C,MAAa,yBAA0B,SAAQ,gBAAgB;IAI7D,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,yBAAyB,CAAC,IAAI;YACpC,YAAY,EAAE,+CAA+C;SAC9D,CAAC,CAAA;QAPK;;;;mBAAO,2BAA2B;WAAA;IAQ3C,CAAC;;AAPM;;;;WAAO,IAAa;EAAhB,CAAgB;SAFhB,yBAAyB;AAqBtC,MAAa,sBAAuB,SAAQ,gBAAgB;IAI1D,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,sBAAsB,CAAC,IAAI;YACjC,YAAY,EAAE,uDAAuD;SACtE,CAAC,CAAA;QAPK;;;;mBAAO,wBAAwB;WAAA;IAQxC,CAAC;;AAPM;;;;WAAO,IAAa;EAAhB,CAAgB;SAFhB,sBAAsB;AAqBnC,MAAa,gBAAiB,SAAQ,gBAAgB;IAIpD,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,IAAI,EAAE,gBAAgB,CAAC,IAAI;YAC3B,YAAY,EAAE,oDAAoD;SACnE,CAAC,CAAA;QAPK;;;;mBAAO,kBAAkB;WAAA;IAQlC,CAAC;;AAPM;;;;WAAO,IAAa;EAAhB,CAAgB;SAFhB,gBAAgB;AAkB7B,MAAM,OAAO,eAAgB,SAAQ,QAAQ;IAG3C,YAAY,KAAY;QACtB,KAAK,CAAC,KAAK,EAAE;YACX,YAAY,EAAE,gCAAgC;SAC/C,CAAC,CAAA;QALK;;;;mBAAO,iBAAiB;WAAA;IAMjC,CAAC;CACF"}
|
package/_esm/errors/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export const version = '2.0.0-beta.
|
1
|
+
export const version = '2.0.0-beta.6';
|
2
2
|
//# sourceMappingURL=version.js.map
|
@@ -65,7 +65,7 @@ export declare const chainConfig: {
|
|
65
65
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
66
66
|
accessList?: undefined;
|
67
67
|
chainId?: `0x${string}` | undefined;
|
68
|
-
} & import("../index.js").Omit<import("
|
68
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
69
69
|
feeCurrency: `0x${string}` | null;
|
70
70
|
gatewayFee: `0x${string}` | null;
|
71
71
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -142,7 +142,7 @@ export declare const chainConfig: {
|
|
142
142
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
143
143
|
accessList?: import("../../index.js").AccessList | undefined;
|
144
144
|
chainId?: `0x${string}` | undefined;
|
145
|
-
} & import("../index.js").Omit<import("
|
145
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
146
146
|
feeCurrency: `0x${string}` | null;
|
147
147
|
gatewayFee: `0x${string}` | null;
|
148
148
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -167,7 +167,7 @@ export declare const chainConfig: {
|
|
167
167
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
168
168
|
accessList?: import("../../index.js").AccessList | undefined;
|
169
169
|
chainId?: `0x${string}` | undefined;
|
170
|
-
} & import("../index.js").Omit<import("
|
170
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
171
171
|
feeCurrency: `0x${string}` | null;
|
172
172
|
gatewayFee: `0x${string}` | null;
|
173
173
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -192,7 +192,7 @@ export declare const chainConfig: {
|
|
192
192
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
193
193
|
accessList?: import("../../index.js").AccessList | undefined;
|
194
194
|
chainId?: `0x${string}` | undefined;
|
195
|
-
} & import("../index.js").Omit<import("
|
195
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
196
196
|
feeCurrency: `0x${string}` | null;
|
197
197
|
gatewayFee: `0x${string}` | null;
|
198
198
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -269,7 +269,7 @@ export declare const chainConfig: {
|
|
269
269
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
270
270
|
accessList?: import("../../index.js").AccessList | undefined;
|
271
271
|
chainId?: `0x${string}` | undefined;
|
272
|
-
} & import("../index.js").Omit<import("
|
272
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
273
273
|
feeCurrency: `0x${string}` | null;
|
274
274
|
gatewayFee: `0x${string}` | null;
|
275
275
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -294,7 +294,7 @@ export declare const chainConfig: {
|
|
294
294
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
295
295
|
accessList?: import("../../index.js").AccessList | undefined;
|
296
296
|
chainId?: `0x${string}` | undefined;
|
297
|
-
} & import("../index.js").Omit<import("
|
297
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
298
298
|
feeCurrency: `0x${string}` | null;
|
299
299
|
gatewayFee: `0x${string}` | null;
|
300
300
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -319,7 +319,7 @@ export declare const chainConfig: {
|
|
319
319
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
320
320
|
accessList?: import("../../index.js").AccessList | undefined;
|
321
321
|
chainId?: `0x${string}` | undefined;
|
322
|
-
} & import("../index.js").Omit<import("
|
322
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
323
323
|
feeCurrency: `0x${string}` | null;
|
324
324
|
gatewayFee: `0x${string}` | null;
|
325
325
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -66,7 +66,7 @@ export declare const formatters: {
|
|
66
66
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
67
67
|
accessList?: undefined;
|
68
68
|
chainId?: `0x${string}` | undefined;
|
69
|
-
} & import("../index.js").Omit<import("
|
69
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
70
70
|
feeCurrency: `0x${string}` | null;
|
71
71
|
gatewayFee: `0x${string}` | null;
|
72
72
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -143,7 +143,7 @@ export declare const formatters: {
|
|
143
143
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
144
144
|
accessList?: import("../../index.js").AccessList | undefined;
|
145
145
|
chainId?: `0x${string}` | undefined;
|
146
|
-
} & import("../index.js").Omit<import("
|
146
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
147
147
|
feeCurrency: `0x${string}` | null;
|
148
148
|
gatewayFee: `0x${string}` | null;
|
149
149
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -168,7 +168,7 @@ export declare const formatters: {
|
|
168
168
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
169
169
|
accessList?: import("../../index.js").AccessList | undefined;
|
170
170
|
chainId?: `0x${string}` | undefined;
|
171
|
-
} & import("../index.js").Omit<import("
|
171
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
172
172
|
feeCurrency: `0x${string}` | null;
|
173
173
|
gatewayFee: `0x${string}` | null;
|
174
174
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -193,7 +193,7 @@ export declare const formatters: {
|
|
193
193
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
194
194
|
accessList?: import("../../index.js").AccessList | undefined;
|
195
195
|
chainId?: `0x${string}` | undefined;
|
196
|
-
} & import("../index.js").Omit<import("
|
196
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
197
197
|
feeCurrency: `0x${string}` | null;
|
198
198
|
gatewayFee: `0x${string}` | null;
|
199
199
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -270,7 +270,7 @@ export declare const formatters: {
|
|
270
270
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
271
271
|
accessList?: import("../../index.js").AccessList | undefined;
|
272
272
|
chainId?: `0x${string}` | undefined;
|
273
|
-
} & import("../index.js").Omit<import("
|
273
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
274
274
|
feeCurrency: `0x${string}` | null;
|
275
275
|
gatewayFee: `0x${string}` | null;
|
276
276
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -295,7 +295,7 @@ export declare const formatters: {
|
|
295
295
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
296
296
|
accessList?: import("../../index.js").AccessList | undefined;
|
297
297
|
chainId?: `0x${string}` | undefined;
|
298
|
-
} & import("../index.js").Omit<import("
|
298
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
299
299
|
feeCurrency: `0x${string}` | null;
|
300
300
|
gatewayFee: `0x${string}` | null;
|
301
301
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -320,7 +320,7 @@ export declare const formatters: {
|
|
320
320
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
321
321
|
accessList?: import("../../index.js").AccessList | undefined;
|
322
322
|
chainId?: `0x${string}` | undefined;
|
323
|
-
} & import("../index.js").Omit<import("
|
323
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
324
324
|
feeCurrency: `0x${string}` | null;
|
325
325
|
gatewayFee: `0x${string}` | null;
|
326
326
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -99,7 +99,7 @@ export declare const base: {
|
|
99
99
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
100
100
|
accessList?: undefined;
|
101
101
|
chainId?: `0x${string}` | undefined;
|
102
|
-
} & import("../index.js").Omit<import("
|
102
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
103
103
|
isSystemTx?: undefined;
|
104
104
|
mint?: undefined;
|
105
105
|
sourceHash?: undefined;
|
@@ -150,7 +150,7 @@ export declare const base: {
|
|
150
150
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
151
151
|
accessList?: import("../../index.js").AccessList | undefined;
|
152
152
|
chainId?: `0x${string}` | undefined;
|
153
|
-
} & import("../index.js").Omit<import("
|
153
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
154
154
|
isSystemTx?: undefined;
|
155
155
|
mint?: undefined;
|
156
156
|
sourceHash?: undefined;
|
@@ -175,7 +175,7 @@ export declare const base: {
|
|
175
175
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
176
176
|
accessList?: import("../../index.js").AccessList | undefined;
|
177
177
|
chainId?: `0x${string}` | undefined;
|
178
|
-
} & import("../index.js").Omit<import("
|
178
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
179
179
|
isSystemTx?: undefined;
|
180
180
|
mint?: undefined;
|
181
181
|
sourceHash?: undefined;
|
@@ -200,7 +200,7 @@ export declare const base: {
|
|
200
200
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
201
201
|
accessList?: import("../../index.js").AccessList | undefined;
|
202
202
|
chainId?: `0x${string}` | undefined;
|
203
|
-
} & import("../index.js").Omit<import("
|
203
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
204
204
|
isSystemTx?: undefined;
|
205
205
|
mint?: undefined;
|
206
206
|
sourceHash?: undefined;
|
@@ -251,7 +251,7 @@ export declare const base: {
|
|
251
251
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
252
252
|
accessList?: import("../../index.js").AccessList | undefined;
|
253
253
|
chainId?: `0x${string}` | undefined;
|
254
|
-
} & import("../index.js").Omit<import("
|
254
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
255
255
|
isSystemTx?: undefined;
|
256
256
|
mint?: undefined;
|
257
257
|
sourceHash?: undefined;
|
@@ -276,7 +276,7 @@ export declare const base: {
|
|
276
276
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
277
277
|
accessList?: import("../../index.js").AccessList | undefined;
|
278
278
|
chainId?: `0x${string}` | undefined;
|
279
|
-
} & import("../index.js").Omit<import("
|
279
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
280
280
|
isSystemTx?: undefined;
|
281
281
|
mint?: undefined;
|
282
282
|
sourceHash?: undefined;
|
@@ -301,7 +301,7 @@ export declare const base: {
|
|
301
301
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
302
302
|
accessList?: import("../../index.js").AccessList | undefined;
|
303
303
|
chainId?: `0x${string}` | undefined;
|
304
|
-
} & import("../index.js").Omit<import("
|
304
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
305
305
|
isSystemTx?: undefined;
|
306
306
|
mint?: undefined;
|
307
307
|
sourceHash?: undefined;
|
@@ -99,7 +99,7 @@ export declare const baseGoerli: {
|
|
99
99
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
100
100
|
accessList?: undefined;
|
101
101
|
chainId?: `0x${string}` | undefined;
|
102
|
-
} & import("../index.js").Omit<import("
|
102
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
103
103
|
isSystemTx?: undefined;
|
104
104
|
mint?: undefined;
|
105
105
|
sourceHash?: undefined;
|
@@ -150,7 +150,7 @@ export declare const baseGoerli: {
|
|
150
150
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
151
151
|
accessList?: import("../../index.js").AccessList | undefined;
|
152
152
|
chainId?: `0x${string}` | undefined;
|
153
|
-
} & import("../index.js").Omit<import("
|
153
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
154
154
|
isSystemTx?: undefined;
|
155
155
|
mint?: undefined;
|
156
156
|
sourceHash?: undefined;
|
@@ -175,7 +175,7 @@ export declare const baseGoerli: {
|
|
175
175
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
176
176
|
accessList?: import("../../index.js").AccessList | undefined;
|
177
177
|
chainId?: `0x${string}` | undefined;
|
178
|
-
} & import("../index.js").Omit<import("
|
178
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
179
179
|
isSystemTx?: undefined;
|
180
180
|
mint?: undefined;
|
181
181
|
sourceHash?: undefined;
|
@@ -200,7 +200,7 @@ export declare const baseGoerli: {
|
|
200
200
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
201
201
|
accessList?: import("../../index.js").AccessList | undefined;
|
202
202
|
chainId?: `0x${string}` | undefined;
|
203
|
-
} & import("../index.js").Omit<import("
|
203
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
204
204
|
isSystemTx?: undefined;
|
205
205
|
mint?: undefined;
|
206
206
|
sourceHash?: undefined;
|
@@ -251,7 +251,7 @@ export declare const baseGoerli: {
|
|
251
251
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
252
252
|
accessList?: import("../../index.js").AccessList | undefined;
|
253
253
|
chainId?: `0x${string}` | undefined;
|
254
|
-
} & import("../index.js").Omit<import("
|
254
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
255
255
|
isSystemTx?: undefined;
|
256
256
|
mint?: undefined;
|
257
257
|
sourceHash?: undefined;
|
@@ -276,7 +276,7 @@ export declare const baseGoerli: {
|
|
276
276
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
277
277
|
accessList?: import("../../index.js").AccessList | undefined;
|
278
278
|
chainId?: `0x${string}` | undefined;
|
279
|
-
} & import("../index.js").Omit<import("
|
279
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
280
280
|
isSystemTx?: undefined;
|
281
281
|
mint?: undefined;
|
282
282
|
sourceHash?: undefined;
|
@@ -301,7 +301,7 @@ export declare const baseGoerli: {
|
|
301
301
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
302
302
|
accessList?: import("../../index.js").AccessList | undefined;
|
303
303
|
chainId?: `0x${string}` | undefined;
|
304
|
-
} & import("../index.js").Omit<import("
|
304
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
305
305
|
isSystemTx?: undefined;
|
306
306
|
mint?: undefined;
|
307
307
|
sourceHash?: undefined;
|
@@ -102,7 +102,7 @@ export declare const baseSepolia: {
|
|
102
102
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
103
103
|
accessList?: undefined;
|
104
104
|
chainId?: `0x${string}` | undefined;
|
105
|
-
} & import("../index.js").Omit<import("
|
105
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
106
106
|
isSystemTx?: undefined;
|
107
107
|
mint?: undefined;
|
108
108
|
sourceHash?: undefined;
|
@@ -153,7 +153,7 @@ export declare const baseSepolia: {
|
|
153
153
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
154
154
|
accessList?: import("../../index.js").AccessList | undefined;
|
155
155
|
chainId?: `0x${string}` | undefined;
|
156
|
-
} & import("../index.js").Omit<import("
|
156
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
157
157
|
isSystemTx?: undefined;
|
158
158
|
mint?: undefined;
|
159
159
|
sourceHash?: undefined;
|
@@ -178,7 +178,7 @@ export declare const baseSepolia: {
|
|
178
178
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
179
179
|
accessList?: import("../../index.js").AccessList | undefined;
|
180
180
|
chainId?: `0x${string}` | undefined;
|
181
|
-
} & import("../index.js").Omit<import("
|
181
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
182
182
|
isSystemTx?: undefined;
|
183
183
|
mint?: undefined;
|
184
184
|
sourceHash?: undefined;
|
@@ -203,7 +203,7 @@ export declare const baseSepolia: {
|
|
203
203
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
204
204
|
accessList?: import("../../index.js").AccessList | undefined;
|
205
205
|
chainId?: `0x${string}` | undefined;
|
206
|
-
} & import("../index.js").Omit<import("
|
206
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
207
207
|
isSystemTx?: undefined;
|
208
208
|
mint?: undefined;
|
209
209
|
sourceHash?: undefined;
|
@@ -254,7 +254,7 @@ export declare const baseSepolia: {
|
|
254
254
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
255
255
|
accessList?: import("../../index.js").AccessList | undefined;
|
256
256
|
chainId?: `0x${string}` | undefined;
|
257
|
-
} & import("../index.js").Omit<import("
|
257
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
258
258
|
isSystemTx?: undefined;
|
259
259
|
mint?: undefined;
|
260
260
|
sourceHash?: undefined;
|
@@ -279,7 +279,7 @@ export declare const baseSepolia: {
|
|
279
279
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
280
280
|
accessList?: import("../../index.js").AccessList | undefined;
|
281
281
|
chainId?: `0x${string}` | undefined;
|
282
|
-
} & import("../index.js").Omit<import("
|
282
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
283
283
|
isSystemTx?: undefined;
|
284
284
|
mint?: undefined;
|
285
285
|
sourceHash?: undefined;
|
@@ -304,7 +304,7 @@ export declare const baseSepolia: {
|
|
304
304
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
305
305
|
accessList?: import("../../index.js").AccessList | undefined;
|
306
306
|
chainId?: `0x${string}` | undefined;
|
307
|
-
} & import("../index.js").Omit<import("
|
307
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
308
308
|
isSystemTx?: undefined;
|
309
309
|
mint?: undefined;
|
310
310
|
sourceHash?: undefined;
|
@@ -91,7 +91,7 @@ export declare const celo: {
|
|
91
91
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
92
92
|
accessList?: undefined;
|
93
93
|
chainId?: `0x${string}` | undefined;
|
94
|
-
} & import("../index.js").Omit<import("
|
94
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
95
95
|
feeCurrency: `0x${string}` | null;
|
96
96
|
gatewayFee: `0x${string}` | null;
|
97
97
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -168,7 +168,7 @@ export declare const celo: {
|
|
168
168
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
169
169
|
accessList?: import("../../index.js").AccessList | undefined;
|
170
170
|
chainId?: `0x${string}` | undefined;
|
171
|
-
} & import("../index.js").Omit<import("
|
171
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
172
172
|
feeCurrency: `0x${string}` | null;
|
173
173
|
gatewayFee: `0x${string}` | null;
|
174
174
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -193,7 +193,7 @@ export declare const celo: {
|
|
193
193
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
194
194
|
accessList?: import("../../index.js").AccessList | undefined;
|
195
195
|
chainId?: `0x${string}` | undefined;
|
196
|
-
} & import("../index.js").Omit<import("
|
196
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
197
197
|
feeCurrency: `0x${string}` | null;
|
198
198
|
gatewayFee: `0x${string}` | null;
|
199
199
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -218,7 +218,7 @@ export declare const celo: {
|
|
218
218
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
219
219
|
accessList?: import("../../index.js").AccessList | undefined;
|
220
220
|
chainId?: `0x${string}` | undefined;
|
221
|
-
} & import("../index.js").Omit<import("
|
221
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
222
222
|
feeCurrency: `0x${string}` | null;
|
223
223
|
gatewayFee: `0x${string}` | null;
|
224
224
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -295,7 +295,7 @@ export declare const celo: {
|
|
295
295
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
296
296
|
accessList?: import("../../index.js").AccessList | undefined;
|
297
297
|
chainId?: `0x${string}` | undefined;
|
298
|
-
} & import("../index.js").Omit<import("
|
298
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
|
299
299
|
feeCurrency: `0x${string}` | null;
|
300
300
|
gatewayFee: `0x${string}` | null;
|
301
301
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -320,7 +320,7 @@ export declare const celo: {
|
|
320
320
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
321
321
|
accessList?: import("../../index.js").AccessList | undefined;
|
322
322
|
chainId?: `0x${string}` | undefined;
|
323
|
-
} & import("../index.js").Omit<import("
|
323
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
|
324
324
|
feeCurrency: `0x${string}` | null;
|
325
325
|
gatewayFee: `0x${string}` | null;
|
326
326
|
gatewayFeeRecipient: `0x${string}` | null;
|
@@ -345,7 +345,7 @@ export declare const celo: {
|
|
345
345
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
346
346
|
accessList?: import("../../index.js").AccessList | undefined;
|
347
347
|
chainId?: `0x${string}` | undefined;
|
348
|
-
} & import("../index.js").Omit<import("
|
348
|
+
} & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
|
349
349
|
feeCurrency: `0x${string}` | null;
|
350
350
|
gatewayFee: `0x${string}` | null;
|
351
351
|
gatewayFeeRecipient: `0x${string}` | null;
|