@etherisc/gif-next 0.0.2-78bf628-134 → 0.0.2-7acbd99-227
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 +71 -25
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +80 -41
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +445 -0
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +43 -40
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +343 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +199 -81
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +141 -47
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +299 -84
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +250 -53
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- 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 +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +742 -425
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +1014 -604
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +139 -46
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +33 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IService.sol/IService.json +99 -55
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +160 -48
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +14 -14
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +4 -4
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +135 -55
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +55 -54
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +56 -55
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +12 -7
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +12 -7
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +10 -0
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{compensation/ICompensation.sol/ICompensation.json → distribution/IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{compensation/ICompensation.sol/ICompensationModule.json → distribution/IDistribution.sol/IDistributionModule.json} +2 -2
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +53 -40
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +53 -40
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +1 -1
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +29 -14
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +28 -13
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +104 -1
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +126 -5
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +326 -221
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +2 -2
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +326 -221
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +251 -84
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +526 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +99 -74
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +369 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +158 -50
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +246 -49
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +230 -52
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +361 -70
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +141 -12
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +5 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +293 -40
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +668 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +471 -121
- package/artifacts/contracts/registry/Registry.sol/RegistryCreationCode.dbg.json +4 -0
- package/artifacts/contracts/registry/Registry.sol/RegistryCreationCode.json +150 -0
- package/artifacts/contracts/registry/RegistryInstaller.sol/RegistryInstaller.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryInstaller.sol/RegistryInstaller.json +344 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +861 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +43 -40
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -14
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +310 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +76 -37
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -14
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +4 -0
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +445 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +1 -1
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +299 -84
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +1 -1
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +297 -58
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +93 -39
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +161 -68
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +89 -25
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +50 -11
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.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/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +99 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +40 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
- package/contracts/components/BaseComponent.sol +12 -21
- package/contracts/components/Distribution.sol +155 -0
- package/contracts/components/IBaseComponent.sol +2 -2
- package/contracts/components/IDistributionComponent.sol +47 -0
- package/contracts/components/IPoolComponent.sol +14 -6
- package/contracts/components/IProductComponent.sol +26 -6
- package/contracts/components/Pool.sol +99 -27
- package/contracts/components/Product.sol +204 -22
- package/contracts/instance/IInstance.sol +11 -7
- package/contracts/instance/Instance.sol +25 -7
- package/contracts/instance/base/ComponentServiceBase.sol +13 -6
- package/contracts/instance/base/IInstanceBase.sol +6 -2
- package/contracts/instance/base/InstanceBase.sol +13 -8
- package/contracts/instance/base/Lifecycle.sol +10 -2
- package/contracts/instance/base/ModuleBase.sol +22 -17
- package/contracts/instance/base/ServiceBase.sol +19 -13
- package/contracts/instance/module/access/Access.sol +3 -3
- package/contracts/instance/module/bundle/BundleModule.sol +10 -12
- package/contracts/instance/module/bundle/IBundle.sol +6 -11
- package/contracts/instance/module/component/ComponentModule.sol +20 -24
- package/contracts/instance/module/component/IComponent.sol +5 -4
- package/contracts/instance/module/distribution/DistributionModule.sol +17 -0
- package/contracts/instance/module/distribution/IDistribution.sol +10 -0
- package/contracts/instance/module/policy/IPolicy.sol +10 -8
- package/contracts/instance/module/policy/PolicyModule.sol +33 -19
- package/contracts/instance/module/pool/IPoolModule.sol +4 -4
- package/contracts/instance/module/pool/PoolModule.sol +23 -15
- package/contracts/instance/module/risk/IRisk.sol +18 -2
- package/contracts/instance/module/risk/RiskModule.sol +56 -2
- package/contracts/instance/module/treasury/ITreasury.sol +32 -51
- package/contracts/instance/module/treasury/TokenHandler.sol +2 -2
- package/contracts/instance/module/treasury/TreasuryModule.sol +68 -89
- package/contracts/instance/service/ComponentOwnerService.sol +189 -79
- package/contracts/instance/service/DistributionService.sol +54 -0
- package/contracts/instance/service/IComponentOwnerService.sol +0 -2
- package/contracts/instance/service/IDistributionService.sol +12 -0
- package/contracts/instance/service/IPoolService.sol +7 -0
- package/contracts/instance/service/IProductService.sol +56 -7
- package/contracts/instance/service/PoolService.sol +49 -23
- package/contracts/instance/service/ProductService.sol +246 -91
- package/contracts/registry/ChainNft.sol +43 -15
- package/contracts/registry/IChainNft.sol +3 -2
- package/contracts/registry/IRegistry.sol +44 -28
- package/contracts/registry/IRegistryService.sol +29 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +388 -271
- package/contracts/registry/RegistryInstaller.sol +100 -0
- package/contracts/registry/RegistryService.sol +383 -0
- package/contracts/shared/ERC165.sol +1 -1
- package/contracts/shared/IRegisterable.sol +7 -9
- package/contracts/shared/IVersionable.sol +55 -11
- package/contracts/shared/ProxyManager.sol +115 -0
- package/contracts/shared/Registerable.sol +74 -43
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +112 -54
- package/contracts/test/TestDistribution.sol +22 -0
- package/contracts/test/TestPool.sol +7 -2
- package/contracts/test/TestProduct.sol +37 -7
- package/contracts/test/TestRegisterable.sol +5 -6
- package/contracts/test/TestService.sol +5 -11
- package/contracts/types/Fee.sol +8 -3
- package/contracts/types/ObjectType.sol +17 -5
- package/contracts/types/ReferralId.sol +48 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +2 -2
- package/contracts/types/Version.sol +9 -0
- package/package.json +1 -1
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
- package/contracts/instance/module/compensation/ICompensation.sol +0 -10
@@ -0,0 +1,343 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "IDistributionComponent",
|
4
|
+
"sourceName": "contracts/components/IDistributionComponent.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "ReferralId",
|
10
|
+
"name": "referralId",
|
11
|
+
"type": "bytes8"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"internalType": "uint256",
|
15
|
+
"name": "netPremiumAmount",
|
16
|
+
"type": "uint256"
|
17
|
+
}
|
18
|
+
],
|
19
|
+
"name": "calculateFeeAmount",
|
20
|
+
"outputs": [
|
21
|
+
{
|
22
|
+
"internalType": "uint256",
|
23
|
+
"name": "feeAmount",
|
24
|
+
"type": "uint256"
|
25
|
+
}
|
26
|
+
],
|
27
|
+
"stateMutability": "view",
|
28
|
+
"type": "function"
|
29
|
+
},
|
30
|
+
{
|
31
|
+
"inputs": [
|
32
|
+
{
|
33
|
+
"internalType": "ReferralId",
|
34
|
+
"name": "referralId",
|
35
|
+
"type": "bytes8"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"internalType": "uint256",
|
39
|
+
"name": "netPremiumAmount",
|
40
|
+
"type": "uint256"
|
41
|
+
}
|
42
|
+
],
|
43
|
+
"name": "calculateRenewalFeeAmount",
|
44
|
+
"outputs": [
|
45
|
+
{
|
46
|
+
"internalType": "uint256",
|
47
|
+
"name": "feeAmount",
|
48
|
+
"type": "uint256"
|
49
|
+
}
|
50
|
+
],
|
51
|
+
"stateMutability": "view",
|
52
|
+
"type": "function"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"inputs": [],
|
56
|
+
"name": "getDistributionFee",
|
57
|
+
"outputs": [
|
58
|
+
{
|
59
|
+
"components": [
|
60
|
+
{
|
61
|
+
"internalType": "UFixed",
|
62
|
+
"name": "fractionalFee",
|
63
|
+
"type": "uint256"
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"internalType": "uint256",
|
67
|
+
"name": "fixedFee",
|
68
|
+
"type": "uint256"
|
69
|
+
}
|
70
|
+
],
|
71
|
+
"internalType": "struct Fee",
|
72
|
+
"name": "distributionFee",
|
73
|
+
"type": "tuple"
|
74
|
+
}
|
75
|
+
],
|
76
|
+
"stateMutability": "view",
|
77
|
+
"type": "function"
|
78
|
+
},
|
79
|
+
{
|
80
|
+
"inputs": [],
|
81
|
+
"name": "getInitialInfo",
|
82
|
+
"outputs": [
|
83
|
+
{
|
84
|
+
"components": [
|
85
|
+
{
|
86
|
+
"internalType": "NftId",
|
87
|
+
"name": "nftId",
|
88
|
+
"type": "uint96"
|
89
|
+
},
|
90
|
+
{
|
91
|
+
"internalType": "NftId",
|
92
|
+
"name": "parentNftId",
|
93
|
+
"type": "uint96"
|
94
|
+
},
|
95
|
+
{
|
96
|
+
"internalType": "ObjectType",
|
97
|
+
"name": "objectType",
|
98
|
+
"type": "uint8"
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"internalType": "bool",
|
102
|
+
"name": "isInterceptor",
|
103
|
+
"type": "bool"
|
104
|
+
},
|
105
|
+
{
|
106
|
+
"internalType": "address",
|
107
|
+
"name": "objectAddress",
|
108
|
+
"type": "address"
|
109
|
+
},
|
110
|
+
{
|
111
|
+
"internalType": "address",
|
112
|
+
"name": "initialOwner",
|
113
|
+
"type": "address"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"internalType": "bytes",
|
117
|
+
"name": "data",
|
118
|
+
"type": "bytes"
|
119
|
+
}
|
120
|
+
],
|
121
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
122
|
+
"name": "",
|
123
|
+
"type": "tuple"
|
124
|
+
},
|
125
|
+
{
|
126
|
+
"internalType": "bytes",
|
127
|
+
"name": "data",
|
128
|
+
"type": "bytes"
|
129
|
+
}
|
130
|
+
],
|
131
|
+
"stateMutability": "view",
|
132
|
+
"type": "function"
|
133
|
+
},
|
134
|
+
{
|
135
|
+
"inputs": [],
|
136
|
+
"name": "getInstance",
|
137
|
+
"outputs": [
|
138
|
+
{
|
139
|
+
"internalType": "contract IInstance",
|
140
|
+
"name": "instance",
|
141
|
+
"type": "address"
|
142
|
+
}
|
143
|
+
],
|
144
|
+
"stateMutability": "view",
|
145
|
+
"type": "function"
|
146
|
+
},
|
147
|
+
{
|
148
|
+
"inputs": [],
|
149
|
+
"name": "getNftId",
|
150
|
+
"outputs": [
|
151
|
+
{
|
152
|
+
"internalType": "NftId",
|
153
|
+
"name": "nftId",
|
154
|
+
"type": "uint96"
|
155
|
+
}
|
156
|
+
],
|
157
|
+
"stateMutability": "view",
|
158
|
+
"type": "function"
|
159
|
+
},
|
160
|
+
{
|
161
|
+
"inputs": [],
|
162
|
+
"name": "getOwner",
|
163
|
+
"outputs": [
|
164
|
+
{
|
165
|
+
"internalType": "address",
|
166
|
+
"name": "owner",
|
167
|
+
"type": "address"
|
168
|
+
}
|
169
|
+
],
|
170
|
+
"stateMutability": "view",
|
171
|
+
"type": "function"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"inputs": [],
|
175
|
+
"name": "getRegistry",
|
176
|
+
"outputs": [
|
177
|
+
{
|
178
|
+
"internalType": "contract IRegistry",
|
179
|
+
"name": "registry",
|
180
|
+
"type": "address"
|
181
|
+
}
|
182
|
+
],
|
183
|
+
"stateMutability": "view",
|
184
|
+
"type": "function"
|
185
|
+
},
|
186
|
+
{
|
187
|
+
"inputs": [],
|
188
|
+
"name": "getToken",
|
189
|
+
"outputs": [
|
190
|
+
{
|
191
|
+
"internalType": "contract IERC20Metadata",
|
192
|
+
"name": "token",
|
193
|
+
"type": "address"
|
194
|
+
}
|
195
|
+
],
|
196
|
+
"stateMutability": "view",
|
197
|
+
"type": "function"
|
198
|
+
},
|
199
|
+
{
|
200
|
+
"inputs": [],
|
201
|
+
"name": "getWallet",
|
202
|
+
"outputs": [
|
203
|
+
{
|
204
|
+
"internalType": "address",
|
205
|
+
"name": "walletAddress",
|
206
|
+
"type": "address"
|
207
|
+
}
|
208
|
+
],
|
209
|
+
"stateMutability": "view",
|
210
|
+
"type": "function"
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"inputs": [],
|
214
|
+
"name": "isVerifying",
|
215
|
+
"outputs": [
|
216
|
+
{
|
217
|
+
"internalType": "bool",
|
218
|
+
"name": "verifying",
|
219
|
+
"type": "bool"
|
220
|
+
}
|
221
|
+
],
|
222
|
+
"stateMutability": "view",
|
223
|
+
"type": "function"
|
224
|
+
},
|
225
|
+
{
|
226
|
+
"inputs": [],
|
227
|
+
"name": "lock",
|
228
|
+
"outputs": [],
|
229
|
+
"stateMutability": "nonpayable",
|
230
|
+
"type": "function"
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"inputs": [
|
234
|
+
{
|
235
|
+
"internalType": "ReferralId",
|
236
|
+
"name": "referralId",
|
237
|
+
"type": "bytes8"
|
238
|
+
},
|
239
|
+
{
|
240
|
+
"internalType": "uint256",
|
241
|
+
"name": "feeAmount",
|
242
|
+
"type": "uint256"
|
243
|
+
}
|
244
|
+
],
|
245
|
+
"name": "processRenewal",
|
246
|
+
"outputs": [],
|
247
|
+
"stateMutability": "nonpayable",
|
248
|
+
"type": "function"
|
249
|
+
},
|
250
|
+
{
|
251
|
+
"inputs": [
|
252
|
+
{
|
253
|
+
"internalType": "ReferralId",
|
254
|
+
"name": "referralId",
|
255
|
+
"type": "bytes8"
|
256
|
+
},
|
257
|
+
{
|
258
|
+
"internalType": "uint256",
|
259
|
+
"name": "feeAmount",
|
260
|
+
"type": "uint256"
|
261
|
+
}
|
262
|
+
],
|
263
|
+
"name": "processSale",
|
264
|
+
"outputs": [],
|
265
|
+
"stateMutability": "nonpayable",
|
266
|
+
"type": "function"
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"inputs": [
|
270
|
+
{
|
271
|
+
"internalType": "ReferralId",
|
272
|
+
"name": "referralId",
|
273
|
+
"type": "bytes8"
|
274
|
+
}
|
275
|
+
],
|
276
|
+
"name": "referralIsValid",
|
277
|
+
"outputs": [
|
278
|
+
{
|
279
|
+
"internalType": "bool",
|
280
|
+
"name": "isValid",
|
281
|
+
"type": "bool"
|
282
|
+
}
|
283
|
+
],
|
284
|
+
"stateMutability": "view",
|
285
|
+
"type": "function"
|
286
|
+
},
|
287
|
+
{
|
288
|
+
"inputs": [
|
289
|
+
{
|
290
|
+
"components": [
|
291
|
+
{
|
292
|
+
"internalType": "UFixed",
|
293
|
+
"name": "fractionalFee",
|
294
|
+
"type": "uint256"
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"internalType": "uint256",
|
298
|
+
"name": "fixedFee",
|
299
|
+
"type": "uint256"
|
300
|
+
}
|
301
|
+
],
|
302
|
+
"internalType": "struct Fee",
|
303
|
+
"name": "distributionFee",
|
304
|
+
"type": "tuple"
|
305
|
+
}
|
306
|
+
],
|
307
|
+
"name": "setFees",
|
308
|
+
"outputs": [],
|
309
|
+
"stateMutability": "nonpayable",
|
310
|
+
"type": "function"
|
311
|
+
},
|
312
|
+
{
|
313
|
+
"inputs": [
|
314
|
+
{
|
315
|
+
"internalType": "bytes4",
|
316
|
+
"name": "interfaceId",
|
317
|
+
"type": "bytes4"
|
318
|
+
}
|
319
|
+
],
|
320
|
+
"name": "supportsInterface",
|
321
|
+
"outputs": [
|
322
|
+
{
|
323
|
+
"internalType": "bool",
|
324
|
+
"name": "",
|
325
|
+
"type": "bool"
|
326
|
+
}
|
327
|
+
],
|
328
|
+
"stateMutability": "view",
|
329
|
+
"type": "function"
|
330
|
+
},
|
331
|
+
{
|
332
|
+
"inputs": [],
|
333
|
+
"name": "unlock",
|
334
|
+
"outputs": [],
|
335
|
+
"stateMutability": "nonpayable",
|
336
|
+
"type": "function"
|
337
|
+
}
|
338
|
+
],
|
339
|
+
"bytecode": "0x",
|
340
|
+
"deployedBytecode": "0x",
|
341
|
+
"linkReferences": {},
|
342
|
+
"deployedLinkReferences": {}
|
343
|
+
}
|
@@ -30,6 +30,23 @@
|
|
30
30
|
},
|
31
31
|
{
|
32
32
|
"inputs": [
|
33
|
+
{
|
34
|
+
"components": [
|
35
|
+
{
|
36
|
+
"internalType": "UFixed",
|
37
|
+
"name": "fractionalFee",
|
38
|
+
"type": "uint256"
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"internalType": "uint256",
|
42
|
+
"name": "fixedFee",
|
43
|
+
"type": "uint256"
|
44
|
+
}
|
45
|
+
],
|
46
|
+
"internalType": "struct Fee",
|
47
|
+
"name": "fee",
|
48
|
+
"type": "tuple"
|
49
|
+
},
|
33
50
|
{
|
34
51
|
"internalType": "uint256",
|
35
52
|
"name": "initialAmount",
|
@@ -72,8 +89,109 @@
|
|
72
89
|
},
|
73
90
|
{
|
74
91
|
"inputs": [],
|
75
|
-
"name": "
|
92
|
+
"name": "getFees",
|
93
|
+
"outputs": [
|
94
|
+
{
|
95
|
+
"components": [
|
96
|
+
{
|
97
|
+
"internalType": "UFixed",
|
98
|
+
"name": "fractionalFee",
|
99
|
+
"type": "uint256"
|
100
|
+
},
|
101
|
+
{
|
102
|
+
"internalType": "uint256",
|
103
|
+
"name": "fixedFee",
|
104
|
+
"type": "uint256"
|
105
|
+
}
|
106
|
+
],
|
107
|
+
"internalType": "struct Fee",
|
108
|
+
"name": "poolFee",
|
109
|
+
"type": "tuple"
|
110
|
+
},
|
111
|
+
{
|
112
|
+
"components": [
|
113
|
+
{
|
114
|
+
"internalType": "UFixed",
|
115
|
+
"name": "fractionalFee",
|
116
|
+
"type": "uint256"
|
117
|
+
},
|
118
|
+
{
|
119
|
+
"internalType": "uint256",
|
120
|
+
"name": "fixedFee",
|
121
|
+
"type": "uint256"
|
122
|
+
}
|
123
|
+
],
|
124
|
+
"internalType": "struct Fee",
|
125
|
+
"name": "stakingFee",
|
126
|
+
"type": "tuple"
|
127
|
+
},
|
128
|
+
{
|
129
|
+
"components": [
|
130
|
+
{
|
131
|
+
"internalType": "UFixed",
|
132
|
+
"name": "fractionalFee",
|
133
|
+
"type": "uint256"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"internalType": "uint256",
|
137
|
+
"name": "fixedFee",
|
138
|
+
"type": "uint256"
|
139
|
+
}
|
140
|
+
],
|
141
|
+
"internalType": "struct Fee",
|
142
|
+
"name": "performanceFee",
|
143
|
+
"type": "tuple"
|
144
|
+
}
|
145
|
+
],
|
146
|
+
"stateMutability": "view",
|
147
|
+
"type": "function"
|
148
|
+
},
|
149
|
+
{
|
150
|
+
"inputs": [],
|
151
|
+
"name": "getInitialInfo",
|
76
152
|
"outputs": [
|
153
|
+
{
|
154
|
+
"components": [
|
155
|
+
{
|
156
|
+
"internalType": "NftId",
|
157
|
+
"name": "nftId",
|
158
|
+
"type": "uint96"
|
159
|
+
},
|
160
|
+
{
|
161
|
+
"internalType": "NftId",
|
162
|
+
"name": "parentNftId",
|
163
|
+
"type": "uint96"
|
164
|
+
},
|
165
|
+
{
|
166
|
+
"internalType": "ObjectType",
|
167
|
+
"name": "objectType",
|
168
|
+
"type": "uint8"
|
169
|
+
},
|
170
|
+
{
|
171
|
+
"internalType": "bool",
|
172
|
+
"name": "isInterceptor",
|
173
|
+
"type": "bool"
|
174
|
+
},
|
175
|
+
{
|
176
|
+
"internalType": "address",
|
177
|
+
"name": "objectAddress",
|
178
|
+
"type": "address"
|
179
|
+
},
|
180
|
+
{
|
181
|
+
"internalType": "address",
|
182
|
+
"name": "initialOwner",
|
183
|
+
"type": "address"
|
184
|
+
},
|
185
|
+
{
|
186
|
+
"internalType": "bytes",
|
187
|
+
"name": "data",
|
188
|
+
"type": "bytes"
|
189
|
+
}
|
190
|
+
],
|
191
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
192
|
+
"name": "",
|
193
|
+
"type": "tuple"
|
194
|
+
},
|
77
195
|
{
|
78
196
|
"internalType": "bytes",
|
79
197
|
"name": "data",
|
@@ -122,44 +240,6 @@
|
|
122
240
|
"stateMutability": "view",
|
123
241
|
"type": "function"
|
124
242
|
},
|
125
|
-
{
|
126
|
-
"inputs": [],
|
127
|
-
"name": "getParentNftId",
|
128
|
-
"outputs": [
|
129
|
-
{
|
130
|
-
"internalType": "NftId",
|
131
|
-
"name": "nftId",
|
132
|
-
"type": "uint96"
|
133
|
-
}
|
134
|
-
],
|
135
|
-
"stateMutability": "view",
|
136
|
-
"type": "function"
|
137
|
-
},
|
138
|
-
{
|
139
|
-
"inputs": [],
|
140
|
-
"name": "getPerformanceFee",
|
141
|
-
"outputs": [
|
142
|
-
{
|
143
|
-
"components": [
|
144
|
-
{
|
145
|
-
"internalType": "UFixed",
|
146
|
-
"name": "fractionalFee",
|
147
|
-
"type": "uint256"
|
148
|
-
},
|
149
|
-
{
|
150
|
-
"internalType": "uint256",
|
151
|
-
"name": "fixedFee",
|
152
|
-
"type": "uint256"
|
153
|
-
}
|
154
|
-
],
|
155
|
-
"internalType": "struct Fee",
|
156
|
-
"name": "performanceFee",
|
157
|
-
"type": "tuple"
|
158
|
-
}
|
159
|
-
],
|
160
|
-
"stateMutability": "view",
|
161
|
-
"type": "function"
|
162
|
-
},
|
163
243
|
{
|
164
244
|
"inputs": [],
|
165
245
|
"name": "getRegistry",
|
@@ -173,31 +253,6 @@
|
|
173
253
|
"stateMutability": "view",
|
174
254
|
"type": "function"
|
175
255
|
},
|
176
|
-
{
|
177
|
-
"inputs": [],
|
178
|
-
"name": "getStakingFee",
|
179
|
-
"outputs": [
|
180
|
-
{
|
181
|
-
"components": [
|
182
|
-
{
|
183
|
-
"internalType": "UFixed",
|
184
|
-
"name": "fractionalFee",
|
185
|
-
"type": "uint256"
|
186
|
-
},
|
187
|
-
{
|
188
|
-
"internalType": "uint256",
|
189
|
-
"name": "fixedFee",
|
190
|
-
"type": "uint256"
|
191
|
-
}
|
192
|
-
],
|
193
|
-
"internalType": "struct Fee",
|
194
|
-
"name": "stakingFee",
|
195
|
-
"type": "tuple"
|
196
|
-
}
|
197
|
-
],
|
198
|
-
"stateMutability": "view",
|
199
|
-
"type": "function"
|
200
|
-
},
|
201
256
|
{
|
202
257
|
"inputs": [],
|
203
258
|
"name": "getToken",
|
@@ -211,19 +266,6 @@
|
|
211
266
|
"stateMutability": "view",
|
212
267
|
"type": "function"
|
213
268
|
},
|
214
|
-
{
|
215
|
-
"inputs": [],
|
216
|
-
"name": "getType",
|
217
|
-
"outputs": [
|
218
|
-
{
|
219
|
-
"internalType": "ObjectType",
|
220
|
-
"name": "objectType",
|
221
|
-
"type": "uint8"
|
222
|
-
}
|
223
|
-
],
|
224
|
-
"stateMutability": "pure",
|
225
|
-
"type": "function"
|
226
|
-
},
|
227
269
|
{
|
228
270
|
"inputs": [],
|
229
271
|
"name": "getWallet",
|
@@ -282,15 +324,91 @@
|
|
282
324
|
"type": "function"
|
283
325
|
},
|
284
326
|
{
|
285
|
-
"inputs": [
|
286
|
-
"name": "register",
|
287
|
-
"outputs": [
|
327
|
+
"inputs": [
|
288
328
|
{
|
289
329
|
"internalType": "NftId",
|
290
|
-
"name": "
|
330
|
+
"name": "policyNftId",
|
291
331
|
"type": "uint96"
|
332
|
+
},
|
333
|
+
{
|
334
|
+
"components": [
|
335
|
+
{
|
336
|
+
"internalType": "UFixed",
|
337
|
+
"name": "fractionalFee",
|
338
|
+
"type": "uint256"
|
339
|
+
},
|
340
|
+
{
|
341
|
+
"internalType": "uint256",
|
342
|
+
"name": "fixedFee",
|
343
|
+
"type": "uint256"
|
344
|
+
}
|
345
|
+
],
|
346
|
+
"internalType": "struct Fee",
|
347
|
+
"name": "fee",
|
348
|
+
"type": "tuple"
|
349
|
+
}
|
350
|
+
],
|
351
|
+
"name": "setBundleFee",
|
352
|
+
"outputs": [],
|
353
|
+
"stateMutability": "nonpayable",
|
354
|
+
"type": "function"
|
355
|
+
},
|
356
|
+
{
|
357
|
+
"inputs": [
|
358
|
+
{
|
359
|
+
"components": [
|
360
|
+
{
|
361
|
+
"internalType": "UFixed",
|
362
|
+
"name": "fractionalFee",
|
363
|
+
"type": "uint256"
|
364
|
+
},
|
365
|
+
{
|
366
|
+
"internalType": "uint256",
|
367
|
+
"name": "fixedFee",
|
368
|
+
"type": "uint256"
|
369
|
+
}
|
370
|
+
],
|
371
|
+
"internalType": "struct Fee",
|
372
|
+
"name": "poolFee",
|
373
|
+
"type": "tuple"
|
374
|
+
},
|
375
|
+
{
|
376
|
+
"components": [
|
377
|
+
{
|
378
|
+
"internalType": "UFixed",
|
379
|
+
"name": "fractionalFee",
|
380
|
+
"type": "uint256"
|
381
|
+
},
|
382
|
+
{
|
383
|
+
"internalType": "uint256",
|
384
|
+
"name": "fixedFee",
|
385
|
+
"type": "uint256"
|
386
|
+
}
|
387
|
+
],
|
388
|
+
"internalType": "struct Fee",
|
389
|
+
"name": "stakingFee",
|
390
|
+
"type": "tuple"
|
391
|
+
},
|
392
|
+
{
|
393
|
+
"components": [
|
394
|
+
{
|
395
|
+
"internalType": "UFixed",
|
396
|
+
"name": "fractionalFee",
|
397
|
+
"type": "uint256"
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"internalType": "uint256",
|
401
|
+
"name": "fixedFee",
|
402
|
+
"type": "uint256"
|
403
|
+
}
|
404
|
+
],
|
405
|
+
"internalType": "struct Fee",
|
406
|
+
"name": "performanceFee",
|
407
|
+
"type": "tuple"
|
292
408
|
}
|
293
409
|
],
|
410
|
+
"name": "setFees",
|
411
|
+
"outputs": [],
|
294
412
|
"stateMutability": "nonpayable",
|
295
413
|
"type": "function"
|
296
414
|
},
|