@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
| @@ -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",
         | 
| @@ -191,6 +221,19 @@ | |
| 191 221 | 
             
                  "name": "LogComponentWalletTokensTransferred",
         | 
| 192 222 | 
             
                  "type": "event"
         | 
| 193 223 | 
             
                },
         | 
| 224 | 
            +
                {
         | 
| 225 | 
            +
                  "inputs": [],
         | 
| 226 | 
            +
                  "name": "authority",
         | 
| 227 | 
            +
                  "outputs": [
         | 
| 228 | 
            +
                    {
         | 
| 229 | 
            +
                      "internalType": "address",
         | 
| 230 | 
            +
                      "name": "",
         | 
| 231 | 
            +
                      "type": "address"
         | 
| 232 | 
            +
                    }
         | 
| 233 | 
            +
                  ],
         | 
| 234 | 
            +
                  "stateMutability": "view",
         | 
| 235 | 
            +
                  "type": "function"
         | 
| 236 | 
            +
                },
         | 
| 194 237 | 
             
                {
         | 
| 195 238 | 
             
                  "inputs": [
         | 
| 196 239 | 
             
                    {
         | 
| @@ -204,9 +247,9 @@ | |
| 204 247 | 
             
                      "type": "bytes8"
         | 
| 205 248 | 
             
                    },
         | 
| 206 249 | 
             
                    {
         | 
| 207 | 
            -
                      "internalType": " | 
| 250 | 
            +
                      "internalType": "Seconds",
         | 
| 208 251 | 
             
                      "name": "lifetime",
         | 
| 209 | 
            -
                      "type": " | 
| 252 | 
            +
                      "type": "uint40"
         | 
| 210 253 | 
             
                    },
         | 
| 211 254 | 
             
                    {
         | 
| 212 255 | 
             
                      "internalType": "bytes",
         | 
| @@ -238,9 +281,9 @@ | |
| 238 281 | 
             
                      "type": "bytes8"
         | 
| 239 282 | 
             
                    },
         | 
| 240 283 | 
             
                    {
         | 
| 241 | 
            -
                      "internalType": " | 
| 284 | 
            +
                      "internalType": "Seconds",
         | 
| 242 285 | 
             
                      "name": "lifetime",
         | 
| 243 | 
            -
                      "type": " | 
| 286 | 
            +
                      "type": "uint40"
         | 
| 244 287 | 
             
                    },
         | 
| 245 288 | 
             
                    {
         | 
| 246 289 | 
             
                      "internalType": "bytes",
         | 
| @@ -269,6 +312,56 @@ | |
| 269 312 | 
             
                  "stateMutability": "view",
         | 
| 270 313 | 
             
                  "type": "function"
         | 
| 271 314 | 
             
                },
         | 
| 315 | 
            +
                {
         | 
| 316 | 
            +
                  "inputs": [],
         | 
| 317 | 
            +
                  "name": "getComponentInfo",
         | 
| 318 | 
            +
                  "outputs": [
         | 
| 319 | 
            +
                    {
         | 
| 320 | 
            +
                      "components": [
         | 
| 321 | 
            +
                        {
         | 
| 322 | 
            +
                          "internalType": "string",
         | 
| 323 | 
            +
                          "name": "name",
         | 
| 324 | 
            +
                          "type": "string"
         | 
| 325 | 
            +
                        },
         | 
| 326 | 
            +
                        {
         | 
| 327 | 
            +
                          "internalType": "contract IERC20Metadata",
         | 
| 328 | 
            +
                          "name": "token",
         | 
| 329 | 
            +
                          "type": "address"
         | 
| 330 | 
            +
                        },
         | 
| 331 | 
            +
                        {
         | 
| 332 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 333 | 
            +
                          "name": "tokenHandler",
         | 
| 334 | 
            +
                          "type": "address"
         | 
| 335 | 
            +
                        },
         | 
| 336 | 
            +
                        {
         | 
| 337 | 
            +
                          "internalType": "address",
         | 
| 338 | 
            +
                          "name": "wallet",
         | 
| 339 | 
            +
                          "type": "address"
         | 
| 340 | 
            +
                        },
         | 
| 341 | 
            +
                        {
         | 
| 342 | 
            +
                          "internalType": "Amount",
         | 
| 343 | 
            +
                          "name": "balanceAmount",
         | 
| 344 | 
            +
                          "type": "uint96"
         | 
| 345 | 
            +
                        },
         | 
| 346 | 
            +
                        {
         | 
| 347 | 
            +
                          "internalType": "Amount",
         | 
| 348 | 
            +
                          "name": "feeAmount",
         | 
| 349 | 
            +
                          "type": "uint96"
         | 
| 350 | 
            +
                        },
         | 
| 351 | 
            +
                        {
         | 
| 352 | 
            +
                          "internalType": "bytes",
         | 
| 353 | 
            +
                          "name": "data",
         | 
| 354 | 
            +
                          "type": "bytes"
         | 
| 355 | 
            +
                        }
         | 
| 356 | 
            +
                      ],
         | 
| 357 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 358 | 
            +
                      "name": "info",
         | 
| 359 | 
            +
                      "type": "tuple"
         | 
| 360 | 
            +
                    }
         | 
| 361 | 
            +
                  ],
         | 
| 362 | 
            +
                  "stateMutability": "view",
         | 
| 363 | 
            +
                  "type": "function"
         | 
| 364 | 
            +
                },
         | 
| 272 365 | 
             
                {
         | 
| 273 366 | 
             
                  "inputs": [],
         | 
| 274 367 | 
             
                  "name": "getDistributionNftId",
         | 
| @@ -345,19 +438,6 @@ | |
| 345 438 | 
             
                  "stateMutability": "view",
         | 
| 346 439 | 
             
                  "type": "function"
         | 
| 347 440 | 
             
                },
         | 
| 348 | 
            -
                {
         | 
| 349 | 
            -
                  "inputs": [],
         | 
| 350 | 
            -
                  "name": "getInstanceService",
         | 
| 351 | 
            -
                  "outputs": [
         | 
| 352 | 
            -
                    {
         | 
| 353 | 
            -
                      "internalType": "contract IInstanceService",
         | 
| 354 | 
            -
                      "name": "",
         | 
| 355 | 
            -
                      "type": "address"
         | 
| 356 | 
            -
                    }
         | 
| 357 | 
            -
                  ],
         | 
| 358 | 
            -
                  "stateMutability": "view",
         | 
| 359 | 
            -
                  "type": "function"
         | 
| 360 | 
            -
                },
         | 
| 361 441 | 
             
                {
         | 
| 362 442 | 
             
                  "inputs": [],
         | 
| 363 443 | 
             
                  "name": "getName",
         | 
| @@ -423,19 +503,6 @@ | |
| 423 503 | 
             
                  "stateMutability": "view",
         | 
| 424 504 | 
             
                  "type": "function"
         | 
| 425 505 | 
             
                },
         | 
| 426 | 
            -
                {
         | 
| 427 | 
            -
                  "inputs": [],
         | 
| 428 | 
            -
                  "name": "getProductService",
         | 
| 429 | 
            -
                  "outputs": [
         | 
| 430 | 
            -
                    {
         | 
| 431 | 
            -
                      "internalType": "contract IProductService",
         | 
| 432 | 
            -
                      "name": "",
         | 
| 433 | 
            -
                      "type": "address"
         | 
| 434 | 
            -
                    }
         | 
| 435 | 
            -
                  ],
         | 
| 436 | 
            -
                  "stateMutability": "view",
         | 
| 437 | 
            -
                  "type": "function"
         | 
| 438 | 
            -
                },
         | 
| 439 506 | 
             
                {
         | 
| 440 507 | 
             
                  "inputs": [],
         | 
| 441 508 | 
             
                  "name": "getRegistry",
         | 
| @@ -462,25 +529,6 @@ | |
| 462 529 | 
             
                  "stateMutability": "view",
         | 
| 463 530 | 
             
                  "type": "function"
         | 
| 464 531 | 
             
                },
         | 
| 465 | 
            -
                {
         | 
| 466 | 
            -
                  "inputs": [
         | 
| 467 | 
            -
                    {
         | 
| 468 | 
            -
                      "internalType": "ObjectType",
         | 
| 469 | 
            -
                      "name": "domain",
         | 
| 470 | 
            -
                      "type": "uint8"
         | 
| 471 | 
            -
                    }
         | 
| 472 | 
            -
                  ],
         | 
| 473 | 
            -
                  "name": "getServiceAddress",
         | 
| 474 | 
            -
                  "outputs": [
         | 
| 475 | 
            -
                    {
         | 
| 476 | 
            -
                      "internalType": "address",
         | 
| 477 | 
            -
                      "name": "service",
         | 
| 478 | 
            -
                      "type": "address"
         | 
| 479 | 
            -
                    }
         | 
| 480 | 
            -
                  ],
         | 
| 481 | 
            -
                  "stateMutability": "view",
         | 
| 482 | 
            -
                  "type": "function"
         | 
| 483 | 
            -
                },
         | 
| 484 532 | 
             
                {
         | 
| 485 533 | 
             
                  "inputs": [],
         | 
| 486 534 | 
             
                  "name": "getSetupInfo",
         | 
| @@ -507,23 +555,6 @@ | |
| 507 555 | 
             
                          "name": "poolNftId",
         | 
| 508 556 | 
             
                          "type": "uint96"
         | 
| 509 557 | 
             
                        },
         | 
| 510 | 
            -
                        {
         | 
| 511 | 
            -
                          "components": [
         | 
| 512 | 
            -
                            {
         | 
| 513 | 
            -
                              "internalType": "UFixed",
         | 
| 514 | 
            -
                              "name": "fractionalFee",
         | 
| 515 | 
            -
                              "type": "uint256"
         | 
| 516 | 
            -
                            },
         | 
| 517 | 
            -
                            {
         | 
| 518 | 
            -
                              "internalType": "uint256",
         | 
| 519 | 
            -
                              "name": "fixedFee",
         | 
| 520 | 
            -
                              "type": "uint256"
         | 
| 521 | 
            -
                            }
         | 
| 522 | 
            -
                          ],
         | 
| 523 | 
            -
                          "internalType": "struct Fee",
         | 
| 524 | 
            -
                          "name": "distributionFee",
         | 
| 525 | 
            -
                          "type": "tuple"
         | 
| 526 | 
            -
                        },
         | 
| 527 558 | 
             
                        {
         | 
| 528 559 | 
             
                          "components": [
         | 
| 529 560 | 
             
                            {
         | 
| @@ -558,57 +589,6 @@ | |
| 558 589 | 
             
                          "name": "processingFee",
         | 
| 559 590 | 
             
                          "type": "tuple"
         | 
| 560 591 | 
             
                        },
         | 
| 561 | 
            -
                        {
         | 
| 562 | 
            -
                          "components": [
         | 
| 563 | 
            -
                            {
         | 
| 564 | 
            -
                              "internalType": "UFixed",
         | 
| 565 | 
            -
                              "name": "fractionalFee",
         | 
| 566 | 
            -
                              "type": "uint256"
         | 
| 567 | 
            -
                            },
         | 
| 568 | 
            -
                            {
         | 
| 569 | 
            -
                              "internalType": "uint256",
         | 
| 570 | 
            -
                              "name": "fixedFee",
         | 
| 571 | 
            -
                              "type": "uint256"
         | 
| 572 | 
            -
                            }
         | 
| 573 | 
            -
                          ],
         | 
| 574 | 
            -
                          "internalType": "struct Fee",
         | 
| 575 | 
            -
                          "name": "poolFee",
         | 
| 576 | 
            -
                          "type": "tuple"
         | 
| 577 | 
            -
                        },
         | 
| 578 | 
            -
                        {
         | 
| 579 | 
            -
                          "components": [
         | 
| 580 | 
            -
                            {
         | 
| 581 | 
            -
                              "internalType": "UFixed",
         | 
| 582 | 
            -
                              "name": "fractionalFee",
         | 
| 583 | 
            -
                              "type": "uint256"
         | 
| 584 | 
            -
                            },
         | 
| 585 | 
            -
                            {
         | 
| 586 | 
            -
                              "internalType": "uint256",
         | 
| 587 | 
            -
                              "name": "fixedFee",
         | 
| 588 | 
            -
                              "type": "uint256"
         | 
| 589 | 
            -
                            }
         | 
| 590 | 
            -
                          ],
         | 
| 591 | 
            -
                          "internalType": "struct Fee",
         | 
| 592 | 
            -
                          "name": "stakingFee",
         | 
| 593 | 
            -
                          "type": "tuple"
         | 
| 594 | 
            -
                        },
         | 
| 595 | 
            -
                        {
         | 
| 596 | 
            -
                          "components": [
         | 
| 597 | 
            -
                            {
         | 
| 598 | 
            -
                              "internalType": "UFixed",
         | 
| 599 | 
            -
                              "name": "fractionalFee",
         | 
| 600 | 
            -
                              "type": "uint256"
         | 
| 601 | 
            -
                            },
         | 
| 602 | 
            -
                            {
         | 
| 603 | 
            -
                              "internalType": "uint256",
         | 
| 604 | 
            -
                              "name": "fixedFee",
         | 
| 605 | 
            -
                              "type": "uint256"
         | 
| 606 | 
            -
                            }
         | 
| 607 | 
            -
                          ],
         | 
| 608 | 
            -
                          "internalType": "struct Fee",
         | 
| 609 | 
            -
                          "name": "performanceFee",
         | 
| 610 | 
            -
                          "type": "tuple"
         | 
| 611 | 
            -
                        },
         | 
| 612 592 | 
             
                        {
         | 
| 613 593 | 
             
                          "internalType": "bool",
         | 
| 614 594 | 
             
                          "name": "isIntercepting",
         | 
| @@ -654,6 +634,19 @@ | |
| 654 634 | 
             
                  "stateMutability": "view",
         | 
| 655 635 | 
             
                  "type": "function"
         | 
| 656 636 | 
             
                },
         | 
| 637 | 
            +
                {
         | 
| 638 | 
            +
                  "inputs": [],
         | 
| 639 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 640 | 
            +
                  "outputs": [
         | 
| 641 | 
            +
                    {
         | 
| 642 | 
            +
                      "internalType": "bytes4",
         | 
| 643 | 
            +
                      "name": "",
         | 
| 644 | 
            +
                      "type": "bytes4"
         | 
| 645 | 
            +
                    }
         | 
| 646 | 
            +
                  ],
         | 
| 647 | 
            +
                  "stateMutability": "view",
         | 
| 648 | 
            +
                  "type": "function"
         | 
| 649 | 
            +
                },
         | 
| 657 650 | 
             
                {
         | 
| 658 651 | 
             
                  "inputs": [],
         | 
| 659 652 | 
             
                  "name": "isNftInterceptor",
         | 
| @@ -681,6 +674,24 @@ | |
| 681 674 | 
             
                  "stateMutability": "nonpayable",
         | 
| 682 675 | 
             
                  "type": "function"
         | 
| 683 676 | 
             
                },
         | 
| 677 | 
            +
                {
         | 
| 678 | 
            +
                  "inputs": [
         | 
| 679 | 
            +
                    {
         | 
| 680 | 
            +
                      "internalType": "address",
         | 
| 681 | 
            +
                      "name": "to",
         | 
| 682 | 
            +
                      "type": "address"
         | 
| 683 | 
            +
                    },
         | 
| 684 | 
            +
                    {
         | 
| 685 | 
            +
                      "internalType": "uint256",
         | 
| 686 | 
            +
                      "name": "tokenId",
         | 
| 687 | 
            +
                      "type": "uint256"
         | 
| 688 | 
            +
                    }
         | 
| 689 | 
            +
                  ],
         | 
| 690 | 
            +
                  "name": "nftMint",
         | 
| 691 | 
            +
                  "outputs": [],
         | 
| 692 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 693 | 
            +
                  "type": "function"
         | 
| 694 | 
            +
                },
         | 
| 684 695 | 
             
                {
         | 
| 685 696 | 
             
                  "inputs": [
         | 
| 686 697 | 
             
                    {
         | 
| @@ -704,6 +715,19 @@ | |
| 704 715 | 
             
                  "stateMutability": "nonpayable",
         | 
| 705 716 | 
             
                  "type": "function"
         | 
| 706 717 | 
             
                },
         | 
| 718 | 
            +
                {
         | 
| 719 | 
            +
                  "inputs": [
         | 
| 720 | 
            +
                    {
         | 
| 721 | 
            +
                      "internalType": "address",
         | 
| 722 | 
            +
                      "name": "",
         | 
| 723 | 
            +
                      "type": "address"
         | 
| 724 | 
            +
                    }
         | 
| 725 | 
            +
                  ],
         | 
| 726 | 
            +
                  "name": "setAuthority",
         | 
| 727 | 
            +
                  "outputs": [],
         | 
| 728 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 729 | 
            +
                  "type": "function"
         | 
| 730 | 
            +
                },
         | 
| 707 731 | 
             
                {
         | 
| 708 732 | 
             
                  "inputs": [
         | 
| 709 733 | 
             
                    {
         |