@ensdomains/ensjs 3.0.0-beta.2 → 3.0.0-beta.3

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 (35) hide show
  1. package/dist/cjs/contracts/consts.js +46 -1
  2. package/dist/cjs/contracts/consts.js.map +1 -1
  3. package/dist/cjs/errors/version.js +1 -1
  4. package/dist/cjs/errors/version.js.map +1 -1
  5. package/dist/esm/contracts/consts.js +46 -1
  6. package/dist/esm/contracts/consts.js.map +1 -1
  7. package/dist/esm/errors/version.js +1 -1
  8. package/dist/esm/errors/version.js.map +1 -1
  9. package/dist/types/clients/decorators/wallet.d.ts +12 -12
  10. package/dist/types/clients/wallet.d.ts +12 -12
  11. package/dist/types/contracts/consts.d.ts +45 -2
  12. package/dist/types/contracts/consts.d.ts.map +1 -1
  13. package/dist/types/errors/version.d.ts +1 -1
  14. package/dist/types/errors/version.d.ts.map +1 -1
  15. package/dist/types/functions/dns/importDnsName.d.ts +24 -24
  16. package/dist/types/functions/wallet/commitName.d.ts +24 -24
  17. package/dist/types/functions/wallet/createSubname.d.ts +24 -24
  18. package/dist/types/functions/wallet/deleteSubname.d.ts +24 -24
  19. package/dist/types/functions/wallet/registerName.d.ts +24 -24
  20. package/dist/types/functions/wallet/renewNames.d.ts +24 -24
  21. package/dist/types/functions/wallet/setAbiRecord.d.ts +24 -24
  22. package/dist/types/functions/wallet/setAddressRecord.d.ts +24 -24
  23. package/dist/types/functions/wallet/setChildFuses.d.ts +24 -24
  24. package/dist/types/functions/wallet/setContentHashRecord.d.ts +24 -24
  25. package/dist/types/functions/wallet/setFuses.d.ts +24 -24
  26. package/dist/types/functions/wallet/setPrimaryName.d.ts +24 -24
  27. package/dist/types/functions/wallet/setRecords.d.ts +24 -24
  28. package/dist/types/functions/wallet/setResolver.d.ts +24 -24
  29. package/dist/types/functions/wallet/setTextRecord.d.ts +24 -24
  30. package/dist/types/functions/wallet/transferName.d.ts +24 -24
  31. package/dist/types/functions/wallet/unwrapName.d.ts +24 -24
  32. package/dist/types/functions/wallet/wrapName.d.ts +24 -24
  33. package/package.json +1 -1
  34. package/src/contracts/consts.ts +51 -12
  35. package/src/errors/version.ts +1 -1
@@ -67,17 +67,17 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
67
67
  [x: `address[${string}]`]: undefined;
68
68
  [x: `bool[${string}]`]: undefined;
69
69
  [x: `bytes[${string}]`]: undefined;
70
- [x: `bytes2[${string}]`]: undefined;
71
- [x: `bytes8[${string}]`]: undefined;
70
+ [x: `bytes3[${string}]`]: undefined;
71
+ [x: `bytes10[${string}]`]: undefined;
72
72
  [x: `bytes16[${string}]`]: undefined;
73
73
  [x: `bytes1[${string}]`]: undefined;
74
- [x: `bytes3[${string}]`]: undefined;
74
+ [x: `bytes2[${string}]`]: undefined;
75
75
  [x: `bytes4[${string}]`]: undefined;
76
76
  [x: `bytes5[${string}]`]: undefined;
77
77
  [x: `bytes6[${string}]`]: undefined;
78
78
  [x: `bytes7[${string}]`]: undefined;
79
+ [x: `bytes8[${string}]`]: undefined;
79
80
  [x: `bytes9[${string}]`]: undefined;
80
- [x: `bytes10[${string}]`]: undefined;
81
81
  [x: `bytes11[${string}]`]: undefined;
82
82
  [x: `bytes12[${string}]`]: undefined;
83
83
  [x: `bytes13[${string}]`]: undefined;
@@ -100,8 +100,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
100
100
  [x: `bytes31[${string}]`]: undefined;
101
101
  [x: `bytes32[${string}]`]: undefined;
102
102
  [x: `int[${string}]`]: undefined;
103
- [x: `int8[${string}]`]: undefined;
104
103
  [x: `int16[${string}]`]: undefined;
104
+ [x: `int8[${string}]`]: undefined;
105
105
  [x: `int24[${string}]`]: undefined;
106
106
  [x: `int32[${string}]`]: undefined;
107
107
  [x: `int40[${string}]`]: undefined;
@@ -133,8 +133,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
133
133
  [x: `int248[${string}]`]: undefined;
134
134
  [x: `int256[${string}]`]: undefined;
135
135
  [x: `uint[${string}]`]: undefined;
136
- [x: `uint8[${string}]`]: undefined;
137
136
  [x: `uint16[${string}]`]: undefined;
137
+ [x: `uint8[${string}]`]: undefined;
138
138
  [x: `uint24[${string}]`]: undefined;
139
139
  [x: `uint32[${string}]`]: undefined;
140
140
  [x: `uint40[${string}]`]: undefined;
@@ -169,17 +169,17 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
169
169
  address?: undefined;
170
170
  bool?: undefined;
171
171
  bytes?: undefined;
172
- bytes2?: undefined;
173
- bytes8?: undefined;
172
+ bytes3?: undefined;
173
+ bytes10?: undefined;
174
174
  bytes16?: undefined;
175
175
  bytes1?: undefined;
176
- bytes3?: undefined;
176
+ bytes2?: undefined;
177
177
  bytes4?: undefined;
178
178
  bytes5?: undefined;
179
179
  bytes6?: undefined;
180
180
  bytes7?: undefined;
181
+ bytes8?: undefined;
181
182
  bytes9?: undefined;
182
- bytes10?: undefined;
183
183
  bytes11?: undefined;
184
184
  bytes12?: undefined;
185
185
  bytes13?: undefined;
@@ -201,8 +201,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
201
201
  bytes30?: undefined;
202
202
  bytes31?: undefined;
203
203
  bytes32?: undefined;
204
- int8?: undefined;
205
204
  int16?: undefined;
205
+ int8?: undefined;
206
206
  int24?: undefined;
207
207
  int32?: undefined;
208
208
  int40?: undefined;
@@ -233,8 +233,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
233
233
  int240?: undefined;
234
234
  int248?: undefined;
235
235
  int256?: undefined;
236
- uint8?: undefined;
237
236
  uint16?: undefined;
237
+ uint8?: undefined;
238
238
  uint24?: undefined;
239
239
  uint32?: undefined;
240
240
  uint40?: undefined;
@@ -357,17 +357,17 @@ declare namespace commitName {
357
357
  [x: `address[${string}]`]: undefined;
358
358
  [x: `bool[${string}]`]: undefined;
359
359
  [x: `bytes[${string}]`]: undefined;
360
- [x: `bytes2[${string}]`]: undefined;
361
- [x: `bytes8[${string}]`]: undefined;
360
+ [x: `bytes3[${string}]`]: undefined;
361
+ [x: `bytes10[${string}]`]: undefined;
362
362
  [x: `bytes16[${string}]`]: undefined;
363
363
  [x: `bytes1[${string}]`]: undefined;
364
- [x: `bytes3[${string}]`]: undefined;
364
+ [x: `bytes2[${string}]`]: undefined;
365
365
  [x: `bytes4[${string}]`]: undefined;
366
366
  [x: `bytes5[${string}]`]: undefined;
367
367
  [x: `bytes6[${string}]`]: undefined;
368
368
  [x: `bytes7[${string}]`]: undefined;
369
+ [x: `bytes8[${string}]`]: undefined;
369
370
  [x: `bytes9[${string}]`]: undefined;
370
- [x: `bytes10[${string}]`]: undefined;
371
371
  [x: `bytes11[${string}]`]: undefined;
372
372
  [x: `bytes12[${string}]`]: undefined;
373
373
  [x: `bytes13[${string}]`]: undefined;
@@ -390,8 +390,8 @@ declare namespace commitName {
390
390
  [x: `bytes31[${string}]`]: undefined;
391
391
  [x: `bytes32[${string}]`]: undefined;
392
392
  [x: `int[${string}]`]: undefined;
393
- [x: `int8[${string}]`]: undefined;
394
393
  [x: `int16[${string}]`]: undefined;
394
+ [x: `int8[${string}]`]: undefined;
395
395
  [x: `int24[${string}]`]: undefined;
396
396
  [x: `int32[${string}]`]: undefined;
397
397
  [x: `int40[${string}]`]: undefined;
@@ -423,8 +423,8 @@ declare namespace commitName {
423
423
  [x: `int248[${string}]`]: undefined;
424
424
  [x: `int256[${string}]`]: undefined;
425
425
  [x: `uint[${string}]`]: undefined;
426
- [x: `uint8[${string}]`]: undefined;
427
426
  [x: `uint16[${string}]`]: undefined;
427
+ [x: `uint8[${string}]`]: undefined;
428
428
  [x: `uint24[${string}]`]: undefined;
429
429
  [x: `uint32[${string}]`]: undefined;
430
430
  [x: `uint40[${string}]`]: undefined;
@@ -459,17 +459,17 @@ declare namespace commitName {
459
459
  address?: undefined;
460
460
  bool?: undefined;
461
461
  bytes?: undefined;
462
- bytes2?: undefined;
463
- bytes8?: undefined;
462
+ bytes3?: undefined;
463
+ bytes10?: undefined;
464
464
  bytes16?: undefined;
465
465
  bytes1?: undefined;
466
- bytes3?: undefined;
466
+ bytes2?: undefined;
467
467
  bytes4?: undefined;
468
468
  bytes5?: undefined;
469
469
  bytes6?: undefined;
470
470
  bytes7?: undefined;
471
+ bytes8?: undefined;
471
472
  bytes9?: undefined;
472
- bytes10?: undefined;
473
473
  bytes11?: undefined;
474
474
  bytes12?: undefined;
475
475
  bytes13?: undefined;
@@ -491,8 +491,8 @@ declare namespace commitName {
491
491
  bytes30?: undefined;
492
492
  bytes31?: undefined;
493
493
  bytes32?: undefined;
494
- int8?: undefined;
495
494
  int16?: undefined;
495
+ int8?: undefined;
496
496
  int24?: undefined;
497
497
  int32?: undefined;
498
498
  int40?: undefined;
@@ -523,8 +523,8 @@ declare namespace commitName {
523
523
  int240?: undefined;
524
524
  int248?: undefined;
525
525
  int256?: undefined;
526
- uint8?: undefined;
527
526
  uint16?: undefined;
527
+ uint8?: undefined;
528
528
  uint24?: undefined;
529
529
  uint32?: undefined;
530
530
  uint40?: undefined;
@@ -91,17 +91,17 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
91
91
  [x: `address[${string}]`]: undefined;
92
92
  [x: `bool[${string}]`]: undefined;
93
93
  [x: `bytes[${string}]`]: undefined;
94
- [x: `bytes2[${string}]`]: undefined;
95
- [x: `bytes8[${string}]`]: undefined;
94
+ [x: `bytes3[${string}]`]: undefined;
95
+ [x: `bytes10[${string}]`]: undefined;
96
96
  [x: `bytes16[${string}]`]: undefined;
97
97
  [x: `bytes1[${string}]`]: undefined;
98
- [x: `bytes3[${string}]`]: undefined;
98
+ [x: `bytes2[${string}]`]: undefined;
99
99
  [x: `bytes4[${string}]`]: undefined;
100
100
  [x: `bytes5[${string}]`]: undefined;
101
101
  [x: `bytes6[${string}]`]: undefined;
102
102
  [x: `bytes7[${string}]`]: undefined;
103
+ [x: `bytes8[${string}]`]: undefined;
103
104
  [x: `bytes9[${string}]`]: undefined;
104
- [x: `bytes10[${string}]`]: undefined;
105
105
  [x: `bytes11[${string}]`]: undefined;
106
106
  [x: `bytes12[${string}]`]: undefined;
107
107
  [x: `bytes13[${string}]`]: undefined;
@@ -124,8 +124,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
124
124
  [x: `bytes31[${string}]`]: undefined;
125
125
  [x: `bytes32[${string}]`]: undefined;
126
126
  [x: `int[${string}]`]: undefined;
127
- [x: `int8[${string}]`]: undefined;
128
127
  [x: `int16[${string}]`]: undefined;
128
+ [x: `int8[${string}]`]: undefined;
129
129
  [x: `int24[${string}]`]: undefined;
130
130
  [x: `int32[${string}]`]: undefined;
131
131
  [x: `int40[${string}]`]: undefined;
@@ -157,8 +157,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
157
157
  [x: `int248[${string}]`]: undefined;
158
158
  [x: `int256[${string}]`]: undefined;
159
159
  [x: `uint[${string}]`]: undefined;
160
- [x: `uint8[${string}]`]: undefined;
161
160
  [x: `uint16[${string}]`]: undefined;
161
+ [x: `uint8[${string}]`]: undefined;
162
162
  [x: `uint24[${string}]`]: undefined;
163
163
  [x: `uint32[${string}]`]: undefined;
164
164
  [x: `uint40[${string}]`]: undefined;
@@ -193,17 +193,17 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
193
193
  address?: undefined;
194
194
  bool?: undefined;
195
195
  bytes?: undefined;
196
- bytes2?: undefined;
197
- bytes8?: undefined;
196
+ bytes3?: undefined;
197
+ bytes10?: undefined;
198
198
  bytes16?: undefined;
199
199
  bytes1?: undefined;
200
- bytes3?: undefined;
200
+ bytes2?: undefined;
201
201
  bytes4?: undefined;
202
202
  bytes5?: undefined;
203
203
  bytes6?: undefined;
204
204
  bytes7?: undefined;
205
+ bytes8?: undefined;
205
206
  bytes9?: undefined;
206
- bytes10?: undefined;
207
207
  bytes11?: undefined;
208
208
  bytes12?: undefined;
209
209
  bytes13?: undefined;
@@ -225,8 +225,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
225
225
  bytes30?: undefined;
226
226
  bytes31?: undefined;
227
227
  bytes32?: undefined;
228
- int8?: undefined;
229
228
  int16?: undefined;
229
+ int8?: undefined;
230
230
  int24?: undefined;
231
231
  int32?: undefined;
232
232
  int40?: undefined;
@@ -257,8 +257,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
257
257
  int240?: undefined;
258
258
  int248?: undefined;
259
259
  int256?: undefined;
260
- uint8?: undefined;
261
260
  uint16?: undefined;
261
+ uint8?: undefined;
262
262
  uint24?: undefined;
263
263
  uint32?: undefined;
264
264
  uint40?: undefined;
@@ -379,17 +379,17 @@ declare namespace createSubname {
379
379
  [x: `address[${string}]`]: undefined;
380
380
  [x: `bool[${string}]`]: undefined;
381
381
  [x: `bytes[${string}]`]: undefined;
382
- [x: `bytes2[${string}]`]: undefined;
383
- [x: `bytes8[${string}]`]: undefined;
382
+ [x: `bytes3[${string}]`]: undefined;
383
+ [x: `bytes10[${string}]`]: undefined;
384
384
  [x: `bytes16[${string}]`]: undefined;
385
385
  [x: `bytes1[${string}]`]: undefined;
386
- [x: `bytes3[${string}]`]: undefined;
386
+ [x: `bytes2[${string}]`]: undefined;
387
387
  [x: `bytes4[${string}]`]: undefined;
388
388
  [x: `bytes5[${string}]`]: undefined;
389
389
  [x: `bytes6[${string}]`]: undefined;
390
390
  [x: `bytes7[${string}]`]: undefined;
391
+ [x: `bytes8[${string}]`]: undefined;
391
392
  [x: `bytes9[${string}]`]: undefined;
392
- [x: `bytes10[${string}]`]: undefined;
393
393
  [x: `bytes11[${string}]`]: undefined;
394
394
  [x: `bytes12[${string}]`]: undefined;
395
395
  [x: `bytes13[${string}]`]: undefined;
@@ -412,8 +412,8 @@ declare namespace createSubname {
412
412
  [x: `bytes31[${string}]`]: undefined;
413
413
  [x: `bytes32[${string}]`]: undefined;
414
414
  [x: `int[${string}]`]: undefined;
415
- [x: `int8[${string}]`]: undefined;
416
415
  [x: `int16[${string}]`]: undefined;
416
+ [x: `int8[${string}]`]: undefined;
417
417
  [x: `int24[${string}]`]: undefined;
418
418
  [x: `int32[${string}]`]: undefined;
419
419
  [x: `int40[${string}]`]: undefined;
@@ -445,8 +445,8 @@ declare namespace createSubname {
445
445
  [x: `int248[${string}]`]: undefined;
446
446
  [x: `int256[${string}]`]: undefined;
447
447
  [x: `uint[${string}]`]: undefined;
448
- [x: `uint8[${string}]`]: undefined;
449
448
  [x: `uint16[${string}]`]: undefined;
449
+ [x: `uint8[${string}]`]: undefined;
450
450
  [x: `uint24[${string}]`]: undefined;
451
451
  [x: `uint32[${string}]`]: undefined;
452
452
  [x: `uint40[${string}]`]: undefined;
@@ -481,17 +481,17 @@ declare namespace createSubname {
481
481
  address?: undefined;
482
482
  bool?: undefined;
483
483
  bytes?: undefined;
484
- bytes2?: undefined;
485
- bytes8?: undefined;
484
+ bytes3?: undefined;
485
+ bytes10?: undefined;
486
486
  bytes16?: undefined;
487
487
  bytes1?: undefined;
488
- bytes3?: undefined;
488
+ bytes2?: undefined;
489
489
  bytes4?: undefined;
490
490
  bytes5?: undefined;
491
491
  bytes6?: undefined;
492
492
  bytes7?: undefined;
493
+ bytes8?: undefined;
493
494
  bytes9?: undefined;
494
- bytes10?: undefined;
495
495
  bytes11?: undefined;
496
496
  bytes12?: undefined;
497
497
  bytes13?: undefined;
@@ -513,8 +513,8 @@ declare namespace createSubname {
513
513
  bytes30?: undefined;
514
514
  bytes31?: undefined;
515
515
  bytes32?: undefined;
516
- int8?: undefined;
517
516
  int16?: undefined;
517
+ int8?: undefined;
518
518
  int24?: undefined;
519
519
  int32?: undefined;
520
520
  int40?: undefined;
@@ -545,8 +545,8 @@ declare namespace createSubname {
545
545
  int240?: undefined;
546
546
  int248?: undefined;
547
547
  int256?: undefined;
548
- uint8?: undefined;
549
548
  uint16?: undefined;
549
+ uint8?: undefined;
550
550
  uint24?: undefined;
551
551
  uint32?: undefined;
552
552
  uint40?: undefined;
@@ -73,17 +73,17 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
73
73
  [x: `address[${string}]`]: undefined;
74
74
  [x: `bool[${string}]`]: undefined;
75
75
  [x: `bytes[${string}]`]: undefined;
76
- [x: `bytes2[${string}]`]: undefined;
77
- [x: `bytes8[${string}]`]: undefined;
76
+ [x: `bytes3[${string}]`]: undefined;
77
+ [x: `bytes10[${string}]`]: undefined;
78
78
  [x: `bytes16[${string}]`]: undefined;
79
79
  [x: `bytes1[${string}]`]: undefined;
80
- [x: `bytes3[${string}]`]: undefined;
80
+ [x: `bytes2[${string}]`]: undefined;
81
81
  [x: `bytes4[${string}]`]: undefined;
82
82
  [x: `bytes5[${string}]`]: undefined;
83
83
  [x: `bytes6[${string}]`]: undefined;
84
84
  [x: `bytes7[${string}]`]: undefined;
85
+ [x: `bytes8[${string}]`]: undefined;
85
86
  [x: `bytes9[${string}]`]: undefined;
86
- [x: `bytes10[${string}]`]: undefined;
87
87
  [x: `bytes11[${string}]`]: undefined;
88
88
  [x: `bytes12[${string}]`]: undefined;
89
89
  [x: `bytes13[${string}]`]: undefined;
@@ -106,8 +106,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
106
106
  [x: `bytes31[${string}]`]: undefined;
107
107
  [x: `bytes32[${string}]`]: undefined;
108
108
  [x: `int[${string}]`]: undefined;
109
- [x: `int8[${string}]`]: undefined;
110
109
  [x: `int16[${string}]`]: undefined;
110
+ [x: `int8[${string}]`]: undefined;
111
111
  [x: `int24[${string}]`]: undefined;
112
112
  [x: `int32[${string}]`]: undefined;
113
113
  [x: `int40[${string}]`]: undefined;
@@ -139,8 +139,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
139
139
  [x: `int248[${string}]`]: undefined;
140
140
  [x: `int256[${string}]`]: undefined;
141
141
  [x: `uint[${string}]`]: undefined;
142
- [x: `uint8[${string}]`]: undefined;
143
142
  [x: `uint16[${string}]`]: undefined;
143
+ [x: `uint8[${string}]`]: undefined;
144
144
  [x: `uint24[${string}]`]: undefined;
145
145
  [x: `uint32[${string}]`]: undefined;
146
146
  [x: `uint40[${string}]`]: undefined;
@@ -175,17 +175,17 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
175
175
  address?: undefined;
176
176
  bool?: undefined;
177
177
  bytes?: undefined;
178
- bytes2?: undefined;
179
- bytes8?: undefined;
178
+ bytes3?: undefined;
179
+ bytes10?: undefined;
180
180
  bytes16?: undefined;
181
181
  bytes1?: undefined;
182
- bytes3?: undefined;
182
+ bytes2?: undefined;
183
183
  bytes4?: undefined;
184
184
  bytes5?: undefined;
185
185
  bytes6?: undefined;
186
186
  bytes7?: undefined;
187
+ bytes8?: undefined;
187
188
  bytes9?: undefined;
188
- bytes10?: undefined;
189
189
  bytes11?: undefined;
190
190
  bytes12?: undefined;
191
191
  bytes13?: undefined;
@@ -207,8 +207,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
207
207
  bytes30?: undefined;
208
208
  bytes31?: undefined;
209
209
  bytes32?: undefined;
210
- int8?: undefined;
211
210
  int16?: undefined;
211
+ int8?: undefined;
212
212
  int24?: undefined;
213
213
  int32?: undefined;
214
214
  int40?: undefined;
@@ -239,8 +239,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
239
239
  int240?: undefined;
240
240
  int248?: undefined;
241
241
  int256?: undefined;
242
- uint8?: undefined;
243
242
  uint16?: undefined;
243
+ uint8?: undefined;
244
244
  uint24?: undefined;
245
245
  uint32?: undefined;
246
246
  uint40?: undefined;
@@ -360,17 +360,17 @@ declare namespace deleteSubname {
360
360
  [x: `address[${string}]`]: undefined;
361
361
  [x: `bool[${string}]`]: undefined;
362
362
  [x: `bytes[${string}]`]: undefined;
363
- [x: `bytes2[${string}]`]: undefined;
364
- [x: `bytes8[${string}]`]: undefined;
363
+ [x: `bytes3[${string}]`]: undefined;
364
+ [x: `bytes10[${string}]`]: undefined;
365
365
  [x: `bytes16[${string}]`]: undefined;
366
366
  [x: `bytes1[${string}]`]: undefined;
367
- [x: `bytes3[${string}]`]: undefined;
367
+ [x: `bytes2[${string}]`]: undefined;
368
368
  [x: `bytes4[${string}]`]: undefined;
369
369
  [x: `bytes5[${string}]`]: undefined;
370
370
  [x: `bytes6[${string}]`]: undefined;
371
371
  [x: `bytes7[${string}]`]: undefined;
372
+ [x: `bytes8[${string}]`]: undefined;
372
373
  [x: `bytes9[${string}]`]: undefined;
373
- [x: `bytes10[${string}]`]: undefined;
374
374
  [x: `bytes11[${string}]`]: undefined;
375
375
  [x: `bytes12[${string}]`]: undefined;
376
376
  [x: `bytes13[${string}]`]: undefined;
@@ -393,8 +393,8 @@ declare namespace deleteSubname {
393
393
  [x: `bytes31[${string}]`]: undefined;
394
394
  [x: `bytes32[${string}]`]: undefined;
395
395
  [x: `int[${string}]`]: undefined;
396
- [x: `int8[${string}]`]: undefined;
397
396
  [x: `int16[${string}]`]: undefined;
397
+ [x: `int8[${string}]`]: undefined;
398
398
  [x: `int24[${string}]`]: undefined;
399
399
  [x: `int32[${string}]`]: undefined;
400
400
  [x: `int40[${string}]`]: undefined;
@@ -426,8 +426,8 @@ declare namespace deleteSubname {
426
426
  [x: `int248[${string}]`]: undefined;
427
427
  [x: `int256[${string}]`]: undefined;
428
428
  [x: `uint[${string}]`]: undefined;
429
- [x: `uint8[${string}]`]: undefined;
430
429
  [x: `uint16[${string}]`]: undefined;
430
+ [x: `uint8[${string}]`]: undefined;
431
431
  [x: `uint24[${string}]`]: undefined;
432
432
  [x: `uint32[${string}]`]: undefined;
433
433
  [x: `uint40[${string}]`]: undefined;
@@ -462,17 +462,17 @@ declare namespace deleteSubname {
462
462
  address?: undefined;
463
463
  bool?: undefined;
464
464
  bytes?: undefined;
465
- bytes2?: undefined;
466
- bytes8?: undefined;
465
+ bytes3?: undefined;
466
+ bytes10?: undefined;
467
467
  bytes16?: undefined;
468
468
  bytes1?: undefined;
469
- bytes3?: undefined;
469
+ bytes2?: undefined;
470
470
  bytes4?: undefined;
471
471
  bytes5?: undefined;
472
472
  bytes6?: undefined;
473
473
  bytes7?: undefined;
474
+ bytes8?: undefined;
474
475
  bytes9?: undefined;
475
- bytes10?: undefined;
476
476
  bytes11?: undefined;
477
477
  bytes12?: undefined;
478
478
  bytes13?: undefined;
@@ -494,8 +494,8 @@ declare namespace deleteSubname {
494
494
  bytes30?: undefined;
495
495
  bytes31?: undefined;
496
496
  bytes32?: undefined;
497
- int8?: undefined;
498
497
  int16?: undefined;
498
+ int8?: undefined;
499
499
  int24?: undefined;
500
500
  int32?: undefined;
501
501
  int40?: undefined;
@@ -526,8 +526,8 @@ declare namespace deleteSubname {
526
526
  int240?: undefined;
527
527
  int248?: undefined;
528
528
  int256?: undefined;
529
- uint8?: undefined;
530
529
  uint16?: undefined;
530
+ uint8?: undefined;
531
531
  uint24?: undefined;
532
532
  uint32?: undefined;
533
533
  uint40?: undefined;
@@ -72,17 +72,17 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
72
72
  [x: `address[${string}]`]: undefined;
73
73
  [x: `bool[${string}]`]: undefined;
74
74
  [x: `bytes[${string}]`]: undefined;
75
- [x: `bytes2[${string}]`]: undefined;
76
- [x: `bytes8[${string}]`]: undefined;
75
+ [x: `bytes3[${string}]`]: undefined;
76
+ [x: `bytes10[${string}]`]: undefined;
77
77
  [x: `bytes16[${string}]`]: undefined;
78
78
  [x: `bytes1[${string}]`]: undefined;
79
- [x: `bytes3[${string}]`]: undefined;
79
+ [x: `bytes2[${string}]`]: undefined;
80
80
  [x: `bytes4[${string}]`]: undefined;
81
81
  [x: `bytes5[${string}]`]: undefined;
82
82
  [x: `bytes6[${string}]`]: undefined;
83
83
  [x: `bytes7[${string}]`]: undefined;
84
+ [x: `bytes8[${string}]`]: undefined;
84
85
  [x: `bytes9[${string}]`]: undefined;
85
- [x: `bytes10[${string}]`]: undefined;
86
86
  [x: `bytes11[${string}]`]: undefined;
87
87
  [x: `bytes12[${string}]`]: undefined;
88
88
  [x: `bytes13[${string}]`]: undefined;
@@ -105,8 +105,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
105
105
  [x: `bytes31[${string}]`]: undefined;
106
106
  [x: `bytes32[${string}]`]: undefined;
107
107
  [x: `int[${string}]`]: undefined;
108
- [x: `int8[${string}]`]: undefined;
109
108
  [x: `int16[${string}]`]: undefined;
109
+ [x: `int8[${string}]`]: undefined;
110
110
  [x: `int24[${string}]`]: undefined;
111
111
  [x: `int32[${string}]`]: undefined;
112
112
  [x: `int40[${string}]`]: undefined;
@@ -138,8 +138,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
138
138
  [x: `int248[${string}]`]: undefined;
139
139
  [x: `int256[${string}]`]: undefined;
140
140
  [x: `uint[${string}]`]: undefined;
141
- [x: `uint8[${string}]`]: undefined;
142
141
  [x: `uint16[${string}]`]: undefined;
142
+ [x: `uint8[${string}]`]: undefined;
143
143
  [x: `uint24[${string}]`]: undefined;
144
144
  [x: `uint32[${string}]`]: undefined;
145
145
  [x: `uint40[${string}]`]: undefined;
@@ -174,17 +174,17 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
174
174
  address?: undefined;
175
175
  bool?: undefined;
176
176
  bytes?: undefined;
177
- bytes2?: undefined;
178
- bytes8?: undefined;
177
+ bytes3?: undefined;
178
+ bytes10?: undefined;
179
179
  bytes16?: undefined;
180
180
  bytes1?: undefined;
181
- bytes3?: undefined;
181
+ bytes2?: undefined;
182
182
  bytes4?: undefined;
183
183
  bytes5?: undefined;
184
184
  bytes6?: undefined;
185
185
  bytes7?: undefined;
186
+ bytes8?: undefined;
186
187
  bytes9?: undefined;
187
- bytes10?: undefined;
188
188
  bytes11?: undefined;
189
189
  bytes12?: undefined;
190
190
  bytes13?: undefined;
@@ -206,8 +206,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
206
206
  bytes30?: undefined;
207
207
  bytes31?: undefined;
208
208
  bytes32?: undefined;
209
- int8?: undefined;
210
209
  int16?: undefined;
210
+ int8?: undefined;
211
211
  int24?: undefined;
212
212
  int32?: undefined;
213
213
  int40?: undefined;
@@ -238,8 +238,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
238
238
  int240?: undefined;
239
239
  int248?: undefined;
240
240
  int256?: undefined;
241
- uint8?: undefined;
242
241
  uint16?: undefined;
242
+ uint8?: undefined;
243
243
  uint24?: undefined;
244
244
  uint32?: undefined;
245
245
  uint40?: undefined;
@@ -375,17 +375,17 @@ declare namespace registerName {
375
375
  [x: `address[${string}]`]: undefined;
376
376
  [x: `bool[${string}]`]: undefined;
377
377
  [x: `bytes[${string}]`]: undefined;
378
- [x: `bytes2[${string}]`]: undefined;
379
- [x: `bytes8[${string}]`]: undefined;
378
+ [x: `bytes3[${string}]`]: undefined;
379
+ [x: `bytes10[${string}]`]: undefined;
380
380
  [x: `bytes16[${string}]`]: undefined;
381
381
  [x: `bytes1[${string}]`]: undefined;
382
- [x: `bytes3[${string}]`]: undefined;
382
+ [x: `bytes2[${string}]`]: undefined;
383
383
  [x: `bytes4[${string}]`]: undefined;
384
384
  [x: `bytes5[${string}]`]: undefined;
385
385
  [x: `bytes6[${string}]`]: undefined;
386
386
  [x: `bytes7[${string}]`]: undefined;
387
+ [x: `bytes8[${string}]`]: undefined;
387
388
  [x: `bytes9[${string}]`]: undefined;
388
- [x: `bytes10[${string}]`]: undefined;
389
389
  [x: `bytes11[${string}]`]: undefined;
390
390
  [x: `bytes12[${string}]`]: undefined;
391
391
  [x: `bytes13[${string}]`]: undefined;
@@ -408,8 +408,8 @@ declare namespace registerName {
408
408
  [x: `bytes31[${string}]`]: undefined;
409
409
  [x: `bytes32[${string}]`]: undefined;
410
410
  [x: `int[${string}]`]: undefined;
411
- [x: `int8[${string}]`]: undefined;
412
411
  [x: `int16[${string}]`]: undefined;
412
+ [x: `int8[${string}]`]: undefined;
413
413
  [x: `int24[${string}]`]: undefined;
414
414
  [x: `int32[${string}]`]: undefined;
415
415
  [x: `int40[${string}]`]: undefined;
@@ -441,8 +441,8 @@ declare namespace registerName {
441
441
  [x: `int248[${string}]`]: undefined;
442
442
  [x: `int256[${string}]`]: undefined;
443
443
  [x: `uint[${string}]`]: undefined;
444
- [x: `uint8[${string}]`]: undefined;
445
444
  [x: `uint16[${string}]`]: undefined;
445
+ [x: `uint8[${string}]`]: undefined;
446
446
  [x: `uint24[${string}]`]: undefined;
447
447
  [x: `uint32[${string}]`]: undefined;
448
448
  [x: `uint40[${string}]`]: undefined;
@@ -477,17 +477,17 @@ declare namespace registerName {
477
477
  address?: undefined;
478
478
  bool?: undefined;
479
479
  bytes?: undefined;
480
- bytes2?: undefined;
481
- bytes8?: undefined;
480
+ bytes3?: undefined;
481
+ bytes10?: undefined;
482
482
  bytes16?: undefined;
483
483
  bytes1?: undefined;
484
- bytes3?: undefined;
484
+ bytes2?: undefined;
485
485
  bytes4?: undefined;
486
486
  bytes5?: undefined;
487
487
  bytes6?: undefined;
488
488
  bytes7?: undefined;
489
+ bytes8?: undefined;
489
490
  bytes9?: undefined;
490
- bytes10?: undefined;
491
491
  bytes11?: undefined;
492
492
  bytes12?: undefined;
493
493
  bytes13?: undefined;
@@ -509,8 +509,8 @@ declare namespace registerName {
509
509
  bytes30?: undefined;
510
510
  bytes31?: undefined;
511
511
  bytes32?: undefined;
512
- int8?: undefined;
513
512
  int16?: undefined;
513
+ int8?: undefined;
514
514
  int24?: undefined;
515
515
  int32?: undefined;
516
516
  int40?: undefined;
@@ -541,8 +541,8 @@ declare namespace registerName {
541
541
  int240?: undefined;
542
542
  int248?: undefined;
543
543
  int256?: undefined;
544
- uint8?: undefined;
545
544
  uint16?: undefined;
545
+ uint8?: undefined;
546
546
  uint24?: undefined;
547
547
  uint32?: undefined;
548
548
  uint40?: undefined;