viem 1.15.3 → 1.15.4
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/CHANGELOG.md +8 -0
- package/_cjs/chains/definitions/base.js +4 -0
- package/_cjs/chains/definitions/base.js.map +1 -1
- 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/_esm/chains/definitions/base.js +4 -0
- package/_esm/chains/definitions/base.js.map +1 -1
- package/_esm/errors/node.js +11 -22
- package/_esm/errors/node.js.map +1 -1
- package/_esm/errors/rpc.js +18 -36
- package/_esm/errors/rpc.js.map +1 -1
- package/_types/chains/celo/formatters.d.ts +12 -12
- package/_types/chains/definitions/base.d.ts +4 -0
- package/_types/chains/definitions/base.d.ts.map +1 -1
- package/_types/chains/definitions/celo.d.ts +12 -12
- package/_types/chains/definitions/celoAlfajores.d.ts +12 -12
- package/_types/chains/definitions/celoCannoli.d.ts +12 -12
- package/_types/types/transaction.d.ts +1 -1
- package/_types/types/transaction.d.ts.map +1 -1
- package/chains/definitions/base.ts +4 -0
- package/package.json +1 -1
- package/types/transaction.ts +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
|
-
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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, {
|
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,MAAM,OAAO,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;AAoB/B,MAAM,OAAO,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;AAmB/B,MAAM,OAAO,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;AAmB/B,MAAM,OAAO,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;AAsB/B,MAAM,OAAO,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;AAmB/B,MAAM,OAAO,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;AAsB/B,MAAM,OAAO,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;AAmB/B,MAAM,OAAO,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;AAmB/B,MAAM,OAAO,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;AAmB/B,MAAM,OAAO,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;AAmB/B,MAAM,OAAO,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;AAoB/B,MAAM,OAAO,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;AAmB/B,MAAM,OAAO,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;AAmB7B,MAAM,OAAO,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;AAqB7B,MAAM,OAAO,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;AAmB7B,MAAM,OAAO,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;AAmB7B,MAAM,OAAO,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;AAmB7B,MAAM,OAAO,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;AAgB7B,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"}
|
@@ -311,7 +311,7 @@ export declare const formattersCelo: {
|
|
311
311
|
from: `0x${string}`;
|
312
312
|
gas?: `0x${string}` | undefined;
|
313
313
|
nonce?: `0x${string}` | undefined;
|
314
|
-
to?: `0x${string}` | undefined;
|
314
|
+
to?: `0x${string}` | null | undefined;
|
315
315
|
value?: `0x${string}` | undefined;
|
316
316
|
gasPrice?: `0x${string}` | undefined;
|
317
317
|
maxFeePerGas?: undefined;
|
@@ -326,7 +326,7 @@ export declare const formattersCelo: {
|
|
326
326
|
from: `0x${string}`;
|
327
327
|
gas?: `0x${string}` | undefined;
|
328
328
|
nonce?: `0x${string}` | undefined;
|
329
|
-
to?: `0x${string}` | undefined;
|
329
|
+
to?: `0x${string}` | null | undefined;
|
330
330
|
value?: `0x${string}` | undefined;
|
331
331
|
gasPrice?: `0x${string}` | undefined;
|
332
332
|
maxFeePerGas?: undefined;
|
@@ -341,7 +341,7 @@ export declare const formattersCelo: {
|
|
341
341
|
from: `0x${string}`;
|
342
342
|
gas?: `0x${string}` | undefined;
|
343
343
|
nonce?: `0x${string}` | undefined;
|
344
|
-
to?: `0x${string}` | undefined;
|
344
|
+
to?: `0x${string}` | null | undefined;
|
345
345
|
value?: `0x${string}` | undefined;
|
346
346
|
gasPrice?: undefined;
|
347
347
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -356,7 +356,7 @@ export declare const formattersCelo: {
|
|
356
356
|
from: `0x${string}`;
|
357
357
|
gas?: `0x${string}` | undefined;
|
358
358
|
nonce?: `0x${string}` | undefined;
|
359
|
-
to?: `0x${string}` | undefined;
|
359
|
+
to?: `0x${string}` | null | undefined;
|
360
360
|
value?: `0x${string}` | undefined;
|
361
361
|
gasPrice?: undefined;
|
362
362
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -371,7 +371,7 @@ export declare const formattersCelo: {
|
|
371
371
|
from: `0x${string}`;
|
372
372
|
gas?: `0x${string}` | undefined;
|
373
373
|
nonce?: `0x${string}` | undefined;
|
374
|
-
to?: `0x${string}` | undefined;
|
374
|
+
to?: `0x${string}` | null | undefined;
|
375
375
|
value?: `0x${string}` | undefined;
|
376
376
|
gasPrice?: `0x${string}` | undefined;
|
377
377
|
maxFeePerGas?: undefined;
|
@@ -386,7 +386,7 @@ export declare const formattersCelo: {
|
|
386
386
|
from: `0x${string}`;
|
387
387
|
gas?: `0x${string}` | undefined;
|
388
388
|
nonce?: `0x${string}` | undefined;
|
389
|
-
to?: `0x${string}` | undefined;
|
389
|
+
to?: `0x${string}` | null | undefined;
|
390
390
|
value?: `0x${string}` | undefined;
|
391
391
|
gasPrice?: `0x${string}` | undefined;
|
392
392
|
maxFeePerGas?: undefined;
|
@@ -401,7 +401,7 @@ export declare const formattersCelo: {
|
|
401
401
|
from: `0x${string}`;
|
402
402
|
gas?: `0x${string}` | undefined;
|
403
403
|
nonce?: `0x${string}` | undefined;
|
404
|
-
to?: `0x${string}` | undefined;
|
404
|
+
to?: `0x${string}` | null | undefined;
|
405
405
|
value?: `0x${string}` | undefined;
|
406
406
|
gasPrice?: undefined;
|
407
407
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -416,7 +416,7 @@ export declare const formattersCelo: {
|
|
416
416
|
from: `0x${string}`;
|
417
417
|
gas?: `0x${string}` | undefined;
|
418
418
|
nonce?: `0x${string}` | undefined;
|
419
|
-
to?: `0x${string}` | undefined;
|
419
|
+
to?: `0x${string}` | null | undefined;
|
420
420
|
value?: `0x${string}` | undefined;
|
421
421
|
gasPrice?: undefined;
|
422
422
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -431,7 +431,7 @@ export declare const formattersCelo: {
|
|
431
431
|
from: `0x${string}`;
|
432
432
|
gas?: `0x${string}` | undefined;
|
433
433
|
nonce?: `0x${string}` | undefined;
|
434
|
-
to?: `0x${string}` | undefined;
|
434
|
+
to?: `0x${string}` | null | undefined;
|
435
435
|
value?: `0x${string}` | undefined;
|
436
436
|
gasPrice?: `0x${string}` | undefined;
|
437
437
|
maxFeePerGas?: undefined;
|
@@ -446,7 +446,7 @@ export declare const formattersCelo: {
|
|
446
446
|
from: `0x${string}`;
|
447
447
|
gas?: `0x${string}` | undefined;
|
448
448
|
nonce?: `0x${string}` | undefined;
|
449
|
-
to?: `0x${string}` | undefined;
|
449
|
+
to?: `0x${string}` | null | undefined;
|
450
450
|
value?: `0x${string}` | undefined;
|
451
451
|
gasPrice?: `0x${string}` | undefined;
|
452
452
|
maxFeePerGas?: undefined;
|
@@ -461,7 +461,7 @@ export declare const formattersCelo: {
|
|
461
461
|
from: `0x${string}`;
|
462
462
|
gas?: `0x${string}` | undefined;
|
463
463
|
nonce?: `0x${string}` | undefined;
|
464
|
-
to?: `0x${string}` | undefined;
|
464
|
+
to?: `0x${string}` | null | undefined;
|
465
465
|
value?: `0x${string}` | undefined;
|
466
466
|
gasPrice?: undefined;
|
467
467
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -476,7 +476,7 @@ export declare const formattersCelo: {
|
|
476
476
|
from: `0x${string}`;
|
477
477
|
gas?: `0x${string}` | undefined;
|
478
478
|
nonce?: `0x${string}` | undefined;
|
479
|
-
to?: `0x${string}` | undefined;
|
479
|
+
to?: `0x${string}` | null | undefined;
|
480
480
|
value?: `0x${string}` | undefined;
|
481
481
|
gasPrice?: undefined;
|
482
482
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -12,6 +12,10 @@ export declare const base: import("../../types/utils.js").Assign<{
|
|
12
12
|
readonly http: readonly ["https://base-mainnet.g.alchemy.com/v2"];
|
13
13
|
readonly webSocket: readonly ["wss://base-mainnet.g.alchemy.com/v2"];
|
14
14
|
};
|
15
|
+
readonly infura: {
|
16
|
+
readonly http: readonly ["https://base-mainnet.infura.io/v3"];
|
17
|
+
readonly webSocket: readonly ["wss://base-mainnet.infura.io/ws/v3"];
|
18
|
+
};
|
15
19
|
readonly default: {
|
16
20
|
readonly http: readonly ["https://mainnet.base.org"];
|
17
21
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../chains/definitions/base.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,IAAI
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../chains/definitions/base.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8ChB,CAAA"}
|
@@ -346,7 +346,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
|
|
346
346
|
from: `0x${string}`;
|
347
347
|
gas?: `0x${string}` | undefined;
|
348
348
|
nonce?: `0x${string}` | undefined;
|
349
|
-
to?: `0x${string}` | undefined;
|
349
|
+
to?: `0x${string}` | null | undefined;
|
350
350
|
value?: `0x${string}` | undefined;
|
351
351
|
gasPrice?: `0x${string}` | undefined;
|
352
352
|
maxFeePerGas?: undefined;
|
@@ -361,7 +361,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
|
|
361
361
|
from: `0x${string}`;
|
362
362
|
gas?: `0x${string}` | undefined;
|
363
363
|
nonce?: `0x${string}` | undefined;
|
364
|
-
to?: `0x${string}` | undefined;
|
364
|
+
to?: `0x${string}` | null | undefined;
|
365
365
|
value?: `0x${string}` | undefined;
|
366
366
|
gasPrice?: `0x${string}` | undefined;
|
367
367
|
maxFeePerGas?: undefined;
|
@@ -376,7 +376,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
|
|
376
376
|
from: `0x${string}`;
|
377
377
|
gas?: `0x${string}` | undefined;
|
378
378
|
nonce?: `0x${string}` | undefined;
|
379
|
-
to?: `0x${string}` | undefined;
|
379
|
+
to?: `0x${string}` | null | undefined;
|
380
380
|
value?: `0x${string}` | undefined;
|
381
381
|
gasPrice?: undefined;
|
382
382
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -391,7 +391,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
|
|
391
391
|
from: `0x${string}`;
|
392
392
|
gas?: `0x${string}` | undefined;
|
393
393
|
nonce?: `0x${string}` | undefined;
|
394
|
-
to?: `0x${string}` | undefined;
|
394
|
+
to?: `0x${string}` | null | undefined;
|
395
395
|
value?: `0x${string}` | undefined;
|
396
396
|
gasPrice?: undefined;
|
397
397
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -406,7 +406,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
|
|
406
406
|
from: `0x${string}`;
|
407
407
|
gas?: `0x${string}` | undefined;
|
408
408
|
nonce?: `0x${string}` | undefined;
|
409
|
-
to?: `0x${string}` | undefined;
|
409
|
+
to?: `0x${string}` | null | undefined;
|
410
410
|
value?: `0x${string}` | undefined;
|
411
411
|
gasPrice?: `0x${string}` | undefined;
|
412
412
|
maxFeePerGas?: undefined;
|
@@ -421,7 +421,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
|
|
421
421
|
from: `0x${string}`;
|
422
422
|
gas?: `0x${string}` | undefined;
|
423
423
|
nonce?: `0x${string}` | undefined;
|
424
|
-
to?: `0x${string}` | undefined;
|
424
|
+
to?: `0x${string}` | null | undefined;
|
425
425
|
value?: `0x${string}` | undefined;
|
426
426
|
gasPrice?: `0x${string}` | undefined;
|
427
427
|
maxFeePerGas?: undefined;
|
@@ -436,7 +436,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
|
|
436
436
|
from: `0x${string}`;
|
437
437
|
gas?: `0x${string}` | undefined;
|
438
438
|
nonce?: `0x${string}` | undefined;
|
439
|
-
to?: `0x${string}` | undefined;
|
439
|
+
to?: `0x${string}` | null | undefined;
|
440
440
|
value?: `0x${string}` | undefined;
|
441
441
|
gasPrice?: undefined;
|
442
442
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -451,7 +451,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
|
|
451
451
|
from: `0x${string}`;
|
452
452
|
gas?: `0x${string}` | undefined;
|
453
453
|
nonce?: `0x${string}` | undefined;
|
454
|
-
to?: `0x${string}` | undefined;
|
454
|
+
to?: `0x${string}` | null | undefined;
|
455
455
|
value?: `0x${string}` | undefined;
|
456
456
|
gasPrice?: undefined;
|
457
457
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -466,7 +466,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
|
|
466
466
|
from: `0x${string}`;
|
467
467
|
gas?: `0x${string}` | undefined;
|
468
468
|
nonce?: `0x${string}` | undefined;
|
469
|
-
to?: `0x${string}` | undefined;
|
469
|
+
to?: `0x${string}` | null | undefined;
|
470
470
|
value?: `0x${string}` | undefined;
|
471
471
|
gasPrice?: `0x${string}` | undefined;
|
472
472
|
maxFeePerGas?: undefined;
|
@@ -481,7 +481,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
|
|
481
481
|
from: `0x${string}`;
|
482
482
|
gas?: `0x${string}` | undefined;
|
483
483
|
nonce?: `0x${string}` | undefined;
|
484
|
-
to?: `0x${string}` | undefined;
|
484
|
+
to?: `0x${string}` | null | undefined;
|
485
485
|
value?: `0x${string}` | undefined;
|
486
486
|
gasPrice?: `0x${string}` | undefined;
|
487
487
|
maxFeePerGas?: undefined;
|
@@ -496,7 +496,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
|
|
496
496
|
from: `0x${string}`;
|
497
497
|
gas?: `0x${string}` | undefined;
|
498
498
|
nonce?: `0x${string}` | undefined;
|
499
|
-
to?: `0x${string}` | undefined;
|
499
|
+
to?: `0x${string}` | null | undefined;
|
500
500
|
value?: `0x${string}` | undefined;
|
501
501
|
gasPrice?: undefined;
|
502
502
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -511,7 +511,7 @@ export declare const celo: import("../../types/utils.js").Assign<{
|
|
511
511
|
from: `0x${string}`;
|
512
512
|
gas?: `0x${string}` | undefined;
|
513
513
|
nonce?: `0x${string}` | undefined;
|
514
|
-
to?: `0x${string}` | undefined;
|
514
|
+
to?: `0x${string}` | null | undefined;
|
515
515
|
value?: `0x${string}` | undefined;
|
516
516
|
gasPrice?: undefined;
|
517
517
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -346,7 +346,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
|
|
346
346
|
from: `0x${string}`;
|
347
347
|
gas?: `0x${string}` | undefined;
|
348
348
|
nonce?: `0x${string}` | undefined;
|
349
|
-
to?: `0x${string}` | undefined;
|
349
|
+
to?: `0x${string}` | null | undefined;
|
350
350
|
value?: `0x${string}` | undefined;
|
351
351
|
gasPrice?: `0x${string}` | undefined;
|
352
352
|
maxFeePerGas?: undefined;
|
@@ -361,7 +361,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
|
|
361
361
|
from: `0x${string}`;
|
362
362
|
gas?: `0x${string}` | undefined;
|
363
363
|
nonce?: `0x${string}` | undefined;
|
364
|
-
to?: `0x${string}` | undefined;
|
364
|
+
to?: `0x${string}` | null | undefined;
|
365
365
|
value?: `0x${string}` | undefined;
|
366
366
|
gasPrice?: `0x${string}` | undefined;
|
367
367
|
maxFeePerGas?: undefined;
|
@@ -376,7 +376,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
|
|
376
376
|
from: `0x${string}`;
|
377
377
|
gas?: `0x${string}` | undefined;
|
378
378
|
nonce?: `0x${string}` | undefined;
|
379
|
-
to?: `0x${string}` | undefined;
|
379
|
+
to?: `0x${string}` | null | undefined;
|
380
380
|
value?: `0x${string}` | undefined;
|
381
381
|
gasPrice?: undefined;
|
382
382
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -391,7 +391,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
|
|
391
391
|
from: `0x${string}`;
|
392
392
|
gas?: `0x${string}` | undefined;
|
393
393
|
nonce?: `0x${string}` | undefined;
|
394
|
-
to?: `0x${string}` | undefined;
|
394
|
+
to?: `0x${string}` | null | undefined;
|
395
395
|
value?: `0x${string}` | undefined;
|
396
396
|
gasPrice?: undefined;
|
397
397
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -406,7 +406,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
|
|
406
406
|
from: `0x${string}`;
|
407
407
|
gas?: `0x${string}` | undefined;
|
408
408
|
nonce?: `0x${string}` | undefined;
|
409
|
-
to?: `0x${string}` | undefined;
|
409
|
+
to?: `0x${string}` | null | undefined;
|
410
410
|
value?: `0x${string}` | undefined;
|
411
411
|
gasPrice?: `0x${string}` | undefined;
|
412
412
|
maxFeePerGas?: undefined;
|
@@ -421,7 +421,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
|
|
421
421
|
from: `0x${string}`;
|
422
422
|
gas?: `0x${string}` | undefined;
|
423
423
|
nonce?: `0x${string}` | undefined;
|
424
|
-
to?: `0x${string}` | undefined;
|
424
|
+
to?: `0x${string}` | null | undefined;
|
425
425
|
value?: `0x${string}` | undefined;
|
426
426
|
gasPrice?: `0x${string}` | undefined;
|
427
427
|
maxFeePerGas?: undefined;
|
@@ -436,7 +436,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
|
|
436
436
|
from: `0x${string}`;
|
437
437
|
gas?: `0x${string}` | undefined;
|
438
438
|
nonce?: `0x${string}` | undefined;
|
439
|
-
to?: `0x${string}` | undefined;
|
439
|
+
to?: `0x${string}` | null | undefined;
|
440
440
|
value?: `0x${string}` | undefined;
|
441
441
|
gasPrice?: undefined;
|
442
442
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -451,7 +451,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
|
|
451
451
|
from: `0x${string}`;
|
452
452
|
gas?: `0x${string}` | undefined;
|
453
453
|
nonce?: `0x${string}` | undefined;
|
454
|
-
to?: `0x${string}` | undefined;
|
454
|
+
to?: `0x${string}` | null | undefined;
|
455
455
|
value?: `0x${string}` | undefined;
|
456
456
|
gasPrice?: undefined;
|
457
457
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -466,7 +466,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
|
|
466
466
|
from: `0x${string}`;
|
467
467
|
gas?: `0x${string}` | undefined;
|
468
468
|
nonce?: `0x${string}` | undefined;
|
469
|
-
to?: `0x${string}` | undefined;
|
469
|
+
to?: `0x${string}` | null | undefined;
|
470
470
|
value?: `0x${string}` | undefined;
|
471
471
|
gasPrice?: `0x${string}` | undefined;
|
472
472
|
maxFeePerGas?: undefined;
|
@@ -481,7 +481,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
|
|
481
481
|
from: `0x${string}`;
|
482
482
|
gas?: `0x${string}` | undefined;
|
483
483
|
nonce?: `0x${string}` | undefined;
|
484
|
-
to?: `0x${string}` | undefined;
|
484
|
+
to?: `0x${string}` | null | undefined;
|
485
485
|
value?: `0x${string}` | undefined;
|
486
486
|
gasPrice?: `0x${string}` | undefined;
|
487
487
|
maxFeePerGas?: undefined;
|
@@ -496,7 +496,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
|
|
496
496
|
from: `0x${string}`;
|
497
497
|
gas?: `0x${string}` | undefined;
|
498
498
|
nonce?: `0x${string}` | undefined;
|
499
|
-
to?: `0x${string}` | undefined;
|
499
|
+
to?: `0x${string}` | null | undefined;
|
500
500
|
value?: `0x${string}` | undefined;
|
501
501
|
gasPrice?: undefined;
|
502
502
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -511,7 +511,7 @@ export declare const celoAlfajores: import("../../types/utils.js").Assign<{
|
|
511
511
|
from: `0x${string}`;
|
512
512
|
gas?: `0x${string}` | undefined;
|
513
513
|
nonce?: `0x${string}` | undefined;
|
514
|
-
to?: `0x${string}` | undefined;
|
514
|
+
to?: `0x${string}` | null | undefined;
|
515
515
|
value?: `0x${string}` | undefined;
|
516
516
|
gasPrice?: undefined;
|
517
517
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -339,7 +339,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
|
|
339
339
|
from: `0x${string}`;
|
340
340
|
gas?: `0x${string}` | undefined;
|
341
341
|
nonce?: `0x${string}` | undefined;
|
342
|
-
to?: `0x${string}` | undefined;
|
342
|
+
to?: `0x${string}` | null | undefined;
|
343
343
|
value?: `0x${string}` | undefined;
|
344
344
|
gasPrice?: `0x${string}` | undefined;
|
345
345
|
maxFeePerGas?: undefined;
|
@@ -354,7 +354,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
|
|
354
354
|
from: `0x${string}`;
|
355
355
|
gas?: `0x${string}` | undefined;
|
356
356
|
nonce?: `0x${string}` | undefined;
|
357
|
-
to?: `0x${string}` | undefined;
|
357
|
+
to?: `0x${string}` | null | undefined;
|
358
358
|
value?: `0x${string}` | undefined;
|
359
359
|
gasPrice?: `0x${string}` | undefined;
|
360
360
|
maxFeePerGas?: undefined;
|
@@ -369,7 +369,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
|
|
369
369
|
from: `0x${string}`;
|
370
370
|
gas?: `0x${string}` | undefined;
|
371
371
|
nonce?: `0x${string}` | undefined;
|
372
|
-
to?: `0x${string}` | undefined;
|
372
|
+
to?: `0x${string}` | null | undefined;
|
373
373
|
value?: `0x${string}` | undefined;
|
374
374
|
gasPrice?: undefined;
|
375
375
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -384,7 +384,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
|
|
384
384
|
from: `0x${string}`;
|
385
385
|
gas?: `0x${string}` | undefined;
|
386
386
|
nonce?: `0x${string}` | undefined;
|
387
|
-
to?: `0x${string}` | undefined;
|
387
|
+
to?: `0x${string}` | null | undefined;
|
388
388
|
value?: `0x${string}` | undefined;
|
389
389
|
gasPrice?: undefined;
|
390
390
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -399,7 +399,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
|
|
399
399
|
from: `0x${string}`;
|
400
400
|
gas?: `0x${string}` | undefined;
|
401
401
|
nonce?: `0x${string}` | undefined;
|
402
|
-
to?: `0x${string}` | undefined;
|
402
|
+
to?: `0x${string}` | null | undefined;
|
403
403
|
value?: `0x${string}` | undefined;
|
404
404
|
gasPrice?: `0x${string}` | undefined;
|
405
405
|
maxFeePerGas?: undefined;
|
@@ -414,7 +414,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
|
|
414
414
|
from: `0x${string}`;
|
415
415
|
gas?: `0x${string}` | undefined;
|
416
416
|
nonce?: `0x${string}` | undefined;
|
417
|
-
to?: `0x${string}` | undefined;
|
417
|
+
to?: `0x${string}` | null | undefined;
|
418
418
|
value?: `0x${string}` | undefined;
|
419
419
|
gasPrice?: `0x${string}` | undefined;
|
420
420
|
maxFeePerGas?: undefined;
|
@@ -429,7 +429,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
|
|
429
429
|
from: `0x${string}`;
|
430
430
|
gas?: `0x${string}` | undefined;
|
431
431
|
nonce?: `0x${string}` | undefined;
|
432
|
-
to?: `0x${string}` | undefined;
|
432
|
+
to?: `0x${string}` | null | undefined;
|
433
433
|
value?: `0x${string}` | undefined;
|
434
434
|
gasPrice?: undefined;
|
435
435
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -444,7 +444,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
|
|
444
444
|
from: `0x${string}`;
|
445
445
|
gas?: `0x${string}` | undefined;
|
446
446
|
nonce?: `0x${string}` | undefined;
|
447
|
-
to?: `0x${string}` | undefined;
|
447
|
+
to?: `0x${string}` | null | undefined;
|
448
448
|
value?: `0x${string}` | undefined;
|
449
449
|
gasPrice?: undefined;
|
450
450
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -459,7 +459,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
|
|
459
459
|
from: `0x${string}`;
|
460
460
|
gas?: `0x${string}` | undefined;
|
461
461
|
nonce?: `0x${string}` | undefined;
|
462
|
-
to?: `0x${string}` | undefined;
|
462
|
+
to?: `0x${string}` | null | undefined;
|
463
463
|
value?: `0x${string}` | undefined;
|
464
464
|
gasPrice?: `0x${string}` | undefined;
|
465
465
|
maxFeePerGas?: undefined;
|
@@ -474,7 +474,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
|
|
474
474
|
from: `0x${string}`;
|
475
475
|
gas?: `0x${string}` | undefined;
|
476
476
|
nonce?: `0x${string}` | undefined;
|
477
|
-
to?: `0x${string}` | undefined;
|
477
|
+
to?: `0x${string}` | null | undefined;
|
478
478
|
value?: `0x${string}` | undefined;
|
479
479
|
gasPrice?: `0x${string}` | undefined;
|
480
480
|
maxFeePerGas?: undefined;
|
@@ -489,7 +489,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
|
|
489
489
|
from: `0x${string}`;
|
490
490
|
gas?: `0x${string}` | undefined;
|
491
491
|
nonce?: `0x${string}` | undefined;
|
492
|
-
to?: `0x${string}` | undefined;
|
492
|
+
to?: `0x${string}` | null | undefined;
|
493
493
|
value?: `0x${string}` | undefined;
|
494
494
|
gasPrice?: undefined;
|
495
495
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -504,7 +504,7 @@ export declare const celoCannoli: import("../../types/utils.js").Assign<{
|
|
504
504
|
from: `0x${string}`;
|
505
505
|
gas?: `0x${string}` | undefined;
|
506
506
|
nonce?: `0x${string}` | undefined;
|
507
|
-
to?: `0x${string}` | undefined;
|
507
|
+
to?: `0x${string}` | null | undefined;
|
508
508
|
value?: `0x${string}` | undefined;
|
509
509
|
gasPrice?: undefined;
|
510
510
|
maxFeePerGas?: `0x${string}` | undefined;
|
@@ -95,7 +95,7 @@ export type TransactionRequestBase<TQuantity = bigint, TIndex = number> = {
|
|
95
95
|
/** Unique number identifying this transaction */
|
96
96
|
nonce?: TIndex;
|
97
97
|
/** Transaction recipient */
|
98
|
-
to?: Address;
|
98
|
+
to?: Address | null;
|
99
99
|
/** Value in wei sent with this transaction */
|
100
100
|
value?: TQuantity;
|
101
101
|
};
|