@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
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.subgraphs = exports.addresses = exports.supportedContracts = exports.supportedChains = void 0;
4
- exports.supportedChains = ['homestead', 'goerli'];
4
+ exports.supportedChains = ['homestead', 'goerli', 'sepolia'];
5
5
  exports.supportedContracts = [
6
6
  'ensBaseRegistrarImplementation',
7
7
  'ensDnsRegistrar',
@@ -11,9 +11,14 @@ exports.supportedContracts = [
11
11
  'ensReverseRegistrar',
12
12
  'ensBulkRenewal',
13
13
  'ensDnssecImpl',
14
+ 'ensUniversalResolver',
15
+ 'ensRegistry',
14
16
  ];
15
17
  exports.addresses = {
16
18
  homestead: {
19
+ ensRegistry: {
20
+ address: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e',
21
+ },
17
22
  ensBaseRegistrarImplementation: {
18
23
  address: '0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85',
19
24
  },
@@ -43,6 +48,9 @@ exports.addresses = {
43
48
  },
44
49
  },
45
50
  goerli: {
51
+ ensRegistry: {
52
+ address: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e',
53
+ },
46
54
  ensBaseRegistrarImplementation: {
47
55
  address: '0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85',
48
56
  },
@@ -71,6 +79,38 @@ exports.addresses = {
71
79
  address: '0x3952Be0b2186f8B113193a84b69bD71ad3fc1ae3',
72
80
  },
73
81
  },
82
+ sepolia: {
83
+ ensRegistry: {
84
+ address: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e',
85
+ },
86
+ ensBaseRegistrarImplementation: {
87
+ address: '0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85',
88
+ },
89
+ ensDnsRegistrar: {
90
+ address: '0x537625B0D7901FD20C57850d61580Bf1624Ef146',
91
+ },
92
+ ensEthRegistrarController: {
93
+ address: '0xFED6a969AaA60E4961FCD3EBF1A2e8913ac65B72',
94
+ },
95
+ ensNameWrapper: {
96
+ address: '0x0635513f179D50A207757E05759CbD106d7dFcE8',
97
+ },
98
+ ensPublicResolver: {
99
+ address: '0x8FADE66B79cC9f707aB26799354482EB93a5B7dD',
100
+ },
101
+ ensReverseRegistrar: {
102
+ address: '0xA0a1AbcDAe1a2a4A2EF8e9113Ff0e02DD81DC0C6',
103
+ },
104
+ ensBulkRenewal: {
105
+ address: '0x4EF77b90762Eddb33C8Eba5B5a19558DaE53D7a1',
106
+ },
107
+ ensDnssecImpl: {
108
+ address: '0x7b3ada1c8f012bae747cf99d6cbbf70d040b84cf',
109
+ },
110
+ ensUniversalResolver: {
111
+ address: '0x21B000Fd62a880b2125A61e36a284BB757b76025',
112
+ },
113
+ },
74
114
  };
75
115
  exports.subgraphs = {
76
116
  homestead: {
@@ -83,5 +123,10 @@ exports.subgraphs = {
83
123
  url: 'https://api.thegraph.com/subgraphs/name/ensdomains/ensgoerli',
84
124
  },
85
125
  },
126
+ sepolia: {
127
+ ens: {
128
+ url: 'https://api.studio.thegraph.com/query/49574/enssepolia/version/latest',
129
+ },
130
+ },
86
131
  };
87
132
  //# sourceMappingURL=consts.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"consts.js","sourceRoot":"","sources":["../../../src/contracts/consts.ts"],"names":[],"mappings":";;;AAca,QAAA,eAAe,GAAG,CAAC,WAAW,EAAE,QAAQ,CAAU,CAAA;AAClD,QAAA,kBAAkB,GAAG;IAChC,gCAAgC;IAChC,iBAAiB;IACjB,2BAA2B;IAC3B,gBAAgB;IAChB,mBAAmB;IACnB,qBAAqB;IACrB,gBAAgB;IAChB,eAAe;CACP,CAAA;AAKG,QAAA,SAAS,GAAG;IACvB,SAAS,EAAE;QACT,8BAA8B,EAAE;YAC9B,OAAO,EAAE,4CAA4C;SACtD;QACD,eAAe,EAAE;YACf,OAAO,EAAE,4CAA4C;SACtD;QACD,yBAAyB,EAAE;YACzB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,iBAAiB,EAAE;YACjB,OAAO,EAAE,4CAA4C;SACtD;QACD,mBAAmB,EAAE;YACnB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,aAAa,EAAE;YACb,OAAO,EAAE,4CAA4C;SACtD;QACD,oBAAoB,EAAE;YACpB,OAAO,EAAE,4CAA4C;SACtD;KACF;IACD,MAAM,EAAE;QACN,8BAA8B,EAAE;YAC9B,OAAO,EAAE,4CAA4C;SACtD;QACD,eAAe,EAAE;YACf,OAAO,EAAE,4CAA4C;SACtD;QACD,yBAAyB,EAAE;YACzB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,iBAAiB,EAAE;YACjB,OAAO,EAAE,4CAA4C;SACtD;QACD,mBAAmB,EAAE;YACnB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,aAAa,EAAE;YACb,OAAO,EAAE,4CAA4C;SACtD;QACD,oBAAoB,EAAE;YACpB,OAAO,EAAE,4CAA4C;SACtD;KACF;CACO,CAAA;AAcG,QAAA,SAAS,GAAG;IACvB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,GAAG,EAAE,wDAAwD;SAC9D;KACF;IACD,MAAM,EAAE;QACN,GAAG,EAAE;YACH,GAAG,EAAE,8DAA8D;SACpE;KACF;CACO,CAAA"}
1
+ {"version":3,"file":"consts.js","sourceRoot":"","sources":["../../../src/contracts/consts.ts"],"names":[],"mappings":";;;AAca,QAAA,eAAe,GAAG,CAAC,WAAW,EAAE,QAAQ,EAAE,SAAS,CAAU,CAAA;AAC7D,QAAA,kBAAkB,GAAG;IAChC,gCAAgC;IAChC,iBAAiB;IACjB,2BAA2B;IAC3B,gBAAgB;IAChB,mBAAmB;IACnB,qBAAqB;IACrB,gBAAgB;IAChB,eAAe;IACf,sBAAsB;IACtB,aAAa;CACL,CAAA;AAKG,QAAA,SAAS,GAAG;IACvB,SAAS,EAAE;QACT,WAAW,EAAE;YACX,OAAO,EAAE,4CAA4C;SACtD;QACD,8BAA8B,EAAE;YAC9B,OAAO,EAAE,4CAA4C;SACtD;QACD,eAAe,EAAE;YACf,OAAO,EAAE,4CAA4C;SACtD;QACD,yBAAyB,EAAE;YACzB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,iBAAiB,EAAE;YACjB,OAAO,EAAE,4CAA4C;SACtD;QACD,mBAAmB,EAAE;YACnB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,aAAa,EAAE;YACb,OAAO,EAAE,4CAA4C;SACtD;QACD,oBAAoB,EAAE;YACpB,OAAO,EAAE,4CAA4C;SACtD;KACF;IACD,MAAM,EAAE;QACN,WAAW,EAAE;YACX,OAAO,EAAE,4CAA4C;SACtD;QACD,8BAA8B,EAAE;YAC9B,OAAO,EAAE,4CAA4C;SACtD;QACD,eAAe,EAAE;YACf,OAAO,EAAE,4CAA4C;SACtD;QACD,yBAAyB,EAAE;YACzB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,iBAAiB,EAAE;YACjB,OAAO,EAAE,4CAA4C;SACtD;QACD,mBAAmB,EAAE;YACnB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,aAAa,EAAE;YACb,OAAO,EAAE,4CAA4C;SACtD;QACD,oBAAoB,EAAE;YACpB,OAAO,EAAE,4CAA4C;SACtD;KACF;IACD,OAAO,EAAE;QACP,WAAW,EAAE;YACX,OAAO,EAAE,4CAA4C;SACtD;QACD,8BAA8B,EAAE;YAC9B,OAAO,EAAE,4CAA4C;SACtD;QACD,eAAe,EAAE;YACf,OAAO,EAAE,4CAA4C;SACtD;QACD,yBAAyB,EAAE;YACzB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,iBAAiB,EAAE;YACjB,OAAO,EAAE,4CAA4C;SACtD;QACD,mBAAmB,EAAE;YACnB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,aAAa,EAAE;YACb,OAAO,EAAE,4CAA4C;SACtD;QACD,oBAAoB,EAAE;YACpB,OAAO,EAAE,4CAA4C;SACtD;KACF;CAIF,CAAA;AAQY,QAAA,SAAS,GAAG;IACvB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,GAAG,EAAE,wDAAwD;SAC9D;KACF;IACD,MAAM,EAAE;QACN,GAAG,EAAE;YACH,GAAG,EAAE,8DAA8D;SACpE;KACF;IACD,OAAO,EAAE;QACP,GAAG,EAAE;YACH,GAAG,EAAE,uEAAuE;SAC7E;KACF;CACmD,CAAA"}
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
- exports.version = '3.0.0-beta.2';
4
+ exports.version = 'v3.0.0-beta.3';
5
5
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/errors/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,cAAc,CAAA"}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/errors/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,eAAe,CAAA"}
@@ -1,4 +1,4 @@
1
- export const supportedChains = ['homestead', 'goerli'];
1
+ export const supportedChains = ['homestead', 'goerli', 'sepolia'];
2
2
  export const supportedContracts = [
3
3
  'ensBaseRegistrarImplementation',
4
4
  'ensDnsRegistrar',
@@ -8,9 +8,14 @@ export const supportedContracts = [
8
8
  'ensReverseRegistrar',
9
9
  'ensBulkRenewal',
10
10
  'ensDnssecImpl',
11
+ 'ensUniversalResolver',
12
+ 'ensRegistry',
11
13
  ];
12
14
  export const addresses = {
13
15
  homestead: {
16
+ ensRegistry: {
17
+ address: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e',
18
+ },
14
19
  ensBaseRegistrarImplementation: {
15
20
  address: '0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85',
16
21
  },
@@ -40,6 +45,9 @@ export const addresses = {
40
45
  },
41
46
  },
42
47
  goerli: {
48
+ ensRegistry: {
49
+ address: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e',
50
+ },
43
51
  ensBaseRegistrarImplementation: {
44
52
  address: '0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85',
45
53
  },
@@ -68,6 +76,38 @@ export const addresses = {
68
76
  address: '0x3952Be0b2186f8B113193a84b69bD71ad3fc1ae3',
69
77
  },
70
78
  },
79
+ sepolia: {
80
+ ensRegistry: {
81
+ address: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e',
82
+ },
83
+ ensBaseRegistrarImplementation: {
84
+ address: '0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85',
85
+ },
86
+ ensDnsRegistrar: {
87
+ address: '0x537625B0D7901FD20C57850d61580Bf1624Ef146',
88
+ },
89
+ ensEthRegistrarController: {
90
+ address: '0xFED6a969AaA60E4961FCD3EBF1A2e8913ac65B72',
91
+ },
92
+ ensNameWrapper: {
93
+ address: '0x0635513f179D50A207757E05759CbD106d7dFcE8',
94
+ },
95
+ ensPublicResolver: {
96
+ address: '0x8FADE66B79cC9f707aB26799354482EB93a5B7dD',
97
+ },
98
+ ensReverseRegistrar: {
99
+ address: '0xA0a1AbcDAe1a2a4A2EF8e9113Ff0e02DD81DC0C6',
100
+ },
101
+ ensBulkRenewal: {
102
+ address: '0x4EF77b90762Eddb33C8Eba5B5a19558DaE53D7a1',
103
+ },
104
+ ensDnssecImpl: {
105
+ address: '0x7b3ada1c8f012bae747cf99d6cbbf70d040b84cf',
106
+ },
107
+ ensUniversalResolver: {
108
+ address: '0x21B000Fd62a880b2125A61e36a284BB757b76025',
109
+ },
110
+ },
71
111
  };
72
112
  export const subgraphs = {
73
113
  homestead: {
@@ -80,5 +120,10 @@ export const subgraphs = {
80
120
  url: 'https://api.thegraph.com/subgraphs/name/ensdomains/ensgoerli',
81
121
  },
82
122
  },
123
+ sepolia: {
124
+ ens: {
125
+ url: 'https://api.studio.thegraph.com/query/49574/enssepolia/version/latest',
126
+ },
127
+ },
83
128
  };
84
129
  //# sourceMappingURL=consts.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"consts.js","sourceRoot":"","sources":["../../../src/contracts/consts.ts"],"names":[],"mappings":"AAcA,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,WAAW,EAAE,QAAQ,CAAU,CAAA;AAC/D,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,gCAAgC;IAChC,iBAAiB;IACjB,2BAA2B;IAC3B,gBAAgB;IAChB,mBAAmB;IACnB,qBAAqB;IACrB,gBAAgB;IAChB,eAAe;CACP,CAAA;AAKV,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,SAAS,EAAE;QACT,8BAA8B,EAAE;YAC9B,OAAO,EAAE,4CAA4C;SACtD;QACD,eAAe,EAAE;YACf,OAAO,EAAE,4CAA4C;SACtD;QACD,yBAAyB,EAAE;YACzB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,iBAAiB,EAAE;YACjB,OAAO,EAAE,4CAA4C;SACtD;QACD,mBAAmB,EAAE;YACnB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,aAAa,EAAE;YACb,OAAO,EAAE,4CAA4C;SACtD;QACD,oBAAoB,EAAE;YACpB,OAAO,EAAE,4CAA4C;SACtD;KACF;IACD,MAAM,EAAE;QACN,8BAA8B,EAAE;YAC9B,OAAO,EAAE,4CAA4C;SACtD;QACD,eAAe,EAAE;YACf,OAAO,EAAE,4CAA4C;SACtD;QACD,yBAAyB,EAAE;YACzB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,iBAAiB,EAAE;YACjB,OAAO,EAAE,4CAA4C;SACtD;QACD,mBAAmB,EAAE;YACnB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,aAAa,EAAE;YACb,OAAO,EAAE,4CAA4C;SACtD;QACD,oBAAoB,EAAE;YACpB,OAAO,EAAE,4CAA4C;SACtD;KACF;CACO,CAAA;AAcV,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,GAAG,EAAE,wDAAwD;SAC9D;KACF;IACD,MAAM,EAAE;QACN,GAAG,EAAE;YACH,GAAG,EAAE,8DAA8D;SACpE;KACF;CACO,CAAA"}
1
+ {"version":3,"file":"consts.js","sourceRoot":"","sources":["../../../src/contracts/consts.ts"],"names":[],"mappings":"AAcA,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,WAAW,EAAE,QAAQ,EAAE,SAAS,CAAU,CAAA;AAC1E,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,gCAAgC;IAChC,iBAAiB;IACjB,2BAA2B;IAC3B,gBAAgB;IAChB,mBAAmB;IACnB,qBAAqB;IACrB,gBAAgB;IAChB,eAAe;IACf,sBAAsB;IACtB,aAAa;CACL,CAAA;AAKV,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,SAAS,EAAE;QACT,WAAW,EAAE;YACX,OAAO,EAAE,4CAA4C;SACtD;QACD,8BAA8B,EAAE;YAC9B,OAAO,EAAE,4CAA4C;SACtD;QACD,eAAe,EAAE;YACf,OAAO,EAAE,4CAA4C;SACtD;QACD,yBAAyB,EAAE;YACzB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,iBAAiB,EAAE;YACjB,OAAO,EAAE,4CAA4C;SACtD;QACD,mBAAmB,EAAE;YACnB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,aAAa,EAAE;YACb,OAAO,EAAE,4CAA4C;SACtD;QACD,oBAAoB,EAAE;YACpB,OAAO,EAAE,4CAA4C;SACtD;KACF;IACD,MAAM,EAAE;QACN,WAAW,EAAE;YACX,OAAO,EAAE,4CAA4C;SACtD;QACD,8BAA8B,EAAE;YAC9B,OAAO,EAAE,4CAA4C;SACtD;QACD,eAAe,EAAE;YACf,OAAO,EAAE,4CAA4C;SACtD;QACD,yBAAyB,EAAE;YACzB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,iBAAiB,EAAE;YACjB,OAAO,EAAE,4CAA4C;SACtD;QACD,mBAAmB,EAAE;YACnB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,aAAa,EAAE;YACb,OAAO,EAAE,4CAA4C;SACtD;QACD,oBAAoB,EAAE;YACpB,OAAO,EAAE,4CAA4C;SACtD;KACF;IACD,OAAO,EAAE;QACP,WAAW,EAAE;YACX,OAAO,EAAE,4CAA4C;SACtD;QACD,8BAA8B,EAAE;YAC9B,OAAO,EAAE,4CAA4C;SACtD;QACD,eAAe,EAAE;YACf,OAAO,EAAE,4CAA4C;SACtD;QACD,yBAAyB,EAAE;YACzB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,iBAAiB,EAAE;YACjB,OAAO,EAAE,4CAA4C;SACtD;QACD,mBAAmB,EAAE;YACnB,OAAO,EAAE,4CAA4C;SACtD;QACD,cAAc,EAAE;YACd,OAAO,EAAE,4CAA4C;SACtD;QACD,aAAa,EAAE;YACb,OAAO,EAAE,4CAA4C;SACtD;QACD,oBAAoB,EAAE;YACpB,OAAO,EAAE,4CAA4C;SACtD;KACF;CAIF,CAAA;AAQD,MAAM,CAAC,MAAM,SAAS,GAAG;IACvB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,GAAG,EAAE,wDAAwD;SAC9D;KACF;IACD,MAAM,EAAE;QACN,GAAG,EAAE;YACH,GAAG,EAAE,8DAA8D;SACpE;KACF;IACD,OAAO,EAAE;QACP,GAAG,EAAE;YACH,GAAG,EAAE,uEAAuE;SAC7E;KACF;CACmD,CAAA"}
@@ -1,2 +1,2 @@
1
- export const version = '3.0.0-beta.2';
1
+ export const version = 'v3.0.0-beta.3';
2
2
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/errors/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,cAAc,CAAA"}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/errors/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,eAAe,CAAA"}
@@ -508,17 +508,17 @@ export declare const ensWalletActions: <TTransport extends Transport = Transport
508
508
  [x: `address[${string}]`]: undefined;
509
509
  [x: `bool[${string}]`]: undefined;
510
510
  [x: `bytes[${string}]`]: undefined;
511
- [x: `bytes2[${string}]`]: undefined;
512
- [x: `bytes8[${string}]`]: undefined;
511
+ [x: `bytes3[${string}]`]: undefined;
512
+ [x: `bytes10[${string}]`]: undefined;
513
513
  [x: `bytes16[${string}]`]: undefined;
514
514
  [x: `bytes1[${string}]`]: undefined;
515
- [x: `bytes3[${string}]`]: undefined;
515
+ [x: `bytes2[${string}]`]: undefined;
516
516
  [x: `bytes4[${string}]`]: undefined;
517
517
  [x: `bytes5[${string}]`]: undefined;
518
518
  [x: `bytes6[${string}]`]: undefined;
519
519
  [x: `bytes7[${string}]`]: undefined;
520
+ [x: `bytes8[${string}]`]: undefined;
520
521
  [x: `bytes9[${string}]`]: undefined;
521
- [x: `bytes10[${string}]`]: undefined;
522
522
  [x: `bytes11[${string}]`]: undefined;
523
523
  [x: `bytes12[${string}]`]: undefined;
524
524
  [x: `bytes13[${string}]`]: undefined;
@@ -541,8 +541,8 @@ export declare const ensWalletActions: <TTransport extends Transport = Transport
541
541
  [x: `bytes31[${string}]`]: undefined;
542
542
  [x: `bytes32[${string}]`]: undefined;
543
543
  [x: `int[${string}]`]: undefined;
544
- [x: `int8[${string}]`]: undefined;
545
544
  [x: `int16[${string}]`]: undefined;
545
+ [x: `int8[${string}]`]: undefined;
546
546
  [x: `int24[${string}]`]: undefined;
547
547
  [x: `int32[${string}]`]: undefined;
548
548
  [x: `int40[${string}]`]: undefined;
@@ -574,8 +574,8 @@ export declare const ensWalletActions: <TTransport extends Transport = Transport
574
574
  [x: `int248[${string}]`]: undefined;
575
575
  [x: `int256[${string}]`]: undefined;
576
576
  [x: `uint[${string}]`]: undefined;
577
- [x: `uint8[${string}]`]: undefined;
578
577
  [x: `uint16[${string}]`]: undefined;
578
+ [x: `uint8[${string}]`]: undefined;
579
579
  [x: `uint24[${string}]`]: undefined;
580
580
  [x: `uint32[${string}]`]: undefined;
581
581
  [x: `uint40[${string}]`]: undefined;
@@ -610,17 +610,17 @@ export declare const ensWalletActions: <TTransport extends Transport = Transport
610
610
  address?: undefined;
611
611
  bool?: undefined;
612
612
  bytes?: undefined;
613
- bytes2?: undefined;
614
- bytes8?: undefined;
613
+ bytes3?: undefined;
614
+ bytes10?: undefined;
615
615
  bytes16?: undefined;
616
616
  bytes1?: undefined;
617
- bytes3?: undefined;
617
+ bytes2?: undefined;
618
618
  bytes4?: undefined;
619
619
  bytes5?: undefined;
620
620
  bytes6?: undefined;
621
621
  bytes7?: undefined;
622
+ bytes8?: undefined;
622
623
  bytes9?: undefined;
623
- bytes10?: undefined;
624
624
  bytes11?: undefined;
625
625
  bytes12?: undefined;
626
626
  bytes13?: undefined;
@@ -642,8 +642,8 @@ export declare const ensWalletActions: <TTransport extends Transport = Transport
642
642
  bytes30?: undefined;
643
643
  bytes31?: undefined;
644
644
  bytes32?: undefined;
645
- int8?: undefined;
646
645
  int16?: undefined;
646
+ int8?: undefined;
647
647
  int24?: undefined;
648
648
  int32?: undefined;
649
649
  int40?: undefined;
@@ -674,8 +674,8 @@ export declare const ensWalletActions: <TTransport extends Transport = Transport
674
674
  int240?: undefined;
675
675
  int248?: undefined;
676
676
  int256?: undefined;
677
- uint8?: undefined;
678
677
  uint16?: undefined;
678
+ uint8?: undefined;
679
679
  uint24?: undefined;
680
680
  uint32?: undefined;
681
681
  uint40?: undefined;
@@ -83,17 +83,17 @@ export declare const createEnsWalletClient: <TTransport extends Transport, TChai
83
83
  [x: `address[${string}]`]: undefined;
84
84
  [x: `bool[${string}]`]: undefined;
85
85
  [x: `bytes[${string}]`]: undefined;
86
- [x: `bytes2[${string}]`]: undefined;
87
- [x: `bytes8[${string}]`]: undefined;
86
+ [x: `bytes3[${string}]`]: undefined;
87
+ [x: `bytes10[${string}]`]: undefined;
88
88
  [x: `bytes16[${string}]`]: undefined;
89
89
  [x: `bytes1[${string}]`]: undefined;
90
- [x: `bytes3[${string}]`]: undefined;
90
+ [x: `bytes2[${string}]`]: undefined;
91
91
  [x: `bytes4[${string}]`]: undefined;
92
92
  [x: `bytes5[${string}]`]: undefined;
93
93
  [x: `bytes6[${string}]`]: undefined;
94
94
  [x: `bytes7[${string}]`]: undefined;
95
+ [x: `bytes8[${string}]`]: undefined;
95
96
  [x: `bytes9[${string}]`]: undefined;
96
- [x: `bytes10[${string}]`]: undefined;
97
97
  [x: `bytes11[${string}]`]: undefined;
98
98
  [x: `bytes12[${string}]`]: undefined;
99
99
  [x: `bytes13[${string}]`]: undefined;
@@ -116,8 +116,8 @@ export declare const createEnsWalletClient: <TTransport extends Transport, TChai
116
116
  [x: `bytes31[${string}]`]: undefined;
117
117
  [x: `bytes32[${string}]`]: undefined;
118
118
  [x: `int[${string}]`]: undefined;
119
- [x: `int8[${string}]`]: undefined;
120
119
  [x: `int16[${string}]`]: undefined;
120
+ [x: `int8[${string}]`]: undefined;
121
121
  [x: `int24[${string}]`]: undefined;
122
122
  [x: `int32[${string}]`]: undefined;
123
123
  [x: `int40[${string}]`]: undefined;
@@ -149,8 +149,8 @@ export declare const createEnsWalletClient: <TTransport extends Transport, TChai
149
149
  [x: `int248[${string}]`]: undefined;
150
150
  [x: `int256[${string}]`]: undefined;
151
151
  [x: `uint[${string}]`]: undefined;
152
- [x: `uint8[${string}]`]: undefined;
153
152
  [x: `uint16[${string}]`]: undefined;
153
+ [x: `uint8[${string}]`]: undefined;
154
154
  [x: `uint24[${string}]`]: undefined;
155
155
  [x: `uint32[${string}]`]: undefined;
156
156
  [x: `uint40[${string}]`]: undefined;
@@ -185,17 +185,17 @@ export declare const createEnsWalletClient: <TTransport extends Transport, TChai
185
185
  address?: undefined;
186
186
  bool?: undefined;
187
187
  bytes?: undefined;
188
- bytes2?: undefined;
189
- bytes8?: undefined;
188
+ bytes3?: undefined;
189
+ bytes10?: undefined;
190
190
  bytes16?: undefined;
191
191
  bytes1?: undefined;
192
- bytes3?: undefined;
192
+ bytes2?: undefined;
193
193
  bytes4?: undefined;
194
194
  bytes5?: undefined;
195
195
  bytes6?: undefined;
196
196
  bytes7?: undefined;
197
+ bytes8?: undefined;
197
198
  bytes9?: undefined;
198
- bytes10?: undefined;
199
199
  bytes11?: undefined;
200
200
  bytes12?: undefined;
201
201
  bytes13?: undefined;
@@ -217,8 +217,8 @@ export declare const createEnsWalletClient: <TTransport extends Transport, TChai
217
217
  bytes30?: undefined;
218
218
  bytes31?: undefined;
219
219
  bytes32?: undefined;
220
- int8?: undefined;
221
220
  int16?: undefined;
221
+ int8?: undefined;
222
222
  int24?: undefined;
223
223
  int32?: undefined;
224
224
  int40?: undefined;
@@ -249,8 +249,8 @@ export declare const createEnsWalletClient: <TTransport extends Transport, TChai
249
249
  int240?: undefined;
250
250
  int248?: undefined;
251
251
  int256?: undefined;
252
- uint8?: undefined;
253
252
  uint16?: undefined;
253
+ uint8?: undefined;
254
254
  uint24?: undefined;
255
255
  uint32?: undefined;
256
256
  uint40?: undefined;
@@ -3,12 +3,15 @@ type ChainContract = {
3
3
  address: Address;
4
4
  blockCreated?: number;
5
5
  };
6
- export declare const supportedChains: readonly ["homestead", "goerli"];
7
- export declare const supportedContracts: readonly ["ensBaseRegistrarImplementation", "ensDnsRegistrar", "ensEthRegistrarController", "ensNameWrapper", "ensPublicResolver", "ensReverseRegistrar", "ensBulkRenewal", "ensDnssecImpl"];
6
+ export declare const supportedChains: readonly ["homestead", "goerli", "sepolia"];
7
+ export declare const supportedContracts: readonly ["ensBaseRegistrarImplementation", "ensDnsRegistrar", "ensEthRegistrarController", "ensNameWrapper", "ensPublicResolver", "ensReverseRegistrar", "ensBulkRenewal", "ensDnssecImpl", "ensUniversalResolver", "ensRegistry"];
8
8
  export type SupportedChain = (typeof supportedChains)[number];
9
9
  export type SupportedContract = (typeof supportedContracts)[number];
10
10
  export declare const addresses: {
11
11
  readonly homestead: {
12
+ readonly ensRegistry: {
13
+ readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
14
+ };
12
15
  readonly ensBaseRegistrarImplementation: {
13
16
  readonly address: "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85";
14
17
  };
@@ -38,6 +41,9 @@ export declare const addresses: {
38
41
  };
39
42
  };
40
43
  readonly goerli: {
44
+ readonly ensRegistry: {
45
+ readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
46
+ };
41
47
  readonly ensBaseRegistrarImplementation: {
42
48
  readonly address: "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85";
43
49
  };
@@ -66,6 +72,38 @@ export declare const addresses: {
66
72
  readonly address: "0x3952Be0b2186f8B113193a84b69bD71ad3fc1ae3";
67
73
  };
68
74
  };
75
+ readonly sepolia: {
76
+ readonly ensRegistry: {
77
+ readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
78
+ };
79
+ readonly ensBaseRegistrarImplementation: {
80
+ readonly address: "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85";
81
+ };
82
+ readonly ensDnsRegistrar: {
83
+ readonly address: "0x537625B0D7901FD20C57850d61580Bf1624Ef146";
84
+ };
85
+ readonly ensEthRegistrarController: {
86
+ readonly address: "0xFED6a969AaA60E4961FCD3EBF1A2e8913ac65B72";
87
+ };
88
+ readonly ensNameWrapper: {
89
+ readonly address: "0x0635513f179D50A207757E05759CbD106d7dFcE8";
90
+ };
91
+ readonly ensPublicResolver: {
92
+ readonly address: "0x8FADE66B79cC9f707aB26799354482EB93a5B7dD";
93
+ };
94
+ readonly ensReverseRegistrar: {
95
+ readonly address: "0xA0a1AbcDAe1a2a4A2EF8e9113Ff0e02DD81DC0C6";
96
+ };
97
+ readonly ensBulkRenewal: {
98
+ readonly address: "0x4EF77b90762Eddb33C8Eba5B5a19558DaE53D7a1";
99
+ };
100
+ readonly ensDnssecImpl: {
101
+ readonly address: "0x7b3ada1c8f012bae747cf99d6cbbf70d040b84cf";
102
+ };
103
+ readonly ensUniversalResolver: {
104
+ readonly address: "0x21B000Fd62a880b2125A61e36a284BB757b76025";
105
+ };
106
+ };
69
107
  };
70
108
  type Subgraphs = {
71
109
  ens: {
@@ -83,6 +121,11 @@ export declare const subgraphs: {
83
121
  readonly url: "https://api.thegraph.com/subgraphs/name/ensdomains/ensgoerli";
84
122
  };
85
123
  };
124
+ readonly sepolia: {
125
+ readonly ens: {
126
+ readonly url: "https://api.studio.thegraph.com/query/49574/enssepolia/version/latest";
127
+ };
128
+ };
86
129
  };
87
130
  type EnsChainContracts = {
88
131
  ensBaseRegistrarImplementation: ChainContract;
@@ -1 +1 @@
1
- {"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../src/contracts/consts.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,OAAO,EACP,OAAO,EACP,KAAK,EACL,MAAM,EACN,SAAS,EACT,YAAY,EACb,MAAM,MAAM,CAAA;AAEb,KAAK,aAAa,GAAG;IACnB,OAAO,EAAE,OAAO,CAAA;IAChB,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB,CAAA;AAED,eAAO,MAAM,eAAe,kCAAmC,CAAA;AAC/D,eAAO,MAAM,kBAAkB,8LASrB,CAAA;AAEV,MAAM,MAAM,cAAc,GAAG,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,CAAC,CAAA;AAC7D,MAAM,MAAM,iBAAiB,GAAG,CAAC,OAAO,kBAAkB,CAAC,CAAC,MAAM,CAAC,CAAA;AAEnE,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2DZ,CAAA;AAQV,KAAK,SAAS,GAAG;IACf,GAAG,EAAE;QACH,GAAG,EAAE,MAAM,CAAA;KACZ,CAAA;CACF,CAAA;AAED,eAAO,MAAM,SAAS;;;;;;;;;;;CAWZ,CAAA;AAKV,KAAK,iBAAiB,GAAG;IACvB,8BAA8B,EAAE,aAAa,CAAA;IAC7C,eAAe,EAAE,aAAa,CAAA;IAC9B,yBAAyB,EAAE,aAAa,CAAA;IACxC,cAAc,EAAE,aAAa,CAAA;IAC7B,iBAAiB,EAAE,aAAa,CAAA;IAChC,mBAAmB,EAAE,aAAa,CAAA;IAClC,cAAc,EAAE,aAAa,CAAA;IAC7B,aAAa,EAAE,aAAa,CAAA;CAC7B,CAAA;AAED,KAAK,kBAAkB,GAAG;IACxB,UAAU,EAAE,aAAa,CAAA;IACzB,oBAAoB,EAAE,aAAa,CAAA;IACnC,WAAW,EAAE,aAAa,CAAA;CAC3B,CAAA;AAED,MAAM,MAAM,YAAY,CAAC,MAAM,SAAS,KAAK,GAAG,KAAK,IAAI,MAAM,GAAG;IAChE,SAAS,EAAE,kBAAkB,GAAG,iBAAiB,CAAA;IACjD,SAAS,EAAE,SAAS,CAAA;CACrB,CAAA;AAED,MAAM,MAAM,mBAAmB,CAAC,MAAM,SAAS,KAAK,IAClD,MAAM,CAAC,SAAS,CAAC,SAAS,cAAc,GACpC,MAAM,GAAG;IACP,SAAS,EAAE,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAA;IAChD,SAAS,EAAE,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAA;CACjD,GACD,KAAK,CAAA;AAEX,MAAM,MAAM,aAAa,CACvB,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,YAAY,GAAG,YAAY,IACxC,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,CAAA;AAE9B,MAAM,MAAM,aAAa,CACvB,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,YAAY,GAAG,YAAY,EAC1C,QAAQ,SAAS,OAAO,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,IACxD,YAAY,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAA"}
1
+ {"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../src/contracts/consts.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,OAAO,EACP,OAAO,EACP,KAAK,EACL,MAAM,EACN,SAAS,EACT,YAAY,EACb,MAAM,MAAM,CAAA;AAEb,KAAK,aAAa,GAAG;IACnB,OAAO,EAAE,OAAO,CAAA;IAChB,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB,CAAA;AAED,eAAO,MAAM,eAAe,6CAA8C,CAAA;AAC1E,eAAO,MAAM,kBAAkB,qOAWrB,CAAA;AAEV,MAAM,MAAM,cAAc,GAAG,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,CAAC,CAAA;AAC7D,MAAM,MAAM,iBAAiB,GAAG,CAAC,OAAO,kBAAkB,CAAC,CAAC,MAAM,CAAC,CAAA;AAEnE,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoGrB,CAAA;AAED,KAAK,SAAS,GAAG;IACf,GAAG,EAAE;QACH,GAAG,EAAE,MAAM,CAAA;KACZ,CAAA;CACF,CAAA;AAED,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;CAgBgC,CAAA;AAEtD,KAAK,iBAAiB,GAAG;IACvB,8BAA8B,EAAE,aAAa,CAAA;IAC7C,eAAe,EAAE,aAAa,CAAA;IAC9B,yBAAyB,EAAE,aAAa,CAAA;IACxC,cAAc,EAAE,aAAa,CAAA;IAC7B,iBAAiB,EAAE,aAAa,CAAA;IAChC,mBAAmB,EAAE,aAAa,CAAA;IAClC,cAAc,EAAE,aAAa,CAAA;IAC7B,aAAa,EAAE,aAAa,CAAA;CAC7B,CAAA;AAED,KAAK,kBAAkB,GAAG;IACxB,UAAU,EAAE,aAAa,CAAA;IACzB,oBAAoB,EAAE,aAAa,CAAA;IACnC,WAAW,EAAE,aAAa,CAAA;CAC3B,CAAA;AAED,MAAM,MAAM,YAAY,CAAC,MAAM,SAAS,KAAK,GAAG,KAAK,IAAI,MAAM,GAAG;IAChE,SAAS,EAAE,kBAAkB,GAAG,iBAAiB,CAAA;IACjD,SAAS,EAAE,SAAS,CAAA;CACrB,CAAA;AAED,MAAM,MAAM,mBAAmB,CAAC,MAAM,SAAS,KAAK,IAClD,MAAM,CAAC,SAAS,CAAC,SAAS,cAAc,GACpC,MAAM,GAAG;IACP,SAAS,EAAE,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAA;IAChD,SAAS,EAAE,CAAC,OAAO,SAAS,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAA;CACjD,GACD,KAAK,CAAA;AAEX,MAAM,MAAM,aAAa,CACvB,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,YAAY,GAAG,YAAY,IACxC,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,CAAA;AAE9B,MAAM,MAAM,aAAa,CACvB,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,YAAY,GAAG,YAAY,EAC1C,QAAQ,SAAS,OAAO,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,IACxD,YAAY,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAA"}
@@ -1,2 +1,2 @@
1
- export declare const version = "3.0.0-beta.2";
1
+ export declare const version = "v3.0.0-beta.3";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/errors/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,iBAAiB,CAAA"}
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/errors/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,kBAAkB,CAAA"}
@@ -85,17 +85,17 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
85
85
  [x: `address[${string}]`]: undefined;
86
86
  [x: `bool[${string}]`]: undefined;
87
87
  [x: `bytes[${string}]`]: undefined;
88
- [x: `bytes2[${string}]`]: undefined;
89
- [x: `bytes8[${string}]`]: undefined;
88
+ [x: `bytes3[${string}]`]: undefined;
89
+ [x: `bytes10[${string}]`]: undefined;
90
90
  [x: `bytes16[${string}]`]: undefined;
91
91
  [x: `bytes1[${string}]`]: undefined;
92
- [x: `bytes3[${string}]`]: undefined;
92
+ [x: `bytes2[${string}]`]: undefined;
93
93
  [x: `bytes4[${string}]`]: undefined;
94
94
  [x: `bytes5[${string}]`]: undefined;
95
95
  [x: `bytes6[${string}]`]: undefined;
96
96
  [x: `bytes7[${string}]`]: undefined;
97
+ [x: `bytes8[${string}]`]: undefined;
97
98
  [x: `bytes9[${string}]`]: undefined;
98
- [x: `bytes10[${string}]`]: undefined;
99
99
  [x: `bytes11[${string}]`]: undefined;
100
100
  [x: `bytes12[${string}]`]: undefined;
101
101
  [x: `bytes13[${string}]`]: undefined;
@@ -118,8 +118,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
118
118
  [x: `bytes31[${string}]`]: undefined;
119
119
  [x: `bytes32[${string}]`]: undefined;
120
120
  [x: `int[${string}]`]: undefined;
121
- [x: `int8[${string}]`]: undefined;
122
121
  [x: `int16[${string}]`]: undefined;
122
+ [x: `int8[${string}]`]: undefined;
123
123
  [x: `int24[${string}]`]: undefined;
124
124
  [x: `int32[${string}]`]: undefined;
125
125
  [x: `int40[${string}]`]: undefined;
@@ -151,8 +151,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
151
151
  [x: `int248[${string}]`]: undefined;
152
152
  [x: `int256[${string}]`]: undefined;
153
153
  [x: `uint[${string}]`]: undefined;
154
- [x: `uint8[${string}]`]: undefined;
155
154
  [x: `uint16[${string}]`]: undefined;
155
+ [x: `uint8[${string}]`]: undefined;
156
156
  [x: `uint24[${string}]`]: undefined;
157
157
  [x: `uint32[${string}]`]: undefined;
158
158
  [x: `uint40[${string}]`]: undefined;
@@ -187,17 +187,17 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
187
187
  address?: undefined;
188
188
  bool?: undefined;
189
189
  bytes?: undefined;
190
- bytes2?: undefined;
191
- bytes8?: undefined;
190
+ bytes3?: undefined;
191
+ bytes10?: undefined;
192
192
  bytes16?: undefined;
193
193
  bytes1?: undefined;
194
- bytes3?: undefined;
194
+ bytes2?: undefined;
195
195
  bytes4?: undefined;
196
196
  bytes5?: undefined;
197
197
  bytes6?: undefined;
198
198
  bytes7?: undefined;
199
+ bytes8?: undefined;
199
200
  bytes9?: undefined;
200
- bytes10?: undefined;
201
201
  bytes11?: undefined;
202
202
  bytes12?: undefined;
203
203
  bytes13?: undefined;
@@ -219,8 +219,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
219
219
  bytes30?: undefined;
220
220
  bytes31?: undefined;
221
221
  bytes32?: undefined;
222
- int8?: undefined;
223
222
  int16?: undefined;
223
+ int8?: undefined;
224
224
  int24?: undefined;
225
225
  int32?: undefined;
226
226
  int40?: undefined;
@@ -251,8 +251,8 @@ export declare const makeFunctionData: <TChain extends ChainWithEns, TAccount ex
251
251
  int240?: undefined;
252
252
  int248?: undefined;
253
253
  int256?: undefined;
254
- uint8?: undefined;
255
254
  uint16?: undefined;
255
+ uint8?: undefined;
256
256
  uint24?: undefined;
257
257
  uint32?: undefined;
258
258
  uint40?: undefined;
@@ -379,17 +379,17 @@ declare namespace importDnsName {
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 importDnsName {
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 importDnsName {
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 importDnsName {
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 importDnsName {
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 importDnsName {
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;