@etherisc/gif-next 0.0.2-80a82e6 → 0.0.2-836a512-798
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/README.md +25 -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 +518 -47
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +584 -66
- 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 -23
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +8 -8
- 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 -21
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +1 -1
- 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 +355 -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 +355 -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 +4 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
- 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 +4 -0
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +174 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +453 -0
- package/contracts/components/Component.sol +35 -20
- package/contracts/components/IPool.sol +5 -3
- package/contracts/components/IProduct.sol +6 -7
- package/contracts/components/Pool.sol +28 -12
- package/contracts/components/Product.sol +37 -22
- 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 +33 -0
- package/contracts/experiment/statemachine/ISM.sol +20 -0
- package/contracts/experiment/statemachine/README.md +112 -0
- package/contracts/experiment/statemachine/SM.sol +54 -0
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +24 -0
- package/contracts/experiment/types/TypeA.sol +14 -9
- package/contracts/experiment/types/TypeB.sol +14 -9
- package/contracts/instance/IInstance.sol +6 -4
- package/contracts/instance/Instance.sol +17 -12
- package/contracts/instance/access/Access.sol +63 -116
- package/contracts/instance/access/IAccess.sol +28 -48
- package/contracts/instance/component/ComponentModule.sol +117 -111
- package/contracts/instance/component/IComponent.sol +36 -55
- package/contracts/instance/lifecycle/ILifecycle.sol +32 -0
- package/contracts/instance/lifecycle/LifecycleModule.sol +91 -0
- package/contracts/instance/policy/IPolicy.sol +16 -30
- package/contracts/instance/policy/PolicyModule.sol +35 -35
- package/contracts/instance/pool/IPoolModule.sol +6 -25
- package/contracts/instance/pool/PoolModule.sol +34 -38
- package/contracts/instance/product/IProductService.sol +6 -16
- package/contracts/instance/product/ProductService.sol +51 -41
- package/contracts/instance/treasury/ITreasury.sol +73 -0
- package/contracts/instance/treasury/TokenHandler.sol +27 -0
- package/contracts/instance/treasury/TreasuryModule.sol +131 -0
- package/contracts/registry/ChainNft.sol +23 -61
- package/contracts/registry/IChainNft.sol +10 -7
- package/contracts/registry/IRegistry.sol +36 -37
- package/contracts/registry/Registry.sol +50 -55
- package/contracts/types/Blocknumber.sol +118 -0
- package/contracts/types/ChainId.sol +24 -10
- package/contracts/types/Fee.sol +30 -0
- package/contracts/types/NftId.sol +31 -12
- package/contracts/types/ObjectType.sol +50 -0
- package/contracts/types/StateId.sol +46 -0
- package/contracts/types/Timestamp.sol +102 -0
- package/contracts/types/UFixed.sol +206 -0
- package/package.json +10 -4
@@ -0,0 +1,27 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.19;
|
3
|
+
|
4
|
+
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
|
5
|
+
|
6
|
+
contract TokenHandler {
|
7
|
+
|
8
|
+
// TODO use oz safeTransferFrom
|
9
|
+
|
10
|
+
IERC20 _token;
|
11
|
+
|
12
|
+
constructor(address token) {
|
13
|
+
_token = IERC20(token);
|
14
|
+
}
|
15
|
+
|
16
|
+
// TODO add logging
|
17
|
+
function transfer(
|
18
|
+
address from,
|
19
|
+
address to,
|
20
|
+
uint256 amount
|
21
|
+
)
|
22
|
+
external
|
23
|
+
// TODO add authz (only treasury)
|
24
|
+
{
|
25
|
+
_token.transferFrom(from, to, amount);
|
26
|
+
}
|
27
|
+
}
|
@@ -0,0 +1,131 @@
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
2
|
+
pragma solidity ^0.8.19;
|
3
|
+
|
4
|
+
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
|
5
|
+
|
6
|
+
import {NftId} from "../../types/NftId.sol";
|
7
|
+
import {Fee, feeIsZero} from "../../types/Fee.sol";
|
8
|
+
import {UFixed} from "../../types/UFixed.sol";
|
9
|
+
import {IProductComponent} from "../../components/IProduct.sol";
|
10
|
+
import {IPolicy, IPolicyModule} from "../policy/IPolicy.sol";
|
11
|
+
import {TokenHandler} from "./TokenHandler.sol";
|
12
|
+
import {ITreasuryModule} from "./ITreasury.sol";
|
13
|
+
import {TokenHandler} from "./TokenHandler.sol";
|
14
|
+
|
15
|
+
abstract contract TreasuryModule is ITreasuryModule {
|
16
|
+
|
17
|
+
mapping(NftId productNftId => ProductSetup setup) private _productSetup;
|
18
|
+
mapping(NftId distributorNftId => DistributorSetup setup) private _distributorSetup;
|
19
|
+
mapping(NftId poolNftId => PoolSetup setup) private _poolSetup;
|
20
|
+
|
21
|
+
IPolicyModule private _policyModule;
|
22
|
+
|
23
|
+
constructor() {
|
24
|
+
_policyModule = IPolicyModule(address(this));
|
25
|
+
}
|
26
|
+
|
27
|
+
function registerProduct(
|
28
|
+
NftId productNftId,
|
29
|
+
NftId distributorNftId,
|
30
|
+
NftId poolNftId,
|
31
|
+
IERC20 token,
|
32
|
+
address wallet,
|
33
|
+
Fee memory policyFee,
|
34
|
+
Fee memory processingFee
|
35
|
+
)
|
36
|
+
external
|
37
|
+
override
|
38
|
+
// TODO add authz (only component module)
|
39
|
+
{
|
40
|
+
// TODO add validation
|
41
|
+
|
42
|
+
// deploy product specific handler contract
|
43
|
+
TokenHandler tokenHandler = new TokenHandler(address(token));
|
44
|
+
|
45
|
+
_productSetup[productNftId] = ProductSetup(
|
46
|
+
productNftId,
|
47
|
+
distributorNftId,
|
48
|
+
poolNftId,
|
49
|
+
token,
|
50
|
+
tokenHandler,
|
51
|
+
wallet,
|
52
|
+
policyFee,
|
53
|
+
processingFee
|
54
|
+
);
|
55
|
+
|
56
|
+
// TODO add logging
|
57
|
+
}
|
58
|
+
|
59
|
+
function registerPool(
|
60
|
+
NftId poolNftId,
|
61
|
+
address wallet,
|
62
|
+
Fee memory stakingFee,
|
63
|
+
Fee memory performanceFee
|
64
|
+
)
|
65
|
+
external
|
66
|
+
override
|
67
|
+
// TODO add authz (only component module)
|
68
|
+
{
|
69
|
+
// TODO add validation
|
70
|
+
|
71
|
+
_poolSetup[poolNftId] = PoolSetup(
|
72
|
+
poolNftId,
|
73
|
+
wallet,
|
74
|
+
stakingFee,
|
75
|
+
performanceFee
|
76
|
+
);
|
77
|
+
|
78
|
+
// TODO add logging
|
79
|
+
}
|
80
|
+
|
81
|
+
function getTokenHandler(NftId productNftId)
|
82
|
+
external
|
83
|
+
view
|
84
|
+
override
|
85
|
+
returns(TokenHandler tokenHandler)
|
86
|
+
{
|
87
|
+
return _productSetup[productNftId].tokenHandler;
|
88
|
+
}
|
89
|
+
|
90
|
+
function getProductSetup(NftId productNftId)
|
91
|
+
external
|
92
|
+
view
|
93
|
+
override
|
94
|
+
returns(ProductSetup memory setup)
|
95
|
+
{
|
96
|
+
return _productSetup[productNftId];
|
97
|
+
}
|
98
|
+
|
99
|
+
function getPoolSetup(NftId poolNftId)
|
100
|
+
external
|
101
|
+
view
|
102
|
+
override
|
103
|
+
returns(PoolSetup memory setup)
|
104
|
+
{
|
105
|
+
return _poolSetup[poolNftId];
|
106
|
+
}
|
107
|
+
|
108
|
+
|
109
|
+
function processPremium(NftId policyNftId, NftId productNftId)
|
110
|
+
external
|
111
|
+
override
|
112
|
+
// TODO add authz (only product service)
|
113
|
+
{
|
114
|
+
IPolicy.PolicyInfo memory policyInfo = _policyModule.getPolicyInfo(policyNftId);
|
115
|
+
require(policyInfo.nftId == policyNftId, "ERROR:TRS-020:POLICY_UNKNOWN");
|
116
|
+
|
117
|
+
ProductSetup memory product = _productSetup[productNftId];
|
118
|
+
|
119
|
+
TokenHandler tokenHandler = product.tokenHandler;
|
120
|
+
address policyOwner = this.getRegistry().getOwner(policyNftId);
|
121
|
+
address poolWallet = _poolSetup[product.poolNftId].wallet;
|
122
|
+
// TODO add validation
|
123
|
+
|
124
|
+
if(feeIsZero(product.policyFee)) {
|
125
|
+
tokenHandler.transfer(policyOwner, poolWallet, policyInfo.premiumAmount);
|
126
|
+
} else {
|
127
|
+
// TODO add fee handling
|
128
|
+
tokenHandler.transfer(policyOwner, poolWallet, policyInfo.premiumAmount);
|
129
|
+
}
|
130
|
+
}
|
131
|
+
}
|
@@ -4,10 +4,7 @@ pragma solidity ^0.8.19;
|
|
4
4
|
import {ERC721, ERC721Enumerable} from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
|
5
5
|
import {IChainNft} from "./IChainNft.sol";
|
6
6
|
|
7
|
-
contract ChainNft is
|
8
|
-
ERC721Enumerable,
|
9
|
-
IChainNft
|
10
|
-
{
|
7
|
+
contract ChainNft is ERC721Enumerable, IChainNft {
|
11
8
|
string public constant NAME = "Dezentralized Insurance Protocol Registry";
|
12
9
|
string public constant SYMBOL = "DIPR";
|
13
10
|
|
@@ -18,22 +15,18 @@ contract ChainNft is
|
|
18
15
|
address private _registry;
|
19
16
|
|
20
17
|
// only used for _getNextTokenId
|
21
|
-
uint256 internal _chainIdInt;
|
18
|
+
uint256 internal _chainIdInt;
|
22
19
|
uint256 internal _chainIdDigits;
|
23
20
|
uint256 internal _chainIdMultiplier;
|
24
21
|
uint256 internal _idNext;
|
25
22
|
uint256 internal _totalMinted;
|
26
23
|
|
27
|
-
|
28
24
|
modifier onlyRegistry() {
|
29
25
|
require(msg.sender == _registry, "ERROR:NFT-001:CALLER_NOT_REGISTRY");
|
30
26
|
_;
|
31
27
|
}
|
32
28
|
|
33
|
-
|
34
|
-
constructor(address registry)
|
35
|
-
ERC721(NAME, SYMBOL)
|
36
|
-
{
|
29
|
+
constructor(address registry) ERC721(NAME, SYMBOL) {
|
37
30
|
require(registry != address(0), "ERROR:NFT-010:REGISTRY_ZERO");
|
38
31
|
|
39
32
|
_registry = registry;
|
@@ -43,88 +36,59 @@ contract ChainNft is
|
|
43
36
|
_chainIdMultiplier = 10 ** _chainIdDigits;
|
44
37
|
|
45
38
|
// on mainnet/goerli start /1 (reserved for protocol nft) on other chains with 2
|
46
|
-
if(block.chainid == 1 || block.chainid == 5) {
|
39
|
+
if (block.chainid == 1 || block.chainid == 5) {
|
47
40
|
_idNext = 1;
|
48
41
|
} else {
|
49
42
|
_idNext = 2;
|
50
43
|
}
|
51
44
|
}
|
52
45
|
|
53
|
-
|
54
46
|
function mint(
|
55
47
|
address to,
|
56
48
|
string memory uri
|
57
|
-
)
|
58
|
-
external
|
59
|
-
override
|
60
|
-
onlyRegistry
|
61
|
-
returns(uint256 tokenId)
|
62
|
-
{
|
49
|
+
) external override onlyRegistry returns (uint256 tokenId) {
|
63
50
|
tokenId = _getNextTokenId();
|
64
51
|
_totalMinted++;
|
65
52
|
|
66
53
|
_safeMint(to, tokenId);
|
67
54
|
|
68
|
-
if(bytes(uri).length > 0) {
|
55
|
+
if (bytes(uri).length > 0) {
|
69
56
|
_uri[tokenId] = uri;
|
70
57
|
}
|
71
58
|
}
|
72
59
|
|
73
|
-
|
74
|
-
function burn(uint256 tokenId)
|
75
|
-
external
|
76
|
-
override
|
77
|
-
onlyRegistry
|
78
|
-
{
|
60
|
+
function burn(uint256 tokenId) external override onlyRegistry {
|
79
61
|
_requireMinted(tokenId);
|
80
62
|
_burn(tokenId);
|
81
63
|
delete _uri[tokenId];
|
82
64
|
}
|
83
65
|
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
onlyRegistry
|
89
|
-
{
|
66
|
+
function setURI(
|
67
|
+
uint256 tokenId,
|
68
|
+
string memory uri
|
69
|
+
) external override onlyRegistry {
|
90
70
|
require(bytes(uri).length > 0, "ERROR:CRG-011:URI_EMPTY");
|
91
71
|
|
92
72
|
_requireMinted(tokenId);
|
93
73
|
_uri[tokenId] = uri;
|
94
74
|
}
|
95
75
|
|
96
|
-
|
97
|
-
function exists(uint256 tokenId)
|
98
|
-
external
|
99
|
-
view
|
100
|
-
override
|
101
|
-
returns(bool)
|
102
|
-
{
|
76
|
+
function exists(uint256 tokenId) external view override returns (bool) {
|
103
77
|
return _exists(tokenId);
|
104
78
|
}
|
105
79
|
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
view
|
110
|
-
override
|
111
|
-
returns(string memory)
|
112
|
-
{
|
80
|
+
function tokenURI(
|
81
|
+
uint256 tokenId
|
82
|
+
) public view override returns (string memory) {
|
113
83
|
_requireMinted(tokenId);
|
114
84
|
return _uri[tokenId];
|
115
85
|
}
|
116
86
|
|
117
|
-
|
118
|
-
function getRegistryAddress()
|
119
|
-
external
|
120
|
-
view
|
121
|
-
override
|
122
|
-
returns(address)
|
123
|
-
{
|
87
|
+
function getRegistryAddress() external view override returns (address) {
|
124
88
|
return _registry;
|
125
89
|
}
|
126
90
|
|
127
|
-
function totalMinted() external override
|
91
|
+
function totalMinted() external view override returns (uint256) {
|
128
92
|
return _totalMinted;
|
129
93
|
}
|
130
94
|
|
@@ -153,17 +117,15 @@ contract ChainNft is
|
|
153
117
|
// (42 * 10 ** 10 + 9876543210) * 100 + 10
|
154
118
|
// (index * 10 ** digits + chainid) * 100 + digits (1 < digits < 100)
|
155
119
|
|
156
|
-
function _getNextTokenId() private returns(uint256 id) {
|
157
|
-
id =
|
120
|
+
function _getNextTokenId() private returns (uint256 id) {
|
121
|
+
id =
|
122
|
+
(_idNext * _chainIdMultiplier + _chainIdInt) *
|
123
|
+
100 +
|
124
|
+
_chainIdDigits;
|
158
125
|
_idNext++;
|
159
126
|
}
|
160
127
|
|
161
|
-
|
162
|
-
function _countDigits(uint256 num)
|
163
|
-
private
|
164
|
-
pure
|
165
|
-
returns (uint256 count)
|
166
|
-
{
|
128
|
+
function _countDigits(uint256 num) private pure returns (uint256 count) {
|
167
129
|
count = 0;
|
168
130
|
while (num != 0) {
|
169
131
|
count++;
|
@@ -3,16 +3,19 @@ pragma solidity ^0.8.19;
|
|
3
3
|
|
4
4
|
import {IERC721Enumerable} from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
|
5
5
|
|
6
|
-
interface IChainNft is
|
7
|
-
|
8
|
-
|
6
|
+
interface IChainNft is IERC721Enumerable {
|
7
|
+
function mint(
|
8
|
+
address to,
|
9
|
+
string memory uri
|
10
|
+
) external returns (uint256 tokenId);
|
9
11
|
|
10
|
-
function mint(address to, string memory uri) external returns(uint256 tokenId);
|
11
12
|
function burn(uint256 tokenId) external;
|
13
|
+
|
12
14
|
function setURI(uint256 tokenId, string memory uri) external;
|
13
15
|
|
14
|
-
function exists(uint256 tokenId) external view returns(bool);
|
15
|
-
|
16
|
+
function exists(uint256 tokenId) external view returns (bool);
|
17
|
+
|
18
|
+
function totalMinted() external view returns (uint256);
|
16
19
|
|
17
|
-
function getRegistryAddress() external view returns(address registry);
|
20
|
+
function getRegistryAddress() external view returns (address registry);
|
18
21
|
}
|
@@ -2,69 +2,68 @@
|
|
2
2
|
pragma solidity ^0.8.19;
|
3
3
|
|
4
4
|
import {NftId} from "../types/NftId.sol";
|
5
|
+
import {ObjectType} from "../types/ObjectType.sol";
|
5
6
|
|
6
7
|
interface IOwnable {
|
7
|
-
function getOwner() external view returns(address owner);
|
8
|
+
function getOwner() external view returns (address owner);
|
8
9
|
}
|
9
10
|
|
10
11
|
interface IRegistryLinked {
|
11
|
-
|
12
12
|
event LogDebug(uint256 idx, address module, string comment);
|
13
13
|
|
14
|
-
function getRegistry() external view returns(IRegistry registry);
|
14
|
+
function getRegistry() external view returns (IRegistry registry);
|
15
15
|
}
|
16
16
|
|
17
|
-
interface IRegisterable is
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
function
|
26
|
-
function getType() external view returns(uint256 objectType);
|
27
|
-
function getData() external view returns(bytes memory data);
|
28
|
-
function isRegisterable() external pure returns(bool);
|
29
|
-
function getInitialOwner() external view returns(address initialOwner);
|
30
|
-
|
31
|
-
function isRegistered() external view returns(bool);
|
32
|
-
}
|
17
|
+
interface IRegisterable is IOwnable, IRegistryLinked {
|
18
|
+
|
19
|
+
function register() external returns (NftId nftId);
|
20
|
+
|
21
|
+
function getNftId() external view returns (NftId nftId);
|
22
|
+
|
23
|
+
function getParentNftId() external view returns (NftId parentNftId);
|
24
|
+
|
25
|
+
function getType() external view returns (ObjectType objectType);
|
33
26
|
|
27
|
+
function getData() external view returns (bytes memory data);
|
28
|
+
|
29
|
+
function isRegisterable() external pure returns (bool);
|
30
|
+
|
31
|
+
function getInitialOwner() external view returns (address initialOwner);
|
32
|
+
|
33
|
+
function isRegistered() external view returns (bool);
|
34
|
+
}
|
34
35
|
|
35
36
|
interface IRegistry {
|
36
37
|
|
37
38
|
struct RegistryInfo {
|
38
39
|
NftId nftId;
|
39
40
|
NftId parentNftId;
|
40
|
-
|
41
|
+
ObjectType objectType;
|
41
42
|
address objectAddress;
|
42
43
|
address initialOwner;
|
43
44
|
}
|
44
45
|
|
45
|
-
function
|
46
|
-
function INSTANCE() external pure returns(uint256);
|
47
|
-
function PRODUCT() external pure returns(uint256);
|
48
|
-
function ORACLE() external pure returns(uint256);
|
49
|
-
function POOL() external pure returns(uint256);
|
50
|
-
function POLICY() external pure returns(uint256);
|
51
|
-
function BUNDLE() external pure returns(uint256);
|
46
|
+
function register(address objectAddress) external returns (NftId nftId);
|
52
47
|
|
53
|
-
function register(address objectAddress) external returns(NftId nftId);
|
54
48
|
function registerObjectForInstance(
|
55
49
|
NftId parentNftid,
|
56
|
-
|
50
|
+
ObjectType objectType,
|
57
51
|
address initialOwner
|
58
|
-
)
|
59
|
-
|
52
|
+
) external returns (NftId nftId);
|
53
|
+
|
54
|
+
function getObjectCount() external view returns (uint256);
|
55
|
+
|
56
|
+
function getNftId(
|
57
|
+
address objectAddress
|
58
|
+
) external view returns (NftId nftId);
|
60
59
|
|
61
|
-
function
|
60
|
+
function getInfo(
|
61
|
+
NftId nftId
|
62
|
+
) external view returns (RegistryInfo memory info);
|
62
63
|
|
63
|
-
function
|
64
|
-
function getInfo(NftId nftId) external view returns(RegistryInfo memory info);
|
65
|
-
function getOwner(NftId nftId) external view returns(address ownerAddress);
|
64
|
+
function getOwner(NftId nftId) external view returns (address ownerAddress);
|
66
65
|
|
67
|
-
function isRegistered(address objectAddress) external view returns(bool);
|
66
|
+
function isRegistered(address objectAddress) external view returns (bool);
|
68
67
|
|
69
|
-
function getNftAddress() external view returns(address nft);
|
68
|
+
function getNftAddress() external view returns (address nft);
|
70
69
|
}
|
@@ -3,67 +3,59 @@ pragma solidity ^0.8.19;
|
|
3
3
|
|
4
4
|
import {IChainNft} from "./IChainNft.sol";
|
5
5
|
import {IRegistry, IRegistryLinked, IRegisterable} from "./IRegistry.sol";
|
6
|
-
import {NftId, toNftId} from "../types/NftId.sol";
|
7
|
-
import {
|
6
|
+
import {NftId, toNftId, NftIdLib} from "../types/NftId.sol";
|
7
|
+
import {ObjectType, INSTANCE, POLICY, BUNDLE} from "../types/ObjectType.sol";
|
8
8
|
|
9
9
|
contract RegistryLinked is IRegistryLinked {
|
10
|
-
|
11
10
|
IRegistry internal _registry;
|
12
|
-
|
11
|
+
|
13
12
|
constructor(address registry) {
|
14
13
|
_registry = IRegistry(registry);
|
15
14
|
}
|
16
15
|
|
17
|
-
function getRegistry() external view override returns(IRegistry registry) {
|
16
|
+
function getRegistry() external view override returns (IRegistry registry) {
|
18
17
|
return _registry;
|
19
18
|
}
|
20
|
-
|
21
19
|
}
|
22
20
|
|
23
|
-
|
24
|
-
abstract contract Registerable is
|
25
|
-
RegistryLinked,
|
26
|
-
IRegisterable
|
27
|
-
{
|
21
|
+
abstract contract Registerable is RegistryLinked, IRegisterable {
|
28
22
|
using NftIdLib for NftId;
|
29
23
|
|
30
24
|
address private _initialOwner;
|
31
|
-
|
32
|
-
constructor(address registry)
|
33
|
-
RegistryLinked(registry)
|
34
|
-
{
|
25
|
+
|
26
|
+
constructor(address registry) RegistryLinked(registry) {
|
35
27
|
_initialOwner = msg.sender;
|
36
28
|
}
|
37
29
|
|
38
30
|
// getType, getData and register need to be implemented by concrete contract
|
39
31
|
|
40
|
-
function isRegisterable() external pure override returns(bool) {
|
32
|
+
function isRegisterable() external pure override returns (bool) {
|
41
33
|
return true;
|
42
34
|
}
|
43
35
|
|
44
|
-
function getInitialOwner() public view override returns(address deployer) {
|
36
|
+
function getInitialOwner() public view override returns (address deployer) {
|
45
37
|
return _initialOwner;
|
46
38
|
}
|
47
39
|
|
48
|
-
function isRegistered() public view override returns(bool) {
|
40
|
+
function isRegistered() public view override returns (bool) {
|
49
41
|
NftId nftId = _registry.getNftId(address(this));
|
50
42
|
return nftId.gtz();
|
51
43
|
}
|
52
44
|
|
53
|
-
function getNftId() public view override returns(NftId nftId) {
|
45
|
+
function getNftId() public view override returns (NftId nftId) {
|
54
46
|
return _registry.getNftId(address(this));
|
55
47
|
}
|
56
48
|
|
57
|
-
function getOwner() public view override returns(address owner) {
|
49
|
+
function getOwner() public view override returns (address owner) {
|
58
50
|
NftId id = _registry.getNftId(address(this));
|
59
51
|
owner = _registry.getOwner(id);
|
60
52
|
return owner != address(0) ? owner : _initialOwner;
|
61
53
|
}
|
62
|
-
|
63
54
|
}
|
64
55
|
|
65
56
|
contract Registry is IRegistry {
|
66
57
|
using NftIdLib for NftId;
|
58
|
+
|
67
59
|
string public constant EMPTY_URI = "";
|
68
60
|
|
69
61
|
mapping(NftId nftId => RegistryInfo info) private _info;
|
@@ -73,37 +65,38 @@ contract Registry is IRegistry {
|
|
73
65
|
IChainNft private _chainNft;
|
74
66
|
|
75
67
|
function initialize(address chainNft) external {
|
76
|
-
require(
|
68
|
+
require(
|
69
|
+
address(_chainNft) == address(0),
|
70
|
+
"ERROR:REG-001:ALREADY_INITIALIZED"
|
71
|
+
);
|
77
72
|
_chainNft = IChainNft(chainNft);
|
78
73
|
}
|
79
74
|
|
80
|
-
function TOKEN() public pure override returns(uint256) { return 30; }
|
81
|
-
function INSTANCE() public pure override returns(uint256) { return 40; }
|
82
|
-
function PRODUCT() public pure override returns(uint256) { return 50; }
|
83
|
-
function ORACLE() public pure override returns(uint256) { return 60; }
|
84
|
-
function POOL() public pure override returns(uint256) { return 70; }
|
85
|
-
function POLICY() public pure override returns(uint256) { return 80; }
|
86
|
-
function BUNDLE() public pure override returns(uint256) { return 90; }
|
87
|
-
|
88
75
|
function register(address objectAddress) external override returns(NftId nftId) {
|
89
76
|
require(_nftIdByAddress[objectAddress].eqz(), "ERROR:REG-002:ALREADY_REGISTERED");
|
90
77
|
|
91
78
|
IRegisterable registerable = IRegisterable(objectAddress);
|
92
|
-
require(
|
79
|
+
require(
|
80
|
+
registerable.isRegisterable(),
|
81
|
+
"ERROR:REG-003:NOT_REGISTERABLE"
|
82
|
+
);
|
93
83
|
|
94
84
|
// check parent exists (for objects not instances)
|
95
|
-
if(registerable.getType() != INSTANCE()) {
|
96
|
-
RegistryInfo memory parentInfo = _info[
|
85
|
+
if (registerable.getType() != INSTANCE()) {
|
86
|
+
RegistryInfo memory parentInfo = _info[
|
87
|
+
registerable.getParentNftId()
|
88
|
+
];
|
97
89
|
require(parentInfo.nftId.gtz(), "ERROR:REG-004:PARENT_NOT_FOUND");
|
98
90
|
// check validity of parent relation, valid relations are
|
99
91
|
// policy -> product, bundle -> pool, product -> instance, pool -> instance
|
100
92
|
}
|
101
93
|
|
102
94
|
uint256 mintedTokenId = _chainNft.mint(
|
103
|
-
registerable.getInitialOwner(),
|
104
|
-
EMPTY_URI
|
95
|
+
registerable.getInitialOwner(),
|
96
|
+
EMPTY_URI
|
97
|
+
);
|
105
98
|
nftId = toNftId(mintedTokenId);
|
106
|
-
|
99
|
+
|
107
100
|
RegistryInfo memory info = RegistryInfo(
|
108
101
|
nftId,
|
109
102
|
registerable.getParentNftId(),
|
@@ -118,25 +111,25 @@ contract Registry is IRegistry {
|
|
118
111
|
// add logging
|
119
112
|
}
|
120
113
|
|
121
|
-
|
122
114
|
function registerObjectForInstance(
|
123
115
|
NftId parentNftId,
|
124
|
-
|
116
|
+
ObjectType objectType,
|
125
117
|
address initialOwner
|
126
118
|
)
|
127
|
-
external
|
119
|
+
external
|
128
120
|
override
|
129
|
-
|
130
|
-
|
121
|
+
returns (
|
122
|
+
// TODO add onlyRegisteredInstance
|
123
|
+
NftId nftId
|
124
|
+
)
|
131
125
|
{
|
132
126
|
// TODO add more validation
|
133
127
|
require(
|
134
128
|
objectType == POLICY() || objectType == BUNDLE(),
|
135
|
-
"ERROR:REG-005:TYPE_INVALID"
|
129
|
+
"ERROR:REG-005:TYPE_INVALID"
|
130
|
+
);
|
136
131
|
|
137
|
-
uint256 mintedTokenId = _chainNft.mint(
|
138
|
-
initialOwner,
|
139
|
-
EMPTY_URI);
|
132
|
+
uint256 mintedTokenId = _chainNft.mint(initialOwner, EMPTY_URI);
|
140
133
|
nftId = toNftId(mintedTokenId);
|
141
134
|
|
142
135
|
RegistryInfo memory info = RegistryInfo(
|
@@ -152,31 +145,33 @@ contract Registry is IRegistry {
|
|
152
145
|
// add logging
|
153
146
|
}
|
154
147
|
|
155
|
-
|
156
|
-
function getObjectCount() external view override returns(uint256) {
|
148
|
+
function getObjectCount() external view override returns (uint256) {
|
157
149
|
return _chainNft.totalSupply();
|
158
150
|
}
|
159
151
|
|
160
|
-
|
161
|
-
|
152
|
+
function getNftId(
|
153
|
+
address object
|
154
|
+
) external view override returns (NftId id) {
|
162
155
|
return _nftIdByAddress[object];
|
163
156
|
}
|
164
157
|
|
165
|
-
|
166
|
-
|
158
|
+
function isRegistered(
|
159
|
+
address object
|
160
|
+
) external view override returns (bool) {
|
167
161
|
return _nftIdByAddress[object].gtz();
|
168
162
|
}
|
169
163
|
|
170
|
-
|
171
|
-
|
164
|
+
function getInfo(
|
165
|
+
NftId nftId
|
166
|
+
) external view override returns (RegistryInfo memory info) {
|
172
167
|
return _info[nftId];
|
173
168
|
}
|
174
169
|
|
175
|
-
function getOwner(NftId nftId) external view override returns(address) {
|
170
|
+
function getOwner(NftId nftId) external view override returns (address) {
|
176
171
|
return _chainNft.ownerOf(nftId.toInt());
|
177
172
|
}
|
178
173
|
|
179
|
-
function getNftAddress() external view override returns(address nft) {
|
174
|
+
function getNftAddress() external view override returns (address nft) {
|
180
175
|
return address(_chainNft);
|
181
176
|
}
|
182
177
|
}
|