@ensdomains/ensjs 3.1.0 → 3.2.1
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/dist/cjs/clients/public.js.map +1 -1
- package/dist/cjs/clients/subgraph.js.map +1 -1
- package/dist/cjs/clients/wallet.js.map +1 -1
- package/dist/cjs/contracts/addEnsContracts.js.map +1 -1
- package/dist/cjs/contracts/consts.js +74 -32
- package/dist/cjs/contracts/consts.js.map +1 -1
- package/dist/cjs/contracts/dnsRegistrar.js +65 -9
- package/dist/cjs/contracts/dnsRegistrar.js.map +1 -1
- package/dist/cjs/contracts/dnssecImpl.js +18 -16
- package/dist/cjs/contracts/dnssecImpl.js.map +1 -1
- package/dist/cjs/contracts/getChainContractAddress.js +5 -1
- package/dist/cjs/contracts/getChainContractAddress.js.map +1 -1
- package/dist/cjs/contracts/index.js +4 -3
- package/dist/cjs/contracts/index.js.map +1 -1
- package/dist/cjs/errors/version.js +1 -1
- package/dist/cjs/functions/dns/getDnsImportData.js +22 -45
- package/dist/cjs/functions/dns/getDnsImportData.js.map +1 -1
- package/dist/cjs/functions/dns/importDnsName.js +2 -12
- package/dist/cjs/functions/dns/importDnsName.js.map +1 -1
- package/dist/cjs/functions/public/_getAbi.js +1 -2
- package/dist/cjs/functions/public/_getAbi.js.map +1 -1
- package/dist/cjs/functions/public/getAbiRecord.js +2 -2
- package/dist/cjs/functions/public/getAbiRecord.js.map +1 -1
- package/dist/cjs/functions/public/getRecords.js +2 -2
- package/dist/cjs/functions/public/getRecords.js.map +1 -1
- package/dist/cjs/functions/wallet/setAbiRecord.js +1 -2
- package/dist/cjs/functions/wallet/setAbiRecord.js.map +1 -1
- package/dist/cjs/utils/encoders/encodeAbi.js +13 -7
- package/dist/cjs/utils/encoders/encodeAbi.js.map +1 -1
- package/dist/cjs/utils/encoders/encodeSetAbi.js +1 -1
- package/dist/cjs/utils/encoders/encodeSetAbi.js.map +1 -1
- package/dist/cjs/utils/generateRecordCallArray.js +6 -4
- package/dist/cjs/utils/generateRecordCallArray.js.map +1 -1
- package/dist/cjs/utils/generateSupportedContentTypes.js +22 -0
- package/dist/cjs/utils/generateSupportedContentTypes.js.map +1 -0
- package/dist/cjs/utils/generateSupportedContentTypes.test.ts.js +20 -0
- package/dist/cjs/utils/generateSupportedContentTypes.test.ts.js.map +1 -0
- package/dist/cjs/utils/index.js +3 -1
- package/dist/cjs/utils/index.js.map +1 -1
- package/dist/cjs/utils/registerHelpers.js +1 -1
- package/dist/cjs/utils/registerHelpers.js.map +1 -1
- package/dist/esm/clients/public.js.map +1 -1
- package/dist/esm/clients/subgraph.js.map +1 -1
- package/dist/esm/clients/wallet.js.map +1 -1
- package/dist/esm/contracts/addEnsContracts.js.map +1 -1
- package/dist/esm/contracts/consts.js +74 -32
- package/dist/esm/contracts/consts.js.map +1 -1
- package/dist/esm/contracts/dnsRegistrar.js +64 -8
- package/dist/esm/contracts/dnsRegistrar.js.map +1 -1
- package/dist/esm/contracts/dnssecImpl.js +17 -15
- package/dist/esm/contracts/dnssecImpl.js.map +1 -1
- package/dist/esm/contracts/getChainContractAddress.js +5 -1
- package/dist/esm/contracts/getChainContractAddress.js.map +1 -1
- package/dist/esm/contracts/index.js +2 -2
- package/dist/esm/contracts/index.js.map +1 -1
- package/dist/esm/errors/version.js +1 -1
- package/dist/esm/functions/dns/getDnsImportData.js +25 -48
- package/dist/esm/functions/dns/getDnsImportData.js.map +1 -1
- package/dist/esm/functions/dns/importDnsName.js +3 -13
- package/dist/esm/functions/dns/importDnsName.js.map +1 -1
- package/dist/esm/functions/public/_getAbi.js +1 -7
- package/dist/esm/functions/public/_getAbi.js.map +1 -1
- package/dist/esm/functions/public/getAbiRecord.js +2 -2
- package/dist/esm/functions/public/getAbiRecord.js.map +1 -1
- package/dist/esm/functions/public/getRecords.js +2 -2
- package/dist/esm/functions/public/getRecords.js.map +1 -1
- package/dist/esm/functions/wallet/setAbiRecord.js +1 -2
- package/dist/esm/functions/wallet/setAbiRecord.js.map +1 -1
- package/dist/esm/utils/encoders/encodeAbi.js +13 -7
- package/dist/esm/utils/encoders/encodeAbi.js.map +1 -1
- package/dist/esm/utils/encoders/encodeSetAbi.js +1 -1
- package/dist/esm/utils/encoders/encodeSetAbi.js.map +1 -1
- package/dist/esm/utils/generateRecordCallArray.js +6 -4
- package/dist/esm/utils/generateRecordCallArray.js.map +1 -1
- package/dist/esm/utils/generateSupportedContentTypes.js +18 -0
- package/dist/esm/utils/generateSupportedContentTypes.js.map +1 -0
- package/dist/esm/utils/generateSupportedContentTypes.test.ts.js +18 -0
- package/dist/esm/utils/generateSupportedContentTypes.test.ts.js.map +1 -0
- package/dist/esm/utils/index.js +1 -0
- package/dist/esm/utils/index.js.map +1 -1
- package/dist/esm/utils/registerHelpers.js +1 -1
- package/dist/esm/utils/registerHelpers.js.map +1 -1
- package/dist/types/clients/decorators/wallet.d.ts +12 -12
- package/dist/types/clients/public.d.ts +9 -8
- package/dist/types/clients/public.d.ts.map +1 -1
- package/dist/types/clients/subgraph.d.ts +4 -4
- package/dist/types/clients/subgraph.d.ts.map +1 -1
- package/dist/types/clients/wallet.d.ts +117 -117
- package/dist/types/clients/wallet.d.ts.map +1 -1
- package/dist/types/contracts/addEnsContracts.d.ts +2 -2
- package/dist/types/contracts/addEnsContracts.d.ts.map +1 -1
- package/dist/types/contracts/consts.d.ts +75 -34
- package/dist/types/contracts/consts.d.ts.map +1 -1
- package/dist/types/contracts/dnsRegistrar.d.ts +135 -6
- package/dist/types/contracts/dnsRegistrar.d.ts.map +1 -1
- package/dist/types/contracts/dnssecImpl.d.ts +14 -13
- package/dist/types/contracts/dnssecImpl.d.ts.map +1 -1
- package/dist/types/contracts/getChainContractAddress.d.ts +15 -7
- package/dist/types/contracts/getChainContractAddress.d.ts.map +1 -1
- package/dist/types/contracts/index.d.ts +2 -2
- package/dist/types/contracts/index.d.ts.map +1 -1
- package/dist/types/errors/version.d.ts +1 -1
- package/dist/types/functions/dns/getDnsImportData.d.ts +6 -8
- package/dist/types/functions/dns/getDnsImportData.d.ts.map +1 -1
- package/dist/types/functions/dns/importDnsName.d.ts +25 -25
- package/dist/types/functions/dns/importDnsName.d.ts.map +1 -1
- package/dist/types/functions/public/_getAbi.d.ts +8 -1
- package/dist/types/functions/public/_getAbi.d.ts.map +1 -1
- package/dist/types/functions/public/getAbiRecord.d.ts +1 -1
- package/dist/types/functions/public/getAbiRecord.d.ts.map +1 -1
- package/dist/types/functions/public/getRecords.d.ts +6 -9
- package/dist/types/functions/public/getRecords.d.ts.map +1 -1
- package/dist/types/functions/wallet/clearRecords.d.ts +24 -24
- package/dist/types/functions/wallet/commitName.d.ts +24 -24
- package/dist/types/functions/wallet/createSubname.d.ts +24 -24
- package/dist/types/functions/wallet/deleteSubname.d.ts +24 -24
- package/dist/types/functions/wallet/registerName.d.ts +24 -24
- package/dist/types/functions/wallet/renewNames.d.ts +24 -24
- package/dist/types/functions/wallet/setAbiRecord.d.ts +25 -25
- package/dist/types/functions/wallet/setAbiRecord.d.ts.map +1 -1
- package/dist/types/functions/wallet/setAddressRecord.d.ts +24 -24
- package/dist/types/functions/wallet/setChildFuses.d.ts +24 -24
- package/dist/types/functions/wallet/setContentHashRecord.d.ts +24 -24
- package/dist/types/functions/wallet/setFuses.d.ts +24 -24
- package/dist/types/functions/wallet/setPrimaryName.d.ts +24 -24
- package/dist/types/functions/wallet/setRecords.d.ts +24 -24
- package/dist/types/functions/wallet/setResolver.d.ts +24 -24
- package/dist/types/functions/wallet/setTextRecord.d.ts +24 -24
- package/dist/types/functions/wallet/transferName.d.ts +24 -24
- package/dist/types/functions/wallet/unwrapName.d.ts +24 -24
- package/dist/types/functions/wallet/wrapName.d.ts +24 -24
- package/dist/types/types.d.ts +4 -0
- package/dist/types/types.d.ts.map +1 -1
- package/dist/types/utils/encoders/encodeAbi.d.ts +3 -3
- package/dist/types/utils/encoders/encodeAbi.d.ts.map +1 -1
- package/dist/types/utils/encoders/encodeSetAbi.d.ts +1 -4
- package/dist/types/utils/encoders/encodeSetAbi.d.ts.map +1 -1
- package/dist/types/utils/generateRecordCallArray.d.ts +2 -2
- package/dist/types/utils/generateRecordCallArray.d.ts.map +1 -1
- package/dist/types/utils/generateSupportedContentTypes.d.ts +3 -0
- package/dist/types/utils/generateSupportedContentTypes.d.ts.map +1 -0
- package/dist/types/utils/generateSupportedContentTypes.test.ts.d.ts +2 -0
- package/dist/types/utils/generateSupportedContentTypes.test.ts.d.ts.map +1 -0
- package/dist/types/utils/index.d.ts +1 -0
- package/dist/types/utils/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/clients/public.ts +6 -4
- package/src/clients/subgraph.ts +6 -4
- package/src/clients/wallet.ts +19 -13
- package/src/contracts/addEnsContracts.ts +3 -3
- package/src/contracts/consts.ts +92 -37
- package/src/contracts/dnsRegistrar.ts +65 -8
- package/src/contracts/dnssecImpl.ts +17 -15
- package/src/contracts/getChainContractAddress.ts +22 -7
- package/src/contracts/index.ts +2 -1
- package/src/errors/version.ts +1 -1
- package/src/functions/dns/getDnsImportData.ts +32 -62
- package/src/functions/dns/importDnsName.ts +4 -14
- package/src/functions/public/_getAbi.ts +11 -8
- package/src/functions/public/getAbiRecord.ts +6 -2
- package/src/functions/public/getRecords.ts +23 -31
- package/src/functions/wallet/setAbiRecord.ts +2 -3
- package/src/types.ts +10 -0
- package/src/utils/encoders/encodeAbi.ts +14 -10
- package/src/utils/encoders/encodeSetAbi.ts +2 -2
- package/src/utils/generateRecordCallArray.ts +6 -4
- package/src/utils/generateSupportedContentTypes.test.ts.ts +24 -0
- package/src/utils/generateSupportedContentTypes.ts +21 -0
- package/src/utils/index.ts +1 -0
- package/src/utils/registerHelpers.ts +1 -1
|
@@ -71,16 +71,16 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
71
71
|
[x: `address[${string}]`]: undefined;
|
|
72
72
|
[x: `bool[${string}]`]: undefined;
|
|
73
73
|
[x: `bytes[${string}]`]: undefined;
|
|
74
|
-
[x: `bytes3[${string}]`]: undefined;
|
|
75
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
76
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
77
74
|
[x: `bytes1[${string}]`]: undefined;
|
|
78
75
|
[x: `bytes2[${string}]`]: undefined;
|
|
79
76
|
[x: `bytes4[${string}]`]: undefined;
|
|
77
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
78
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
79
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
80
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
80
81
|
[x: `bytes5[${string}]`]: undefined;
|
|
81
82
|
[x: `bytes6[${string}]`]: undefined;
|
|
82
83
|
[x: `bytes7[${string}]`]: undefined;
|
|
83
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
84
84
|
[x: `bytes9[${string}]`]: undefined;
|
|
85
85
|
[x: `bytes11[${string}]`]: undefined;
|
|
86
86
|
[x: `bytes12[${string}]`]: undefined;
|
|
@@ -104,8 +104,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
104
104
|
[x: `bytes31[${string}]`]: undefined;
|
|
105
105
|
[x: `bytes32[${string}]`]: undefined;
|
|
106
106
|
[x: `int[${string}]`]: undefined;
|
|
107
|
-
[x: `int16[${string}]`]: undefined;
|
|
108
107
|
[x: `int8[${string}]`]: undefined;
|
|
108
|
+
[x: `int16[${string}]`]: undefined;
|
|
109
109
|
[x: `int24[${string}]`]: undefined;
|
|
110
110
|
[x: `int32[${string}]`]: undefined;
|
|
111
111
|
[x: `int40[${string}]`]: undefined;
|
|
@@ -137,8 +137,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
137
137
|
[x: `int248[${string}]`]: undefined;
|
|
138
138
|
[x: `int256[${string}]`]: undefined;
|
|
139
139
|
[x: `uint[${string}]`]: undefined;
|
|
140
|
-
[x: `uint16[${string}]`]: undefined;
|
|
141
140
|
[x: `uint8[${string}]`]: undefined;
|
|
141
|
+
[x: `uint16[${string}]`]: undefined;
|
|
142
142
|
[x: `uint24[${string}]`]: undefined;
|
|
143
143
|
[x: `uint32[${string}]`]: undefined;
|
|
144
144
|
[x: `uint40[${string}]`]: undefined;
|
|
@@ -173,16 +173,16 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
173
173
|
address?: undefined;
|
|
174
174
|
bool?: undefined;
|
|
175
175
|
bytes?: undefined;
|
|
176
|
-
bytes3?: undefined;
|
|
177
|
-
bytes10?: undefined;
|
|
178
|
-
bytes16?: undefined;
|
|
179
176
|
bytes1?: undefined;
|
|
180
177
|
bytes2?: undefined;
|
|
181
178
|
bytes4?: undefined;
|
|
179
|
+
bytes8?: undefined;
|
|
180
|
+
bytes10?: undefined;
|
|
181
|
+
bytes16?: undefined;
|
|
182
|
+
bytes3?: undefined;
|
|
182
183
|
bytes5?: undefined;
|
|
183
184
|
bytes6?: undefined;
|
|
184
185
|
bytes7?: undefined;
|
|
185
|
-
bytes8?: undefined;
|
|
186
186
|
bytes9?: undefined;
|
|
187
187
|
bytes11?: undefined;
|
|
188
188
|
bytes12?: undefined;
|
|
@@ -205,8 +205,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
205
205
|
bytes30?: undefined;
|
|
206
206
|
bytes31?: undefined;
|
|
207
207
|
bytes32?: undefined;
|
|
208
|
-
int16?: undefined;
|
|
209
208
|
int8?: undefined;
|
|
209
|
+
int16?: undefined;
|
|
210
210
|
int24?: undefined;
|
|
211
211
|
int32?: undefined;
|
|
212
212
|
int40?: undefined;
|
|
@@ -237,8 +237,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
237
237
|
int240?: undefined;
|
|
238
238
|
int248?: undefined;
|
|
239
239
|
int256?: undefined;
|
|
240
|
-
uint16?: undefined;
|
|
241
240
|
uint8?: undefined;
|
|
241
|
+
uint16?: undefined;
|
|
242
242
|
uint24?: undefined;
|
|
243
243
|
uint32?: undefined;
|
|
244
244
|
uint40?: undefined;
|
|
@@ -354,16 +354,16 @@ declare namespace createSubname {
|
|
|
354
354
|
[x: `address[${string}]`]: undefined;
|
|
355
355
|
[x: `bool[${string}]`]: undefined;
|
|
356
356
|
[x: `bytes[${string}]`]: undefined;
|
|
357
|
-
[x: `bytes3[${string}]`]: undefined;
|
|
358
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
359
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
360
357
|
[x: `bytes1[${string}]`]: undefined;
|
|
361
358
|
[x: `bytes2[${string}]`]: undefined;
|
|
362
359
|
[x: `bytes4[${string}]`]: undefined;
|
|
360
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
361
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
362
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
363
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
363
364
|
[x: `bytes5[${string}]`]: undefined;
|
|
364
365
|
[x: `bytes6[${string}]`]: undefined;
|
|
365
366
|
[x: `bytes7[${string}]`]: undefined;
|
|
366
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
367
367
|
[x: `bytes9[${string}]`]: undefined;
|
|
368
368
|
[x: `bytes11[${string}]`]: undefined;
|
|
369
369
|
[x: `bytes12[${string}]`]: undefined;
|
|
@@ -387,8 +387,8 @@ declare namespace createSubname {
|
|
|
387
387
|
[x: `bytes31[${string}]`]: undefined;
|
|
388
388
|
[x: `bytes32[${string}]`]: undefined;
|
|
389
389
|
[x: `int[${string}]`]: undefined;
|
|
390
|
-
[x: `int16[${string}]`]: undefined;
|
|
391
390
|
[x: `int8[${string}]`]: undefined;
|
|
391
|
+
[x: `int16[${string}]`]: undefined;
|
|
392
392
|
[x: `int24[${string}]`]: undefined;
|
|
393
393
|
[x: `int32[${string}]`]: undefined;
|
|
394
394
|
[x: `int40[${string}]`]: undefined;
|
|
@@ -420,8 +420,8 @@ declare namespace createSubname {
|
|
|
420
420
|
[x: `int248[${string}]`]: undefined;
|
|
421
421
|
[x: `int256[${string}]`]: undefined;
|
|
422
422
|
[x: `uint[${string}]`]: undefined;
|
|
423
|
-
[x: `uint16[${string}]`]: undefined;
|
|
424
423
|
[x: `uint8[${string}]`]: undefined;
|
|
424
|
+
[x: `uint16[${string}]`]: undefined;
|
|
425
425
|
[x: `uint24[${string}]`]: undefined;
|
|
426
426
|
[x: `uint32[${string}]`]: undefined;
|
|
427
427
|
[x: `uint40[${string}]`]: undefined;
|
|
@@ -456,16 +456,16 @@ declare namespace createSubname {
|
|
|
456
456
|
address?: undefined;
|
|
457
457
|
bool?: undefined;
|
|
458
458
|
bytes?: undefined;
|
|
459
|
-
bytes3?: undefined;
|
|
460
|
-
bytes10?: undefined;
|
|
461
|
-
bytes16?: undefined;
|
|
462
459
|
bytes1?: undefined;
|
|
463
460
|
bytes2?: undefined;
|
|
464
461
|
bytes4?: undefined;
|
|
462
|
+
bytes8?: undefined;
|
|
463
|
+
bytes10?: undefined;
|
|
464
|
+
bytes16?: undefined;
|
|
465
|
+
bytes3?: undefined;
|
|
465
466
|
bytes5?: undefined;
|
|
466
467
|
bytes6?: undefined;
|
|
467
468
|
bytes7?: undefined;
|
|
468
|
-
bytes8?: undefined;
|
|
469
469
|
bytes9?: undefined;
|
|
470
470
|
bytes11?: undefined;
|
|
471
471
|
bytes12?: undefined;
|
|
@@ -488,8 +488,8 @@ declare namespace createSubname {
|
|
|
488
488
|
bytes30?: undefined;
|
|
489
489
|
bytes31?: undefined;
|
|
490
490
|
bytes32?: undefined;
|
|
491
|
-
int16?: undefined;
|
|
492
491
|
int8?: undefined;
|
|
492
|
+
int16?: undefined;
|
|
493
493
|
int24?: undefined;
|
|
494
494
|
int32?: undefined;
|
|
495
495
|
int40?: undefined;
|
|
@@ -520,8 +520,8 @@ declare namespace createSubname {
|
|
|
520
520
|
int240?: undefined;
|
|
521
521
|
int248?: undefined;
|
|
522
522
|
int256?: undefined;
|
|
523
|
-
uint16?: undefined;
|
|
524
523
|
uint8?: undefined;
|
|
524
|
+
uint16?: undefined;
|
|
525
525
|
uint24?: undefined;
|
|
526
526
|
uint32?: undefined;
|
|
527
527
|
uint40?: undefined;
|
|
@@ -53,16 +53,16 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
53
53
|
[x: `address[${string}]`]: undefined;
|
|
54
54
|
[x: `bool[${string}]`]: undefined;
|
|
55
55
|
[x: `bytes[${string}]`]: undefined;
|
|
56
|
-
[x: `bytes3[${string}]`]: undefined;
|
|
57
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
58
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
59
56
|
[x: `bytes1[${string}]`]: undefined;
|
|
60
57
|
[x: `bytes2[${string}]`]: undefined;
|
|
61
58
|
[x: `bytes4[${string}]`]: undefined;
|
|
59
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
60
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
61
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
62
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
62
63
|
[x: `bytes5[${string}]`]: undefined;
|
|
63
64
|
[x: `bytes6[${string}]`]: undefined;
|
|
64
65
|
[x: `bytes7[${string}]`]: undefined;
|
|
65
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
66
66
|
[x: `bytes9[${string}]`]: undefined;
|
|
67
67
|
[x: `bytes11[${string}]`]: undefined;
|
|
68
68
|
[x: `bytes12[${string}]`]: undefined;
|
|
@@ -86,8 +86,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
86
86
|
[x: `bytes31[${string}]`]: undefined;
|
|
87
87
|
[x: `bytes32[${string}]`]: undefined;
|
|
88
88
|
[x: `int[${string}]`]: undefined;
|
|
89
|
-
[x: `int16[${string}]`]: undefined;
|
|
90
89
|
[x: `int8[${string}]`]: undefined;
|
|
90
|
+
[x: `int16[${string}]`]: undefined;
|
|
91
91
|
[x: `int24[${string}]`]: undefined;
|
|
92
92
|
[x: `int32[${string}]`]: undefined;
|
|
93
93
|
[x: `int40[${string}]`]: undefined;
|
|
@@ -119,8 +119,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
119
119
|
[x: `int248[${string}]`]: undefined;
|
|
120
120
|
[x: `int256[${string}]`]: undefined;
|
|
121
121
|
[x: `uint[${string}]`]: undefined;
|
|
122
|
-
[x: `uint16[${string}]`]: undefined;
|
|
123
122
|
[x: `uint8[${string}]`]: undefined;
|
|
123
|
+
[x: `uint16[${string}]`]: undefined;
|
|
124
124
|
[x: `uint24[${string}]`]: undefined;
|
|
125
125
|
[x: `uint32[${string}]`]: undefined;
|
|
126
126
|
[x: `uint40[${string}]`]: undefined;
|
|
@@ -155,16 +155,16 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
155
155
|
address?: undefined;
|
|
156
156
|
bool?: undefined;
|
|
157
157
|
bytes?: undefined;
|
|
158
|
-
bytes3?: undefined;
|
|
159
|
-
bytes10?: undefined;
|
|
160
|
-
bytes16?: undefined;
|
|
161
158
|
bytes1?: undefined;
|
|
162
159
|
bytes2?: undefined;
|
|
163
160
|
bytes4?: undefined;
|
|
161
|
+
bytes8?: undefined;
|
|
162
|
+
bytes10?: undefined;
|
|
163
|
+
bytes16?: undefined;
|
|
164
|
+
bytes3?: undefined;
|
|
164
165
|
bytes5?: undefined;
|
|
165
166
|
bytes6?: undefined;
|
|
166
167
|
bytes7?: undefined;
|
|
167
|
-
bytes8?: undefined;
|
|
168
168
|
bytes9?: undefined;
|
|
169
169
|
bytes11?: undefined;
|
|
170
170
|
bytes12?: undefined;
|
|
@@ -187,8 +187,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
187
187
|
bytes30?: undefined;
|
|
188
188
|
bytes31?: undefined;
|
|
189
189
|
bytes32?: undefined;
|
|
190
|
-
int16?: undefined;
|
|
191
190
|
int8?: undefined;
|
|
191
|
+
int16?: undefined;
|
|
192
192
|
int24?: undefined;
|
|
193
193
|
int32?: undefined;
|
|
194
194
|
int40?: undefined;
|
|
@@ -219,8 +219,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
219
219
|
int240?: undefined;
|
|
220
220
|
int248?: undefined;
|
|
221
221
|
int256?: undefined;
|
|
222
|
-
uint16?: undefined;
|
|
223
222
|
uint8?: undefined;
|
|
223
|
+
uint16?: undefined;
|
|
224
224
|
uint24?: undefined;
|
|
225
225
|
uint32?: undefined;
|
|
226
226
|
uint40?: undefined;
|
|
@@ -335,16 +335,16 @@ declare namespace deleteSubname {
|
|
|
335
335
|
[x: `address[${string}]`]: undefined;
|
|
336
336
|
[x: `bool[${string}]`]: undefined;
|
|
337
337
|
[x: `bytes[${string}]`]: undefined;
|
|
338
|
-
[x: `bytes3[${string}]`]: undefined;
|
|
339
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
340
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
341
338
|
[x: `bytes1[${string}]`]: undefined;
|
|
342
339
|
[x: `bytes2[${string}]`]: undefined;
|
|
343
340
|
[x: `bytes4[${string}]`]: undefined;
|
|
341
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
342
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
343
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
344
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
344
345
|
[x: `bytes5[${string}]`]: undefined;
|
|
345
346
|
[x: `bytes6[${string}]`]: undefined;
|
|
346
347
|
[x: `bytes7[${string}]`]: undefined;
|
|
347
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
348
348
|
[x: `bytes9[${string}]`]: undefined;
|
|
349
349
|
[x: `bytes11[${string}]`]: undefined;
|
|
350
350
|
[x: `bytes12[${string}]`]: undefined;
|
|
@@ -368,8 +368,8 @@ declare namespace deleteSubname {
|
|
|
368
368
|
[x: `bytes31[${string}]`]: undefined;
|
|
369
369
|
[x: `bytes32[${string}]`]: undefined;
|
|
370
370
|
[x: `int[${string}]`]: undefined;
|
|
371
|
-
[x: `int16[${string}]`]: undefined;
|
|
372
371
|
[x: `int8[${string}]`]: undefined;
|
|
372
|
+
[x: `int16[${string}]`]: undefined;
|
|
373
373
|
[x: `int24[${string}]`]: undefined;
|
|
374
374
|
[x: `int32[${string}]`]: undefined;
|
|
375
375
|
[x: `int40[${string}]`]: undefined;
|
|
@@ -401,8 +401,8 @@ declare namespace deleteSubname {
|
|
|
401
401
|
[x: `int248[${string}]`]: undefined;
|
|
402
402
|
[x: `int256[${string}]`]: undefined;
|
|
403
403
|
[x: `uint[${string}]`]: undefined;
|
|
404
|
-
[x: `uint16[${string}]`]: undefined;
|
|
405
404
|
[x: `uint8[${string}]`]: undefined;
|
|
405
|
+
[x: `uint16[${string}]`]: undefined;
|
|
406
406
|
[x: `uint24[${string}]`]: undefined;
|
|
407
407
|
[x: `uint32[${string}]`]: undefined;
|
|
408
408
|
[x: `uint40[${string}]`]: undefined;
|
|
@@ -437,16 +437,16 @@ declare namespace deleteSubname {
|
|
|
437
437
|
address?: undefined;
|
|
438
438
|
bool?: undefined;
|
|
439
439
|
bytes?: undefined;
|
|
440
|
-
bytes3?: undefined;
|
|
441
|
-
bytes10?: undefined;
|
|
442
|
-
bytes16?: undefined;
|
|
443
440
|
bytes1?: undefined;
|
|
444
441
|
bytes2?: undefined;
|
|
445
442
|
bytes4?: undefined;
|
|
443
|
+
bytes8?: undefined;
|
|
444
|
+
bytes10?: undefined;
|
|
445
|
+
bytes16?: undefined;
|
|
446
|
+
bytes3?: undefined;
|
|
446
447
|
bytes5?: undefined;
|
|
447
448
|
bytes6?: undefined;
|
|
448
449
|
bytes7?: undefined;
|
|
449
|
-
bytes8?: undefined;
|
|
450
450
|
bytes9?: undefined;
|
|
451
451
|
bytes11?: undefined;
|
|
452
452
|
bytes12?: undefined;
|
|
@@ -469,8 +469,8 @@ declare namespace deleteSubname {
|
|
|
469
469
|
bytes30?: undefined;
|
|
470
470
|
bytes31?: undefined;
|
|
471
471
|
bytes32?: undefined;
|
|
472
|
-
int16?: undefined;
|
|
473
472
|
int8?: undefined;
|
|
473
|
+
int16?: undefined;
|
|
474
474
|
int24?: undefined;
|
|
475
475
|
int32?: undefined;
|
|
476
476
|
int40?: undefined;
|
|
@@ -501,8 +501,8 @@ declare namespace deleteSubname {
|
|
|
501
501
|
int240?: undefined;
|
|
502
502
|
int248?: undefined;
|
|
503
503
|
int256?: undefined;
|
|
504
|
-
uint16?: undefined;
|
|
505
504
|
uint8?: undefined;
|
|
505
|
+
uint16?: undefined;
|
|
506
506
|
uint24?: undefined;
|
|
507
507
|
uint32?: undefined;
|
|
508
508
|
uint40?: undefined;
|
|
@@ -52,16 +52,16 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
52
52
|
[x: `address[${string}]`]: undefined;
|
|
53
53
|
[x: `bool[${string}]`]: undefined;
|
|
54
54
|
[x: `bytes[${string}]`]: undefined;
|
|
55
|
-
[x: `bytes3[${string}]`]: undefined;
|
|
56
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
57
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
58
55
|
[x: `bytes1[${string}]`]: undefined;
|
|
59
56
|
[x: `bytes2[${string}]`]: undefined;
|
|
60
57
|
[x: `bytes4[${string}]`]: undefined;
|
|
58
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
59
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
60
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
61
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
61
62
|
[x: `bytes5[${string}]`]: undefined;
|
|
62
63
|
[x: `bytes6[${string}]`]: undefined;
|
|
63
64
|
[x: `bytes7[${string}]`]: undefined;
|
|
64
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
65
65
|
[x: `bytes9[${string}]`]: undefined;
|
|
66
66
|
[x: `bytes11[${string}]`]: undefined;
|
|
67
67
|
[x: `bytes12[${string}]`]: undefined;
|
|
@@ -85,8 +85,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
85
85
|
[x: `bytes31[${string}]`]: undefined;
|
|
86
86
|
[x: `bytes32[${string}]`]: undefined;
|
|
87
87
|
[x: `int[${string}]`]: undefined;
|
|
88
|
-
[x: `int16[${string}]`]: undefined;
|
|
89
88
|
[x: `int8[${string}]`]: undefined;
|
|
89
|
+
[x: `int16[${string}]`]: undefined;
|
|
90
90
|
[x: `int24[${string}]`]: undefined;
|
|
91
91
|
[x: `int32[${string}]`]: undefined;
|
|
92
92
|
[x: `int40[${string}]`]: undefined;
|
|
@@ -118,8 +118,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
118
118
|
[x: `int248[${string}]`]: undefined;
|
|
119
119
|
[x: `int256[${string}]`]: undefined;
|
|
120
120
|
[x: `uint[${string}]`]: undefined;
|
|
121
|
-
[x: `uint16[${string}]`]: undefined;
|
|
122
121
|
[x: `uint8[${string}]`]: undefined;
|
|
122
|
+
[x: `uint16[${string}]`]: undefined;
|
|
123
123
|
[x: `uint24[${string}]`]: undefined;
|
|
124
124
|
[x: `uint32[${string}]`]: undefined;
|
|
125
125
|
[x: `uint40[${string}]`]: undefined;
|
|
@@ -154,16 +154,16 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
154
154
|
address?: undefined;
|
|
155
155
|
bool?: undefined;
|
|
156
156
|
bytes?: undefined;
|
|
157
|
-
bytes3?: undefined;
|
|
158
|
-
bytes10?: undefined;
|
|
159
|
-
bytes16?: undefined;
|
|
160
157
|
bytes1?: undefined;
|
|
161
158
|
bytes2?: undefined;
|
|
162
159
|
bytes4?: undefined;
|
|
160
|
+
bytes8?: undefined;
|
|
161
|
+
bytes10?: undefined;
|
|
162
|
+
bytes16?: undefined;
|
|
163
|
+
bytes3?: undefined;
|
|
163
164
|
bytes5?: undefined;
|
|
164
165
|
bytes6?: undefined;
|
|
165
166
|
bytes7?: undefined;
|
|
166
|
-
bytes8?: undefined;
|
|
167
167
|
bytes9?: undefined;
|
|
168
168
|
bytes11?: undefined;
|
|
169
169
|
bytes12?: undefined;
|
|
@@ -186,8 +186,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
186
186
|
bytes30?: undefined;
|
|
187
187
|
bytes31?: undefined;
|
|
188
188
|
bytes32?: undefined;
|
|
189
|
-
int16?: undefined;
|
|
190
189
|
int8?: undefined;
|
|
190
|
+
int16?: undefined;
|
|
191
191
|
int24?: undefined;
|
|
192
192
|
int32?: undefined;
|
|
193
193
|
int40?: undefined;
|
|
@@ -218,8 +218,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
218
218
|
int240?: undefined;
|
|
219
219
|
int248?: undefined;
|
|
220
220
|
int256?: undefined;
|
|
221
|
-
uint16?: undefined;
|
|
222
221
|
uint8?: undefined;
|
|
222
|
+
uint16?: undefined;
|
|
223
223
|
uint24?: undefined;
|
|
224
224
|
uint32?: undefined;
|
|
225
225
|
uint40?: undefined;
|
|
@@ -352,16 +352,16 @@ declare namespace registerName {
|
|
|
352
352
|
[x: `address[${string}]`]: undefined;
|
|
353
353
|
[x: `bool[${string}]`]: undefined;
|
|
354
354
|
[x: `bytes[${string}]`]: undefined;
|
|
355
|
-
[x: `bytes3[${string}]`]: undefined;
|
|
356
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
357
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
358
355
|
[x: `bytes1[${string}]`]: undefined;
|
|
359
356
|
[x: `bytes2[${string}]`]: undefined;
|
|
360
357
|
[x: `bytes4[${string}]`]: undefined;
|
|
358
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
359
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
360
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
361
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
361
362
|
[x: `bytes5[${string}]`]: undefined;
|
|
362
363
|
[x: `bytes6[${string}]`]: undefined;
|
|
363
364
|
[x: `bytes7[${string}]`]: undefined;
|
|
364
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
365
365
|
[x: `bytes9[${string}]`]: undefined;
|
|
366
366
|
[x: `bytes11[${string}]`]: undefined;
|
|
367
367
|
[x: `bytes12[${string}]`]: undefined;
|
|
@@ -385,8 +385,8 @@ declare namespace registerName {
|
|
|
385
385
|
[x: `bytes31[${string}]`]: undefined;
|
|
386
386
|
[x: `bytes32[${string}]`]: undefined;
|
|
387
387
|
[x: `int[${string}]`]: undefined;
|
|
388
|
-
[x: `int16[${string}]`]: undefined;
|
|
389
388
|
[x: `int8[${string}]`]: undefined;
|
|
389
|
+
[x: `int16[${string}]`]: undefined;
|
|
390
390
|
[x: `int24[${string}]`]: undefined;
|
|
391
391
|
[x: `int32[${string}]`]: undefined;
|
|
392
392
|
[x: `int40[${string}]`]: undefined;
|
|
@@ -418,8 +418,8 @@ declare namespace registerName {
|
|
|
418
418
|
[x: `int248[${string}]`]: undefined;
|
|
419
419
|
[x: `int256[${string}]`]: undefined;
|
|
420
420
|
[x: `uint[${string}]`]: undefined;
|
|
421
|
-
[x: `uint16[${string}]`]: undefined;
|
|
422
421
|
[x: `uint8[${string}]`]: undefined;
|
|
422
|
+
[x: `uint16[${string}]`]: undefined;
|
|
423
423
|
[x: `uint24[${string}]`]: undefined;
|
|
424
424
|
[x: `uint32[${string}]`]: undefined;
|
|
425
425
|
[x: `uint40[${string}]`]: undefined;
|
|
@@ -454,16 +454,16 @@ declare namespace registerName {
|
|
|
454
454
|
address?: undefined;
|
|
455
455
|
bool?: undefined;
|
|
456
456
|
bytes?: undefined;
|
|
457
|
-
bytes3?: undefined;
|
|
458
|
-
bytes10?: undefined;
|
|
459
|
-
bytes16?: undefined;
|
|
460
457
|
bytes1?: undefined;
|
|
461
458
|
bytes2?: undefined;
|
|
462
459
|
bytes4?: undefined;
|
|
460
|
+
bytes8?: undefined;
|
|
461
|
+
bytes10?: undefined;
|
|
462
|
+
bytes16?: undefined;
|
|
463
|
+
bytes3?: undefined;
|
|
463
464
|
bytes5?: undefined;
|
|
464
465
|
bytes6?: undefined;
|
|
465
466
|
bytes7?: undefined;
|
|
466
|
-
bytes8?: undefined;
|
|
467
467
|
bytes9?: undefined;
|
|
468
468
|
bytes11?: undefined;
|
|
469
469
|
bytes12?: undefined;
|
|
@@ -486,8 +486,8 @@ declare namespace registerName {
|
|
|
486
486
|
bytes30?: undefined;
|
|
487
487
|
bytes31?: undefined;
|
|
488
488
|
bytes32?: undefined;
|
|
489
|
-
int16?: undefined;
|
|
490
489
|
int8?: undefined;
|
|
490
|
+
int16?: undefined;
|
|
491
491
|
int24?: undefined;
|
|
492
492
|
int32?: undefined;
|
|
493
493
|
int40?: undefined;
|
|
@@ -518,8 +518,8 @@ declare namespace registerName {
|
|
|
518
518
|
int240?: undefined;
|
|
519
519
|
int248?: undefined;
|
|
520
520
|
int256?: undefined;
|
|
521
|
-
uint16?: undefined;
|
|
522
521
|
uint8?: undefined;
|
|
522
|
+
uint16?: undefined;
|
|
523
523
|
uint24?: undefined;
|
|
524
524
|
uint32?: undefined;
|
|
525
525
|
uint40?: undefined;
|
|
@@ -55,16 +55,16 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
55
55
|
[x: `address[${string}]`]: undefined;
|
|
56
56
|
[x: `bool[${string}]`]: undefined;
|
|
57
57
|
[x: `bytes[${string}]`]: undefined;
|
|
58
|
-
[x: `bytes3[${string}]`]: undefined;
|
|
59
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
60
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
61
58
|
[x: `bytes1[${string}]`]: undefined;
|
|
62
59
|
[x: `bytes2[${string}]`]: undefined;
|
|
63
60
|
[x: `bytes4[${string}]`]: undefined;
|
|
61
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
62
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
63
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
64
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
64
65
|
[x: `bytes5[${string}]`]: undefined;
|
|
65
66
|
[x: `bytes6[${string}]`]: undefined;
|
|
66
67
|
[x: `bytes7[${string}]`]: undefined;
|
|
67
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
68
68
|
[x: `bytes9[${string}]`]: undefined;
|
|
69
69
|
[x: `bytes11[${string}]`]: undefined;
|
|
70
70
|
[x: `bytes12[${string}]`]: undefined;
|
|
@@ -88,8 +88,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
88
88
|
[x: `bytes31[${string}]`]: undefined;
|
|
89
89
|
[x: `bytes32[${string}]`]: undefined;
|
|
90
90
|
[x: `int[${string}]`]: undefined;
|
|
91
|
-
[x: `int16[${string}]`]: undefined;
|
|
92
91
|
[x: `int8[${string}]`]: undefined;
|
|
92
|
+
[x: `int16[${string}]`]: undefined;
|
|
93
93
|
[x: `int24[${string}]`]: undefined;
|
|
94
94
|
[x: `int32[${string}]`]: undefined;
|
|
95
95
|
[x: `int40[${string}]`]: undefined;
|
|
@@ -121,8 +121,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
121
121
|
[x: `int248[${string}]`]: undefined;
|
|
122
122
|
[x: `int256[${string}]`]: undefined;
|
|
123
123
|
[x: `uint[${string}]`]: undefined;
|
|
124
|
-
[x: `uint16[${string}]`]: undefined;
|
|
125
124
|
[x: `uint8[${string}]`]: undefined;
|
|
125
|
+
[x: `uint16[${string}]`]: undefined;
|
|
126
126
|
[x: `uint24[${string}]`]: undefined;
|
|
127
127
|
[x: `uint32[${string}]`]: undefined;
|
|
128
128
|
[x: `uint40[${string}]`]: undefined;
|
|
@@ -157,16 +157,16 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
157
157
|
address?: undefined;
|
|
158
158
|
bool?: undefined;
|
|
159
159
|
bytes?: undefined;
|
|
160
|
-
bytes3?: undefined;
|
|
161
|
-
bytes10?: undefined;
|
|
162
|
-
bytes16?: undefined;
|
|
163
160
|
bytes1?: undefined;
|
|
164
161
|
bytes2?: undefined;
|
|
165
162
|
bytes4?: undefined;
|
|
163
|
+
bytes8?: undefined;
|
|
164
|
+
bytes10?: undefined;
|
|
165
|
+
bytes16?: undefined;
|
|
166
|
+
bytes3?: undefined;
|
|
166
167
|
bytes5?: undefined;
|
|
167
168
|
bytes6?: undefined;
|
|
168
169
|
bytes7?: undefined;
|
|
169
|
-
bytes8?: undefined;
|
|
170
170
|
bytes9?: undefined;
|
|
171
171
|
bytes11?: undefined;
|
|
172
172
|
bytes12?: undefined;
|
|
@@ -189,8 +189,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
189
189
|
bytes30?: undefined;
|
|
190
190
|
bytes31?: undefined;
|
|
191
191
|
bytes32?: undefined;
|
|
192
|
-
int16?: undefined;
|
|
193
192
|
int8?: undefined;
|
|
193
|
+
int16?: undefined;
|
|
194
194
|
int24?: undefined;
|
|
195
195
|
int32?: undefined;
|
|
196
196
|
int40?: undefined;
|
|
@@ -221,8 +221,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
221
221
|
int240?: undefined;
|
|
222
222
|
int248?: undefined;
|
|
223
223
|
int256?: undefined;
|
|
224
|
-
uint16?: undefined;
|
|
225
224
|
uint8?: undefined;
|
|
225
|
+
uint16?: undefined;
|
|
226
226
|
uint24?: undefined;
|
|
227
227
|
uint32?: undefined;
|
|
228
228
|
uint40?: undefined;
|
|
@@ -351,16 +351,16 @@ declare namespace renewNames {
|
|
|
351
351
|
[x: `address[${string}]`]: undefined;
|
|
352
352
|
[x: `bool[${string}]`]: undefined;
|
|
353
353
|
[x: `bytes[${string}]`]: undefined;
|
|
354
|
-
[x: `bytes3[${string}]`]: undefined;
|
|
355
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
356
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
357
354
|
[x: `bytes1[${string}]`]: undefined;
|
|
358
355
|
[x: `bytes2[${string}]`]: undefined;
|
|
359
356
|
[x: `bytes4[${string}]`]: undefined;
|
|
357
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
358
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
359
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
360
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
360
361
|
[x: `bytes5[${string}]`]: undefined;
|
|
361
362
|
[x: `bytes6[${string}]`]: undefined;
|
|
362
363
|
[x: `bytes7[${string}]`]: undefined;
|
|
363
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
364
364
|
[x: `bytes9[${string}]`]: undefined;
|
|
365
365
|
[x: `bytes11[${string}]`]: undefined;
|
|
366
366
|
[x: `bytes12[${string}]`]: undefined;
|
|
@@ -384,8 +384,8 @@ declare namespace renewNames {
|
|
|
384
384
|
[x: `bytes31[${string}]`]: undefined;
|
|
385
385
|
[x: `bytes32[${string}]`]: undefined;
|
|
386
386
|
[x: `int[${string}]`]: undefined;
|
|
387
|
-
[x: `int16[${string}]`]: undefined;
|
|
388
387
|
[x: `int8[${string}]`]: undefined;
|
|
388
|
+
[x: `int16[${string}]`]: undefined;
|
|
389
389
|
[x: `int24[${string}]`]: undefined;
|
|
390
390
|
[x: `int32[${string}]`]: undefined;
|
|
391
391
|
[x: `int40[${string}]`]: undefined;
|
|
@@ -417,8 +417,8 @@ declare namespace renewNames {
|
|
|
417
417
|
[x: `int248[${string}]`]: undefined;
|
|
418
418
|
[x: `int256[${string}]`]: undefined;
|
|
419
419
|
[x: `uint[${string}]`]: undefined;
|
|
420
|
-
[x: `uint16[${string}]`]: undefined;
|
|
421
420
|
[x: `uint8[${string}]`]: undefined;
|
|
421
|
+
[x: `uint16[${string}]`]: undefined;
|
|
422
422
|
[x: `uint24[${string}]`]: undefined;
|
|
423
423
|
[x: `uint32[${string}]`]: undefined;
|
|
424
424
|
[x: `uint40[${string}]`]: undefined;
|
|
@@ -453,16 +453,16 @@ declare namespace renewNames {
|
|
|
453
453
|
address?: undefined;
|
|
454
454
|
bool?: undefined;
|
|
455
455
|
bytes?: undefined;
|
|
456
|
-
bytes3?: undefined;
|
|
457
|
-
bytes10?: undefined;
|
|
458
|
-
bytes16?: undefined;
|
|
459
456
|
bytes1?: undefined;
|
|
460
457
|
bytes2?: undefined;
|
|
461
458
|
bytes4?: undefined;
|
|
459
|
+
bytes8?: undefined;
|
|
460
|
+
bytes10?: undefined;
|
|
461
|
+
bytes16?: undefined;
|
|
462
|
+
bytes3?: undefined;
|
|
462
463
|
bytes5?: undefined;
|
|
463
464
|
bytes6?: undefined;
|
|
464
465
|
bytes7?: undefined;
|
|
465
|
-
bytes8?: undefined;
|
|
466
466
|
bytes9?: undefined;
|
|
467
467
|
bytes11?: undefined;
|
|
468
468
|
bytes12?: undefined;
|
|
@@ -485,8 +485,8 @@ declare namespace renewNames {
|
|
|
485
485
|
bytes30?: undefined;
|
|
486
486
|
bytes31?: undefined;
|
|
487
487
|
bytes32?: undefined;
|
|
488
|
-
int16?: undefined;
|
|
489
488
|
int8?: undefined;
|
|
489
|
+
int16?: undefined;
|
|
490
490
|
int24?: undefined;
|
|
491
491
|
int32?: undefined;
|
|
492
492
|
int40?: undefined;
|
|
@@ -517,8 +517,8 @@ declare namespace renewNames {
|
|
|
517
517
|
int240?: undefined;
|
|
518
518
|
int248?: undefined;
|
|
519
519
|
int256?: undefined;
|
|
520
|
-
uint16?: undefined;
|
|
521
520
|
uint8?: undefined;
|
|
521
|
+
uint16?: undefined;
|
|
522
522
|
uint24?: undefined;
|
|
523
523
|
uint32?: undefined;
|
|
524
524
|
uint40?: undefined;
|