@zentity/fhevm-contracts 0.3.0 → 0.4.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/abi/ComplianceRules.json +25 -16
- package/abi/CompliantERC20.json +30 -16
- package/abi/IdentityRegistry.json +496 -119
- package/contracts/compliance/ComplianceRules.sol +40 -189
- package/contracts/core/IdentityRegistry.sol +280 -232
- package/contracts/interfaces/IComplianceRules.sol +30 -0
- package/contracts/interfaces/IIdentityRegistry.sol +133 -159
- package/contracts/proxy/ERC1967Proxy.sol +6 -0
- package/contracts/test/MockFacilitator.sol +40 -0
- package/contracts/tokens/CompliantERC20.sol +28 -242
- package/deployments/hardhat/addresses.json +3 -8
- package/deployments/sepolia/ComplianceRules.json +91 -207
- package/deployments/sepolia/CompliantERC20.json +114 -293
- package/deployments/sepolia/IdentityRegistry.json +498 -742
- package/deployments/sepolia/IdentityRegistry_Implementation.json +1698 -0
- package/deployments/sepolia/IdentityRegistry_Proxy.json +192 -0
- package/deployments/sepolia/addresses.json +5 -6
- package/dist/index.d.ts +175 -9
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +44 -1
- package/package.json +1 -1
- package/typechain-types/@openzeppelin/contracts/access/Ownable.ts +153 -0
- package/typechain-types/@openzeppelin/contracts/access/Ownable2Step.ts +217 -0
- package/typechain-types/@openzeppelin/contracts/access/index.ts +5 -0
- package/typechain-types/@openzeppelin/contracts/index.ts +11 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC1967.ts +168 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.ts +151 -0
- package/typechain-types/{contracts/tokens/CompliantERC20.sol/IComplianceChecker.ts → @openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.ts} +12 -17
- package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/index.ts +4 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/index.ts +7 -0
- package/typechain-types/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.ts +105 -0
- package/typechain-types/@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.ts +69 -0
- package/typechain-types/@openzeppelin/contracts/proxy/ERC1967/index.ts +5 -0
- package/typechain-types/@openzeppelin/contracts/proxy/Proxy.ts +69 -0
- package/typechain-types/@openzeppelin/contracts/proxy/beacon/IBeacon.ts +90 -0
- package/typechain-types/@openzeppelin/contracts/proxy/beacon/index.ts +4 -0
- package/typechain-types/@openzeppelin/contracts/proxy/index.ts +8 -0
- package/typechain-types/@openzeppelin/contracts/utils/Address.ts +69 -0
- package/typechain-types/@openzeppelin/contracts/utils/Errors.ts +69 -0
- package/typechain-types/@openzeppelin/contracts/utils/Strings.ts +69 -0
- package/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.ts +69 -0
- package/typechain-types/@openzeppelin/contracts/utils/cryptography/index.ts +4 -0
- package/typechain-types/@openzeppelin/contracts/utils/index.ts +10 -0
- package/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.ts +69 -0
- package/typechain-types/@openzeppelin/contracts/utils/math/index.ts +4 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.ts +251 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.ts +186 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/access/index.ts +5 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/index.ts +9 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.ts +5 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.ts +105 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.ts +196 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.ts +5 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.ts +105 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.ts +184 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/utils/cryptography/index.ts +4 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.ts +6 -0
- package/typechain-types/@openzeppelin/index.ts +7 -0
- package/typechain-types/contracts/compliance/ComplianceRules.ts +18 -7
- package/typechain-types/contracts/core/IdentityRegistry.ts +493 -233
- package/typechain-types/contracts/index.ts +2 -0
- package/typechain-types/contracts/interfaces/IComplianceRules.ts +290 -0
- package/typechain-types/contracts/interfaces/IIdentityRegistry.ts +269 -341
- package/typechain-types/contracts/interfaces/index.ts +1 -0
- package/typechain-types/contracts/test/MockFacilitator.ts +187 -0
- package/typechain-types/contracts/test/index.ts +4 -0
- package/typechain-types/contracts/tokens/{CompliantERC20.sol/CompliantERC20.ts → CompliantERC20.ts} +19 -8
- package/typechain-types/contracts/tokens/index.ts +1 -2
- package/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.ts +138 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.ts +96 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/index.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/index.ts +7 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1967__factory.ts +67 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.ts +71 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable__factory.ts +38 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/index.ts +6 -0
- package/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory.ts +144 -0
- package/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils__factory.ts +105 -0
- package/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/index.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/proxy/Proxy__factory.ts +26 -0
- package/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/IBeacon__factory.ts +35 -0
- package/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/proxy/index.ts +6 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.ts +75 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.ts +101 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.ts +90 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.ts +91 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/index.ts +8 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.ts +118 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/math/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable__factory.ts +165 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.ts +122 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.ts +6 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.ts +48 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable__factory.ts +153 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.ts +48 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable__factory.ts +97 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/cryptography/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.ts +5 -0
- package/typechain-types/factories/@openzeppelin/index.ts +5 -0
- package/typechain-types/factories/contracts/compliance/ComplianceRules__factory.ts +26 -17
- package/typechain-types/factories/contracts/core/IdentityRegistry__factory.ts +493 -116
- package/typechain-types/factories/contracts/index.ts +1 -0
- package/typechain-types/factories/contracts/interfaces/IComplianceRules__factory.ts +193 -0
- package/typechain-types/factories/contracts/interfaces/IIdentityRegistry__factory.ts +236 -186
- package/typechain-types/factories/contracts/interfaces/index.ts +1 -0
- package/typechain-types/factories/contracts/test/MockFacilitator__factory.ts +194 -0
- package/typechain-types/factories/contracts/test/index.ts +4 -0
- package/typechain-types/factories/contracts/tokens/CompliantERC20__factory.ts +595 -0
- package/typechain-types/factories/contracts/tokens/index.ts +1 -1
- package/typechain-types/factories/index.ts +1 -0
- package/typechain-types/hardhat.d.ts +394 -16
- package/typechain-types/index.ts +48 -4
- package/deployments/hardhat/.chainId +0 -1
- package/typechain-types/contracts/tokens/CompliantERC20.sol/index.ts +0 -5
- package/typechain-types/factories/contracts/tokens/CompliantERC20.sol/CompliantERC20__factory.ts +0 -581
- package/typechain-types/factories/contracts/tokens/CompliantERC20.sol/IComplianceChecker__factory.ts +0 -44
- package/typechain-types/factories/contracts/tokens/CompliantERC20.sol/index.ts +0 -5
|
@@ -41,6 +41,86 @@ declare module "hardhat/types/runtime" {
|
|
|
41
41
|
name: "IInputVerifier",
|
|
42
42
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
43
43
|
): Promise<Contracts.IInputVerifier__factory>;
|
|
44
|
+
getContractFactory(
|
|
45
|
+
name: "Ownable2StepUpgradeable",
|
|
46
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
47
|
+
): Promise<Contracts.Ownable2StepUpgradeable__factory>;
|
|
48
|
+
getContractFactory(
|
|
49
|
+
name: "OwnableUpgradeable",
|
|
50
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
51
|
+
): Promise<Contracts.OwnableUpgradeable__factory>;
|
|
52
|
+
getContractFactory(
|
|
53
|
+
name: "Initializable",
|
|
54
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
55
|
+
): Promise<Contracts.Initializable__factory>;
|
|
56
|
+
getContractFactory(
|
|
57
|
+
name: "UUPSUpgradeable",
|
|
58
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
59
|
+
): Promise<Contracts.UUPSUpgradeable__factory>;
|
|
60
|
+
getContractFactory(
|
|
61
|
+
name: "ContextUpgradeable",
|
|
62
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
63
|
+
): Promise<Contracts.ContextUpgradeable__factory>;
|
|
64
|
+
getContractFactory(
|
|
65
|
+
name: "EIP712Upgradeable",
|
|
66
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
67
|
+
): Promise<Contracts.EIP712Upgradeable__factory>;
|
|
68
|
+
getContractFactory(
|
|
69
|
+
name: "Ownable",
|
|
70
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
71
|
+
): Promise<Contracts.Ownable__factory>;
|
|
72
|
+
getContractFactory(
|
|
73
|
+
name: "Ownable2Step",
|
|
74
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
75
|
+
): Promise<Contracts.Ownable2Step__factory>;
|
|
76
|
+
getContractFactory(
|
|
77
|
+
name: "IERC1822Proxiable",
|
|
78
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
79
|
+
): Promise<Contracts.IERC1822Proxiable__factory>;
|
|
80
|
+
getContractFactory(
|
|
81
|
+
name: "IERC1967",
|
|
82
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
83
|
+
): Promise<Contracts.IERC1967__factory>;
|
|
84
|
+
getContractFactory(
|
|
85
|
+
name: "IERC5267",
|
|
86
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
87
|
+
): Promise<Contracts.IERC5267__factory>;
|
|
88
|
+
getContractFactory(
|
|
89
|
+
name: "IBeacon",
|
|
90
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
91
|
+
): Promise<Contracts.IBeacon__factory>;
|
|
92
|
+
getContractFactory(
|
|
93
|
+
name: "ERC1967Proxy",
|
|
94
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
95
|
+
): Promise<Contracts.ERC1967Proxy__factory>;
|
|
96
|
+
getContractFactory(
|
|
97
|
+
name: "ERC1967Utils",
|
|
98
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
99
|
+
): Promise<Contracts.ERC1967Utils__factory>;
|
|
100
|
+
getContractFactory(
|
|
101
|
+
name: "Proxy",
|
|
102
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
103
|
+
): Promise<Contracts.Proxy__factory>;
|
|
104
|
+
getContractFactory(
|
|
105
|
+
name: "Address",
|
|
106
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
107
|
+
): Promise<Contracts.Address__factory>;
|
|
108
|
+
getContractFactory(
|
|
109
|
+
name: "ECDSA",
|
|
110
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
111
|
+
): Promise<Contracts.ECDSA__factory>;
|
|
112
|
+
getContractFactory(
|
|
113
|
+
name: "Errors",
|
|
114
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
115
|
+
): Promise<Contracts.Errors__factory>;
|
|
116
|
+
getContractFactory(
|
|
117
|
+
name: "SafeCast",
|
|
118
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
119
|
+
): Promise<Contracts.SafeCast__factory>;
|
|
120
|
+
getContractFactory(
|
|
121
|
+
name: "Strings",
|
|
122
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
123
|
+
): Promise<Contracts.Strings__factory>;
|
|
44
124
|
getContractFactory(
|
|
45
125
|
name: "ComplianceRules",
|
|
46
126
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
@@ -49,18 +129,22 @@ declare module "hardhat/types/runtime" {
|
|
|
49
129
|
name: "IdentityRegistry",
|
|
50
130
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
51
131
|
): Promise<Contracts.IdentityRegistry__factory>;
|
|
132
|
+
getContractFactory(
|
|
133
|
+
name: "IComplianceRules",
|
|
134
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
135
|
+
): Promise<Contracts.IComplianceRules__factory>;
|
|
52
136
|
getContractFactory(
|
|
53
137
|
name: "IIdentityRegistry",
|
|
54
138
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
55
139
|
): Promise<Contracts.IIdentityRegistry__factory>;
|
|
56
140
|
getContractFactory(
|
|
57
|
-
name: "
|
|
141
|
+
name: "MockFacilitator",
|
|
58
142
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
59
|
-
): Promise<Contracts.
|
|
143
|
+
): Promise<Contracts.MockFacilitator__factory>;
|
|
60
144
|
getContractFactory(
|
|
61
|
-
name: "
|
|
145
|
+
name: "CompliantERC20",
|
|
62
146
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
63
|
-
): Promise<Contracts.
|
|
147
|
+
): Promise<Contracts.CompliantERC20__factory>;
|
|
64
148
|
|
|
65
149
|
getContractAt(
|
|
66
150
|
name: "ZamaConfig",
|
|
@@ -97,6 +181,106 @@ declare module "hardhat/types/runtime" {
|
|
|
97
181
|
address: string | ethers.Addressable,
|
|
98
182
|
signer?: ethers.Signer
|
|
99
183
|
): Promise<Contracts.IInputVerifier>;
|
|
184
|
+
getContractAt(
|
|
185
|
+
name: "Ownable2StepUpgradeable",
|
|
186
|
+
address: string | ethers.Addressable,
|
|
187
|
+
signer?: ethers.Signer
|
|
188
|
+
): Promise<Contracts.Ownable2StepUpgradeable>;
|
|
189
|
+
getContractAt(
|
|
190
|
+
name: "OwnableUpgradeable",
|
|
191
|
+
address: string | ethers.Addressable,
|
|
192
|
+
signer?: ethers.Signer
|
|
193
|
+
): Promise<Contracts.OwnableUpgradeable>;
|
|
194
|
+
getContractAt(
|
|
195
|
+
name: "Initializable",
|
|
196
|
+
address: string | ethers.Addressable,
|
|
197
|
+
signer?: ethers.Signer
|
|
198
|
+
): Promise<Contracts.Initializable>;
|
|
199
|
+
getContractAt(
|
|
200
|
+
name: "UUPSUpgradeable",
|
|
201
|
+
address: string | ethers.Addressable,
|
|
202
|
+
signer?: ethers.Signer
|
|
203
|
+
): Promise<Contracts.UUPSUpgradeable>;
|
|
204
|
+
getContractAt(
|
|
205
|
+
name: "ContextUpgradeable",
|
|
206
|
+
address: string | ethers.Addressable,
|
|
207
|
+
signer?: ethers.Signer
|
|
208
|
+
): Promise<Contracts.ContextUpgradeable>;
|
|
209
|
+
getContractAt(
|
|
210
|
+
name: "EIP712Upgradeable",
|
|
211
|
+
address: string | ethers.Addressable,
|
|
212
|
+
signer?: ethers.Signer
|
|
213
|
+
): Promise<Contracts.EIP712Upgradeable>;
|
|
214
|
+
getContractAt(
|
|
215
|
+
name: "Ownable",
|
|
216
|
+
address: string | ethers.Addressable,
|
|
217
|
+
signer?: ethers.Signer
|
|
218
|
+
): Promise<Contracts.Ownable>;
|
|
219
|
+
getContractAt(
|
|
220
|
+
name: "Ownable2Step",
|
|
221
|
+
address: string | ethers.Addressable,
|
|
222
|
+
signer?: ethers.Signer
|
|
223
|
+
): Promise<Contracts.Ownable2Step>;
|
|
224
|
+
getContractAt(
|
|
225
|
+
name: "IERC1822Proxiable",
|
|
226
|
+
address: string | ethers.Addressable,
|
|
227
|
+
signer?: ethers.Signer
|
|
228
|
+
): Promise<Contracts.IERC1822Proxiable>;
|
|
229
|
+
getContractAt(
|
|
230
|
+
name: "IERC1967",
|
|
231
|
+
address: string | ethers.Addressable,
|
|
232
|
+
signer?: ethers.Signer
|
|
233
|
+
): Promise<Contracts.IERC1967>;
|
|
234
|
+
getContractAt(
|
|
235
|
+
name: "IERC5267",
|
|
236
|
+
address: string | ethers.Addressable,
|
|
237
|
+
signer?: ethers.Signer
|
|
238
|
+
): Promise<Contracts.IERC5267>;
|
|
239
|
+
getContractAt(
|
|
240
|
+
name: "IBeacon",
|
|
241
|
+
address: string | ethers.Addressable,
|
|
242
|
+
signer?: ethers.Signer
|
|
243
|
+
): Promise<Contracts.IBeacon>;
|
|
244
|
+
getContractAt(
|
|
245
|
+
name: "ERC1967Proxy",
|
|
246
|
+
address: string | ethers.Addressable,
|
|
247
|
+
signer?: ethers.Signer
|
|
248
|
+
): Promise<Contracts.ERC1967Proxy>;
|
|
249
|
+
getContractAt(
|
|
250
|
+
name: "ERC1967Utils",
|
|
251
|
+
address: string | ethers.Addressable,
|
|
252
|
+
signer?: ethers.Signer
|
|
253
|
+
): Promise<Contracts.ERC1967Utils>;
|
|
254
|
+
getContractAt(
|
|
255
|
+
name: "Proxy",
|
|
256
|
+
address: string | ethers.Addressable,
|
|
257
|
+
signer?: ethers.Signer
|
|
258
|
+
): Promise<Contracts.Proxy>;
|
|
259
|
+
getContractAt(
|
|
260
|
+
name: "Address",
|
|
261
|
+
address: string | ethers.Addressable,
|
|
262
|
+
signer?: ethers.Signer
|
|
263
|
+
): Promise<Contracts.Address>;
|
|
264
|
+
getContractAt(
|
|
265
|
+
name: "ECDSA",
|
|
266
|
+
address: string | ethers.Addressable,
|
|
267
|
+
signer?: ethers.Signer
|
|
268
|
+
): Promise<Contracts.ECDSA>;
|
|
269
|
+
getContractAt(
|
|
270
|
+
name: "Errors",
|
|
271
|
+
address: string | ethers.Addressable,
|
|
272
|
+
signer?: ethers.Signer
|
|
273
|
+
): Promise<Contracts.Errors>;
|
|
274
|
+
getContractAt(
|
|
275
|
+
name: "SafeCast",
|
|
276
|
+
address: string | ethers.Addressable,
|
|
277
|
+
signer?: ethers.Signer
|
|
278
|
+
): Promise<Contracts.SafeCast>;
|
|
279
|
+
getContractAt(
|
|
280
|
+
name: "Strings",
|
|
281
|
+
address: string | ethers.Addressable,
|
|
282
|
+
signer?: ethers.Signer
|
|
283
|
+
): Promise<Contracts.Strings>;
|
|
100
284
|
getContractAt(
|
|
101
285
|
name: "ComplianceRules",
|
|
102
286
|
address: string | ethers.Addressable,
|
|
@@ -107,21 +291,26 @@ declare module "hardhat/types/runtime" {
|
|
|
107
291
|
address: string | ethers.Addressable,
|
|
108
292
|
signer?: ethers.Signer
|
|
109
293
|
): Promise<Contracts.IdentityRegistry>;
|
|
294
|
+
getContractAt(
|
|
295
|
+
name: "IComplianceRules",
|
|
296
|
+
address: string | ethers.Addressable,
|
|
297
|
+
signer?: ethers.Signer
|
|
298
|
+
): Promise<Contracts.IComplianceRules>;
|
|
110
299
|
getContractAt(
|
|
111
300
|
name: "IIdentityRegistry",
|
|
112
301
|
address: string | ethers.Addressable,
|
|
113
302
|
signer?: ethers.Signer
|
|
114
303
|
): Promise<Contracts.IIdentityRegistry>;
|
|
115
304
|
getContractAt(
|
|
116
|
-
name: "
|
|
305
|
+
name: "MockFacilitator",
|
|
117
306
|
address: string | ethers.Addressable,
|
|
118
307
|
signer?: ethers.Signer
|
|
119
|
-
): Promise<Contracts.
|
|
308
|
+
): Promise<Contracts.MockFacilitator>;
|
|
120
309
|
getContractAt(
|
|
121
|
-
name: "
|
|
310
|
+
name: "CompliantERC20",
|
|
122
311
|
address: string | ethers.Addressable,
|
|
123
312
|
signer?: ethers.Signer
|
|
124
|
-
): Promise<Contracts.
|
|
313
|
+
): Promise<Contracts.CompliantERC20>;
|
|
125
314
|
|
|
126
315
|
deployContract(
|
|
127
316
|
name: "ZamaConfig",
|
|
@@ -151,6 +340,86 @@ declare module "hardhat/types/runtime" {
|
|
|
151
340
|
name: "IInputVerifier",
|
|
152
341
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
153
342
|
): Promise<Contracts.IInputVerifier>;
|
|
343
|
+
deployContract(
|
|
344
|
+
name: "Ownable2StepUpgradeable",
|
|
345
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
346
|
+
): Promise<Contracts.Ownable2StepUpgradeable>;
|
|
347
|
+
deployContract(
|
|
348
|
+
name: "OwnableUpgradeable",
|
|
349
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
350
|
+
): Promise<Contracts.OwnableUpgradeable>;
|
|
351
|
+
deployContract(
|
|
352
|
+
name: "Initializable",
|
|
353
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
354
|
+
): Promise<Contracts.Initializable>;
|
|
355
|
+
deployContract(
|
|
356
|
+
name: "UUPSUpgradeable",
|
|
357
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
358
|
+
): Promise<Contracts.UUPSUpgradeable>;
|
|
359
|
+
deployContract(
|
|
360
|
+
name: "ContextUpgradeable",
|
|
361
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
362
|
+
): Promise<Contracts.ContextUpgradeable>;
|
|
363
|
+
deployContract(
|
|
364
|
+
name: "EIP712Upgradeable",
|
|
365
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
366
|
+
): Promise<Contracts.EIP712Upgradeable>;
|
|
367
|
+
deployContract(
|
|
368
|
+
name: "Ownable",
|
|
369
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
370
|
+
): Promise<Contracts.Ownable>;
|
|
371
|
+
deployContract(
|
|
372
|
+
name: "Ownable2Step",
|
|
373
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
374
|
+
): Promise<Contracts.Ownable2Step>;
|
|
375
|
+
deployContract(
|
|
376
|
+
name: "IERC1822Proxiable",
|
|
377
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
378
|
+
): Promise<Contracts.IERC1822Proxiable>;
|
|
379
|
+
deployContract(
|
|
380
|
+
name: "IERC1967",
|
|
381
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
382
|
+
): Promise<Contracts.IERC1967>;
|
|
383
|
+
deployContract(
|
|
384
|
+
name: "IERC5267",
|
|
385
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
386
|
+
): Promise<Contracts.IERC5267>;
|
|
387
|
+
deployContract(
|
|
388
|
+
name: "IBeacon",
|
|
389
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
390
|
+
): Promise<Contracts.IBeacon>;
|
|
391
|
+
deployContract(
|
|
392
|
+
name: "ERC1967Proxy",
|
|
393
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
394
|
+
): Promise<Contracts.ERC1967Proxy>;
|
|
395
|
+
deployContract(
|
|
396
|
+
name: "ERC1967Utils",
|
|
397
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
398
|
+
): Promise<Contracts.ERC1967Utils>;
|
|
399
|
+
deployContract(
|
|
400
|
+
name: "Proxy",
|
|
401
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
402
|
+
): Promise<Contracts.Proxy>;
|
|
403
|
+
deployContract(
|
|
404
|
+
name: "Address",
|
|
405
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
406
|
+
): Promise<Contracts.Address>;
|
|
407
|
+
deployContract(
|
|
408
|
+
name: "ECDSA",
|
|
409
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
410
|
+
): Promise<Contracts.ECDSA>;
|
|
411
|
+
deployContract(
|
|
412
|
+
name: "Errors",
|
|
413
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
414
|
+
): Promise<Contracts.Errors>;
|
|
415
|
+
deployContract(
|
|
416
|
+
name: "SafeCast",
|
|
417
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
418
|
+
): Promise<Contracts.SafeCast>;
|
|
419
|
+
deployContract(
|
|
420
|
+
name: "Strings",
|
|
421
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
422
|
+
): Promise<Contracts.Strings>;
|
|
154
423
|
deployContract(
|
|
155
424
|
name: "ComplianceRules",
|
|
156
425
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
@@ -159,18 +428,22 @@ declare module "hardhat/types/runtime" {
|
|
|
159
428
|
name: "IdentityRegistry",
|
|
160
429
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
161
430
|
): Promise<Contracts.IdentityRegistry>;
|
|
431
|
+
deployContract(
|
|
432
|
+
name: "IComplianceRules",
|
|
433
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
434
|
+
): Promise<Contracts.IComplianceRules>;
|
|
162
435
|
deployContract(
|
|
163
436
|
name: "IIdentityRegistry",
|
|
164
437
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
165
438
|
): Promise<Contracts.IIdentityRegistry>;
|
|
166
439
|
deployContract(
|
|
167
|
-
name: "
|
|
440
|
+
name: "MockFacilitator",
|
|
168
441
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
169
|
-
): Promise<Contracts.
|
|
442
|
+
): Promise<Contracts.MockFacilitator>;
|
|
170
443
|
deployContract(
|
|
171
|
-
name: "
|
|
444
|
+
name: "CompliantERC20",
|
|
172
445
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
173
|
-
): Promise<Contracts.
|
|
446
|
+
): Promise<Contracts.CompliantERC20>;
|
|
174
447
|
|
|
175
448
|
deployContract(
|
|
176
449
|
name: "ZamaConfig",
|
|
@@ -207,6 +480,106 @@ declare module "hardhat/types/runtime" {
|
|
|
207
480
|
args: any[],
|
|
208
481
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
209
482
|
): Promise<Contracts.IInputVerifier>;
|
|
483
|
+
deployContract(
|
|
484
|
+
name: "Ownable2StepUpgradeable",
|
|
485
|
+
args: any[],
|
|
486
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
487
|
+
): Promise<Contracts.Ownable2StepUpgradeable>;
|
|
488
|
+
deployContract(
|
|
489
|
+
name: "OwnableUpgradeable",
|
|
490
|
+
args: any[],
|
|
491
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
492
|
+
): Promise<Contracts.OwnableUpgradeable>;
|
|
493
|
+
deployContract(
|
|
494
|
+
name: "Initializable",
|
|
495
|
+
args: any[],
|
|
496
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
497
|
+
): Promise<Contracts.Initializable>;
|
|
498
|
+
deployContract(
|
|
499
|
+
name: "UUPSUpgradeable",
|
|
500
|
+
args: any[],
|
|
501
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
502
|
+
): Promise<Contracts.UUPSUpgradeable>;
|
|
503
|
+
deployContract(
|
|
504
|
+
name: "ContextUpgradeable",
|
|
505
|
+
args: any[],
|
|
506
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
507
|
+
): Promise<Contracts.ContextUpgradeable>;
|
|
508
|
+
deployContract(
|
|
509
|
+
name: "EIP712Upgradeable",
|
|
510
|
+
args: any[],
|
|
511
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
512
|
+
): Promise<Contracts.EIP712Upgradeable>;
|
|
513
|
+
deployContract(
|
|
514
|
+
name: "Ownable",
|
|
515
|
+
args: any[],
|
|
516
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
517
|
+
): Promise<Contracts.Ownable>;
|
|
518
|
+
deployContract(
|
|
519
|
+
name: "Ownable2Step",
|
|
520
|
+
args: any[],
|
|
521
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
522
|
+
): Promise<Contracts.Ownable2Step>;
|
|
523
|
+
deployContract(
|
|
524
|
+
name: "IERC1822Proxiable",
|
|
525
|
+
args: any[],
|
|
526
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
527
|
+
): Promise<Contracts.IERC1822Proxiable>;
|
|
528
|
+
deployContract(
|
|
529
|
+
name: "IERC1967",
|
|
530
|
+
args: any[],
|
|
531
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
532
|
+
): Promise<Contracts.IERC1967>;
|
|
533
|
+
deployContract(
|
|
534
|
+
name: "IERC5267",
|
|
535
|
+
args: any[],
|
|
536
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
537
|
+
): Promise<Contracts.IERC5267>;
|
|
538
|
+
deployContract(
|
|
539
|
+
name: "IBeacon",
|
|
540
|
+
args: any[],
|
|
541
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
542
|
+
): Promise<Contracts.IBeacon>;
|
|
543
|
+
deployContract(
|
|
544
|
+
name: "ERC1967Proxy",
|
|
545
|
+
args: any[],
|
|
546
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
547
|
+
): Promise<Contracts.ERC1967Proxy>;
|
|
548
|
+
deployContract(
|
|
549
|
+
name: "ERC1967Utils",
|
|
550
|
+
args: any[],
|
|
551
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
552
|
+
): Promise<Contracts.ERC1967Utils>;
|
|
553
|
+
deployContract(
|
|
554
|
+
name: "Proxy",
|
|
555
|
+
args: any[],
|
|
556
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
557
|
+
): Promise<Contracts.Proxy>;
|
|
558
|
+
deployContract(
|
|
559
|
+
name: "Address",
|
|
560
|
+
args: any[],
|
|
561
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
562
|
+
): Promise<Contracts.Address>;
|
|
563
|
+
deployContract(
|
|
564
|
+
name: "ECDSA",
|
|
565
|
+
args: any[],
|
|
566
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
567
|
+
): Promise<Contracts.ECDSA>;
|
|
568
|
+
deployContract(
|
|
569
|
+
name: "Errors",
|
|
570
|
+
args: any[],
|
|
571
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
572
|
+
): Promise<Contracts.Errors>;
|
|
573
|
+
deployContract(
|
|
574
|
+
name: "SafeCast",
|
|
575
|
+
args: any[],
|
|
576
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
577
|
+
): Promise<Contracts.SafeCast>;
|
|
578
|
+
deployContract(
|
|
579
|
+
name: "Strings",
|
|
580
|
+
args: any[],
|
|
581
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
582
|
+
): Promise<Contracts.Strings>;
|
|
210
583
|
deployContract(
|
|
211
584
|
name: "ComplianceRules",
|
|
212
585
|
args: any[],
|
|
@@ -217,21 +590,26 @@ declare module "hardhat/types/runtime" {
|
|
|
217
590
|
args: any[],
|
|
218
591
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
219
592
|
): Promise<Contracts.IdentityRegistry>;
|
|
593
|
+
deployContract(
|
|
594
|
+
name: "IComplianceRules",
|
|
595
|
+
args: any[],
|
|
596
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
597
|
+
): Promise<Contracts.IComplianceRules>;
|
|
220
598
|
deployContract(
|
|
221
599
|
name: "IIdentityRegistry",
|
|
222
600
|
args: any[],
|
|
223
601
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
224
602
|
): Promise<Contracts.IIdentityRegistry>;
|
|
225
603
|
deployContract(
|
|
226
|
-
name: "
|
|
604
|
+
name: "MockFacilitator",
|
|
227
605
|
args: any[],
|
|
228
606
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
229
|
-
): Promise<Contracts.
|
|
607
|
+
): Promise<Contracts.MockFacilitator>;
|
|
230
608
|
deployContract(
|
|
231
|
-
name: "
|
|
609
|
+
name: "CompliantERC20",
|
|
232
610
|
args: any[],
|
|
233
611
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
234
|
-
): Promise<Contracts.
|
|
612
|
+
): Promise<Contracts.CompliantERC20>;
|
|
235
613
|
|
|
236
614
|
// default types
|
|
237
615
|
getContractFactory(
|
package/typechain-types/index.ts
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import type * as fhevm from "./@fhevm";
|
|
5
5
|
export type { fhevm };
|
|
6
|
+
import type * as openzeppelin from "./@openzeppelin";
|
|
7
|
+
export type { openzeppelin };
|
|
6
8
|
import type * as contracts from "./contracts";
|
|
7
9
|
export type { contracts };
|
|
8
10
|
export * as factories from "./factories";
|
|
@@ -20,13 +22,55 @@ export type { IFHEVMExecutor } from "./@fhevm/solidity/lib/Impl.sol/IFHEVMExecut
|
|
|
20
22
|
export { IFHEVMExecutor__factory } from "./factories/@fhevm/solidity/lib/Impl.sol/IFHEVMExecutor__factory";
|
|
21
23
|
export type { IInputVerifier } from "./@fhevm/solidity/lib/Impl.sol/IInputVerifier";
|
|
22
24
|
export { IInputVerifier__factory } from "./factories/@fhevm/solidity/lib/Impl.sol/IInputVerifier__factory";
|
|
25
|
+
export type { Ownable2StepUpgradeable } from "./@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable";
|
|
26
|
+
export { Ownable2StepUpgradeable__factory } from "./factories/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable__factory";
|
|
27
|
+
export type { OwnableUpgradeable } from "./@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable";
|
|
28
|
+
export { OwnableUpgradeable__factory } from "./factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory";
|
|
29
|
+
export type { Initializable } from "./@openzeppelin/contracts-upgradeable/proxy/utils/Initializable";
|
|
30
|
+
export { Initializable__factory } from "./factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory";
|
|
31
|
+
export type { UUPSUpgradeable } from "./@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable";
|
|
32
|
+
export { UUPSUpgradeable__factory } from "./factories/@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable__factory";
|
|
33
|
+
export type { ContextUpgradeable } from "./@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable";
|
|
34
|
+
export { ContextUpgradeable__factory } from "./factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory";
|
|
35
|
+
export type { EIP712Upgradeable } from "./@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable";
|
|
36
|
+
export { EIP712Upgradeable__factory } from "./factories/@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable__factory";
|
|
37
|
+
export type { Ownable } from "./@openzeppelin/contracts/access/Ownable";
|
|
38
|
+
export { Ownable__factory } from "./factories/@openzeppelin/contracts/access/Ownable__factory";
|
|
39
|
+
export type { Ownable2Step } from "./@openzeppelin/contracts/access/Ownable2Step";
|
|
40
|
+
export { Ownable2Step__factory } from "./factories/@openzeppelin/contracts/access/Ownable2Step__factory";
|
|
41
|
+
export type { IERC1822Proxiable } from "./@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable";
|
|
42
|
+
export { IERC1822Proxiable__factory } from "./factories/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable__factory";
|
|
43
|
+
export type { IERC1967 } from "./@openzeppelin/contracts/interfaces/IERC1967";
|
|
44
|
+
export { IERC1967__factory } from "./factories/@openzeppelin/contracts/interfaces/IERC1967__factory";
|
|
45
|
+
export type { IERC5267 } from "./@openzeppelin/contracts/interfaces/IERC5267";
|
|
46
|
+
export { IERC5267__factory } from "./factories/@openzeppelin/contracts/interfaces/IERC5267__factory";
|
|
47
|
+
export type { IBeacon } from "./@openzeppelin/contracts/proxy/beacon/IBeacon";
|
|
48
|
+
export { IBeacon__factory } from "./factories/@openzeppelin/contracts/proxy/beacon/IBeacon__factory";
|
|
49
|
+
export type { ERC1967Proxy } from "./@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy";
|
|
50
|
+
export { ERC1967Proxy__factory } from "./factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory";
|
|
51
|
+
export type { ERC1967Utils } from "./@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils";
|
|
52
|
+
export { ERC1967Utils__factory } from "./factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils__factory";
|
|
53
|
+
export type { Proxy } from "./@openzeppelin/contracts/proxy/Proxy";
|
|
54
|
+
export { Proxy__factory } from "./factories/@openzeppelin/contracts/proxy/Proxy__factory";
|
|
55
|
+
export type { Address } from "./@openzeppelin/contracts/utils/Address";
|
|
56
|
+
export { Address__factory } from "./factories/@openzeppelin/contracts/utils/Address__factory";
|
|
57
|
+
export type { ECDSA } from "./@openzeppelin/contracts/utils/cryptography/ECDSA";
|
|
58
|
+
export { ECDSA__factory } from "./factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory";
|
|
59
|
+
export type { Errors } from "./@openzeppelin/contracts/utils/Errors";
|
|
60
|
+
export { Errors__factory } from "./factories/@openzeppelin/contracts/utils/Errors__factory";
|
|
61
|
+
export type { SafeCast } from "./@openzeppelin/contracts/utils/math/SafeCast";
|
|
62
|
+
export { SafeCast__factory } from "./factories/@openzeppelin/contracts/utils/math/SafeCast__factory";
|
|
63
|
+
export type { Strings } from "./@openzeppelin/contracts/utils/Strings";
|
|
64
|
+
export { Strings__factory } from "./factories/@openzeppelin/contracts/utils/Strings__factory";
|
|
23
65
|
export type { ComplianceRules } from "./contracts/compliance/ComplianceRules";
|
|
24
66
|
export { ComplianceRules__factory } from "./factories/contracts/compliance/ComplianceRules__factory";
|
|
25
67
|
export type { IdentityRegistry } from "./contracts/core/IdentityRegistry";
|
|
26
68
|
export { IdentityRegistry__factory } from "./factories/contracts/core/IdentityRegistry__factory";
|
|
69
|
+
export type { IComplianceRules } from "./contracts/interfaces/IComplianceRules";
|
|
70
|
+
export { IComplianceRules__factory } from "./factories/contracts/interfaces/IComplianceRules__factory";
|
|
27
71
|
export type { IIdentityRegistry } from "./contracts/interfaces/IIdentityRegistry";
|
|
28
72
|
export { IIdentityRegistry__factory } from "./factories/contracts/interfaces/IIdentityRegistry__factory";
|
|
29
|
-
export type {
|
|
30
|
-
export {
|
|
31
|
-
export type {
|
|
32
|
-
export {
|
|
73
|
+
export type { MockFacilitator } from "./contracts/test/MockFacilitator";
|
|
74
|
+
export { MockFacilitator__factory } from "./factories/contracts/test/MockFacilitator__factory";
|
|
75
|
+
export type { CompliantERC20 } from "./contracts/tokens/CompliantERC20";
|
|
76
|
+
export { CompliantERC20__factory } from "./factories/contracts/tokens/CompliantERC20__factory";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
31337
|