@etherisc/gif-next 0.0.2-cf606cd → 0.0.2-d3543ee-345
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +27 -0
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +28 -2
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +2 -2
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +78 -2
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +32 -150
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +121 -6
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +121 -6
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +2 -2
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +2 -2
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +686 -99
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +757 -99
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +1 -1
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +1 -1
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +1 -1
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +1 -1
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +1 -1
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +14 -42
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +65 -10
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +1 -1
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +28 -2
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +1 -1
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +12 -40
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +47 -0
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +1 -1
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +134 -0
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +4 -0
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.json +182 -0
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +4 -0
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +221 -0
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +1 -1
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +26 -3
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +1 -1
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +26 -3
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +1 -1
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +1 -1
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +15 -35
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +1 -1
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +22 -29
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +1 -1
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +13 -0
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +1 -1
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +41 -12
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.json +10 -0
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +490 -0
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +45 -0
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +490 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +2 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +4 -95
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registerable.json +2 -2
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +14 -105
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +2 -2
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +2 -2
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +2 -2
- package/contracts/components/Component.sol +38 -23
- package/contracts/components/IPool.sol +9 -3
- package/contracts/components/IProduct.sol +10 -6
- package/contracts/components/Pool.sol +37 -14
- package/contracts/components/Product.sol +46 -23
- package/contracts/experiment/errors/Require.sol +10 -5
- package/contracts/experiment/errors/Revert.sol +13 -8
- package/contracts/experiment/inheritance/A.sol +8 -11
- package/contracts/experiment/inheritance/B.sol +10 -5
- package/contracts/experiment/inheritance/C.sol +11 -5
- package/contracts/experiment/inheritance/IA.sol +2 -7
- package/contracts/experiment/inheritance/IB.sol +3 -2
- package/contracts/experiment/inheritance/IC.sol +4 -3
- package/contracts/experiment/statemachine/Dummy.sol +27 -0
- package/contracts/experiment/statemachine/ISM.sol +25 -0
- package/contracts/experiment/statemachine/README.md +112 -0
- package/contracts/experiment/statemachine/SM.sol +57 -0
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
- package/contracts/experiment/types/TypeA.sol +14 -9
- package/contracts/experiment/types/TypeB.sol +14 -9
- package/contracts/instance/IInstance.sol +8 -3
- package/contracts/instance/Instance.sol +22 -14
- package/contracts/instance/access/Access.sol +63 -116
- package/contracts/instance/access/IAccess.sol +28 -48
- package/contracts/instance/component/ComponentModule.sol +144 -118
- package/contracts/instance/component/IComponent.sol +39 -60
- package/contracts/instance/lifecycle/ILifecycle.sol +47 -0
- package/contracts/instance/lifecycle/LifecycleModule.sol +88 -0
- package/contracts/instance/policy/IPolicy.sol +16 -32
- package/contracts/instance/policy/PolicyModule.sol +47 -40
- package/contracts/instance/pool/IPoolModule.sol +7 -25
- package/contracts/instance/pool/PoolModule.sol +40 -45
- package/contracts/instance/product/IProductService.sol +6 -16
- package/contracts/instance/product/ProductService.sol +76 -48
- package/contracts/instance/treasury/ITreasury.sol +91 -0
- package/contracts/instance/treasury/TokenHandler.sol +24 -0
- package/contracts/instance/treasury/TreasuryModule.sol +168 -0
- package/contracts/registry/ChainNft.sol +23 -61
- package/contracts/registry/IChainNft.sol +10 -7
- package/contracts/registry/IRegistry.sol +35 -38
- package/contracts/registry/Registry.sol +57 -57
- package/contracts/types/Blocknumber.sol +76 -18
- package/contracts/types/ChainId.sol +18 -10
- package/contracts/types/Fee.sol +32 -0
- package/contracts/types/NftId.sol +29 -13
- package/contracts/types/ObjectType.sol +107 -0
- package/contracts/types/StateId.sol +91 -0
- package/contracts/types/Timestamp.sol +63 -16
- package/contracts/types/UFixed.sol +59 -64
- package/package.json +10 -4
@@ -13,43 +13,90 @@ using {
|
|
13
13
|
} for Timestamp global;
|
14
14
|
|
15
15
|
/// @dev return true if Timestamp a is after Timestamp b
|
16
|
-
function gtTimestamp(Timestamp a, Timestamp b) pure returns(bool) {
|
16
|
+
function gtTimestamp(Timestamp a, Timestamp b) pure returns (bool) {
|
17
|
+
return Timestamp.unwrap(a) > Timestamp.unwrap(b);
|
18
|
+
}
|
19
|
+
|
17
20
|
/// @dev return true if Timestamp a is after or equal to Timestamp b
|
18
|
-
function gteTimestamp(Timestamp a, Timestamp b) pure returns(bool) {
|
21
|
+
function gteTimestamp(Timestamp a, Timestamp b) pure returns (bool) {
|
22
|
+
return Timestamp.unwrap(a) >= Timestamp.unwrap(b);
|
23
|
+
}
|
19
24
|
|
20
25
|
/// @dev return true if Timestamp a is before Timestamp b
|
21
|
-
function ltTimestamp(Timestamp a, Timestamp b) pure returns(bool) {
|
26
|
+
function ltTimestamp(Timestamp a, Timestamp b) pure returns (bool) {
|
27
|
+
return Timestamp.unwrap(a) < Timestamp.unwrap(b);
|
28
|
+
}
|
29
|
+
|
22
30
|
/// @dev return true if Timestamp a is before or equal to Timestamp b
|
23
|
-
function lteTimestamp(Timestamp a, Timestamp b) pure returns(bool) {
|
31
|
+
function lteTimestamp(Timestamp a, Timestamp b) pure returns (bool) {
|
32
|
+
return Timestamp.unwrap(a) <= Timestamp.unwrap(b);
|
33
|
+
}
|
24
34
|
|
25
35
|
/// @dev return true if Timestamp a is equal to Timestamp b
|
26
|
-
function eqTimestamp(Timestamp a, Timestamp b) pure returns(bool) {
|
36
|
+
function eqTimestamp(Timestamp a, Timestamp b) pure returns (bool) {
|
37
|
+
return Timestamp.unwrap(a) == Timestamp.unwrap(b);
|
38
|
+
}
|
39
|
+
|
27
40
|
/// @dev return true if Timestamp a is not equal to Timestamp b
|
28
|
-
function neTimestamp(Timestamp a, Timestamp b) pure returns(bool) {
|
41
|
+
function neTimestamp(Timestamp a, Timestamp b) pure returns (bool) {
|
42
|
+
return Timestamp.unwrap(a) != Timestamp.unwrap(b);
|
43
|
+
}
|
29
44
|
|
30
45
|
/// @dev Converts the uint256 to a Timestamp.
|
31
|
-
function toTimestamp(uint256 timestamp) pure returns(Timestamp) {
|
46
|
+
function toTimestamp(uint256 timestamp) pure returns (Timestamp) {
|
47
|
+
return Timestamp.wrap(uint40(timestamp));
|
48
|
+
}
|
32
49
|
|
33
|
-
function blockTimestamp() view returns(Timestamp) {
|
50
|
+
function blockTimestamp() view returns (Timestamp) {
|
51
|
+
return toTimestamp(block.timestamp);
|
52
|
+
}
|
34
53
|
|
35
54
|
/// @dev Return the Timestamp zero (0)
|
36
|
-
function zeroTimestamp() pure returns(Timestamp) {
|
55
|
+
function zeroTimestamp() pure returns (Timestamp) {
|
56
|
+
return toTimestamp(0);
|
57
|
+
}
|
37
58
|
|
38
59
|
library TimestampLib {
|
39
60
|
/// @dev return true if Timestamp a is after Timestamp b
|
40
|
-
function gt(Timestamp a, Timestamp b) public pure returns(bool isAfter) {
|
61
|
+
function gt(Timestamp a, Timestamp b) public pure returns (bool isAfter) {
|
62
|
+
return gtTimestamp(a, b);
|
63
|
+
}
|
64
|
+
|
41
65
|
/// @dev return true if Timestamp a is after or the same than Timestamp b
|
42
|
-
function gte(
|
66
|
+
function gte(
|
67
|
+
Timestamp a,
|
68
|
+
Timestamp b
|
69
|
+
) public pure returns (bool isAfterOrSame) {
|
70
|
+
return gteTimestamp(a, b);
|
71
|
+
}
|
43
72
|
|
44
73
|
/// @dev return true if Timestamp a is before Timestamp b
|
45
|
-
function lt(Timestamp a, Timestamp b) public pure returns(bool isBefore) {
|
74
|
+
function lt(Timestamp a, Timestamp b) public pure returns (bool isBefore) {
|
75
|
+
return ltTimestamp(a, b);
|
76
|
+
}
|
77
|
+
|
46
78
|
/// @dev return true if Timestamp a is before or the same than Timestamp b
|
47
|
-
function lte(
|
79
|
+
function lte(
|
80
|
+
Timestamp a,
|
81
|
+
Timestamp b
|
82
|
+
) public pure returns (bool isBeforeOrSame) {
|
83
|
+
return lteTimestamp(a, b);
|
84
|
+
}
|
48
85
|
|
49
86
|
/// @dev return true if Timestamp a is equal to Timestamp b
|
50
|
-
function eq(Timestamp a, Timestamp b) public pure returns(bool isSame) {
|
87
|
+
function eq(Timestamp a, Timestamp b) public pure returns (bool isSame) {
|
88
|
+
return eqTimestamp(a, b);
|
89
|
+
}
|
90
|
+
|
51
91
|
/// @dev return true if Timestamp a is not equal to Timestamp b
|
52
|
-
function ne(
|
92
|
+
function ne(
|
93
|
+
Timestamp a,
|
94
|
+
Timestamp b
|
95
|
+
) public pure returns (bool isDifferent) {
|
96
|
+
return neTimestamp(a, b);
|
97
|
+
}
|
53
98
|
|
54
|
-
function toInt(Timestamp timestamp) public pure returns(uint256) {
|
99
|
+
function toInt(Timestamp timestamp) public pure returns (uint256) {
|
100
|
+
return uint256(uint40(Timestamp.unwrap(timestamp)));
|
101
|
+
}
|
55
102
|
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
// SPDX-License-Identifier: Apache-2.0
|
2
2
|
pragma solidity ^0.8.19;
|
3
3
|
|
4
|
-
import {
|
4
|
+
import {Math} from "@openzeppelin/contracts/utils/math/Math.sol";
|
5
5
|
|
6
6
|
/// @dev UFixed is a fixed point number with 18 decimals precision.
|
7
7
|
type UFixed is uint256;
|
@@ -18,59 +18,57 @@ using {
|
|
18
18
|
eqUFixed as ==
|
19
19
|
} for UFixed global;
|
20
20
|
|
21
|
-
function addUFixed(UFixed a, UFixed b) pure returns(UFixed) {
|
21
|
+
function addUFixed(UFixed a, UFixed b) pure returns (UFixed) {
|
22
22
|
return UFixed.wrap(UFixed.unwrap(a) + UFixed.unwrap(b));
|
23
23
|
}
|
24
24
|
|
25
|
-
function subUFixed(UFixed a, UFixed b) pure returns(UFixed) {
|
25
|
+
function subUFixed(UFixed a, UFixed b) pure returns (UFixed) {
|
26
26
|
require(a >= b, "ERROR:UFM-010:NEGATIVE_RESULT");
|
27
27
|
return UFixed.wrap(UFixed.unwrap(a) - UFixed.unwrap(b));
|
28
28
|
}
|
29
29
|
|
30
|
-
function mulUFixed(UFixed a, UFixed b) pure returns(UFixed) {
|
31
|
-
return
|
30
|
+
function mulUFixed(UFixed a, UFixed b) pure returns (UFixed) {
|
31
|
+
return
|
32
|
+
UFixed.wrap(Math.mulDiv(UFixed.unwrap(a), UFixed.unwrap(b), 10 ** 18));
|
32
33
|
}
|
33
34
|
|
34
|
-
function divUFixed(UFixed a, UFixed b) pure returns(UFixed) {
|
35
|
+
function divUFixed(UFixed a, UFixed b) pure returns (UFixed) {
|
35
36
|
require(UFixed.unwrap(b) > 0, "ERROR:UFM-020:DIVISOR_ZERO");
|
36
37
|
|
37
|
-
return
|
38
|
-
Math.mulDiv(
|
39
|
-
UFixed.unwrap(a),
|
40
|
-
10 ** 18,
|
41
|
-
UFixed.unwrap(b)));
|
38
|
+
return
|
39
|
+
UFixed.wrap(Math.mulDiv(UFixed.unwrap(a), 10 ** 18, UFixed.unwrap(b)));
|
42
40
|
}
|
43
41
|
|
44
|
-
function gtUFixed(UFixed a, UFixed b) pure returns(bool isGreaterThan) {
|
42
|
+
function gtUFixed(UFixed a, UFixed b) pure returns (bool isGreaterThan) {
|
45
43
|
return UFixed.unwrap(a) > UFixed.unwrap(b);
|
46
44
|
}
|
47
45
|
|
48
|
-
function gteUFixed(UFixed a, UFixed b) pure returns(bool isGreaterThan) {
|
46
|
+
function gteUFixed(UFixed a, UFixed b) pure returns (bool isGreaterThan) {
|
49
47
|
return UFixed.unwrap(a) >= UFixed.unwrap(b);
|
50
48
|
}
|
51
49
|
|
52
|
-
function ltUFixed(UFixed a, UFixed b) pure returns(bool isGreaterThan) {
|
50
|
+
function ltUFixed(UFixed a, UFixed b) pure returns (bool isGreaterThan) {
|
53
51
|
return UFixed.unwrap(a) < UFixed.unwrap(b);
|
54
52
|
}
|
55
53
|
|
56
|
-
function lteUFixed(UFixed a, UFixed b) pure returns(bool isGreaterThan) {
|
54
|
+
function lteUFixed(UFixed a, UFixed b) pure returns (bool isGreaterThan) {
|
57
55
|
return UFixed.unwrap(a) <= UFixed.unwrap(b);
|
58
56
|
}
|
59
57
|
|
60
|
-
function eqUFixed(UFixed a, UFixed b) pure returns(bool isEqual) {
|
58
|
+
function eqUFixed(UFixed a, UFixed b) pure returns (bool isEqual) {
|
61
59
|
return UFixed.unwrap(a) == UFixed.unwrap(b);
|
62
60
|
}
|
63
61
|
|
64
|
-
function gtzUFixed(UFixed a) pure returns(bool isZero) {
|
62
|
+
function gtzUFixed(UFixed a) pure returns (bool isZero) {
|
65
63
|
return UFixed.unwrap(a) > 0;
|
66
64
|
}
|
67
65
|
|
68
|
-
function eqzUFixed(UFixed a) pure returns(bool isZero) {
|
66
|
+
function eqzUFixed(UFixed a) pure returns (bool isZero) {
|
69
67
|
return UFixed.unwrap(a) == 0;
|
70
68
|
}
|
71
69
|
|
72
|
-
function deltaUFixed(UFixed a, UFixed b) pure returns(UFixed) {
|
73
|
-
if(a > b) {
|
70
|
+
function deltaUFixed(UFixed a, UFixed b) pure returns (UFixed) {
|
71
|
+
if (a > b) {
|
74
72
|
return a - b;
|
75
73
|
}
|
76
74
|
|
@@ -78,43 +76,35 @@ function deltaUFixed(UFixed a, UFixed b) pure returns(UFixed) {
|
|
78
76
|
}
|
79
77
|
|
80
78
|
library UFixedMathLib {
|
81
|
-
|
82
79
|
enum Rounding {
|
83
80
|
/// @dev Round down - floor(value)
|
84
|
-
Down,
|
81
|
+
Down,
|
85
82
|
/// @dev Round up - ceil(value)
|
86
|
-
Up,
|
83
|
+
Up,
|
87
84
|
/// @dev Round half up - round(value)
|
88
|
-
HalfUp
|
85
|
+
HalfUp
|
89
86
|
}
|
90
87
|
|
91
88
|
int8 public constant EXP = 18;
|
92
89
|
uint256 public constant MULTIPLIER = 10 ** uint256(int256(EXP));
|
93
90
|
uint256 public constant MULTIPLIER_HALF = MULTIPLIER / 2;
|
94
|
-
|
91
|
+
|
95
92
|
/// @dev Default rounding mode used by ftoi is HalfUp
|
96
93
|
Rounding public constant ROUNDING_DEFAULT = Rounding.HalfUp;
|
97
94
|
|
98
95
|
/// @dev returns the decimals precision of the UFixed type
|
99
|
-
function decimals() public pure returns(uint256) {
|
96
|
+
function decimals() public pure returns (uint256) {
|
100
97
|
return uint8(EXP);
|
101
98
|
}
|
102
99
|
|
103
100
|
/// @dev Converts the uint256 to a UFixed.
|
104
|
-
function itof(uint256 a)
|
105
|
-
public
|
106
|
-
pure
|
107
|
-
returns(UFixed)
|
108
|
-
{
|
101
|
+
function itof(uint256 a) public pure returns (UFixed) {
|
109
102
|
return UFixed.wrap(a * MULTIPLIER);
|
110
103
|
}
|
111
104
|
|
105
|
+
// TODO rename to toUFixed
|
112
106
|
/// @dev Converts the uint256 to a UFixed with given exponent.
|
113
|
-
function itof(uint256 a, int8 exp)
|
114
|
-
public
|
115
|
-
pure
|
116
|
-
returns(UFixed)
|
117
|
-
{
|
107
|
+
function itof(uint256 a, int8 exp) public pure returns (UFixed) {
|
118
108
|
require(EXP + exp >= 0, "ERROR:FM-010:EXPONENT_TOO_SMALL");
|
119
109
|
require(EXP + exp <= 64, "ERROR:FM-011:EXPONENT_TOO_LARGE");
|
120
110
|
|
@@ -122,90 +112,95 @@ library UFixedMathLib {
|
|
122
112
|
}
|
123
113
|
|
124
114
|
/// @dev Converts a UFixed to a uint256.
|
125
|
-
function ftoi(UFixed a)
|
126
|
-
public
|
127
|
-
pure
|
128
|
-
returns(uint256)
|
129
|
-
{
|
115
|
+
function ftoi(UFixed a) public pure returns (uint256) {
|
130
116
|
return ftoi(a, ROUNDING_DEFAULT);
|
131
117
|
}
|
132
118
|
|
133
119
|
/// @dev Converts a UFixed to a uint256 with given rounding mode.
|
134
|
-
function ftoi(UFixed a, Rounding rounding)
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
120
|
+
function ftoi(UFixed a, Rounding rounding) public pure returns (uint256) {
|
121
|
+
if (rounding == Rounding.HalfUp) {
|
122
|
+
return
|
123
|
+
Math.mulDiv(
|
124
|
+
UFixed.unwrap(a) + MULTIPLIER_HALF,
|
125
|
+
1,
|
126
|
+
MULTIPLIER,
|
127
|
+
Math.Rounding.Down
|
128
|
+
);
|
129
|
+
} else if (rounding == Rounding.Down) {
|
130
|
+
return
|
131
|
+
Math.mulDiv(
|
132
|
+
UFixed.unwrap(a),
|
133
|
+
1,
|
134
|
+
MULTIPLIER,
|
135
|
+
Math.Rounding.Down
|
136
|
+
);
|
143
137
|
} else {
|
144
|
-
return
|
138
|
+
return
|
139
|
+
Math.mulDiv(UFixed.unwrap(a), 1, MULTIPLIER, Math.Rounding.Up);
|
145
140
|
}
|
146
141
|
}
|
147
142
|
|
148
143
|
/// @dev adds two UFixed numbers
|
149
|
-
function add(UFixed a, UFixed b) public pure returns(UFixed) {
|
144
|
+
function add(UFixed a, UFixed b) public pure returns (UFixed) {
|
150
145
|
return addUFixed(a, b);
|
151
146
|
}
|
152
147
|
|
153
148
|
/// @dev subtracts two UFixed numbers
|
154
|
-
function sub(UFixed a, UFixed b) public pure returns(UFixed) {
|
149
|
+
function sub(UFixed a, UFixed b) public pure returns (UFixed) {
|
155
150
|
return subUFixed(a, b);
|
156
151
|
}
|
157
152
|
|
158
153
|
/// @dev multiplies two UFixed numbers
|
159
|
-
function mul(UFixed a, UFixed b) public pure returns(UFixed) {
|
154
|
+
function mul(UFixed a, UFixed b) public pure returns (UFixed) {
|
160
155
|
return mulUFixed(a, b);
|
161
156
|
}
|
162
157
|
|
163
158
|
/// @dev divides two UFixed numbers
|
164
|
-
function div(UFixed a, UFixed b) public pure returns(UFixed) {
|
159
|
+
function div(UFixed a, UFixed b) public pure returns (UFixed) {
|
165
160
|
return divUFixed(a, b);
|
166
161
|
}
|
167
162
|
|
168
163
|
/// @dev return true if UFixed a is greater than UFixed b
|
169
|
-
function gt(UFixed a, UFixed b) public pure returns(bool isGreaterThan) {
|
164
|
+
function gt(UFixed a, UFixed b) public pure returns (bool isGreaterThan) {
|
170
165
|
return gtUFixed(a, b);
|
171
166
|
}
|
172
167
|
|
173
168
|
/// @dev return true if UFixed a is greater than or equal to UFixed b
|
174
|
-
function gte(UFixed a, UFixed b) public pure returns(bool isGreaterThan) {
|
169
|
+
function gte(UFixed a, UFixed b) public pure returns (bool isGreaterThan) {
|
175
170
|
return gteUFixed(a, b);
|
176
171
|
}
|
177
172
|
|
178
173
|
/// @dev return true if UFixed a is less than UFixed b
|
179
|
-
function lt(UFixed a, UFixed b) public pure returns(bool isGreaterThan) {
|
174
|
+
function lt(UFixed a, UFixed b) public pure returns (bool isGreaterThan) {
|
180
175
|
return ltUFixed(a, b);
|
181
176
|
}
|
182
177
|
|
183
178
|
/// @dev return true if UFixed a is less than or equal to UFixed b
|
184
|
-
function lte(UFixed a, UFixed b) public pure returns(bool isGreaterThan) {
|
179
|
+
function lte(UFixed a, UFixed b) public pure returns (bool isGreaterThan) {
|
185
180
|
return lteUFixed(a, b);
|
186
181
|
}
|
187
182
|
|
188
183
|
/// @dev return true if UFixed a is equal to UFixed b
|
189
|
-
function eq(UFixed a, UFixed b) public pure returns(bool isEqual) {
|
184
|
+
function eq(UFixed a, UFixed b) public pure returns (bool isEqual) {
|
190
185
|
return eqUFixed(a, b);
|
191
186
|
}
|
192
187
|
|
193
188
|
/// @dev return true if UFixed a is not zero
|
194
|
-
function gtz(UFixed a) public pure returns(bool isZero) {
|
189
|
+
function gtz(UFixed a) public pure returns (bool isZero) {
|
195
190
|
return gtzUFixed(a);
|
196
191
|
}
|
197
192
|
|
198
193
|
/// @dev return true if UFixed a is zero
|
199
|
-
function eqz(UFixed a) public pure returns(bool isZero) {
|
194
|
+
function eqz(UFixed a) public pure returns (bool isZero) {
|
200
195
|
return eqzUFixed(a);
|
201
196
|
}
|
202
197
|
|
203
|
-
function zero() public pure returns(UFixed) {
|
198
|
+
function zero() public pure returns (UFixed) {
|
204
199
|
return UFixed.wrap(0);
|
205
200
|
}
|
206
201
|
|
207
202
|
/// @dev return the absolute delta between two UFixed numbers
|
208
|
-
function delta(UFixed a, UFixed b) public pure returns(UFixed) {
|
203
|
+
function delta(UFixed a, UFixed b) public pure returns (UFixed) {
|
209
204
|
return deltaUFixed(a, b);
|
210
205
|
}
|
211
206
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@etherisc/gif-next",
|
3
|
-
"version": "0.0.2-
|
3
|
+
"version": "0.0.2-d3543ee-345",
|
4
4
|
"description": "This is the repository for the next version of the Generic Insurance Framework (GIF) smart contracts. ",
|
5
5
|
"main": "index.js",
|
6
6
|
"scripts": {
|
@@ -8,7 +8,10 @@
|
|
8
8
|
"test": "hh test",
|
9
9
|
"ptest": "hh test --parallel",
|
10
10
|
"test-with-gas": "REPORT_GAS=true hh test",
|
11
|
-
"coverage": "hh coverage"
|
11
|
+
"coverage": "hh coverage",
|
12
|
+
"styleFix": "prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol' 'test_forge/**/*.t.sol'",
|
13
|
+
"styleCheck": "prettier --check --plugin=prettier-plugin-solidity 'contracts/**/*.sol' 'test_forge/**/*.t.sol'",
|
14
|
+
"lint": "solhint 'contracts/**/*.sol' 'test_forge/**/*.t.sol'"
|
12
15
|
},
|
13
16
|
"repository": {
|
14
17
|
"type": "git",
|
@@ -25,10 +28,13 @@
|
|
25
28
|
],
|
26
29
|
"homepage": "https://github.com/etherisc/gif-next#readme",
|
27
30
|
"devDependencies": {
|
28
|
-
"@nomicfoundation/hardhat-foundry": "^1.
|
31
|
+
"@nomicfoundation/hardhat-foundry": "^1.1.1",
|
29
32
|
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
|
33
|
+
"@nomicfoundation/hardhat-verify": "^1.1.1",
|
30
34
|
"dotenv": "^16.3.1",
|
31
|
-
"hardhat": "^2.17.
|
35
|
+
"hardhat": "^2.17.2",
|
36
|
+
"prettier": "^3.0.3",
|
37
|
+
"prettier-plugin-solidity": "^1.1.3"
|
32
38
|
},
|
33
39
|
"dependencies": {
|
34
40
|
"@openzeppelin/contracts": "^4.9.3",
|