@etherisc/gif-next 0.0.2-f29e479-370 → 0.0.2-f2df3e2-873
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 +6 -83
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +78 -89
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +139 -140
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +156 -64
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +181 -112
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +353 -176
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +162 -138
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +299 -245
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +83 -162
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +64 -50
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +5 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +527 -400
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +175 -51
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +500 -612
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +472 -126
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +253 -236
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +305 -211
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +71 -23
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +8 -13
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +86 -31
- 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/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +40 -10
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +56 -73
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +291 -100
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +46 -22
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +422 -252
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +78 -14
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +373 -87
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +55 -7
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +579 -123
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +71 -47
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +200 -46
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +241 -188
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +251 -58
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +444 -25
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +430 -76
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +511 -14
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +80 -14
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +544 -153
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +51 -27
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +562 -52
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +24 -12
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +115 -52
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +16 -12
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +19 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +0 -24
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +31 -12
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +18 -37
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +7 -7
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +23 -11
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +2 -2
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +80 -14
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +2 -2
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -2
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +2 -2
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +3 -3
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +87 -16
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- 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/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +3 -3
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +102 -27
- 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 +2 -2
- 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/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +185 -0
- 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/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +83 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +40 -9
- 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 +17 -4
- 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/NumberId.sol/NumberIdLib.dbg.json +1 -1
- 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/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +116 -7
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- 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/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +38 -7
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -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/Component.sol +99 -87
- package/contracts/components/Distribution.sol +18 -21
- package/contracts/components/IComponent.sol +40 -18
- package/contracts/components/IDistributionComponent.sol +1 -22
- package/contracts/components/IPoolComponent.sol +73 -47
- package/contracts/components/IProductComponent.sol +3 -2
- package/contracts/components/Pool.sol +178 -130
- package/contracts/components/Product.sol +157 -71
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +10 -9
- package/contracts/instance/Cloneable.sol +7 -2
- package/contracts/instance/IInstance.sol +37 -27
- package/contracts/instance/IInstanceService.sol +18 -9
- package/contracts/instance/Instance.sol +117 -98
- package/contracts/instance/InstanceAccessManager.sol +388 -158
- package/contracts/instance/InstanceReader.sol +36 -12
- package/contracts/instance/InstanceService.sol +193 -191
- package/contracts/instance/ObjectManager.sol +6 -8
- package/contracts/instance/base/ComponentService.sol +17 -30
- package/contracts/instance/base/KeyValueStore.sol +13 -5
- package/contracts/instance/base/Lifecycle.sol +23 -6
- package/contracts/instance/module/IAccess.sol +21 -14
- package/contracts/instance/module/IBundle.sol +8 -5
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +2 -1
- package/contracts/instance/module/IPolicy.sol +37 -7
- package/contracts/instance/module/ISetup.sol +7 -22
- package/contracts/instance/service/ApplicationService.sol +137 -50
- package/contracts/instance/service/BundleService.sol +221 -83
- package/contracts/instance/service/ClaimService.sol +114 -26
- package/contracts/instance/service/DistributionService.sol +174 -118
- package/contracts/instance/service/IApplicationService.sol +9 -13
- package/contracts/instance/service/IBundleService.sol +68 -26
- package/contracts/instance/service/IClaimService.sol +46 -15
- package/contracts/instance/service/IDistributionService.sol +20 -4
- package/contracts/instance/service/IPolicyService.sol +69 -21
- package/contracts/instance/service/IPoolService.sol +82 -3
- package/contracts/instance/service/PolicyService.sol +297 -232
- package/contracts/instance/service/PoolService.sol +214 -20
- package/contracts/instance/service/ProductService.sol +31 -54
- package/contracts/registry/ChainNft.sol +8 -0
- package/contracts/registry/IRegistry.sol +2 -0
- package/contracts/registry/IRegistryService.sol +4 -3
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +23 -20
- package/contracts/registry/RegistryService.sol +15 -16
- package/contracts/registry/ReleaseManager.sol +20 -18
- package/contracts/shared/IService.sol +4 -6
- package/contracts/shared/Registerable.sol +2 -2
- package/contracts/shared/Service.sol +21 -7
- package/contracts/shared/TokenHandler.sol +11 -5
- package/contracts/test/TestService.sol +1 -1
- package/contracts/types/Amount.sol +65 -0
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +25 -2
- package/contracts/types/Fee.sol +13 -5
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/ObjectType.sol +6 -5
- package/contracts/types/PayoutId.sol +33 -5
- package/contracts/types/Referral.sol +4 -0
- package/contracts/types/RoleId.sol +13 -6
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +7 -2
- package/contracts/types/Timestamp.sol +18 -13
- package/contracts/types/UFixed.sol +1 -0
- package/contracts/types/Version.sol +1 -0
- package/package.json +1 -1
| @@ -80,11 +80,6 @@ | |
| 80 80 | 
             
                      "internalType": "NftId",
         | 
| 81 81 | 
             
                      "name": "instanceNftId",
         | 
| 82 82 | 
             
                      "type": "uint96"
         | 
| 83 | 
            -
                    },
         | 
| 84 | 
            -
                    {
         | 
| 85 | 
            -
                      "internalType": "address",
         | 
| 86 | 
            -
                      "name": "instance",
         | 
| 87 | 
            -
                      "type": "address"
         | 
| 88 83 | 
             
                    }
         | 
| 89 84 | 
             
                  ],
         | 
| 90 85 | 
             
                  "name": "ErrorComponentNotInstance",
         | 
| @@ -107,29 +102,7 @@ | |
| 107 102 | 
             
                  "type": "error"
         | 
| 108 103 | 
             
                },
         | 
| 109 104 | 
             
                {
         | 
| 110 | 
            -
                  "inputs": [
         | 
| 111 | 
            -
                    {
         | 
| 112 | 
            -
                      "internalType": "address",
         | 
| 113 | 
            -
                      "name": "caller",
         | 
| 114 | 
            -
                      "type": "address"
         | 
| 115 | 
            -
                    },
         | 
| 116 | 
            -
                    {
         | 
| 117 | 
            -
                      "internalType": "uint64",
         | 
| 118 | 
            -
                      "name": "requiredRoleIdNum",
         | 
| 119 | 
            -
                      "type": "uint64"
         | 
| 120 | 
            -
                    }
         | 
| 121 | 
            -
                  ],
         | 
| 122 | 
            -
                  "name": "ErrorComponentUnauthorized",
         | 
| 123 | 
            -
                  "type": "error"
         | 
| 124 | 
            -
                },
         | 
| 125 | 
            -
                {
         | 
| 126 | 
            -
                  "inputs": [
         | 
| 127 | 
            -
                    {
         | 
| 128 | 
            -
                      "internalType": "address",
         | 
| 129 | 
            -
                      "name": "newWallet",
         | 
| 130 | 
            -
                      "type": "address"
         | 
| 131 | 
            -
                    }
         | 
| 132 | 
            -
                  ],
         | 
| 105 | 
            +
                  "inputs": [],
         | 
| 133 106 | 
             
                  "name": "ErrorComponentWalletAddressIsSameAsCurrent",
         | 
| 134 107 | 
             
                  "type": "error"
         | 
| 135 108 | 
             
                },
         | 
| @@ -164,6 +137,22 @@ | |
| 164 137 | 
             
                  "name": "ErrorComponentWalletAllowanceTooSmall",
         | 
| 165 138 | 
             
                  "type": "error"
         | 
| 166 139 | 
             
                },
         | 
| 140 | 
            +
                {
         | 
| 141 | 
            +
                  "inputs": [
         | 
| 142 | 
            +
                    {
         | 
| 143 | 
            +
                      "internalType": "address",
         | 
| 144 | 
            +
                      "name": "distributor",
         | 
| 145 | 
            +
                      "type": "address"
         | 
| 146 | 
            +
                    },
         | 
| 147 | 
            +
                    {
         | 
| 148 | 
            +
                      "internalType": "NftId",
         | 
| 149 | 
            +
                      "name": "distributorNftId",
         | 
| 150 | 
            +
                      "type": "uint96"
         | 
| 151 | 
            +
                    }
         | 
| 152 | 
            +
                  ],
         | 
| 153 | 
            +
                  "name": "ErrorDistributionAlreadyDistributor",
         | 
| 154 | 
            +
                  "type": "error"
         | 
| 155 | 
            +
                },
         | 
| 167 156 | 
             
                {
         | 
| 168 157 | 
             
                  "inputs": [
         | 
| 169 158 | 
             
                    {
         | 
| @@ -268,6 +257,12 @@ | |
| 268 257 | 
             
                {
         | 
| 269 258 | 
             
                  "anonymous": false,
         | 
| 270 259 | 
             
                  "inputs": [
         | 
| 260 | 
            +
                    {
         | 
| 261 | 
            +
                      "indexed": false,
         | 
| 262 | 
            +
                      "internalType": "address",
         | 
| 263 | 
            +
                      "name": "oldWallet",
         | 
| 264 | 
            +
                      "type": "address"
         | 
| 265 | 
            +
                    },
         | 
| 271 266 | 
             
                    {
         | 
| 272 267 | 
             
                      "indexed": false,
         | 
| 273 268 | 
             
                      "internalType": "address",
         | 
| @@ -324,7 +319,7 @@ | |
| 324 319 | 
             
                },
         | 
| 325 320 | 
             
                {
         | 
| 326 321 | 
             
                  "inputs": [],
         | 
| 327 | 
            -
                  "name": " | 
| 322 | 
            +
                  "name": "COMPONENT_LOCATION_V1",
         | 
| 328 323 | 
             
                  "outputs": [
         | 
| 329 324 | 
             
                    {
         | 
| 330 325 | 
             
                      "internalType": "bytes32",
         | 
| @@ -500,47 +495,53 @@ | |
| 500 495 | 
             
                  "type": "function"
         | 
| 501 496 | 
             
                },
         | 
| 502 497 | 
             
                {
         | 
| 503 | 
            -
                  "inputs": [
         | 
| 504 | 
            -
             | 
| 505 | 
            -
                      "internalType": "NftId",
         | 
| 506 | 
            -
                      "name": "distributorNftId",
         | 
| 507 | 
            -
                      "type": "uint96"
         | 
| 508 | 
            -
                    },
         | 
| 509 | 
            -
                    {
         | 
| 510 | 
            -
                      "internalType": "string",
         | 
| 511 | 
            -
                      "name": "code",
         | 
| 512 | 
            -
                      "type": "string"
         | 
| 513 | 
            -
                    },
         | 
| 514 | 
            -
                    {
         | 
| 515 | 
            -
                      "internalType": "UFixed",
         | 
| 516 | 
            -
                      "name": "discountPercentage",
         | 
| 517 | 
            -
                      "type": "uint256"
         | 
| 518 | 
            -
                    },
         | 
| 519 | 
            -
                    {
         | 
| 520 | 
            -
                      "internalType": "uint32",
         | 
| 521 | 
            -
                      "name": "maxReferrals",
         | 
| 522 | 
            -
                      "type": "uint32"
         | 
| 523 | 
            -
                    },
         | 
| 524 | 
            -
                    {
         | 
| 525 | 
            -
                      "internalType": "Timestamp",
         | 
| 526 | 
            -
                      "name": "expiryAt",
         | 
| 527 | 
            -
                      "type": "uint40"
         | 
| 528 | 
            -
                    },
         | 
| 529 | 
            -
                    {
         | 
| 530 | 
            -
                      "internalType": "bytes",
         | 
| 531 | 
            -
                      "name": "data",
         | 
| 532 | 
            -
                      "type": "bytes"
         | 
| 533 | 
            -
                    }
         | 
| 534 | 
            -
                  ],
         | 
| 535 | 
            -
                  "name": "createReferral",
         | 
| 498 | 
            +
                  "inputs": [],
         | 
| 499 | 
            +
                  "name": "getComponentInfo",
         | 
| 536 500 | 
             
                  "outputs": [
         | 
| 537 501 | 
             
                    {
         | 
| 538 | 
            -
                      " | 
| 539 | 
            -
             | 
| 540 | 
            -
             | 
| 502 | 
            +
                      "components": [
         | 
| 503 | 
            +
                        {
         | 
| 504 | 
            +
                          "internalType": "string",
         | 
| 505 | 
            +
                          "name": "name",
         | 
| 506 | 
            +
                          "type": "string"
         | 
| 507 | 
            +
                        },
         | 
| 508 | 
            +
                        {
         | 
| 509 | 
            +
                          "internalType": "contract IERC20Metadata",
         | 
| 510 | 
            +
                          "name": "token",
         | 
| 511 | 
            +
                          "type": "address"
         | 
| 512 | 
            +
                        },
         | 
| 513 | 
            +
                        {
         | 
| 514 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 515 | 
            +
                          "name": "tokenHandler",
         | 
| 516 | 
            +
                          "type": "address"
         | 
| 517 | 
            +
                        },
         | 
| 518 | 
            +
                        {
         | 
| 519 | 
            +
                          "internalType": "address",
         | 
| 520 | 
            +
                          "name": "wallet",
         | 
| 521 | 
            +
                          "type": "address"
         | 
| 522 | 
            +
                        },
         | 
| 523 | 
            +
                        {
         | 
| 524 | 
            +
                          "internalType": "Amount",
         | 
| 525 | 
            +
                          "name": "balanceAmount",
         | 
| 526 | 
            +
                          "type": "uint96"
         | 
| 527 | 
            +
                        },
         | 
| 528 | 
            +
                        {
         | 
| 529 | 
            +
                          "internalType": "Amount",
         | 
| 530 | 
            +
                          "name": "feeAmount",
         | 
| 531 | 
            +
                          "type": "uint96"
         | 
| 532 | 
            +
                        },
         | 
| 533 | 
            +
                        {
         | 
| 534 | 
            +
                          "internalType": "bytes",
         | 
| 535 | 
            +
                          "name": "data",
         | 
| 536 | 
            +
                          "type": "bytes"
         | 
| 537 | 
            +
                        }
         | 
| 538 | 
            +
                      ],
         | 
| 539 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 540 | 
            +
                      "name": "info",
         | 
| 541 | 
            +
                      "type": "tuple"
         | 
| 541 542 | 
             
                    }
         | 
| 542 543 | 
             
                  ],
         | 
| 543 | 
            -
                  "stateMutability": " | 
| 544 | 
            +
                  "stateMutability": "view",
         | 
| 544 545 | 
             
                  "type": "function"
         | 
| 545 546 | 
             
                },
         | 
| 546 547 | 
             
                {
         | 
| @@ -674,32 +675,6 @@ | |
| 674 675 | 
             
                  "stateMutability": "view",
         | 
| 675 676 | 
             
                  "type": "function"
         | 
| 676 677 | 
             
                },
         | 
| 677 | 
            -
                {
         | 
| 678 | 
            -
                  "inputs": [],
         | 
| 679 | 
            -
                  "name": "getInstanceReader",
         | 
| 680 | 
            -
                  "outputs": [
         | 
| 681 | 
            -
                    {
         | 
| 682 | 
            -
                      "internalType": "contract InstanceReader",
         | 
| 683 | 
            -
                      "name": "reader",
         | 
| 684 | 
            -
                      "type": "address"
         | 
| 685 | 
            -
                    }
         | 
| 686 | 
            -
                  ],
         | 
| 687 | 
            -
                  "stateMutability": "view",
         | 
| 688 | 
            -
                  "type": "function"
         | 
| 689 | 
            -
                },
         | 
| 690 | 
            -
                {
         | 
| 691 | 
            -
                  "inputs": [],
         | 
| 692 | 
            -
                  "name": "getInstanceService",
         | 
| 693 | 
            -
                  "outputs": [
         | 
| 694 | 
            -
                    {
         | 
| 695 | 
            -
                      "internalType": "contract IInstanceService",
         | 
| 696 | 
            -
                      "name": "",
         | 
| 697 | 
            -
                      "type": "address"
         | 
| 698 | 
            -
                    }
         | 
| 699 | 
            -
                  ],
         | 
| 700 | 
            -
                  "stateMutability": "view",
         | 
| 701 | 
            -
                  "type": "function"
         | 
| 702 | 
            -
                },
         | 
| 703 678 | 
             
                {
         | 
| 704 679 | 
             
                  "inputs": [],
         | 
| 705 680 | 
             
                  "name": "getName",
         | 
| @@ -752,19 +727,6 @@ | |
| 752 727 | 
             
                  "stateMutability": "view",
         | 
| 753 728 | 
             
                  "type": "function"
         | 
| 754 729 | 
             
                },
         | 
| 755 | 
            -
                {
         | 
| 756 | 
            -
                  "inputs": [],
         | 
| 757 | 
            -
                  "name": "getProductService",
         | 
| 758 | 
            -
                  "outputs": [
         | 
| 759 | 
            -
                    {
         | 
| 760 | 
            -
                      "internalType": "contract IProductService",
         | 
| 761 | 
            -
                      "name": "",
         | 
| 762 | 
            -
                      "type": "address"
         | 
| 763 | 
            -
                    }
         | 
| 764 | 
            -
                  ],
         | 
| 765 | 
            -
                  "stateMutability": "view",
         | 
| 766 | 
            -
                  "type": "function"
         | 
| 767 | 
            -
                },
         | 
| 768 730 | 
             
                {
         | 
| 769 731 | 
             
                  "inputs": [
         | 
| 770 732 | 
             
                    {
         | 
| @@ -810,25 +772,6 @@ | |
| 810 772 | 
             
                  "stateMutability": "view",
         | 
| 811 773 | 
             
                  "type": "function"
         | 
| 812 774 | 
             
                },
         | 
| 813 | 
            -
                {
         | 
| 814 | 
            -
                  "inputs": [
         | 
| 815 | 
            -
                    {
         | 
| 816 | 
            -
                      "internalType": "ObjectType",
         | 
| 817 | 
            -
                      "name": "domain",
         | 
| 818 | 
            -
                      "type": "uint8"
         | 
| 819 | 
            -
                    }
         | 
| 820 | 
            -
                  ],
         | 
| 821 | 
            -
                  "name": "getServiceAddress",
         | 
| 822 | 
            -
                  "outputs": [
         | 
| 823 | 
            -
                    {
         | 
| 824 | 
            -
                      "internalType": "address",
         | 
| 825 | 
            -
                      "name": "service",
         | 
| 826 | 
            -
                      "type": "address"
         | 
| 827 | 
            -
                    }
         | 
| 828 | 
            -
                  ],
         | 
| 829 | 
            -
                  "stateMutability": "view",
         | 
| 830 | 
            -
                  "type": "function"
         | 
| 831 | 
            -
                },
         | 
| 832 775 | 
             
                {
         | 
| 833 776 | 
             
                  "inputs": [],
         | 
| 834 777 | 
             
                  "name": "getSetupInfo",
         | 
| @@ -845,6 +788,23 @@ | |
| 845 788 | 
             
                          "name": "tokenHandler",
         | 
| 846 789 | 
             
                          "type": "address"
         | 
| 847 790 | 
             
                        },
         | 
| 791 | 
            +
                        {
         | 
| 792 | 
            +
                          "components": [
         | 
| 793 | 
            +
                            {
         | 
| 794 | 
            +
                              "internalType": "UFixed",
         | 
| 795 | 
            +
                              "name": "fractionalFee",
         | 
| 796 | 
            +
                              "type": "uint256"
         | 
| 797 | 
            +
                            },
         | 
| 798 | 
            +
                            {
         | 
| 799 | 
            +
                              "internalType": "uint256",
         | 
| 800 | 
            +
                              "name": "fixedFee",
         | 
| 801 | 
            +
                              "type": "uint256"
         | 
| 802 | 
            +
                            }
         | 
| 803 | 
            +
                          ],
         | 
| 804 | 
            +
                          "internalType": "struct Fee",
         | 
| 805 | 
            +
                          "name": "minDistributionOwnerFee",
         | 
| 806 | 
            +
                          "type": "tuple"
         | 
| 807 | 
            +
                        },
         | 
| 848 808 | 
             
                        {
         | 
| 849 809 | 
             
                          "components": [
         | 
| 850 810 | 
             
                            {
         | 
| @@ -866,6 +826,11 @@ | |
| 866 826 | 
             
                          "internalType": "address",
         | 
| 867 827 | 
             
                          "name": "wallet",
         | 
| 868 828 | 
             
                          "type": "address"
         | 
| 829 | 
            +
                        },
         | 
| 830 | 
            +
                        {
         | 
| 831 | 
            +
                          "internalType": "uint256",
         | 
| 832 | 
            +
                          "name": "sumDistributionOwnerFees",
         | 
| 833 | 
            +
                          "type": "uint256"
         | 
| 869 834 | 
             
                        }
         | 
| 870 835 | 
             
                      ],
         | 
| 871 836 | 
             
                      "internalType": "struct ISetup.DistributionSetupInfo",
         | 
| @@ -941,7 +906,7 @@ | |
| 941 906 | 
             
                    },
         | 
| 942 907 | 
             
                    {
         | 
| 943 908 | 
             
                      "internalType": "bytes",
         | 
| 944 | 
            -
                      "name": " | 
| 909 | 
            +
                      "name": "registryData",
         | 
| 945 910 | 
             
                      "type": "bytes"
         | 
| 946 911 | 
             
                    }
         | 
| 947 912 | 
             
                  ],
         | 
| @@ -972,6 +937,23 @@ | |
| 972 937 | 
             
                      "name": "token",
         | 
| 973 938 | 
             
                      "type": "address"
         | 
| 974 939 | 
             
                    },
         | 
| 940 | 
            +
                    {
         | 
| 941 | 
            +
                      "components": [
         | 
| 942 | 
            +
                        {
         | 
| 943 | 
            +
                          "internalType": "UFixed",
         | 
| 944 | 
            +
                          "name": "fractionalFee",
         | 
| 945 | 
            +
                          "type": "uint256"
         | 
| 946 | 
            +
                        },
         | 
| 947 | 
            +
                        {
         | 
| 948 | 
            +
                          "internalType": "uint256",
         | 
| 949 | 
            +
                          "name": "fixedFee",
         | 
| 950 | 
            +
                          "type": "uint256"
         | 
| 951 | 
            +
                        }
         | 
| 952 | 
            +
                      ],
         | 
| 953 | 
            +
                      "internalType": "struct Fee",
         | 
| 954 | 
            +
                      "name": "minDistributionOwnerFee",
         | 
| 955 | 
            +
                      "type": "tuple"
         | 
| 956 | 
            +
                    },
         | 
| 975 957 | 
             
                    {
         | 
| 976 958 | 
             
                      "components": [
         | 
| 977 959 | 
             
                        {
         | 
| @@ -996,7 +978,7 @@ | |
| 996 978 | 
             
                    },
         | 
| 997 979 | 
             
                    {
         | 
| 998 980 | 
             
                      "internalType": "bytes",
         | 
| 999 | 
            -
                      "name": " | 
| 981 | 
            +
                      "name": "registryData",
         | 
| 1000 982 | 
             
                      "type": "bytes"
         | 
| 1001 983 | 
             
                    }
         | 
| 1002 984 | 
             
                  ],
         | 
| @@ -1059,7 +1041,7 @@ | |
| 1059 1041 | 
             
                    },
         | 
| 1060 1042 | 
             
                    {
         | 
| 1061 1043 | 
             
                      "internalType": "bytes",
         | 
| 1062 | 
            -
                      "name": " | 
| 1044 | 
            +
                      "name": "registryData",
         | 
| 1063 1045 | 
             
                      "type": "bytes"
         | 
| 1064 1046 | 
             
                    }
         | 
| 1065 1047 | 
             
                  ],
         | 
| @@ -1155,11 +1137,6 @@ | |
| 1155 1137 | 
             
                },
         | 
| 1156 1138 | 
             
                {
         | 
| 1157 1139 | 
             
                  "inputs": [
         | 
| 1158 | 
            -
                    {
         | 
| 1159 | 
            -
                      "internalType": "address",
         | 
| 1160 | 
            -
                      "name": "from",
         | 
| 1161 | 
            -
                      "type": "address"
         | 
| 1162 | 
            -
                    },
         | 
| 1163 1140 | 
             
                    {
         | 
| 1164 1141 | 
             
                      "internalType": "address",
         | 
| 1165 1142 | 
             
                      "name": "to",
         | 
| @@ -1171,7 +1148,7 @@ | |
| 1171 1148 | 
             
                      "type": "uint256"
         | 
| 1172 1149 | 
             
                    }
         | 
| 1173 1150 | 
             
                  ],
         | 
| 1174 | 
            -
                  "name": " | 
| 1151 | 
            +
                  "name": "nftMint",
         | 
| 1175 1152 | 
             
                  "outputs": [],
         | 
| 1176 1153 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1177 1154 | 
             
                  "type": "function"
         | 
| @@ -1179,17 +1156,22 @@ | |
| 1179 1156 | 
             
                {
         | 
| 1180 1157 | 
             
                  "inputs": [
         | 
| 1181 1158 | 
             
                    {
         | 
| 1182 | 
            -
                      "internalType": " | 
| 1183 | 
            -
                      "name": " | 
| 1184 | 
            -
                      "type": " | 
| 1159 | 
            +
                      "internalType": "address",
         | 
| 1160 | 
            +
                      "name": "from",
         | 
| 1161 | 
            +
                      "type": "address"
         | 
| 1162 | 
            +
                    },
         | 
| 1163 | 
            +
                    {
         | 
| 1164 | 
            +
                      "internalType": "address",
         | 
| 1165 | 
            +
                      "name": "to",
         | 
| 1166 | 
            +
                      "type": "address"
         | 
| 1185 1167 | 
             
                    },
         | 
| 1186 1168 | 
             
                    {
         | 
| 1187 1169 | 
             
                      "internalType": "uint256",
         | 
| 1188 | 
            -
                      "name": " | 
| 1170 | 
            +
                      "name": "tokenId",
         | 
| 1189 1171 | 
             
                      "type": "uint256"
         | 
| 1190 1172 | 
             
                    }
         | 
| 1191 1173 | 
             
                  ],
         | 
| 1192 | 
            -
                  "name": " | 
| 1174 | 
            +
                  "name": "nftTransferFrom",
         | 
| 1193 1175 | 
             
                  "outputs": [],
         | 
| 1194 1176 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1195 1177 | 
             
                  "type": "function"
         | 
| @@ -1203,11 +1185,11 @@ | |
| 1203 1185 | 
             
                    },
         | 
| 1204 1186 | 
             
                    {
         | 
| 1205 1187 | 
             
                      "internalType": "uint256",
         | 
| 1206 | 
            -
                      "name": " | 
| 1188 | 
            +
                      "name": "feeAmount",
         | 
| 1207 1189 | 
             
                      "type": "uint256"
         | 
| 1208 1190 | 
             
                    }
         | 
| 1209 1191 | 
             
                  ],
         | 
| 1210 | 
            -
                  "name": " | 
| 1192 | 
            +
                  "name": "processRenewal",
         | 
| 1211 1193 | 
             
                  "outputs": [],
         | 
| 1212 1194 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1213 1195 | 
             
                  "type": "function"
         | 
| @@ -1240,6 +1222,23 @@ | |
| 1240 1222 | 
             
                },
         | 
| 1241 1223 | 
             
                {
         | 
| 1242 1224 | 
             
                  "inputs": [
         | 
| 1225 | 
            +
                    {
         | 
| 1226 | 
            +
                      "components": [
         | 
| 1227 | 
            +
                        {
         | 
| 1228 | 
            +
                          "internalType": "UFixed",
         | 
| 1229 | 
            +
                          "name": "fractionalFee",
         | 
| 1230 | 
            +
                          "type": "uint256"
         | 
| 1231 | 
            +
                        },
         | 
| 1232 | 
            +
                        {
         | 
| 1233 | 
            +
                          "internalType": "uint256",
         | 
| 1234 | 
            +
                          "name": "fixedFee",
         | 
| 1235 | 
            +
                          "type": "uint256"
         | 
| 1236 | 
            +
                        }
         | 
| 1237 | 
            +
                      ],
         | 
| 1238 | 
            +
                      "internalType": "struct Fee",
         | 
| 1239 | 
            +
                      "name": "minDistributionOwnerFee",
         | 
| 1240 | 
            +
                      "type": "tuple"
         | 
| 1241 | 
            +
                    },
         | 
| 1243 1242 | 
             
                    {
         | 
| 1244 1243 | 
             
                      "components": [
         | 
| 1245 1244 | 
             
                        {
         |