@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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Account, type Address, type Hash, type SendTransactionParameters, type Transport } from 'viem';
|
|
1
|
+
import { type Account, type Address, type Hash, type SendTransactionParameters, type Transport, type WalletClient } from 'viem';
|
|
2
2
|
import type { ChainWithEns, WalletWithEns } from '../../contracts/consts.js';
|
|
3
3
|
import type { Prettify, SimpleTransactionRequest, WriteTransactionParameters } from '../../types.js';
|
|
4
4
|
import type { GetDnsImportDataReturnType } from './getDnsImportData.js';
|
|
@@ -65,16 +65,16 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
65
65
|
[x: `address[${string}]`]: undefined;
|
|
66
66
|
[x: `bool[${string}]`]: undefined;
|
|
67
67
|
[x: `bytes[${string}]`]: undefined;
|
|
68
|
-
[x: `bytes3[${string}]`]: undefined;
|
|
69
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
70
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
71
68
|
[x: `bytes1[${string}]`]: undefined;
|
|
72
69
|
[x: `bytes2[${string}]`]: undefined;
|
|
73
70
|
[x: `bytes4[${string}]`]: undefined;
|
|
71
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
72
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
73
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
74
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
74
75
|
[x: `bytes5[${string}]`]: undefined;
|
|
75
76
|
[x: `bytes6[${string}]`]: undefined;
|
|
76
77
|
[x: `bytes7[${string}]`]: undefined;
|
|
77
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
78
78
|
[x: `bytes9[${string}]`]: undefined;
|
|
79
79
|
[x: `bytes11[${string}]`]: undefined;
|
|
80
80
|
[x: `bytes12[${string}]`]: undefined;
|
|
@@ -98,8 +98,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
98
98
|
[x: `bytes31[${string}]`]: undefined;
|
|
99
99
|
[x: `bytes32[${string}]`]: undefined;
|
|
100
100
|
[x: `int[${string}]`]: undefined;
|
|
101
|
-
[x: `int16[${string}]`]: undefined;
|
|
102
101
|
[x: `int8[${string}]`]: undefined;
|
|
102
|
+
[x: `int16[${string}]`]: undefined;
|
|
103
103
|
[x: `int24[${string}]`]: undefined;
|
|
104
104
|
[x: `int32[${string}]`]: undefined;
|
|
105
105
|
[x: `int40[${string}]`]: undefined;
|
|
@@ -131,8 +131,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
131
131
|
[x: `int248[${string}]`]: undefined;
|
|
132
132
|
[x: `int256[${string}]`]: undefined;
|
|
133
133
|
[x: `uint[${string}]`]: undefined;
|
|
134
|
-
[x: `uint16[${string}]`]: undefined;
|
|
135
134
|
[x: `uint8[${string}]`]: undefined;
|
|
135
|
+
[x: `uint16[${string}]`]: undefined;
|
|
136
136
|
[x: `uint24[${string}]`]: undefined;
|
|
137
137
|
[x: `uint32[${string}]`]: undefined;
|
|
138
138
|
[x: `uint40[${string}]`]: undefined;
|
|
@@ -167,16 +167,16 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
167
167
|
address?: undefined;
|
|
168
168
|
bool?: undefined;
|
|
169
169
|
bytes?: undefined;
|
|
170
|
-
bytes3?: undefined;
|
|
171
|
-
bytes10?: undefined;
|
|
172
|
-
bytes16?: undefined;
|
|
173
170
|
bytes1?: undefined;
|
|
174
171
|
bytes2?: undefined;
|
|
175
172
|
bytes4?: undefined;
|
|
173
|
+
bytes8?: undefined;
|
|
174
|
+
bytes10?: undefined;
|
|
175
|
+
bytes16?: undefined;
|
|
176
|
+
bytes3?: undefined;
|
|
176
177
|
bytes5?: undefined;
|
|
177
178
|
bytes6?: undefined;
|
|
178
179
|
bytes7?: undefined;
|
|
179
|
-
bytes8?: undefined;
|
|
180
180
|
bytes9?: undefined;
|
|
181
181
|
bytes11?: undefined;
|
|
182
182
|
bytes12?: undefined;
|
|
@@ -199,8 +199,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
199
199
|
bytes30?: undefined;
|
|
200
200
|
bytes31?: undefined;
|
|
201
201
|
bytes32?: undefined;
|
|
202
|
-
int16?: undefined;
|
|
203
202
|
int8?: undefined;
|
|
203
|
+
int16?: undefined;
|
|
204
204
|
int24?: undefined;
|
|
205
205
|
int32?: undefined;
|
|
206
206
|
int40?: undefined;
|
|
@@ -231,8 +231,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
231
231
|
int240?: undefined;
|
|
232
232
|
int248?: undefined;
|
|
233
233
|
int256?: undefined;
|
|
234
|
-
uint16?: undefined;
|
|
235
234
|
uint8?: undefined;
|
|
235
|
+
uint16?: undefined;
|
|
236
236
|
uint24?: undefined;
|
|
237
237
|
uint32?: undefined;
|
|
238
238
|
uint40?: undefined;
|
|
@@ -354,16 +354,16 @@ declare namespace importDnsName {
|
|
|
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 importDnsName {
|
|
|
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 importDnsName {
|
|
|
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 importDnsName {
|
|
|
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 importDnsName {
|
|
|
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 importDnsName {
|
|
|
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;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"importDnsName.d.ts","sourceRoot":"","sources":["../../../../src/functions/dns/importDnsName.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"importDnsName.d.ts","sourceRoot":"","sources":["../../../../src/functions/dns/importDnsName.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,OAAO,EACZ,KAAK,OAAO,EACZ,KAAK,IAAI,EACT,KAAK,yBAAyB,EAC9B,KAAK,SAAS,EACd,KAAK,YAAY,EAClB,MAAM,MAAM,CAAA;AACb,OAAO,KAAK,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAO5E,OAAO,KAAK,EACV,QAAQ,EACR,wBAAwB,EACxB,0BAA0B,EAC3B,MAAM,gBAAgB,CAAA;AAEvB,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,uBAAuB,CAAA;AAEvE,KAAK,+BAA+B,GAAG;IACrC,qBAAqB;IACrB,IAAI,EAAE,MAAM,CAAA;IACZ,8CAA8C;IAC9C,aAAa,EAAE,0BAA0B,CAAA;IACzC,oCAAoC;IACpC,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,oEAAoE;IACpE,eAAe,CAAC,EAAE,OAAO,CAAA;CAC1B,CAAA;AAED,KAAK,qCAAqC,GAAG;IAC3C,OAAO,CAAC,EAAE,KAAK,CAAA;IACf,eAAe,CAAC,EAAE,KAAK,CAAA;CACxB,CAAA;AAED,KAAK,mCAAmC,GAAG;IACzC,OAAO,EAAE,OAAO,CAAA;IAChB,eAAe,CAAC,EAAE,OAAO,CAAA;CAC1B,CAAA;AAED,MAAM,MAAM,2BAA2B,GAAG,+BAA+B,GACvE,CAAC,qCAAqC,GAAG,mCAAmC,CAAC,CAAA;AAE/E,MAAM,MAAM,2BAA2B,GAAG,wBAAwB,CAAA;AAElE,MAAM,MAAM,uBAAuB,CACjC,MAAM,SAAS,YAAY,EAC3B,QAAQ,SAAS,OAAO,GAAG,SAAS,EACpC,cAAc,SAAS,YAAY,GAAG,SAAS,IAC7C,QAAQ,CACV,2BAA2B,GACzB,0BAA0B,CAAC,MAAM,EAAE,QAAQ,EAAE,cAAc,CAAC,CAC/D,CAAA;AAED,MAAM,MAAM,uBAAuB,GAAG,IAAI,CAAA;AAE1C,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uDAUxB,2BAA2B,KAC7B,2BAqCF,CAAA;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,iBAAe,aAAa,CAC1B,MAAM,SAAS,YAAY,EAC3B,QAAQ,SAAS,OAAO,GAAG,SAAS,EACpC,cAAc,SAAS,YAAY,GAAG,SAAS,GAAG,YAAY,EAE9D,MAAM,EAAE,aAAa,CAAC,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,EAClD,EACE,IAAI,EACJ,OAAO,EACP,aAAa,EACb,eAAe,EACf,GAAG,MAAM,EACV,EAAE,uBAAuB,CAAC,MAAM,EAAE,QAAQ,EAAE,cAAc,CAAC,GAC3D,OAAO,CAAC,uBAAuB,CAAC,CAYlC;kBAzBc,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6B5B,eAAe,aAAa,CAAA"}
|
|
@@ -4,10 +4,17 @@ import type { DecodedAbi, Prettify, SimpleTransactionRequest } from '../../types
|
|
|
4
4
|
export type InternalGetAbiParameters = {
|
|
5
5
|
/** Name to get ABI record for */
|
|
6
6
|
name: string;
|
|
7
|
+
/** Supported content types as bitwise
|
|
8
|
+
* ID 1: JSON
|
|
9
|
+
* ID 2: zlib compressed JSON
|
|
10
|
+
* ID 4: CBOR
|
|
11
|
+
* ID 8: URI
|
|
12
|
+
*/
|
|
13
|
+
supportedContentTypes?: bigint;
|
|
7
14
|
/** Whether or not to throw decoding errors */
|
|
8
15
|
strict?: boolean;
|
|
9
16
|
};
|
|
10
17
|
export type InternalGetAbiReturnType = Prettify<DecodedAbi | null>;
|
|
11
|
-
declare const _getAbi: import("../../utils/generateFunction.js").GeneratedFunction<(_client: ClientWithEns, { name }: Omit<InternalGetAbiParameters, 'strict'>) => SimpleTransactionRequest, (_client: ClientWithEns, data: Hex, { strict }: Pick<InternalGetAbiParameters, 'strict'>) => Promise<InternalGetAbiReturnType>>;
|
|
18
|
+
declare const _getAbi: import("../../utils/generateFunction.js").GeneratedFunction<(_client: ClientWithEns, { name, supportedContentTypes, }: Omit<InternalGetAbiParameters, 'strict'>) => SimpleTransactionRequest, (_client: ClientWithEns, data: Hex, { strict }: Pick<InternalGetAbiParameters, 'strict'>) => Promise<InternalGetAbiReturnType>>;
|
|
12
19
|
export default _getAbi;
|
|
13
20
|
//# sourceMappingURL=_getAbi.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_getAbi.d.ts","sourceRoot":"","sources":["../../../../src/functions/public/_getAbi.ts"],"names":[],"mappings":"AAAA,OAAO,EAKL,KAAK,GAAG,EACT,MAAM,MAAM,CAAA;AACb,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAE9D,OAAO,KAAK,EACV,UAAU,EACV,QAAQ,EACR,wBAAwB,EACzB,MAAM,gBAAgB,CAAA;AAKvB,MAAM,MAAM,wBAAwB,GAAG;IACrC,iCAAiC;IACjC,IAAI,EAAE,MAAM,CAAA;IACZ,8CAA8C;IAC9C,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB,CAAA;AAED,MAAM,MAAM,wBAAwB,GAAG,QAAQ,CAAC,UAAU,GAAG,IAAI,CAAC,CAAA;
|
|
1
|
+
{"version":3,"file":"_getAbi.d.ts","sourceRoot":"","sources":["../../../../src/functions/public/_getAbi.ts"],"names":[],"mappings":"AAAA,OAAO,EAKL,KAAK,GAAG,EACT,MAAM,MAAM,CAAA;AACb,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAE9D,OAAO,KAAK,EACV,UAAU,EACV,QAAQ,EACR,wBAAwB,EACzB,MAAM,gBAAgB,CAAA;AAKvB,MAAM,MAAM,wBAAwB,GAAG;IACrC,iCAAiC;IACjC,IAAI,EAAE,MAAM,CAAA;IACZ;;;;;OAKG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAC9B,8CAA8C;IAC9C,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB,CAAA;AAED,MAAM,MAAM,wBAAwB,GAAG,QAAQ,CAAC,UAAU,GAAG,IAAI,CAAC,CAAA;AA2FlE,QAAA,MAAM,OAAO,wEAxFF,aAAa,oCAInB,KAAK,wBAAwB,EAAE,QAAQ,CAAC,KAC1C,wBAAwB,YAYhB,aAAa,QAChB,GAAG,cACG,KAAK,wBAAwB,EAAE,QAAQ,CAAC,KACnD,QAAQ,wBAAwB,CAAC,CAoEgB,CAAA;AAEpD,eAAe,OAAO,CAAA"}
|
|
@@ -8,7 +8,7 @@ export type GetAbiRecordParameters = Prettify<InternalGetAbiParameters & {
|
|
|
8
8
|
gatewayUrls?: string[];
|
|
9
9
|
}>;
|
|
10
10
|
export type GetAbiRecordReturnType = Prettify<InternalGetAbiReturnType>;
|
|
11
|
-
declare const encode: (client: ClientWithEns, { name, gatewayUrls }: Omit<GetAbiRecordParameters, 'strict'>) => SimpleTransactionRequest;
|
|
11
|
+
declare const encode: (client: ClientWithEns, { name, supportedContentTypes, gatewayUrls, }: Omit<GetAbiRecordParameters, 'strict'>) => SimpleTransactionRequest;
|
|
12
12
|
declare const decode: (client: ClientWithEns, data: Hex | BaseError, passthrough: GenericPassthrough, { strict }: Pick<GetAbiRecordParameters, 'strict'>) => Promise<GetAbiRecordReturnType>;
|
|
13
13
|
type BatchableFunctionObject = GeneratedFunction<typeof encode, typeof decode>;
|
|
14
14
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAbiRecord.d.ts","sourceRoot":"","sources":["../../../../src/functions/public/getAbiRecord.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,GAAG,EAAE,MAAM,MAAM,CAAA;AAC1C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAC9D,OAAO,KAAK,EACV,kBAAkB,EAClB,QAAQ,EACR,wBAAwB,EACzB,MAAM,gBAAgB,CAAA;AACvB,OAAO,EAEL,KAAK,iBAAiB,EACvB,MAAM,iCAAiC,CAAA;AACxC,OAAgB,EACd,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC9B,MAAM,cAAc,CAAA;AAGrB,MAAM,MAAM,sBAAsB,GAAG,QAAQ,CAC3C,wBAAwB,GAAG;IACzB,kEAAkE;IAClE,WAAW,CAAC,EAAE,MAAM,EAAE,CAAA;CACvB,CACF,CAAA;AAED,MAAM,MAAM,sBAAsB,GAAG,QAAQ,CAAC,wBAAwB,CAAC,CAAA;AAEvE,QAAA,MAAM,MAAM,WACF,aAAa,
|
|
1
|
+
{"version":3,"file":"getAbiRecord.d.ts","sourceRoot":"","sources":["../../../../src/functions/public/getAbiRecord.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,GAAG,EAAE,MAAM,MAAM,CAAA;AAC1C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAC9D,OAAO,KAAK,EACV,kBAAkB,EAClB,QAAQ,EACR,wBAAwB,EACzB,MAAM,gBAAgB,CAAA;AACvB,OAAO,EAEL,KAAK,iBAAiB,EACvB,MAAM,iCAAiC,CAAA;AACxC,OAAgB,EACd,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC9B,MAAM,cAAc,CAAA;AAGrB,MAAM,MAAM,sBAAsB,GAAG,QAAQ,CAC3C,wBAAwB,GAAG;IACzB,kEAAkE;IAClE,WAAW,CAAC,EAAE,MAAM,EAAE,CAAA;CACvB,CACF,CAAA;AAED,MAAM,MAAM,sBAAsB,GAAG,QAAQ,CAAC,wBAAwB,CAAC,CAAA;AAEvE,QAAA,MAAM,MAAM,WACF,aAAa,iDAKlB,KAAK,sBAAsB,EAAE,QAAQ,CAAC,KACxC,wBAOF,CAAA;AAED,QAAA,MAAM,MAAM,WACF,aAAa,QACf,GAAG,GAAG,SAAS,eACR,kBAAkB,cACnB,KAAK,sBAAsB,EAAE,QAAQ,CAAC,KACjD,QAAQ,sBAAsB,CAMhC,CAAA;AAED,KAAK,uBAAuB,GAAG,iBAAiB,CAAC,OAAO,MAAM,EAAE,OAAO,MAAM,CAAC,CAAA;AAE9E;;;;;;;;;;;;;;;;;;GAkBG;AACH,QAAA,MAAM,YAAY,YACR,aAAa,oBACH,sBAAsB,KACrC,QAAQ,sBAAsB,CAAC,2BACX,CAAA;AAEzB,eAAe,YAAY,CAAA"}
|
|
@@ -40,10 +40,7 @@ type WithCoinsResult = {
|
|
|
40
40
|
/** Retrieved coins for name */
|
|
41
41
|
coins: DecodedAddr[];
|
|
42
42
|
};
|
|
43
|
-
export type GetRecordsReturnType<TTexts extends readonly string[] = readonly [
|
|
44
|
-
string | number,
|
|
45
|
-
...(string | number)[]
|
|
46
|
-
], TContentHash extends boolean = true, TAbi extends boolean = true> = Prettify<(TContentHash extends true ? WithContentHashResult : {}) & (TAbi extends true ? WithAbiResult : {}) & (TTexts extends readonly [string, ...string[]] ? WithTextsResult : {}) & (TCoins extends readonly [string | number, ...(string | number)[]] ? WithCoinsResult : {}) & {
|
|
43
|
+
export type GetRecordsReturnType<TTexts extends readonly string[] | undefined = readonly string[], TCoins extends readonly (string | number)[] | undefined = readonly (string | number)[], TContentHash extends boolean | undefined = true, TAbi extends boolean | undefined = true> = Prettify<(TContentHash extends true ? WithContentHashResult : {}) & (TAbi extends true ? WithAbiResult : {}) & (TTexts extends readonly string[] ? WithTextsResult : {}) & (TCoins extends readonly (string | number)[] ? WithCoinsResult : {}) & {
|
|
47
44
|
/** Resolver address used for fetch */
|
|
48
45
|
resolverAddress: Address;
|
|
49
46
|
}>;
|
|
@@ -70,10 +67,10 @@ type EncodeReturnType = Required<TransactionRequestWithPassthrough<{
|
|
|
70
67
|
args?: any;
|
|
71
68
|
}>>;
|
|
72
69
|
declare const encode: (client: ClientWithEns, { name, resolver, texts, coins, contentHash, abi, gatewayUrls, }: GetRecordsParameters) => EncodeReturnType;
|
|
73
|
-
declare const decode: <const TTexts extends readonly string[] = readonly string[], const TCoins extends readonly (string | number)[] = readonly (string | number)[], const TContentHash extends boolean =
|
|
70
|
+
declare const decode: <const TTexts extends readonly string[] | undefined = readonly string[], const TCoins extends readonly (string | number)[] | undefined = readonly (string | number)[], const TContentHash extends boolean | undefined = undefined, const TAbi extends boolean | undefined = undefined>(client: ClientWithEns, data: Hex | BaseError, passthrough: EncodeReturnType['passthrough'], { resolver, texts, coins, contentHash, abi, }: GetRecordsParameters<TTexts, TCoins, TContentHash, TAbi>) => Promise<(TContentHash extends true ? WithContentHashResult : {}) & (TAbi extends true ? WithAbiResult : {}) & (TTexts extends readonly string[] ? WithTextsResult : {}) & (TCoins extends readonly (string | number)[] ? WithCoinsResult : {}) & {
|
|
74
71
|
/** Resolver address used for fetch */
|
|
75
72
|
resolverAddress: Address;
|
|
76
|
-
} extends infer T ? { [K in keyof T]: ((TContentHash extends true ? WithContentHashResult : {}) & (TAbi extends true ? WithAbiResult : {}) & (TTexts extends readonly
|
|
73
|
+
} extends infer T ? { [K in keyof T]: ((TContentHash extends true ? WithContentHashResult : {}) & (TAbi extends true ? WithAbiResult : {}) & (TTexts extends readonly string[] ? WithTextsResult : {}) & (TCoins extends readonly (string | number)[] ? WithCoinsResult : {}) & {
|
|
77
74
|
/** Resolver address used for fetch */
|
|
78
75
|
resolverAddress: Address;
|
|
79
76
|
})[K]; } : never>;
|
|
@@ -82,7 +79,7 @@ type DecoderFunction = typeof decode<any>;
|
|
|
82
79
|
type BatchableFunctionObject = {
|
|
83
80
|
encode: EncoderFunction;
|
|
84
81
|
decode: DecoderFunction;
|
|
85
|
-
batch: <const TTexts extends readonly string[] =
|
|
82
|
+
batch: <const TTexts extends readonly string[] | undefined = undefined, const TCoins extends readonly (string | number)[] | undefined = undefined, const TContentHash extends boolean | undefined = undefined, const TAbi extends boolean | undefined = undefined>(args: GetRecordsParameters<TTexts, TCoins, TContentHash, TAbi>) => {
|
|
86
83
|
args: [GetRecordsParameters<TTexts, TCoins, TContentHash, TAbi>];
|
|
87
84
|
encode: EncoderFunction;
|
|
88
85
|
decode: typeof decode<TTexts, TCoins, TContentHash, TAbi>;
|
|
@@ -114,10 +111,10 @@ type BatchableFunctionObject = {
|
|
|
114
111
|
* })
|
|
115
112
|
* // { texts: [{ key: 'com.twitter', value: 'ensdomains' }, { key: 'com.github', value: 'ensdomains' }], coins: [{ id: 60, name: 'ETH', value: '0xFe89cc7aBB2C4183683ab71653C4cdc9B02D44b7' }], contentHash: { protocolType: 'ipns', decoded: 'k51qzi5uqu5djdczd6zw0grmo23j2vkj9uzvujencg15s5rlkq0ss4ivll8wqw' } }
|
|
116
113
|
*/
|
|
117
|
-
declare const getRecords: (<const TTexts extends readonly string[] =
|
|
114
|
+
declare const getRecords: (<const TTexts extends readonly string[] | undefined = undefined, const TCoins extends readonly (string | number)[] | undefined = undefined, const TContentHash extends boolean | undefined = undefined, const TAbi extends boolean | undefined = undefined>(client: ClientWithEns, { name, texts, coins, contentHash, abi, resolver, gatewayUrls, }: GetRecordsParameters<TTexts, TCoins, TContentHash, TAbi>) => Promise<(TContentHash extends true ? WithContentHashResult : {}) & (TAbi extends true ? WithAbiResult : {}) & (TTexts extends readonly string[] ? WithTextsResult : {}) & (TCoins extends readonly (string | number)[] ? WithCoinsResult : {}) & {
|
|
118
115
|
/** Resolver address used for fetch */
|
|
119
116
|
resolverAddress: Address;
|
|
120
|
-
} extends infer T ? { [K in keyof T]: ((TContentHash extends true ? WithContentHashResult : {}) & (TAbi extends true ? WithAbiResult : {}) & (TTexts extends readonly
|
|
117
|
+
} extends infer T ? { [K in keyof T]: ((TContentHash extends true ? WithContentHashResult : {}) & (TAbi extends true ? WithAbiResult : {}) & (TTexts extends readonly string[] ? WithTextsResult : {}) & (TCoins extends readonly (string | number)[] ? WithCoinsResult : {}) & {
|
|
121
118
|
/** Resolver address used for fetch */
|
|
122
119
|
resolverAddress: Address;
|
|
123
120
|
})[K]; } : never>) & BatchableFunctionObject;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRecords.d.ts","sourceRoot":"","sources":["../../../../src/functions/public/getRecords.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,SAAS,EAMT,KAAK,OAAO,EACZ,KAAK,GAAG,EACT,MAAM,MAAM,CAAA;AACb,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAG9D,OAAO,KAAK,EACV,WAAW,EACX,WAAW,EACX,QAAQ,EACR,wBAAwB,EACxB,iCAAiC,EAClC,MAAM,gBAAgB,CAAA;AAKvB,OAAgB,EAAE,KAAK,wBAAwB,EAAE,MAAM,cAAc,CAAA;AAErE,OAAwB,EACtB,KAAK,gCAAgC,EACtC,MAAM,sBAAsB,CAAA;AAI7B,MAAM,MAAM,oBAAoB,CAC9B,MAAM,SAAS,SAAS,MAAM,EAAE,GAAG,SAAS,GAAG,SAAS,MAAM,EAAE,EAChE,MAAM,SAAS,SAAS,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,GAAG,SAAS,GAAG,SAAS,CAC/D,MAAM,GACN,MAAM,CACT,EAAE,EACH,YAAY,SAAS,OAAO,GAAG,SAAS,GAAG,IAAI,EAC/C,IAAI,SAAS,OAAO,GAAG,SAAS,GAAG,IAAI,IACrC;IACF,8BAA8B;IAC9B,IAAI,EAAE,MAAM,CAAA;IACZ,4BAA4B;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,kCAAkC;IAClC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,uCAAuC;IACvC,WAAW,CAAC,EAAE,YAAY,CAAA;IAC1B,8BAA8B;IAC9B,GAAG,CAAC,EAAE,IAAI,CAAA;IACV,0EAA0E;IAC1E,QAAQ,CAAC,EAAE;QACT,uBAAuB;QACvB,OAAO,EAAE,OAAO,CAAA;QAChB,0DAA0D;QAC1D,YAAY,CAAC,EAAE,OAAO,CAAA;KACvB,CAAA;IACD,kEAAkE;IAClE,WAAW,CAAC,EAAE,MAAM,EAAE,CAAA;CACvB,CAAA;AAED,KAAK,qBAAqB,GAAG;IAC3B,6CAA6C;IAC7C,WAAW,EAAE,gCAAgC,CAAA;CAC9C,CAAA;AAED,KAAK,aAAa,GAAG;IACnB,oCAAoC;IACpC,GAAG,EAAE,wBAAwB,CAAA;CAC9B,CAAA;AAED,KAAK,eAAe,GAAG;IACrB,sCAAsC;IACtC,KAAK,EAAE,WAAW,EAAE,CAAA;CACrB,CAAA;AAED,KAAK,eAAe,GAAG;IACrB,+BAA+B;IAC/B,KAAK,EAAE,WAAW,EAAE,CAAA;CACrB,CAAA;AAED,MAAM,MAAM,oBAAoB,CAC9B,MAAM,SAAS,SAAS,MAAM,EAAE,GAAG,SAAS,
|
|
1
|
+
{"version":3,"file":"getRecords.d.ts","sourceRoot":"","sources":["../../../../src/functions/public/getRecords.ts"],"names":[],"mappings":"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"}
|
|
@@ -51,16 +51,16 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
51
51
|
[x: `address[${string}]`]: undefined;
|
|
52
52
|
[x: `bool[${string}]`]: undefined;
|
|
53
53
|
[x: `bytes[${string}]`]: undefined;
|
|
54
|
-
[x: `bytes3[${string}]`]: undefined;
|
|
55
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
56
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
57
54
|
[x: `bytes1[${string}]`]: undefined;
|
|
58
55
|
[x: `bytes2[${string}]`]: undefined;
|
|
59
56
|
[x: `bytes4[${string}]`]: undefined;
|
|
57
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
58
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
59
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
60
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
60
61
|
[x: `bytes5[${string}]`]: undefined;
|
|
61
62
|
[x: `bytes6[${string}]`]: undefined;
|
|
62
63
|
[x: `bytes7[${string}]`]: undefined;
|
|
63
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
64
64
|
[x: `bytes9[${string}]`]: undefined;
|
|
65
65
|
[x: `bytes11[${string}]`]: undefined;
|
|
66
66
|
[x: `bytes12[${string}]`]: undefined;
|
|
@@ -84,8 +84,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
84
84
|
[x: `bytes31[${string}]`]: undefined;
|
|
85
85
|
[x: `bytes32[${string}]`]: undefined;
|
|
86
86
|
[x: `int[${string}]`]: undefined;
|
|
87
|
-
[x: `int16[${string}]`]: undefined;
|
|
88
87
|
[x: `int8[${string}]`]: undefined;
|
|
88
|
+
[x: `int16[${string}]`]: undefined;
|
|
89
89
|
[x: `int24[${string}]`]: undefined;
|
|
90
90
|
[x: `int32[${string}]`]: undefined;
|
|
91
91
|
[x: `int40[${string}]`]: undefined;
|
|
@@ -117,8 +117,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
117
117
|
[x: `int248[${string}]`]: undefined;
|
|
118
118
|
[x: `int256[${string}]`]: undefined;
|
|
119
119
|
[x: `uint[${string}]`]: undefined;
|
|
120
|
-
[x: `uint16[${string}]`]: undefined;
|
|
121
120
|
[x: `uint8[${string}]`]: undefined;
|
|
121
|
+
[x: `uint16[${string}]`]: undefined;
|
|
122
122
|
[x: `uint24[${string}]`]: undefined;
|
|
123
123
|
[x: `uint32[${string}]`]: undefined;
|
|
124
124
|
[x: `uint40[${string}]`]: undefined;
|
|
@@ -153,16 +153,16 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
153
153
|
address?: undefined;
|
|
154
154
|
bool?: undefined;
|
|
155
155
|
bytes?: undefined;
|
|
156
|
-
bytes3?: undefined;
|
|
157
|
-
bytes10?: undefined;
|
|
158
|
-
bytes16?: undefined;
|
|
159
156
|
bytes1?: undefined;
|
|
160
157
|
bytes2?: undefined;
|
|
161
158
|
bytes4?: undefined;
|
|
159
|
+
bytes8?: undefined;
|
|
160
|
+
bytes10?: undefined;
|
|
161
|
+
bytes16?: undefined;
|
|
162
|
+
bytes3?: undefined;
|
|
162
163
|
bytes5?: undefined;
|
|
163
164
|
bytes6?: undefined;
|
|
164
165
|
bytes7?: undefined;
|
|
165
|
-
bytes8?: undefined;
|
|
166
166
|
bytes9?: undefined;
|
|
167
167
|
bytes11?: undefined;
|
|
168
168
|
bytes12?: undefined;
|
|
@@ -185,8 +185,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
185
185
|
bytes30?: undefined;
|
|
186
186
|
bytes31?: undefined;
|
|
187
187
|
bytes32?: undefined;
|
|
188
|
-
int16?: undefined;
|
|
189
188
|
int8?: undefined;
|
|
189
|
+
int16?: undefined;
|
|
190
190
|
int24?: undefined;
|
|
191
191
|
int32?: undefined;
|
|
192
192
|
int40?: undefined;
|
|
@@ -217,8 +217,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
217
217
|
int240?: undefined;
|
|
218
218
|
int248?: undefined;
|
|
219
219
|
int256?: undefined;
|
|
220
|
-
uint16?: undefined;
|
|
221
220
|
uint8?: undefined;
|
|
221
|
+
uint16?: undefined;
|
|
222
222
|
uint24?: undefined;
|
|
223
223
|
uint32?: undefined;
|
|
224
224
|
uint40?: undefined;
|
|
@@ -333,16 +333,16 @@ declare namespace clearRecords {
|
|
|
333
333
|
[x: `address[${string}]`]: undefined;
|
|
334
334
|
[x: `bool[${string}]`]: undefined;
|
|
335
335
|
[x: `bytes[${string}]`]: undefined;
|
|
336
|
-
[x: `bytes3[${string}]`]: undefined;
|
|
337
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
338
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
339
336
|
[x: `bytes1[${string}]`]: undefined;
|
|
340
337
|
[x: `bytes2[${string}]`]: undefined;
|
|
341
338
|
[x: `bytes4[${string}]`]: undefined;
|
|
339
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
340
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
341
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
342
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
342
343
|
[x: `bytes5[${string}]`]: undefined;
|
|
343
344
|
[x: `bytes6[${string}]`]: undefined;
|
|
344
345
|
[x: `bytes7[${string}]`]: undefined;
|
|
345
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
346
346
|
[x: `bytes9[${string}]`]: undefined;
|
|
347
347
|
[x: `bytes11[${string}]`]: undefined;
|
|
348
348
|
[x: `bytes12[${string}]`]: undefined;
|
|
@@ -366,8 +366,8 @@ declare namespace clearRecords {
|
|
|
366
366
|
[x: `bytes31[${string}]`]: undefined;
|
|
367
367
|
[x: `bytes32[${string}]`]: undefined;
|
|
368
368
|
[x: `int[${string}]`]: undefined;
|
|
369
|
-
[x: `int16[${string}]`]: undefined;
|
|
370
369
|
[x: `int8[${string}]`]: undefined;
|
|
370
|
+
[x: `int16[${string}]`]: undefined;
|
|
371
371
|
[x: `int24[${string}]`]: undefined;
|
|
372
372
|
[x: `int32[${string}]`]: undefined;
|
|
373
373
|
[x: `int40[${string}]`]: undefined;
|
|
@@ -399,8 +399,8 @@ declare namespace clearRecords {
|
|
|
399
399
|
[x: `int248[${string}]`]: undefined;
|
|
400
400
|
[x: `int256[${string}]`]: undefined;
|
|
401
401
|
[x: `uint[${string}]`]: undefined;
|
|
402
|
-
[x: `uint16[${string}]`]: undefined;
|
|
403
402
|
[x: `uint8[${string}]`]: undefined;
|
|
403
|
+
[x: `uint16[${string}]`]: undefined;
|
|
404
404
|
[x: `uint24[${string}]`]: undefined;
|
|
405
405
|
[x: `uint32[${string}]`]: undefined;
|
|
406
406
|
[x: `uint40[${string}]`]: undefined;
|
|
@@ -435,16 +435,16 @@ declare namespace clearRecords {
|
|
|
435
435
|
address?: undefined;
|
|
436
436
|
bool?: undefined;
|
|
437
437
|
bytes?: undefined;
|
|
438
|
-
bytes3?: undefined;
|
|
439
|
-
bytes10?: undefined;
|
|
440
|
-
bytes16?: undefined;
|
|
441
438
|
bytes1?: undefined;
|
|
442
439
|
bytes2?: undefined;
|
|
443
440
|
bytes4?: undefined;
|
|
441
|
+
bytes8?: undefined;
|
|
442
|
+
bytes10?: undefined;
|
|
443
|
+
bytes16?: undefined;
|
|
444
|
+
bytes3?: undefined;
|
|
444
445
|
bytes5?: undefined;
|
|
445
446
|
bytes6?: undefined;
|
|
446
447
|
bytes7?: undefined;
|
|
447
|
-
bytes8?: undefined;
|
|
448
448
|
bytes9?: undefined;
|
|
449
449
|
bytes11?: undefined;
|
|
450
450
|
bytes12?: undefined;
|
|
@@ -467,8 +467,8 @@ declare namespace clearRecords {
|
|
|
467
467
|
bytes30?: undefined;
|
|
468
468
|
bytes31?: undefined;
|
|
469
469
|
bytes32?: undefined;
|
|
470
|
-
int16?: undefined;
|
|
471
470
|
int8?: undefined;
|
|
471
|
+
int16?: undefined;
|
|
472
472
|
int24?: undefined;
|
|
473
473
|
int32?: undefined;
|
|
474
474
|
int40?: undefined;
|
|
@@ -499,8 +499,8 @@ declare namespace clearRecords {
|
|
|
499
499
|
int240?: undefined;
|
|
500
500
|
int248?: undefined;
|
|
501
501
|
int256?: undefined;
|
|
502
|
-
uint16?: undefined;
|
|
503
502
|
uint8?: undefined;
|
|
503
|
+
uint16?: undefined;
|
|
504
504
|
uint24?: undefined;
|
|
505
505
|
uint32?: undefined;
|
|
506
506
|
uint40?: undefined;
|
|
@@ -47,16 +47,16 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
47
47
|
[x: `address[${string}]`]: undefined;
|
|
48
48
|
[x: `bool[${string}]`]: undefined;
|
|
49
49
|
[x: `bytes[${string}]`]: undefined;
|
|
50
|
-
[x: `bytes3[${string}]`]: undefined;
|
|
51
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
52
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
53
50
|
[x: `bytes1[${string}]`]: undefined;
|
|
54
51
|
[x: `bytes2[${string}]`]: undefined;
|
|
55
52
|
[x: `bytes4[${string}]`]: undefined;
|
|
53
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
54
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
55
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
56
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
56
57
|
[x: `bytes5[${string}]`]: undefined;
|
|
57
58
|
[x: `bytes6[${string}]`]: undefined;
|
|
58
59
|
[x: `bytes7[${string}]`]: undefined;
|
|
59
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
60
60
|
[x: `bytes9[${string}]`]: undefined;
|
|
61
61
|
[x: `bytes11[${string}]`]: undefined;
|
|
62
62
|
[x: `bytes12[${string}]`]: undefined;
|
|
@@ -80,8 +80,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
80
80
|
[x: `bytes31[${string}]`]: undefined;
|
|
81
81
|
[x: `bytes32[${string}]`]: undefined;
|
|
82
82
|
[x: `int[${string}]`]: undefined;
|
|
83
|
-
[x: `int16[${string}]`]: undefined;
|
|
84
83
|
[x: `int8[${string}]`]: undefined;
|
|
84
|
+
[x: `int16[${string}]`]: undefined;
|
|
85
85
|
[x: `int24[${string}]`]: undefined;
|
|
86
86
|
[x: `int32[${string}]`]: undefined;
|
|
87
87
|
[x: `int40[${string}]`]: undefined;
|
|
@@ -113,8 +113,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
113
113
|
[x: `int248[${string}]`]: undefined;
|
|
114
114
|
[x: `int256[${string}]`]: undefined;
|
|
115
115
|
[x: `uint[${string}]`]: undefined;
|
|
116
|
-
[x: `uint16[${string}]`]: undefined;
|
|
117
116
|
[x: `uint8[${string}]`]: undefined;
|
|
117
|
+
[x: `uint16[${string}]`]: undefined;
|
|
118
118
|
[x: `uint24[${string}]`]: undefined;
|
|
119
119
|
[x: `uint32[${string}]`]: undefined;
|
|
120
120
|
[x: `uint40[${string}]`]: undefined;
|
|
@@ -149,16 +149,16 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
149
149
|
address?: undefined;
|
|
150
150
|
bool?: undefined;
|
|
151
151
|
bytes?: undefined;
|
|
152
|
-
bytes3?: undefined;
|
|
153
|
-
bytes10?: undefined;
|
|
154
|
-
bytes16?: undefined;
|
|
155
152
|
bytes1?: undefined;
|
|
156
153
|
bytes2?: undefined;
|
|
157
154
|
bytes4?: undefined;
|
|
155
|
+
bytes8?: undefined;
|
|
156
|
+
bytes10?: undefined;
|
|
157
|
+
bytes16?: undefined;
|
|
158
|
+
bytes3?: undefined;
|
|
158
159
|
bytes5?: undefined;
|
|
159
160
|
bytes6?: undefined;
|
|
160
161
|
bytes7?: undefined;
|
|
161
|
-
bytes8?: undefined;
|
|
162
162
|
bytes9?: undefined;
|
|
163
163
|
bytes11?: undefined;
|
|
164
164
|
bytes12?: undefined;
|
|
@@ -181,8 +181,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
181
181
|
bytes30?: undefined;
|
|
182
182
|
bytes31?: undefined;
|
|
183
183
|
bytes32?: undefined;
|
|
184
|
-
int16?: undefined;
|
|
185
184
|
int8?: undefined;
|
|
185
|
+
int16?: undefined;
|
|
186
186
|
int24?: undefined;
|
|
187
187
|
int32?: undefined;
|
|
188
188
|
int40?: undefined;
|
|
@@ -213,8 +213,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
|
|
|
213
213
|
int240?: undefined;
|
|
214
214
|
int248?: undefined;
|
|
215
215
|
int256?: undefined;
|
|
216
|
-
uint16?: undefined;
|
|
217
216
|
uint8?: undefined;
|
|
217
|
+
uint16?: undefined;
|
|
218
218
|
uint24?: undefined;
|
|
219
219
|
uint32?: undefined;
|
|
220
220
|
uint40?: undefined;
|
|
@@ -333,16 +333,16 @@ declare namespace commitName {
|
|
|
333
333
|
[x: `address[${string}]`]: undefined;
|
|
334
334
|
[x: `bool[${string}]`]: undefined;
|
|
335
335
|
[x: `bytes[${string}]`]: undefined;
|
|
336
|
-
[x: `bytes3[${string}]`]: undefined;
|
|
337
|
-
[x: `bytes10[${string}]`]: undefined;
|
|
338
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
339
336
|
[x: `bytes1[${string}]`]: undefined;
|
|
340
337
|
[x: `bytes2[${string}]`]: undefined;
|
|
341
338
|
[x: `bytes4[${string}]`]: undefined;
|
|
339
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
340
|
+
[x: `bytes10[${string}]`]: undefined;
|
|
341
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
342
|
+
[x: `bytes3[${string}]`]: undefined;
|
|
342
343
|
[x: `bytes5[${string}]`]: undefined;
|
|
343
344
|
[x: `bytes6[${string}]`]: undefined;
|
|
344
345
|
[x: `bytes7[${string}]`]: undefined;
|
|
345
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
346
346
|
[x: `bytes9[${string}]`]: undefined;
|
|
347
347
|
[x: `bytes11[${string}]`]: undefined;
|
|
348
348
|
[x: `bytes12[${string}]`]: undefined;
|
|
@@ -366,8 +366,8 @@ declare namespace commitName {
|
|
|
366
366
|
[x: `bytes31[${string}]`]: undefined;
|
|
367
367
|
[x: `bytes32[${string}]`]: undefined;
|
|
368
368
|
[x: `int[${string}]`]: undefined;
|
|
369
|
-
[x: `int16[${string}]`]: undefined;
|
|
370
369
|
[x: `int8[${string}]`]: undefined;
|
|
370
|
+
[x: `int16[${string}]`]: undefined;
|
|
371
371
|
[x: `int24[${string}]`]: undefined;
|
|
372
372
|
[x: `int32[${string}]`]: undefined;
|
|
373
373
|
[x: `int40[${string}]`]: undefined;
|
|
@@ -399,8 +399,8 @@ declare namespace commitName {
|
|
|
399
399
|
[x: `int248[${string}]`]: undefined;
|
|
400
400
|
[x: `int256[${string}]`]: undefined;
|
|
401
401
|
[x: `uint[${string}]`]: undefined;
|
|
402
|
-
[x: `uint16[${string}]`]: undefined;
|
|
403
402
|
[x: `uint8[${string}]`]: undefined;
|
|
403
|
+
[x: `uint16[${string}]`]: undefined;
|
|
404
404
|
[x: `uint24[${string}]`]: undefined;
|
|
405
405
|
[x: `uint32[${string}]`]: undefined;
|
|
406
406
|
[x: `uint40[${string}]`]: undefined;
|
|
@@ -435,16 +435,16 @@ declare namespace commitName {
|
|
|
435
435
|
address?: undefined;
|
|
436
436
|
bool?: undefined;
|
|
437
437
|
bytes?: undefined;
|
|
438
|
-
bytes3?: undefined;
|
|
439
|
-
bytes10?: undefined;
|
|
440
|
-
bytes16?: undefined;
|
|
441
438
|
bytes1?: undefined;
|
|
442
439
|
bytes2?: undefined;
|
|
443
440
|
bytes4?: undefined;
|
|
441
|
+
bytes8?: undefined;
|
|
442
|
+
bytes10?: undefined;
|
|
443
|
+
bytes16?: undefined;
|
|
444
|
+
bytes3?: undefined;
|
|
444
445
|
bytes5?: undefined;
|
|
445
446
|
bytes6?: undefined;
|
|
446
447
|
bytes7?: undefined;
|
|
447
|
-
bytes8?: undefined;
|
|
448
448
|
bytes9?: undefined;
|
|
449
449
|
bytes11?: undefined;
|
|
450
450
|
bytes12?: undefined;
|
|
@@ -467,8 +467,8 @@ declare namespace commitName {
|
|
|
467
467
|
bytes30?: undefined;
|
|
468
468
|
bytes31?: undefined;
|
|
469
469
|
bytes32?: undefined;
|
|
470
|
-
int16?: undefined;
|
|
471
470
|
int8?: undefined;
|
|
471
|
+
int16?: undefined;
|
|
472
472
|
int24?: undefined;
|
|
473
473
|
int32?: undefined;
|
|
474
474
|
int40?: undefined;
|
|
@@ -499,8 +499,8 @@ declare namespace commitName {
|
|
|
499
499
|
int240?: undefined;
|
|
500
500
|
int248?: undefined;
|
|
501
501
|
int256?: undefined;
|
|
502
|
-
uint16?: undefined;
|
|
503
502
|
uint8?: undefined;
|
|
503
|
+
uint16?: undefined;
|
|
504
504
|
uint24?: undefined;
|
|
505
505
|
uint32?: undefined;
|
|
506
506
|
uint40?: undefined;
|