@etherisc/gif-next 0.0.2-e9148e0-933 → 0.0.2-e94f4c7-084
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +71 -14
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
 - package/artifacts/contracts/components/Component.sol/Component.json +842 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +946 -219
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
 - package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → components/IComponent.sol/IComponent.json} +303 -164
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +848 -31
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +864 -49
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +682 -9
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +825 -231
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +638 -190
 - 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 +4 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
 - package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +91 -2
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +2137 -457
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +321 -168
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +1002 -1278
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +593 -180
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +262 -247
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +501 -292
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +331 -98
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
 - package/artifacts/contracts/instance/base/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +247 -180
 - 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 +71 -45
 - 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 +4 -0
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1060 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +681 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1289 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +725 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +1040 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +685 -0
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1273 -215
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +428 -79
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +627 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +709 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +602 -0
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +804 -160
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +969 -0
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +544 -145
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +90 -391
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1543 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +741 -0
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +848 -238
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +346 -85
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +284 -502
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +304 -99
 - 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 +261 -131
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +149 -230
 - 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 +275 -226
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +200 -335
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +298 -141
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +141 -53
 - 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/ERC165.sol/ERC165.json +41 -3
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +40 -29
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +21 -34
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/{experiment/inheritance/IB.sol/IB.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +18 -20
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.json +86 -172
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +120 -27
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +294 -61
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +129 -51
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +191 -163
 - 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/shared/Versionable.sol/Versionable.json +2 -152
 - 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 +129 -51
 - 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 +210 -214
 - 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 +8 -190
 - 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 +209 -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 +4 -0
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +179 -0
 - 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 +26 -3
 - 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 +4 -0
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +209 -0
 - 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 +253 -0
 - package/contracts/components/Distribution.sol +204 -79
 - package/contracts/components/IComponent.sol +76 -0
 - package/contracts/components/IDistributionComponent.sol +44 -17
 - package/contracts/components/IPoolComponent.sol +88 -37
 - package/contracts/components/IProductComponent.sol +10 -5
 - package/contracts/components/Pool.sol +220 -160
 - package/contracts/components/Product.sol +247 -160
 - package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
 - package/contracts/instance/BundleManager.sol +126 -0
 - package/contracts/instance/Cloneable.sol +51 -0
 - package/contracts/instance/IInstance.sol +75 -14
 - package/contracts/instance/IInstanceService.sol +46 -8
 - package/contracts/instance/Instance.sol +151 -284
 - package/contracts/instance/InstanceAccessManager.sol +414 -175
 - package/contracts/instance/InstanceReader.sol +47 -36
 - package/contracts/instance/InstanceService.sol +405 -119
 - package/contracts/instance/InstanceServiceManager.sol +6 -9
 - package/contracts/instance/ObjectManager.sol +82 -0
 - package/contracts/instance/base/ComponentService.sol +121 -0
 - package/contracts/instance/base/KeyValueStore.sol +13 -5
 - package/contracts/instance/base/Lifecycle.sol +23 -6
 - package/contracts/instance/module/IAccess.sol +36 -20
 - package/contracts/instance/module/IBundle.sol +8 -5
 - package/contracts/instance/module/IComponents.sol +41 -0
 - package/contracts/instance/module/IDistribution.sol +2 -0
 - package/contracts/instance/module/IPolicy.sol +41 -9
 - package/contracts/instance/module/ISetup.sol +9 -20
 - package/contracts/instance/service/ApplicationService.sol +355 -0
 - package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
 - package/contracts/instance/service/BundleService.sol +443 -0
 - package/contracts/instance/service/BundleServiceManager.sol +51 -0
 - package/contracts/instance/service/ClaimService.sol +239 -0
 - package/contracts/instance/service/ClaimServiceManager.sol +35 -0
 - package/contracts/instance/service/DistributionService.sol +374 -31
 - package/contracts/instance/service/DistributionServiceManager.sol +7 -10
 - package/contracts/instance/service/IApplicationService.sol +78 -0
 - package/contracts/instance/service/IBundleService.sol +102 -0
 - package/contracts/instance/service/IClaimService.sol +92 -0
 - package/contracts/instance/service/IDistributionService.sol +87 -0
 - package/contracts/instance/service/IPolicyService.sol +139 -0
 - package/contracts/instance/service/IPoolService.sol +82 -17
 - package/contracts/instance/service/IProductService.sol +6 -73
 - package/contracts/instance/service/PolicyService.sol +571 -0
 - package/contracts/instance/service/PolicyServiceManager.sol +54 -0
 - package/contracts/instance/service/PoolService.sol +248 -106
 - package/contracts/instance/service/PoolServiceManager.sol +6 -9
 - package/contracts/instance/service/ProductService.sol +114 -452
 - package/contracts/instance/service/ProductServiceManager.sol +2 -2
 - package/contracts/registry/ChainNft.sol +9 -1
 - package/contracts/registry/IRegistry.sol +41 -19
 - package/contracts/registry/IRegistryService.sol +31 -13
 - package/contracts/registry/ITransferInterceptor.sol +1 -0
 - package/contracts/registry/Registry.sol +245 -222
 - package/contracts/registry/RegistryAccessManager.sol +216 -0
 - package/contracts/registry/RegistryService.sol +97 -173
 - package/contracts/registry/RegistryServiceManager.sol +21 -39
 - package/contracts/registry/ReleaseManager.sol +324 -0
 - package/contracts/registry/TokenRegistry.sol +22 -17
 - package/contracts/shared/ERC165.sol +14 -12
 - package/contracts/shared/INftOwnable.sol +11 -10
 - package/contracts/shared/IPolicyHolder.sol +26 -0
 - package/contracts/shared/IRegisterable.sol +4 -6
 - package/contracts/shared/IRegistryLinked.sol +12 -0
 - package/contracts/shared/IService.sol +5 -4
 - package/contracts/shared/IVersionable.sol +4 -47
 - package/contracts/shared/NftOwnable.sol +66 -80
 - package/contracts/shared/PolicyHolder.sol +81 -0
 - package/contracts/shared/ProxyManager.sol +100 -25
 - package/contracts/shared/Registerable.sol +16 -32
 - package/contracts/shared/RegistryLinked.sol +48 -0
 - package/contracts/shared/Service.sol +41 -24
 - package/contracts/shared/TokenHandler.sol +11 -5
 - package/contracts/shared/Versionable.sol +4 -92
 - package/contracts/test/TestRegisterable.sol +1 -1
 - package/contracts/test/TestService.sol +4 -3
 - package/contracts/types/Amount.sol +70 -0
 - package/contracts/types/Blocknumber.sol +1 -0
 - package/contracts/types/ClaimId.sol +75 -0
 - package/contracts/types/DistributorType.sol +2 -2
 - package/contracts/types/Fee.sol +13 -5
 - package/contracts/types/NftId.sol +8 -0
 - package/contracts/types/NftIdSet.sol +26 -24
 - package/contracts/types/ObjectType.sol +11 -6
 - package/contracts/types/PayoutId.sol +82 -0
 - package/contracts/types/Referral.sol +4 -0
 - package/contracts/types/RoleId.sol +26 -19
 - 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 +3 -3
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -327
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
 - package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
 - package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
 - package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
 - package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
 - package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
 - package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
 - package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
 - package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
 - package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
 - package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
 - package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
 - package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
 - package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
 - package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
 - package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +0 -442
 - package/contracts/components/BaseComponent.sol +0 -91
 - package/contracts/components/IBaseComponent.sol +0 -25
 - package/contracts/experiment/cloning/Cloner.sol +0 -47
 - package/contracts/experiment/errors/Require.sol +0 -38
 - package/contracts/experiment/errors/Revert.sol +0 -44
 - package/contracts/experiment/inheritance/A.sol +0 -53
 - package/contracts/experiment/inheritance/B.sol +0 -28
 - package/contracts/experiment/inheritance/C.sol +0 -34
 - package/contracts/experiment/inheritance/IA.sol +0 -13
 - package/contracts/experiment/inheritance/IB.sol +0 -10
 - package/contracts/experiment/inheritance/IC.sol +0 -12
 - package/contracts/experiment/statemachine/Dummy.sol +0 -27
 - package/contracts/experiment/statemachine/ISM.sol +0 -25
 - package/contracts/experiment/statemachine/SM.sol +0 -57
 - package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
 - package/contracts/experiment/types/TypeA.sol +0 -47
 - package/contracts/experiment/types/TypeB.sol +0 -29
 - package/contracts/instance/AccessManagedSimple.sol +0 -115
 - package/contracts/instance/AccessManagerSimple.sol +0 -692
 - package/contracts/instance/IAccessManagerSimple.sol +0 -391
 - package/contracts/instance/base/ComponentServiceBase.sol +0 -124
 - package/contracts/instance/base/IInstanceBase.sol +0 -23
 - package/contracts/instance/service/ComponentOwnerService.sol +0 -317
 - package/contracts/instance/service/IComponentOwnerService.sol +0 -20
 - package/contracts/shared/RegisterableUpgradable.sol +0 -16
 
| 
         @@ -3,6 +3,237 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
              "contractName": "IProductComponent",
         
     | 
| 
       4 
4 
     | 
    
         
             
              "sourceName": "contracts/components/IProductComponent.sol",
         
     | 
| 
       5 
5 
     | 
    
         
             
              "abi": [
         
     | 
| 
      
 6 
     | 
    
         
            +
                {
         
     | 
| 
      
 7 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 8 
     | 
    
         
            +
                    {
         
     | 
| 
      
 9 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 10 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 11 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 12 
     | 
    
         
            +
                    }
         
     | 
| 
      
 13 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 14 
     | 
    
         
            +
                  "name": "AccessManagedInvalidAuthority",
         
     | 
| 
      
 15 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 16 
     | 
    
         
            +
                },
         
     | 
| 
      
 17 
     | 
    
         
            +
                {
         
     | 
| 
      
 18 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 19 
     | 
    
         
            +
                    {
         
     | 
| 
      
 20 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 21 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 22 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 23 
     | 
    
         
            +
                    },
         
     | 
| 
      
 24 
     | 
    
         
            +
                    {
         
     | 
| 
      
 25 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "name": "delay",
         
     | 
| 
      
 27 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 28 
     | 
    
         
            +
                    }
         
     | 
| 
      
 29 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 30 
     | 
    
         
            +
                  "name": "AccessManagedRequiredDelay",
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 32 
     | 
    
         
            +
                },
         
     | 
| 
      
 33 
     | 
    
         
            +
                {
         
     | 
| 
      
 34 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 35 
     | 
    
         
            +
                    {
         
     | 
| 
      
 36 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 37 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 38 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 39 
     | 
    
         
            +
                    }
         
     | 
| 
      
 40 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "AccessManagedUnauthorized",
         
     | 
| 
      
 42 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 43 
     | 
    
         
            +
                },
         
     | 
| 
      
 44 
     | 
    
         
            +
                {
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 46 
     | 
    
         
            +
                    {
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 49 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    }
         
     | 
| 
      
 51 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "ErrorComponentNotChainNft",
         
     | 
| 
      
 53 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 54 
     | 
    
         
            +
                },
         
     | 
| 
      
 55 
     | 
    
         
            +
                {
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 57 
     | 
    
         
            +
                    {
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "name": "instanceNftId",
         
     | 
| 
      
 60 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 61 
     | 
    
         
            +
                    }
         
     | 
| 
      
 62 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 63 
     | 
    
         
            +
                  "name": "ErrorComponentNotInstance",
         
     | 
| 
      
 64 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 65 
     | 
    
         
            +
                },
         
     | 
| 
      
 66 
     | 
    
         
            +
                {
         
     | 
| 
      
 67 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 68 
     | 
    
         
            +
                    {
         
     | 
| 
      
 69 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 70 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 71 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 72 
     | 
    
         
            +
                    }
         
     | 
| 
      
 73 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 74 
     | 
    
         
            +
                  "name": "ErrorComponentNotProductService",
         
     | 
| 
      
 75 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 76 
     | 
    
         
            +
                },
         
     | 
| 
      
 77 
     | 
    
         
            +
                {
         
     | 
| 
      
 78 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 79 
     | 
    
         
            +
                  "name": "ErrorComponentProductNftAlreadySet",
         
     | 
| 
      
 80 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 81 
     | 
    
         
            +
                },
         
     | 
| 
      
 82 
     | 
    
         
            +
                {
         
     | 
| 
      
 83 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 84 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAddressIsSameAsCurrent",
         
     | 
| 
      
 85 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 86 
     | 
    
         
            +
                },
         
     | 
| 
      
 87 
     | 
    
         
            +
                {
         
     | 
| 
      
 88 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 89 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAddressZero",
         
     | 
| 
      
 90 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 91 
     | 
    
         
            +
                },
         
     | 
| 
      
 92 
     | 
    
         
            +
                {
         
     | 
| 
      
 93 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 94 
     | 
    
         
            +
                    {
         
     | 
| 
      
 95 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 96 
     | 
    
         
            +
                      "name": "oldWallet",
         
     | 
| 
      
 97 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 98 
     | 
    
         
            +
                    },
         
     | 
| 
      
 99 
     | 
    
         
            +
                    {
         
     | 
| 
      
 100 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 101 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
      
 102 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 103 
     | 
    
         
            +
                    },
         
     | 
| 
      
 104 
     | 
    
         
            +
                    {
         
     | 
| 
      
 105 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 106 
     | 
    
         
            +
                      "name": "allowance",
         
     | 
| 
      
 107 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 108 
     | 
    
         
            +
                    },
         
     | 
| 
      
 109 
     | 
    
         
            +
                    {
         
     | 
| 
      
 110 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 111 
     | 
    
         
            +
                      "name": "balance",
         
     | 
| 
      
 112 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 113 
     | 
    
         
            +
                    }
         
     | 
| 
      
 114 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 115 
     | 
    
         
            +
                  "name": "ErrorComponentWalletAllowanceTooSmall",
         
     | 
| 
      
 116 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 117 
     | 
    
         
            +
                },
         
     | 
| 
      
 118 
     | 
    
         
            +
                {
         
     | 
| 
      
 119 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 120 
     | 
    
         
            +
                    {
         
     | 
| 
      
 121 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 122 
     | 
    
         
            +
                      "name": "nftId",
         
     | 
| 
      
 123 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 124 
     | 
    
         
            +
                    }
         
     | 
| 
      
 125 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 126 
     | 
    
         
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         
     | 
| 
      
 127 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 128 
     | 
    
         
            +
                },
         
     | 
| 
      
 129 
     | 
    
         
            +
                {
         
     | 
| 
      
 130 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 131 
     | 
    
         
            +
                    {
         
     | 
| 
      
 132 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 133 
     | 
    
         
            +
                      "name": "contractAddress",
         
     | 
| 
      
 134 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 135 
     | 
    
         
            +
                    }
         
     | 
| 
      
 136 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 137 
     | 
    
         
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         
     | 
| 
      
 138 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 139 
     | 
    
         
            +
                },
         
     | 
| 
      
 140 
     | 
    
         
            +
                {
         
     | 
| 
      
 141 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 142 
     | 
    
         
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         
     | 
| 
      
 143 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 144 
     | 
    
         
            +
                },
         
     | 
| 
      
 145 
     | 
    
         
            +
                {
         
     | 
| 
      
 146 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 147 
     | 
    
         
            +
                    {
         
     | 
| 
      
 148 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 149 
     | 
    
         
            +
                      "name": "account",
         
     | 
| 
      
 150 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 151 
     | 
    
         
            +
                    }
         
     | 
| 
      
 152 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 153 
     | 
    
         
            +
                  "name": "ErrorNftOwnableNotOwner",
         
     | 
| 
      
 154 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 155 
     | 
    
         
            +
                },
         
     | 
| 
      
 156 
     | 
    
         
            +
                {
         
     | 
| 
      
 157 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 158 
     | 
    
         
            +
                    {
         
     | 
| 
      
 159 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 160 
     | 
    
         
            +
                      "name": "registryAddress",
         
     | 
| 
      
 161 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 162 
     | 
    
         
            +
                    }
         
     | 
| 
      
 163 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 164 
     | 
    
         
            +
                  "name": "ErrorNotRegistry",
         
     | 
| 
      
 165 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 166 
     | 
    
         
            +
                },
         
     | 
| 
      
 167 
     | 
    
         
            +
                {
         
     | 
| 
      
 168 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 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 
     | 
    
         
            +
                    },
         
     | 
| 
      
 189 
     | 
    
         
            +
                    {
         
     | 
| 
      
 190 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 191 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 192 
     | 
    
         
            +
                      "name": "newWallet",
         
     | 
| 
      
 193 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 194 
     | 
    
         
            +
                    }
         
     | 
| 
      
 195 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 196 
     | 
    
         
            +
                  "name": "LogComponentWalletAddressChanged",
         
     | 
| 
      
 197 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 198 
     | 
    
         
            +
                },
         
     | 
| 
      
 199 
     | 
    
         
            +
                {
         
     | 
| 
      
 200 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 201 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 202 
     | 
    
         
            +
                    {
         
     | 
| 
      
 203 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 204 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 205 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
      
 206 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 207 
     | 
    
         
            +
                    },
         
     | 
| 
      
 208 
     | 
    
         
            +
                    {
         
     | 
| 
      
 209 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 210 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 211 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 212 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 213 
     | 
    
         
            +
                    },
         
     | 
| 
      
 214 
     | 
    
         
            +
                    {
         
     | 
| 
      
 215 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 216 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 217 
     | 
    
         
            +
                      "name": "amount",
         
     | 
| 
      
 218 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 219 
     | 
    
         
            +
                    }
         
     | 
| 
      
 220 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 221 
     | 
    
         
            +
                  "name": "LogComponentWalletTokensTransferred",
         
     | 
| 
      
 222 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 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 
     | 
    
         
            +
                },
         
     | 
| 
       6 
237 
     | 
    
         
             
                {
         
     | 
| 
       7 
238 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       8 
239 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -16,9 +247,9 @@ 
     | 
|
| 
       16 
247 
     | 
    
         
             
                      "type": "bytes8"
         
     | 
| 
       17 
248 
     | 
    
         
             
                    },
         
     | 
| 
       18 
249 
     | 
    
         
             
                    {
         
     | 
| 
       19 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 250 
     | 
    
         
            +
                      "internalType": "Seconds",
         
     | 
| 
       20 
251 
     | 
    
         
             
                      "name": "lifetime",
         
     | 
| 
       21 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 252 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
       22 
253 
     | 
    
         
             
                    },
         
     | 
| 
       23 
254 
     | 
    
         
             
                    {
         
     | 
| 
       24 
255 
     | 
    
         
             
                      "internalType": "bytes",
         
     | 
| 
         @@ -50,24 +281,24 @@ 
     | 
|
| 
       50 
281 
     | 
    
         
             
                      "type": "bytes8"
         
     | 
| 
       51 
282 
     | 
    
         
             
                    },
         
     | 
| 
       52 
283 
     | 
    
         
             
                    {
         
     | 
| 
       53 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 284 
     | 
    
         
            +
                      "internalType": "Seconds",
         
     | 
| 
       54 
285 
     | 
    
         
             
                      "name": "lifetime",
         
     | 
| 
       55 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 286 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
       56 
287 
     | 
    
         
             
                    },
         
     | 
| 
       57 
288 
     | 
    
         
             
                    {
         
     | 
| 
       58 
289 
     | 
    
         
             
                      "internalType": "bytes",
         
     | 
| 
       59 
290 
     | 
    
         
             
                      "name": "applicationData",
         
     | 
| 
       60 
291 
     | 
    
         
             
                      "type": "bytes"
         
     | 
| 
       61 
292 
     | 
    
         
             
                    },
         
     | 
| 
       62 
     | 
    
         
            -
                    {
         
     | 
| 
       63 
     | 
    
         
            -
                      "internalType": "ReferralId",
         
     | 
| 
       64 
     | 
    
         
            -
                      "name": "referralId",
         
     | 
| 
       65 
     | 
    
         
            -
                      "type": "bytes8"
         
     | 
| 
       66 
     | 
    
         
            -
                    },
         
     | 
| 
       67 
293 
     | 
    
         
             
                    {
         
     | 
| 
       68 
294 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       69 
295 
     | 
    
         
             
                      "name": "bundleNftId",
         
     | 
| 
       70 
296 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
      
 297 
     | 
    
         
            +
                    },
         
     | 
| 
      
 298 
     | 
    
         
            +
                    {
         
     | 
| 
      
 299 
     | 
    
         
            +
                      "internalType": "ReferralId",
         
     | 
| 
      
 300 
     | 
    
         
            +
                      "name": "referralId",
         
     | 
| 
      
 301 
     | 
    
         
            +
                      "type": "bytes8"
         
     | 
| 
       71 
302 
     | 
    
         
             
                    }
         
     | 
| 
       72 
303 
     | 
    
         
             
                  ],
         
     | 
| 
       73 
304 
     | 
    
         
             
                  "name": "calculatePremium",
         
     | 
| 
         @@ -81,6 +312,56 @@ 
     | 
|
| 
       81 
312 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       82 
313 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       83 
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 
     | 
    
         
            +
                },
         
     | 
| 
       84 
365 
     | 
    
         
             
                {
         
     | 
| 
       85 
366 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       86 
367 
     | 
    
         
             
                  "name": "getDistributionNftId",
         
     | 
| 
         @@ -94,6 +375,108 @@ 
     | 
|
| 
       94 
375 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       95 
376 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       96 
377 
     | 
    
         
             
                },
         
     | 
| 
      
 378 
     | 
    
         
            +
                {
         
     | 
| 
      
 379 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 380 
     | 
    
         
            +
                  "name": "getInitialInfo",
         
     | 
| 
      
 381 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 382 
     | 
    
         
            +
                    {
         
     | 
| 
      
 383 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 384 
     | 
    
         
            +
                        {
         
     | 
| 
      
 385 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 386 
     | 
    
         
            +
                          "name": "nftId",
         
     | 
| 
      
 387 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 388 
     | 
    
         
            +
                        },
         
     | 
| 
      
 389 
     | 
    
         
            +
                        {
         
     | 
| 
      
 390 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 391 
     | 
    
         
            +
                          "name": "parentNftId",
         
     | 
| 
      
 392 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 393 
     | 
    
         
            +
                        },
         
     | 
| 
      
 394 
     | 
    
         
            +
                        {
         
     | 
| 
      
 395 
     | 
    
         
            +
                          "internalType": "ObjectType",
         
     | 
| 
      
 396 
     | 
    
         
            +
                          "name": "objectType",
         
     | 
| 
      
 397 
     | 
    
         
            +
                          "type": "uint8"
         
     | 
| 
      
 398 
     | 
    
         
            +
                        },
         
     | 
| 
      
 399 
     | 
    
         
            +
                        {
         
     | 
| 
      
 400 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 401 
     | 
    
         
            +
                          "name": "isInterceptor",
         
     | 
| 
      
 402 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 403 
     | 
    
         
            +
                        },
         
     | 
| 
      
 404 
     | 
    
         
            +
                        {
         
     | 
| 
      
 405 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 406 
     | 
    
         
            +
                          "name": "objectAddress",
         
     | 
| 
      
 407 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 408 
     | 
    
         
            +
                        },
         
     | 
| 
      
 409 
     | 
    
         
            +
                        {
         
     | 
| 
      
 410 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 411 
     | 
    
         
            +
                          "name": "initialOwner",
         
     | 
| 
      
 412 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 413 
     | 
    
         
            +
                        },
         
     | 
| 
      
 414 
     | 
    
         
            +
                        {
         
     | 
| 
      
 415 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 416 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 417 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 418 
     | 
    
         
            +
                        }
         
     | 
| 
      
 419 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 420 
     | 
    
         
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         
     | 
| 
      
 421 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 422 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 423 
     | 
    
         
            +
                    }
         
     | 
| 
      
 424 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 425 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 426 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 427 
     | 
    
         
            +
                },
         
     | 
| 
      
 428 
     | 
    
         
            +
                {
         
     | 
| 
      
 429 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 430 
     | 
    
         
            +
                  "name": "getInstance",
         
     | 
| 
      
 431 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 432 
     | 
    
         
            +
                    {
         
     | 
| 
      
 433 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 434 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 435 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 436 
     | 
    
         
            +
                    }
         
     | 
| 
      
 437 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 438 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 439 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 440 
     | 
    
         
            +
                },
         
     | 
| 
      
 441 
     | 
    
         
            +
                {
         
     | 
| 
      
 442 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 443 
     | 
    
         
            +
                  "name": "getName",
         
     | 
| 
      
 444 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 445 
     | 
    
         
            +
                    {
         
     | 
| 
      
 446 
     | 
    
         
            +
                      "internalType": "string",
         
     | 
| 
      
 447 
     | 
    
         
            +
                      "name": "name",
         
     | 
| 
      
 448 
     | 
    
         
            +
                      "type": "string"
         
     | 
| 
      
 449 
     | 
    
         
            +
                    }
         
     | 
| 
      
 450 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 451 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 452 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 453 
     | 
    
         
            +
                },
         
     | 
| 
      
 454 
     | 
    
         
            +
                {
         
     | 
| 
      
 455 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 456 
     | 
    
         
            +
                  "name": "getNftId",
         
     | 
| 
      
 457 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 458 
     | 
    
         
            +
                    {
         
     | 
| 
      
 459 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 460 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 461 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 462 
     | 
    
         
            +
                    }
         
     | 
| 
      
 463 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 464 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 465 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 466 
     | 
    
         
            +
                },
         
     | 
| 
      
 467 
     | 
    
         
            +
                {
         
     | 
| 
      
 468 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 469 
     | 
    
         
            +
                  "name": "getOwner",
         
     | 
| 
      
 470 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 471 
     | 
    
         
            +
                    {
         
     | 
| 
      
 472 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 473 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 474 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 475 
     | 
    
         
            +
                    }
         
     | 
| 
      
 476 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 477 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 478 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 479 
     | 
    
         
            +
                },
         
     | 
| 
       97 
480 
     | 
    
         
             
                {
         
     | 
| 
       98 
481 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       99 
482 
     | 
    
         
             
                  "name": "getPoolNftId",
         
     | 
| 
         @@ -107,6 +490,244 @@ 
     | 
|
| 
       107 
490 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       108 
491 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       109 
492 
     | 
    
         
             
                },
         
     | 
| 
      
 493 
     | 
    
         
            +
                {
         
     | 
| 
      
 494 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 495 
     | 
    
         
            +
                  "name": "getProductNftId",
         
     | 
| 
      
 496 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 497 
     | 
    
         
            +
                    {
         
     | 
| 
      
 498 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 499 
     | 
    
         
            +
                      "name": "productNftId",
         
     | 
| 
      
 500 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 501 
     | 
    
         
            +
                    }
         
     | 
| 
      
 502 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 503 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 504 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 505 
     | 
    
         
            +
                },
         
     | 
| 
      
 506 
     | 
    
         
            +
                {
         
     | 
| 
      
 507 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 508 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 509 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 510 
     | 
    
         
            +
                    {
         
     | 
| 
      
 511 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 512 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 513 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 514 
     | 
    
         
            +
                    }
         
     | 
| 
      
 515 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 516 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 517 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 518 
     | 
    
         
            +
                },
         
     | 
| 
      
 519 
     | 
    
         
            +
                {
         
     | 
| 
      
 520 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 521 
     | 
    
         
            +
                  "name": "getRegistryAddress",
         
     | 
| 
      
 522 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 523 
     | 
    
         
            +
                    {
         
     | 
| 
      
 524 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 525 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 526 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 527 
     | 
    
         
            +
                    }
         
     | 
| 
      
 528 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 529 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 530 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 531 
     | 
    
         
            +
                },
         
     | 
| 
      
 532 
     | 
    
         
            +
                {
         
     | 
| 
      
 533 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 534 
     | 
    
         
            +
                  "name": "getSetupInfo",
         
     | 
| 
      
 535 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 536 
     | 
    
         
            +
                    {
         
     | 
| 
      
 537 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 538 
     | 
    
         
            +
                        {
         
     | 
| 
      
 539 
     | 
    
         
            +
                          "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 540 
     | 
    
         
            +
                          "name": "token",
         
     | 
| 
      
 541 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 542 
     | 
    
         
            +
                        },
         
     | 
| 
      
 543 
     | 
    
         
            +
                        {
         
     | 
| 
      
 544 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 545 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 546 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 547 
     | 
    
         
            +
                        },
         
     | 
| 
      
 548 
     | 
    
         
            +
                        {
         
     | 
| 
      
 549 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 550 
     | 
    
         
            +
                          "name": "distributionNftId",
         
     | 
| 
      
 551 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 552 
     | 
    
         
            +
                        },
         
     | 
| 
      
 553 
     | 
    
         
            +
                        {
         
     | 
| 
      
 554 
     | 
    
         
            +
                          "internalType": "NftId",
         
     | 
| 
      
 555 
     | 
    
         
            +
                          "name": "poolNftId",
         
     | 
| 
      
 556 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 557 
     | 
    
         
            +
                        },
         
     | 
| 
      
 558 
     | 
    
         
            +
                        {
         
     | 
| 
      
 559 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 560 
     | 
    
         
            +
                            {
         
     | 
| 
      
 561 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 562 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 563 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 564 
     | 
    
         
            +
                            },
         
     | 
| 
      
 565 
     | 
    
         
            +
                            {
         
     | 
| 
      
 566 
     | 
    
         
            +
                              "internalType": "uint256",
         
     | 
| 
      
 567 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 568 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 569 
     | 
    
         
            +
                            }
         
     | 
| 
      
 570 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 571 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 572 
     | 
    
         
            +
                          "name": "productFee",
         
     | 
| 
      
 573 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 574 
     | 
    
         
            +
                        },
         
     | 
| 
      
 575 
     | 
    
         
            +
                        {
         
     | 
| 
      
 576 
     | 
    
         
            +
                          "components": [
         
     | 
| 
      
 577 
     | 
    
         
            +
                            {
         
     | 
| 
      
 578 
     | 
    
         
            +
                              "internalType": "UFixed",
         
     | 
| 
      
 579 
     | 
    
         
            +
                              "name": "fractionalFee",
         
     | 
| 
      
 580 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 581 
     | 
    
         
            +
                            },
         
     | 
| 
      
 582 
     | 
    
         
            +
                            {
         
     | 
| 
      
 583 
     | 
    
         
            +
                              "internalType": "uint256",
         
     | 
| 
      
 584 
     | 
    
         
            +
                              "name": "fixedFee",
         
     | 
| 
      
 585 
     | 
    
         
            +
                              "type": "uint256"
         
     | 
| 
      
 586 
     | 
    
         
            +
                            }
         
     | 
| 
      
 587 
     | 
    
         
            +
                          ],
         
     | 
| 
      
 588 
     | 
    
         
            +
                          "internalType": "struct Fee",
         
     | 
| 
      
 589 
     | 
    
         
            +
                          "name": "processingFee",
         
     | 
| 
      
 590 
     | 
    
         
            +
                          "type": "tuple"
         
     | 
| 
      
 591 
     | 
    
         
            +
                        },
         
     | 
| 
      
 592 
     | 
    
         
            +
                        {
         
     | 
| 
      
 593 
     | 
    
         
            +
                          "internalType": "bool",
         
     | 
| 
      
 594 
     | 
    
         
            +
                          "name": "isIntercepting",
         
     | 
| 
      
 595 
     | 
    
         
            +
                          "type": "bool"
         
     | 
| 
      
 596 
     | 
    
         
            +
                        },
         
     | 
| 
      
 597 
     | 
    
         
            +
                        {
         
     | 
| 
      
 598 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 599 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 600 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 601 
     | 
    
         
            +
                        }
         
     | 
| 
      
 602 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 603 
     | 
    
         
            +
                      "internalType": "struct ISetup.ProductSetupInfo",
         
     | 
| 
      
 604 
     | 
    
         
            +
                      "name": "setupInfo",
         
     | 
| 
      
 605 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 606 
     | 
    
         
            +
                    }
         
     | 
| 
      
 607 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 608 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 609 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 610 
     | 
    
         
            +
                },
         
     | 
| 
      
 611 
     | 
    
         
            +
                {
         
     | 
| 
      
 612 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 613 
     | 
    
         
            +
                  "name": "getToken",
         
     | 
| 
      
 614 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 615 
     | 
    
         
            +
                    {
         
     | 
| 
      
 616 
     | 
    
         
            +
                      "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 617 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 618 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 619 
     | 
    
         
            +
                    }
         
     | 
| 
      
 620 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 621 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 622 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 623 
     | 
    
         
            +
                },
         
     | 
| 
      
 624 
     | 
    
         
            +
                {
         
     | 
| 
      
 625 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 626 
     | 
    
         
            +
                  "name": "getWallet",
         
     | 
| 
      
 627 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 628 
     | 
    
         
            +
                    {
         
     | 
| 
      
 629 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 630 
     | 
    
         
            +
                      "name": "walletAddress",
         
     | 
| 
      
 631 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 632 
     | 
    
         
            +
                    }
         
     | 
| 
      
 633 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 634 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 635 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 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 
     | 
    
         
            +
                },
         
     | 
| 
      
 650 
     | 
    
         
            +
                {
         
     | 
| 
      
 651 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 652 
     | 
    
         
            +
                  "name": "isNftInterceptor",
         
     | 
| 
      
 653 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 654 
     | 
    
         
            +
                    {
         
     | 
| 
      
 655 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 656 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
      
 657 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 658 
     | 
    
         
            +
                    }
         
     | 
| 
      
 659 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 660 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 661 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 662 
     | 
    
         
            +
                },
         
     | 
| 
      
 663 
     | 
    
         
            +
                {
         
     | 
| 
      
 664 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 665 
     | 
    
         
            +
                  "name": "linkToRegisteredNftId",
         
     | 
| 
      
 666 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 667 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 668 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 669 
     | 
    
         
            +
                },
         
     | 
| 
      
 670 
     | 
    
         
            +
                {
         
     | 
| 
      
 671 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 672 
     | 
    
         
            +
                  "name": "lock",
         
     | 
| 
      
 673 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 674 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 675 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 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 
     | 
    
         
            +
                },
         
     | 
| 
      
 695 
     | 
    
         
            +
                {
         
     | 
| 
      
 696 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 697 
     | 
    
         
            +
                    {
         
     | 
| 
      
 698 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 699 
     | 
    
         
            +
                      "name": "from",
         
     | 
| 
      
 700 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 701 
     | 
    
         
            +
                    },
         
     | 
| 
      
 702 
     | 
    
         
            +
                    {
         
     | 
| 
      
 703 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 704 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 705 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 706 
     | 
    
         
            +
                    },
         
     | 
| 
      
 707 
     | 
    
         
            +
                    {
         
     | 
| 
      
 708 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 709 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 710 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 711 
     | 
    
         
            +
                    }
         
     | 
| 
      
 712 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 713 
     | 
    
         
            +
                  "name": "nftTransferFrom",
         
     | 
| 
      
 714 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 715 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 716 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 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 
     | 
    
         
            +
                },
         
     | 
| 
       110 
731 
     | 
    
         
             
                {
         
     | 
| 
       111 
732 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       112 
733 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -148,6 +769,58 @@ 
     | 
|
| 
       148 
769 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       149 
770 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       150 
771 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
      
 772 
     | 
    
         
            +
                },
         
     | 
| 
      
 773 
     | 
    
         
            +
                {
         
     | 
| 
      
 774 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 775 
     | 
    
         
            +
                    {
         
     | 
| 
      
 776 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 777 
     | 
    
         
            +
                      "name": "productNftId",
         
     | 
| 
      
 778 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 779 
     | 
    
         
            +
                    }
         
     | 
| 
      
 780 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 781 
     | 
    
         
            +
                  "name": "setProductNftId",
         
     | 
| 
      
 782 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 783 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 784 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 785 
     | 
    
         
            +
                },
         
     | 
| 
      
 786 
     | 
    
         
            +
                {
         
     | 
| 
      
 787 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 788 
     | 
    
         
            +
                    {
         
     | 
| 
      
 789 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 790 
     | 
    
         
            +
                      "name": "walletAddress",
         
     | 
| 
      
 791 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 792 
     | 
    
         
            +
                    }
         
     | 
| 
      
 793 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 794 
     | 
    
         
            +
                  "name": "setWallet",
         
     | 
| 
      
 795 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 796 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 797 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 798 
     | 
    
         
            +
                },
         
     | 
| 
      
 799 
     | 
    
         
            +
                {
         
     | 
| 
      
 800 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 801 
     | 
    
         
            +
                    {
         
     | 
| 
      
 802 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 803 
     | 
    
         
            +
                      "name": "interfaceId",
         
     | 
| 
      
 804 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 805 
     | 
    
         
            +
                    }
         
     | 
| 
      
 806 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 807 
     | 
    
         
            +
                  "name": "supportsInterface",
         
     | 
| 
      
 808 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 809 
     | 
    
         
            +
                    {
         
     | 
| 
      
 810 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 811 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 812 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 813 
     | 
    
         
            +
                    }
         
     | 
| 
      
 814 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 815 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 816 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 817 
     | 
    
         
            +
                },
         
     | 
| 
      
 818 
     | 
    
         
            +
                {
         
     | 
| 
      
 819 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 820 
     | 
    
         
            +
                  "name": "unlock",
         
     | 
| 
      
 821 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 822 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 823 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
       151 
824 
     | 
    
         
             
                }
         
     | 
| 
       152 
825 
     | 
    
         
             
              ],
         
     | 
| 
       153 
826 
     | 
    
         
             
              "bytecode": "0x",
         
     |