@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
    
        package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json
    CHANGED
    
    | @@ -7,27 +7,27 @@ | |
| 7 7 | 
             
                  "inputs": [
         | 
| 8 8 | 
             
                    {
         | 
| 9 9 | 
             
                      "internalType": "address",
         | 
| 10 | 
            -
                      "name": " | 
| 10 | 
            +
                      "name": "authority",
         | 
| 11 11 | 
             
                      "type": "address"
         | 
| 12 12 | 
             
                    }
         | 
| 13 13 | 
             
                  ],
         | 
| 14 | 
            -
                  "name": " | 
| 14 | 
            +
                  "name": "AccessManagedInvalidAuthority",
         | 
| 15 15 | 
             
                  "type": "error"
         | 
| 16 16 | 
             
                },
         | 
| 17 17 | 
             
                {
         | 
| 18 18 | 
             
                  "inputs": [
         | 
| 19 | 
            -
                    {
         | 
| 20 | 
            -
                      "internalType": "NftId",
         | 
| 21 | 
            -
                      "name": "instanceNftId",
         | 
| 22 | 
            -
                      "type": "uint96"
         | 
| 23 | 
            -
                    },
         | 
| 24 19 | 
             
                    {
         | 
| 25 20 | 
             
                      "internalType": "address",
         | 
| 26 | 
            -
                      "name": " | 
| 21 | 
            +
                      "name": "caller",
         | 
| 27 22 | 
             
                      "type": "address"
         | 
| 23 | 
            +
                    },
         | 
| 24 | 
            +
                    {
         | 
| 25 | 
            +
                      "internalType": "uint32",
         | 
| 26 | 
            +
                      "name": "delay",
         | 
| 27 | 
            +
                      "type": "uint32"
         | 
| 28 28 | 
             
                    }
         | 
| 29 29 | 
             
                  ],
         | 
| 30 | 
            -
                  "name": " | 
| 30 | 
            +
                  "name": "AccessManagedRequiredDelay",
         | 
| 31 31 | 
             
                  "type": "error"
         | 
| 32 32 | 
             
                },
         | 
| 33 33 | 
             
                {
         | 
| @@ -38,12 +38,7 @@ | |
| 38 38 | 
             
                      "type": "address"
         | 
| 39 39 | 
             
                    }
         | 
| 40 40 | 
             
                  ],
         | 
| 41 | 
            -
                  "name": " | 
| 42 | 
            -
                  "type": "error"
         | 
| 43 | 
            -
                },
         | 
| 44 | 
            -
                {
         | 
| 45 | 
            -
                  "inputs": [],
         | 
| 46 | 
            -
                  "name": "ErrorComponentProductNftAlreadySet",
         | 
| 41 | 
            +
                  "name": "AccessManagedUnauthorized",
         | 
| 47 42 | 
             
                  "type": "error"
         | 
| 48 43 | 
             
                },
         | 
| 49 44 | 
             
                {
         | 
| @@ -52,24 +47,40 @@ | |
| 52 47 | 
             
                      "internalType": "address",
         | 
| 53 48 | 
             
                      "name": "caller",
         | 
| 54 49 | 
             
                      "type": "address"
         | 
| 55 | 
            -
                    } | 
| 50 | 
            +
                    }
         | 
| 51 | 
            +
                  ],
         | 
| 52 | 
            +
                  "name": "ErrorComponentNotChainNft",
         | 
| 53 | 
            +
                  "type": "error"
         | 
| 54 | 
            +
                },
         | 
| 55 | 
            +
                {
         | 
| 56 | 
            +
                  "inputs": [
         | 
| 56 57 | 
             
                    {
         | 
| 57 | 
            -
                      "internalType": " | 
| 58 | 
            -
                      "name": " | 
| 59 | 
            -
                      "type": " | 
| 58 | 
            +
                      "internalType": "NftId",
         | 
| 59 | 
            +
                      "name": "instanceNftId",
         | 
| 60 | 
            +
                      "type": "uint96"
         | 
| 60 61 | 
             
                    }
         | 
| 61 62 | 
             
                  ],
         | 
| 62 | 
            -
                  "name": " | 
| 63 | 
            +
                  "name": "ErrorComponentNotInstance",
         | 
| 63 64 | 
             
                  "type": "error"
         | 
| 64 65 | 
             
                },
         | 
| 65 66 | 
             
                {
         | 
| 66 67 | 
             
                  "inputs": [
         | 
| 67 68 | 
             
                    {
         | 
| 68 69 | 
             
                      "internalType": "address",
         | 
| 69 | 
            -
                      "name": " | 
| 70 | 
            +
                      "name": "caller",
         | 
| 70 71 | 
             
                      "type": "address"
         | 
| 71 72 | 
             
                    }
         | 
| 72 73 | 
             
                  ],
         | 
| 74 | 
            +
                  "name": "ErrorComponentNotProductService",
         | 
| 75 | 
            +
                  "type": "error"
         | 
| 76 | 
            +
                },
         | 
| 77 | 
            +
                {
         | 
| 78 | 
            +
                  "inputs": [],
         | 
| 79 | 
            +
                  "name": "ErrorComponentProductNftAlreadySet",
         | 
| 80 | 
            +
                  "type": "error"
         | 
| 81 | 
            +
                },
         | 
| 82 | 
            +
                {
         | 
| 83 | 
            +
                  "inputs": [],
         | 
| 73 84 | 
             
                  "name": "ErrorComponentWalletAddressIsSameAsCurrent",
         | 
| 74 85 | 
             
                  "type": "error"
         | 
| 75 86 | 
             
                },
         | 
| @@ -156,6 +167,25 @@ | |
| 156 167 | 
             
                {
         | 
| 157 168 | 
             
                  "anonymous": false,
         | 
| 158 169 | 
             
                  "inputs": [
         | 
| 170 | 
            +
                    {
         | 
| 171 | 
            +
                      "indexed": false,
         | 
| 172 | 
            +
                      "internalType": "address",
         | 
| 173 | 
            +
                      "name": "authority",
         | 
| 174 | 
            +
                      "type": "address"
         | 
| 175 | 
            +
                    }
         | 
| 176 | 
            +
                  ],
         | 
| 177 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 178 | 
            +
                  "type": "event"
         | 
| 179 | 
            +
                },
         | 
| 180 | 
            +
                {
         | 
| 181 | 
            +
                  "anonymous": false,
         | 
| 182 | 
            +
                  "inputs": [
         | 
| 183 | 
            +
                    {
         | 
| 184 | 
            +
                      "indexed": false,
         | 
| 185 | 
            +
                      "internalType": "address",
         | 
| 186 | 
            +
                      "name": "oldWallet",
         | 
| 187 | 
            +
                      "type": "address"
         | 
| 188 | 
            +
                    },
         | 
| 159 189 | 
             
                    {
         | 
| 160 190 | 
             
                      "indexed": false,
         | 
| 161 191 | 
             
                      "internalType": "address",
         | 
| @@ -210,6 +240,19 @@ | |
| 210 240 | 
             
                  "name": "LogDistributorUpdated",
         | 
| 211 241 | 
             
                  "type": "event"
         | 
| 212 242 | 
             
                },
         | 
| 243 | 
            +
                {
         | 
| 244 | 
            +
                  "inputs": [],
         | 
| 245 | 
            +
                  "name": "authority",
         | 
| 246 | 
            +
                  "outputs": [
         | 
| 247 | 
            +
                    {
         | 
| 248 | 
            +
                      "internalType": "address",
         | 
| 249 | 
            +
                      "name": "",
         | 
| 250 | 
            +
                      "type": "address"
         | 
| 251 | 
            +
                    }
         | 
| 252 | 
            +
                  ],
         | 
| 253 | 
            +
                  "stateMutability": "view",
         | 
| 254 | 
            +
                  "type": "function"
         | 
| 255 | 
            +
                },
         | 
| 213 256 | 
             
                {
         | 
| 214 257 | 
             
                  "inputs": [
         | 
| 215 258 | 
             
                    {
         | 
| @@ -323,47 +366,53 @@ | |
| 323 366 | 
             
                  "type": "function"
         | 
| 324 367 | 
             
                },
         | 
| 325 368 | 
             
                {
         | 
| 326 | 
            -
                  "inputs": [
         | 
| 327 | 
            -
             | 
| 328 | 
            -
                      "internalType": "NftId",
         | 
| 329 | 
            -
                      "name": "distributorNftId",
         | 
| 330 | 
            -
                      "type": "uint96"
         | 
| 331 | 
            -
                    },
         | 
| 332 | 
            -
                    {
         | 
| 333 | 
            -
                      "internalType": "string",
         | 
| 334 | 
            -
                      "name": "code",
         | 
| 335 | 
            -
                      "type": "string"
         | 
| 336 | 
            -
                    },
         | 
| 337 | 
            -
                    {
         | 
| 338 | 
            -
                      "internalType": "UFixed",
         | 
| 339 | 
            -
                      "name": "discountPercentage",
         | 
| 340 | 
            -
                      "type": "uint256"
         | 
| 341 | 
            -
                    },
         | 
| 342 | 
            -
                    {
         | 
| 343 | 
            -
                      "internalType": "uint32",
         | 
| 344 | 
            -
                      "name": "maxReferrals",
         | 
| 345 | 
            -
                      "type": "uint32"
         | 
| 346 | 
            -
                    },
         | 
| 347 | 
            -
                    {
         | 
| 348 | 
            -
                      "internalType": "Timestamp",
         | 
| 349 | 
            -
                      "name": "expiryAt",
         | 
| 350 | 
            -
                      "type": "uint40"
         | 
| 351 | 
            -
                    },
         | 
| 352 | 
            -
                    {
         | 
| 353 | 
            -
                      "internalType": "bytes",
         | 
| 354 | 
            -
                      "name": "data",
         | 
| 355 | 
            -
                      "type": "bytes"
         | 
| 356 | 
            -
                    }
         | 
| 357 | 
            -
                  ],
         | 
| 358 | 
            -
                  "name": "createReferral",
         | 
| 369 | 
            +
                  "inputs": [],
         | 
| 370 | 
            +
                  "name": "getComponentInfo",
         | 
| 359 371 | 
             
                  "outputs": [
         | 
| 360 372 | 
             
                    {
         | 
| 361 | 
            -
                      " | 
| 362 | 
            -
             | 
| 363 | 
            -
             | 
| 373 | 
            +
                      "components": [
         | 
| 374 | 
            +
                        {
         | 
| 375 | 
            +
                          "internalType": "string",
         | 
| 376 | 
            +
                          "name": "name",
         | 
| 377 | 
            +
                          "type": "string"
         | 
| 378 | 
            +
                        },
         | 
| 379 | 
            +
                        {
         | 
| 380 | 
            +
                          "internalType": "contract IERC20Metadata",
         | 
| 381 | 
            +
                          "name": "token",
         | 
| 382 | 
            +
                          "type": "address"
         | 
| 383 | 
            +
                        },
         | 
| 384 | 
            +
                        {
         | 
| 385 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 386 | 
            +
                          "name": "tokenHandler",
         | 
| 387 | 
            +
                          "type": "address"
         | 
| 388 | 
            +
                        },
         | 
| 389 | 
            +
                        {
         | 
| 390 | 
            +
                          "internalType": "address",
         | 
| 391 | 
            +
                          "name": "wallet",
         | 
| 392 | 
            +
                          "type": "address"
         | 
| 393 | 
            +
                        },
         | 
| 394 | 
            +
                        {
         | 
| 395 | 
            +
                          "internalType": "Amount",
         | 
| 396 | 
            +
                          "name": "balanceAmount",
         | 
| 397 | 
            +
                          "type": "uint96"
         | 
| 398 | 
            +
                        },
         | 
| 399 | 
            +
                        {
         | 
| 400 | 
            +
                          "internalType": "Amount",
         | 
| 401 | 
            +
                          "name": "feeAmount",
         | 
| 402 | 
            +
                          "type": "uint96"
         | 
| 403 | 
            +
                        },
         | 
| 404 | 
            +
                        {
         | 
| 405 | 
            +
                          "internalType": "bytes",
         | 
| 406 | 
            +
                          "name": "data",
         | 
| 407 | 
            +
                          "type": "bytes"
         | 
| 408 | 
            +
                        }
         | 
| 409 | 
            +
                      ],
         | 
| 410 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 411 | 
            +
                      "name": "info",
         | 
| 412 | 
            +
                      "type": "tuple"
         | 
| 364 413 | 
             
                    }
         | 
| 365 414 | 
             
                  ],
         | 
| 366 | 
            -
                  "stateMutability": " | 
| 415 | 
            +
                  "stateMutability": "view",
         | 
| 367 416 | 
             
                  "type": "function"
         | 
| 368 417 | 
             
                },
         | 
| 369 418 | 
             
                {
         | 
| @@ -478,19 +527,6 @@ | |
| 478 527 | 
             
                  "stateMutability": "view",
         | 
| 479 528 | 
             
                  "type": "function"
         | 
| 480 529 | 
             
                },
         | 
| 481 | 
            -
                {
         | 
| 482 | 
            -
                  "inputs": [],
         | 
| 483 | 
            -
                  "name": "getInstanceService",
         | 
| 484 | 
            -
                  "outputs": [
         | 
| 485 | 
            -
                    {
         | 
| 486 | 
            -
                      "internalType": "contract IInstanceService",
         | 
| 487 | 
            -
                      "name": "",
         | 
| 488 | 
            -
                      "type": "address"
         | 
| 489 | 
            -
                    }
         | 
| 490 | 
            -
                  ],
         | 
| 491 | 
            -
                  "stateMutability": "view",
         | 
| 492 | 
            -
                  "type": "function"
         | 
| 493 | 
            -
                },
         | 
| 494 530 | 
             
                {
         | 
| 495 531 | 
             
                  "inputs": [],
         | 
| 496 532 | 
             
                  "name": "getName",
         | 
| @@ -543,19 +579,6 @@ | |
| 543 579 | 
             
                  "stateMutability": "view",
         | 
| 544 580 | 
             
                  "type": "function"
         | 
| 545 581 | 
             
                },
         | 
| 546 | 
            -
                {
         | 
| 547 | 
            -
                  "inputs": [],
         | 
| 548 | 
            -
                  "name": "getProductService",
         | 
| 549 | 
            -
                  "outputs": [
         | 
| 550 | 
            -
                    {
         | 
| 551 | 
            -
                      "internalType": "contract IProductService",
         | 
| 552 | 
            -
                      "name": "",
         | 
| 553 | 
            -
                      "type": "address"
         | 
| 554 | 
            -
                    }
         | 
| 555 | 
            -
                  ],
         | 
| 556 | 
            -
                  "stateMutability": "view",
         | 
| 557 | 
            -
                  "type": "function"
         | 
| 558 | 
            -
                },
         | 
| 559 582 | 
             
                {
         | 
| 560 583 | 
             
                  "inputs": [
         | 
| 561 584 | 
             
                    {
         | 
| @@ -601,25 +624,6 @@ | |
| 601 624 | 
             
                  "stateMutability": "view",
         | 
| 602 625 | 
             
                  "type": "function"
         | 
| 603 626 | 
             
                },
         | 
| 604 | 
            -
                {
         | 
| 605 | 
            -
                  "inputs": [
         | 
| 606 | 
            -
                    {
         | 
| 607 | 
            -
                      "internalType": "ObjectType",
         | 
| 608 | 
            -
                      "name": "domain",
         | 
| 609 | 
            -
                      "type": "uint8"
         | 
| 610 | 
            -
                    }
         | 
| 611 | 
            -
                  ],
         | 
| 612 | 
            -
                  "name": "getServiceAddress",
         | 
| 613 | 
            -
                  "outputs": [
         | 
| 614 | 
            -
                    {
         | 
| 615 | 
            -
                      "internalType": "address",
         | 
| 616 | 
            -
                      "name": "service",
         | 
| 617 | 
            -
                      "type": "address"
         | 
| 618 | 
            -
                    }
         | 
| 619 | 
            -
                  ],
         | 
| 620 | 
            -
                  "stateMutability": "view",
         | 
| 621 | 
            -
                  "type": "function"
         | 
| 622 | 
            -
                },
         | 
| 623 627 | 
             
                {
         | 
| 624 628 | 
             
                  "inputs": [],
         | 
| 625 629 | 
             
                  "name": "getSetupInfo",
         | 
| @@ -636,6 +640,23 @@ | |
| 636 640 | 
             
                          "name": "tokenHandler",
         | 
| 637 641 | 
             
                          "type": "address"
         | 
| 638 642 | 
             
                        },
         | 
| 643 | 
            +
                        {
         | 
| 644 | 
            +
                          "components": [
         | 
| 645 | 
            +
                            {
         | 
| 646 | 
            +
                              "internalType": "UFixed",
         | 
| 647 | 
            +
                              "name": "fractionalFee",
         | 
| 648 | 
            +
                              "type": "uint256"
         | 
| 649 | 
            +
                            },
         | 
| 650 | 
            +
                            {
         | 
| 651 | 
            +
                              "internalType": "uint256",
         | 
| 652 | 
            +
                              "name": "fixedFee",
         | 
| 653 | 
            +
                              "type": "uint256"
         | 
| 654 | 
            +
                            }
         | 
| 655 | 
            +
                          ],
         | 
| 656 | 
            +
                          "internalType": "struct Fee",
         | 
| 657 | 
            +
                          "name": "minDistributionOwnerFee",
         | 
| 658 | 
            +
                          "type": "tuple"
         | 
| 659 | 
            +
                        },
         | 
| 639 660 | 
             
                        {
         | 
| 640 661 | 
             
                          "components": [
         | 
| 641 662 | 
             
                            {
         | 
| @@ -657,6 +678,11 @@ | |
| 657 678 | 
             
                          "internalType": "address",
         | 
| 658 679 | 
             
                          "name": "wallet",
         | 
| 659 680 | 
             
                          "type": "address"
         | 
| 681 | 
            +
                        },
         | 
| 682 | 
            +
                        {
         | 
| 683 | 
            +
                          "internalType": "uint256",
         | 
| 684 | 
            +
                          "name": "sumDistributionOwnerFees",
         | 
| 685 | 
            +
                          "type": "uint256"
         | 
| 660 686 | 
             
                        }
         | 
| 661 687 | 
             
                      ],
         | 
| 662 688 | 
             
                      "internalType": "struct ISetup.DistributionSetupInfo",
         | 
| @@ -693,6 +719,19 @@ | |
| 693 719 | 
             
                  "stateMutability": "view",
         | 
| 694 720 | 
             
                  "type": "function"
         | 
| 695 721 | 
             
                },
         | 
| 722 | 
            +
                {
         | 
| 723 | 
            +
                  "inputs": [],
         | 
| 724 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 725 | 
            +
                  "outputs": [
         | 
| 726 | 
            +
                    {
         | 
| 727 | 
            +
                      "internalType": "bytes4",
         | 
| 728 | 
            +
                      "name": "",
         | 
| 729 | 
            +
                      "type": "bytes4"
         | 
| 730 | 
            +
                    }
         | 
| 731 | 
            +
                  ],
         | 
| 732 | 
            +
                  "stateMutability": "view",
         | 
| 733 | 
            +
                  "type": "function"
         | 
| 734 | 
            +
                },
         | 
| 696 735 | 
             
                {
         | 
| 697 736 | 
             
                  "inputs": [],
         | 
| 698 737 | 
             
                  "name": "isNftInterceptor",
         | 
| @@ -733,6 +772,24 @@ | |
| 733 772 | 
             
                  "stateMutability": "nonpayable",
         | 
| 734 773 | 
             
                  "type": "function"
         | 
| 735 774 | 
             
                },
         | 
| 775 | 
            +
                {
         | 
| 776 | 
            +
                  "inputs": [
         | 
| 777 | 
            +
                    {
         | 
| 778 | 
            +
                      "internalType": "address",
         | 
| 779 | 
            +
                      "name": "to",
         | 
| 780 | 
            +
                      "type": "address"
         | 
| 781 | 
            +
                    },
         | 
| 782 | 
            +
                    {
         | 
| 783 | 
            +
                      "internalType": "uint256",
         | 
| 784 | 
            +
                      "name": "tokenId",
         | 
| 785 | 
            +
                      "type": "uint256"
         | 
| 786 | 
            +
                    }
         | 
| 787 | 
            +
                  ],
         | 
| 788 | 
            +
                  "name": "nftMint",
         | 
| 789 | 
            +
                  "outputs": [],
         | 
| 790 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 791 | 
            +
                  "type": "function"
         | 
| 792 | 
            +
                },
         | 
| 736 793 | 
             
                {
         | 
| 737 794 | 
             
                  "inputs": [
         | 
| 738 795 | 
             
                    {
         | 
| @@ -777,23 +834,35 @@ | |
| 777 834 | 
             
                {
         | 
| 778 835 | 
             
                  "inputs": [
         | 
| 779 836 | 
             
                    {
         | 
| 780 | 
            -
                      "internalType": " | 
| 781 | 
            -
                      "name": " | 
| 782 | 
            -
                      "type": " | 
| 783 | 
            -
                    },
         | 
| 784 | 
            -
                    {
         | 
| 785 | 
            -
                      "internalType": "uint256",
         | 
| 786 | 
            -
                      "name": "feeAmount",
         | 
| 787 | 
            -
                      "type": "uint256"
         | 
| 837 | 
            +
                      "internalType": "address",
         | 
| 838 | 
            +
                      "name": "",
         | 
| 839 | 
            +
                      "type": "address"
         | 
| 788 840 | 
             
                    }
         | 
| 789 841 | 
             
                  ],
         | 
| 790 | 
            -
                  "name": " | 
| 842 | 
            +
                  "name": "setAuthority",
         | 
| 791 843 | 
             
                  "outputs": [],
         | 
| 792 844 | 
             
                  "stateMutability": "nonpayable",
         | 
| 793 845 | 
             
                  "type": "function"
         | 
| 794 846 | 
             
                },
         | 
| 795 847 | 
             
                {
         | 
| 796 848 | 
             
                  "inputs": [
         | 
| 849 | 
            +
                    {
         | 
| 850 | 
            +
                      "components": [
         | 
| 851 | 
            +
                        {
         | 
| 852 | 
            +
                          "internalType": "UFixed",
         | 
| 853 | 
            +
                          "name": "fractionalFee",
         | 
| 854 | 
            +
                          "type": "uint256"
         | 
| 855 | 
            +
                        },
         | 
| 856 | 
            +
                        {
         | 
| 857 | 
            +
                          "internalType": "uint256",
         | 
| 858 | 
            +
                          "name": "fixedFee",
         | 
| 859 | 
            +
                          "type": "uint256"
         | 
| 860 | 
            +
                        }
         | 
| 861 | 
            +
                      ],
         | 
| 862 | 
            +
                      "internalType": "struct Fee",
         | 
| 863 | 
            +
                      "name": "minDistributionOwnerFee",
         | 
| 864 | 
            +
                      "type": "tuple"
         | 
| 865 | 
            +
                    },
         | 
| 797 866 | 
             
                    {
         | 
| 798 867 | 
             
                      "components": [
         | 
| 799 868 | 
             
                        {
         |