@zentity/fhevm-contracts 0.1.0 → 0.1.2
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/LICENSE +21 -0
- package/abi/ComplianceRules.json +1 -1
- package/contracts/compliance/ComplianceRules.sol +1 -1
- package/deployments/hardhat/addresses.json +1 -1
- package/deployments/sepolia/ComplianceRules.json +21 -24
- package/deployments/sepolia/CompliantERC20.json +32 -36
- package/deployments/sepolia/IdentityRegistry.json +293 -48
- package/dist/index.d.ts +0 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -23
- package/package.json +8 -8
- package/typechain-types/factories/contracts/compliance/ComplianceRules__factory.ts +2 -2
- package/deployments/localhost/.chainId +0 -1
- package/deployments/localhost/ComplianceRules.json +0 -662
- package/deployments/localhost/CompliantERC20.json +0 -888
- package/deployments/localhost/IdentityRegistry.json +0 -1093
- package/deployments/localhost/solcInputs/e36969353329df673b4fae03d39e01c4.json +0 -60
- package/deployments/sepolia/.gitkeep +0 -0
- package/deployments/sepolia/solcInputs/93d280ff0d4e798a18947a9ed6015031.json +0 -60
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Gustavo Valverde
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/abi/ComplianceRules.json
CHANGED
|
@@ -58,7 +58,7 @@ contract ComplianceRules is ZamaEthereumConfig {
|
|
|
58
58
|
/// @notice Emitted when a caller's authorization is updated
|
|
59
59
|
/// @param caller Address being authorized or revoked
|
|
60
60
|
/// @param allowed Whether the caller is allowed
|
|
61
|
-
event AuthorizedCallerUpdated(address indexed caller, bool allowed);
|
|
61
|
+
event AuthorizedCallerUpdated(address indexed caller, bool indexed allowed);
|
|
62
62
|
|
|
63
63
|
/// @notice Emitted when ownership transfer is initiated
|
|
64
64
|
/// @param currentOwner Current owner address
|