@etherisc/gif-next 0.0.2-f4f92b3-338 → 0.0.2-f509abc-684
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 +73 -1
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +270 -94
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +627 -157
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +122 -72
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +323 -102
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +325 -186
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +126 -144
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +552 -212
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +374 -166
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +64 -50
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +5 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +801 -434
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +194 -192
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +992 -782
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +441 -164
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +119 -221
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +371 -302
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +330 -102
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +8 -13
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +118 -169
- 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 +61 -78
- 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 +968 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +665 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +306 -315
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +305 -93
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +754 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +637 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1212 -252
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +453 -85
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +556 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +155 -240
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +409 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +711 -139
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +60 -286
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +81 -147
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +22 -169
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +185 -391
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +311 -127
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +222 -204
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +310 -90
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +142 -221
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +302 -90
- 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 +34 -2
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +83 -174
- 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 +47 -15
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +193 -216
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +300 -94
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +11 -11
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +141 -37
- 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 -29
- 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 +22 -169
- 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 +113 -33
- 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 -74
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +125 -55
- 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 +113 -164
- 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 +125 -55
- 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 +134 -221
- 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/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 +100 -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 +2 -2
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -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 +25 -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 +112 -83
- package/contracts/components/Distribution.sol +189 -53
- package/contracts/components/IComponent.sol +48 -17
- package/contracts/components/IDistributionComponent.sol +39 -15
- package/contracts/components/IPoolComponent.sol +84 -41
- package/contracts/components/IProductComponent.sol +3 -2
- package/contracts/components/Pool.sol +211 -153
- package/contracts/components/Product.sol +96 -61
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +7 -5
- package/contracts/instance/Cloneable.sol +7 -2
- package/contracts/instance/IInstance.sol +36 -10
- package/contracts/instance/IInstanceService.sol +36 -4
- package/contracts/instance/Instance.sol +101 -43
- package/contracts/instance/InstanceAccessManager.sol +383 -159
- package/contracts/instance/InstanceReader.sol +7 -10
- package/contracts/instance/InstanceService.sol +262 -129
- package/contracts/instance/InstanceServiceManager.sol +1 -1
- package/contracts/instance/ObjectManager.sol +6 -8
- package/contracts/instance/base/ComponentService.sol +6 -6
- package/contracts/instance/base/KeyValueStore.sol +5 -2
- package/contracts/instance/base/Lifecycle.sol +11 -2
- package/contracts/instance/module/IAccess.sol +22 -16
- package/contracts/instance/module/IBundle.sol +2 -1
- package/contracts/instance/module/IComponents.sol +35 -0
- package/contracts/instance/module/IDistribution.sol +2 -0
- package/contracts/instance/module/IPolicy.sol +30 -3
- package/contracts/instance/module/ISetup.sol +7 -20
- package/contracts/instance/service/ApplicationService.sol +350 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +82 -39
- package/contracts/instance/service/BundleServiceManager.sol +1 -1
- package/contracts/instance/service/ClaimService.sol +151 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +376 -15
- package/contracts/instance/service/DistributionServiceManager.sol +1 -1
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +30 -12
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +86 -0
- package/contracts/instance/service/IPolicyService.sol +27 -49
- package/contracts/instance/service/IPoolService.sol +17 -2
- package/contracts/instance/service/PolicyService.sol +148 -283
- package/contracts/instance/service/PolicyServiceManager.sol +2 -2
- package/contracts/instance/service/PoolService.sol +130 -19
- package/contracts/instance/service/PoolServiceManager.sol +1 -1
- package/contracts/instance/service/ProductService.sol +20 -11
- package/contracts/instance/service/ProductServiceManager.sol +2 -2
- package/contracts/registry/ChainNft.sol +8 -0
- package/contracts/registry/IRegistry.sol +5 -2
- package/contracts/registry/IRegistryService.sol +10 -8
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +43 -28
- package/contracts/registry/RegistryService.sol +69 -48
- package/contracts/registry/RegistryServiceManager.sol +13 -13
- package/contracts/registry/ReleaseManager.sol +18 -28
- package/contracts/registry/TokenRegistry.sol +16 -12
- 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 +3 -3
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +2 -0
- package/contracts/shared/IVersionable.sol +4 -47
- package/contracts/shared/NftOwnable.sol +66 -85
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +100 -25
- package/contracts/shared/Registerable.sol +7 -19
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +15 -17
- 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 +1 -1
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +52 -0
- package/contracts/types/DistributorType.sol +2 -2
- package/contracts/types/Fee.sol +1 -0
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/ObjectType.sol +10 -5
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/Referral.sol +4 -0
- package/contracts/types/RoleId.sol +16 -9
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +1 -0
- package/contracts/types/Timestamp.sol +13 -13
- package/contracts/types/UFixed.sol +1 -0
- package/contracts/types/Version.sol +1 -0
- package/package.json +3 -3
- 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/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/README.md
    CHANGED
    
    | @@ -1,5 +1,18 @@ | |
| 1 1 | 
             
            # GIF-Next (Generic Insurance Framework, next version)
         | 
| 2 2 |  | 
| 3 | 
            +
             | 
| 4 | 
            +
            ```mermaid
         | 
| 5 | 
            +
              graph TD
         | 
| 6 | 
            +
                  IPoolComponent --> IComponent
         | 
| 7 | 
            +
                  IComponent --> IRegisterable
         | 
| 8 | 
            +
                  IComponent --> ITransferInterceptor
         | 
| 9 | 
            +
                  IRegistryService --> IService
         | 
| 10 | 
            +
                  IService-->IRegisterable
         | 
| 11 | 
            +
                  IService-->IVersionable
         | 
| 12 | 
            +
                  IRegisterable-->INftOwnable
         | 
| 13 | 
            +
                  INftOwnable-->IERC165
         | 
| 14 | 
            +
            ```
         | 
| 15 | 
            +
             | 
| 3 16 | 
             
            ## Add OpenZeppelin V5 Dependencies
         | 
| 4 17 |  | 
| 5 18 | 
             
            ```shell
         | 
| @@ -392,9 +405,68 @@ Intercepting property | |
| 392 405 |  | 
| 393 406 | 
             
            ### Product
         | 
| 394 407 |  | 
| 408 | 
            +
            ### Payout Handling
         | 
| 409 | 
            +
             | 
| 410 | 
            +
            Pool specifies **retention level**.
         | 
| 411 | 
            +
            Retention level defines up to which percentage of the sum insured the pool is payout out using its own/current funds.
         | 
| 412 | 
            +
            Depending on the amount of a new payout the poolService decides to either execute the payout directly or to add the payout as a pending payout with a notification of the pool.
         | 
| 413 | 
            +
             | 
| 414 | 
            +
            The sequence below sketches the small payout flow (payout < retention amount)
         | 
| 415 | 
            +
            - retention level: 30%
         | 
| 416 | 
            +
            - sum insured: 1000
         | 
| 417 | 
            +
            - payout: 200
         | 
| 418 | 
            +
             | 
| 419 | 
            +
            ```mermaid
         | 
| 420 | 
            +
            sequenceDiagram
         | 
| 421 | 
            +
              participant customer
         | 
| 422 | 
            +
              participant product
         | 
| 423 | 
            +
              participant claimService
         | 
| 424 | 
            +
              participant poolService
         | 
| 425 | 
            +
              participant pool
         | 
| 426 | 
            +
              product->>claimService: createPayout()
         | 
| 427 | 
            +
              claimService ->> poolService: requestPayout()
         | 
| 428 | 
            +
              poolService -->> pool: verifyPayout() *
         | 
| 429 | 
            +
              poolService ->> poolService: processPayout()
         | 
| 430 | 
            +
              poolService ->> customer: transfer token for payout
         | 
| 431 | 
            +
              poolService ->> claimService: payoutExecuted()
         | 
| 432 | 
            +
              poolService -->> customer: payoutExecutedCallback() **
         | 
| 433 | 
            +
            ```
         | 
| 434 | 
            +
             | 
| 435 | 
            +
            *: if pool is configured to verify payouts before execution
         | 
| 436 | 
            +
             | 
| 437 | 
            +
            **: callback only if customer is contract (IPolicyHolder)
         | 
| 438 | 
            +
             | 
| 439 | 
            +
            The sequence below sketches the call flow for payouts larger than the retention amount
         | 
| 440 | 
            +
            - retention level: 30%
         | 
| 441 | 
            +
            - sum insured: 1000
         | 
| 442 | 
            +
            - payout: 500
         | 
| 443 | 
            +
              * locally available: 300
         | 
| 444 | 
            +
              * via policy (re-insurance): 200
         | 
| 445 | 
            +
             | 
| 446 | 
            +
            ```mermaid
         | 
| 447 | 
            +
            sequenceDiagram 
         | 
| 448 | 
            +
              participant customer
         | 
| 449 | 
            +
              participant product
         | 
| 450 | 
            +
              participant claimService
         | 
| 451 | 
            +
              participant poolService
         | 
| 452 | 
            +
              participant pool
         | 
| 453 | 
            +
              pool ->> reinsuranceProduct: applyForPolicy()
         | 
| 454 | 
            +
              product->>claimService: createPayout()
         | 
| 455 | 
            +
              claimService ->> poolService: requestPayout()
         | 
| 456 | 
            +
              poolService ->> pool: pendingPayoutAdded()
         | 
| 457 | 
            +
              pool ->> pool: getReinsurancePolicy()
         | 
| 458 | 
            +
              pool ->> reinsuranceProduct: claim()
         | 
| 459 | 
            +
              reinsuranceProduct -->> reinsurancePool: createPayout
         | 
| 460 | 
            +
              reinsurancePool ->> pool: transfer token for payout
         | 
| 461 | 
            +
              reinsurancePool ->> pool: payoutExecutedCallback()
         | 
| 462 | 
            +
              pool ->> poolService: processPendingPayout()
         | 
| 463 | 
            +
              poolService ->> customer: transfer token for payout
         | 
| 464 | 
            +
              poolService ->> claimService: payoutExecuted()
         | 
| 465 | 
            +
            ```
         | 
| 466 | 
            +
             | 
| 395 467 | 
             
            ### Pool
         | 
| 396 468 |  | 
| 397 | 
            -
            ### | 
| 469 | 
            +
            ### Distribution
         | 
| 398 470 |  | 
| 399 471 | 
             
            ### Oracle
         | 
| 400 472 |  | 
| @@ -67,16 +67,11 @@ | |
| 67 67 | 
             
                  "inputs": [
         | 
| 68 68 | 
             
                    {
         | 
| 69 69 | 
             
                      "internalType": "address",
         | 
| 70 | 
            -
                      "name": " | 
| 70 | 
            +
                      "name": "caller",
         | 
| 71 71 | 
             
                      "type": "address"
         | 
| 72 | 
            -
                    },
         | 
| 73 | 
            -
                    {
         | 
| 74 | 
            -
                      "internalType": "NftId",
         | 
| 75 | 
            -
                      "name": "nftId",
         | 
| 76 | 
            -
                      "type": "uint96"
         | 
| 77 72 | 
             
                    }
         | 
| 78 73 | 
             
                  ],
         | 
| 79 | 
            -
                  "name": " | 
| 74 | 
            +
                  "name": "ErrorComponentNotChainNft",
         | 
| 80 75 | 
             
                  "type": "error"
         | 
| 81 76 | 
             
                },
         | 
| 82 77 | 
             
                {
         | 
| @@ -85,11 +80,6 @@ | |
| 85 80 | 
             
                      "internalType": "NftId",
         | 
| 86 81 | 
             
                      "name": "instanceNftId",
         | 
| 87 82 | 
             
                      "type": "uint96"
         | 
| 88 | 
            -
                    },
         | 
| 89 | 
            -
                    {
         | 
| 90 | 
            -
                      "internalType": "address",
         | 
| 91 | 
            -
                      "name": "instance",
         | 
| 92 | 
            -
                      "type": "address"
         | 
| 93 83 | 
             
                    }
         | 
| 94 84 | 
             
                  ],
         | 
| 95 85 | 
             
                  "name": "ErrorComponentNotInstance",
         | 
| @@ -112,29 +102,7 @@ | |
| 112 102 | 
             
                  "type": "error"
         | 
| 113 103 | 
             
                },
         | 
| 114 104 | 
             
                {
         | 
| 115 | 
            -
                  "inputs": [
         | 
| 116 | 
            -
                    {
         | 
| 117 | 
            -
                      "internalType": "address",
         | 
| 118 | 
            -
                      "name": "caller",
         | 
| 119 | 
            -
                      "type": "address"
         | 
| 120 | 
            -
                    },
         | 
| 121 | 
            -
                    {
         | 
| 122 | 
            -
                      "internalType": "uint64",
         | 
| 123 | 
            -
                      "name": "requiredRoleIdNum",
         | 
| 124 | 
            -
                      "type": "uint64"
         | 
| 125 | 
            -
                    }
         | 
| 126 | 
            -
                  ],
         | 
| 127 | 
            -
                  "name": "ErrorComponentUnauthorized",
         | 
| 128 | 
            -
                  "type": "error"
         | 
| 129 | 
            -
                },
         | 
| 130 | 
            -
                {
         | 
| 131 | 
            -
                  "inputs": [
         | 
| 132 | 
            -
                    {
         | 
| 133 | 
            -
                      "internalType": "address",
         | 
| 134 | 
            -
                      "name": "newWallet",
         | 
| 135 | 
            -
                      "type": "address"
         | 
| 136 | 
            -
                    }
         | 
| 137 | 
            -
                  ],
         | 
| 105 | 
            +
                  "inputs": [],
         | 
| 138 106 | 
             
                  "name": "ErrorComponentWalletAddressIsSameAsCurrent",
         | 
| 139 107 | 
             
                  "type": "error"
         | 
| 140 108 | 
             
                },
         | 
| @@ -172,66 +140,50 @@ | |
| 172 140 | 
             
                {
         | 
| 173 141 | 
             
                  "inputs": [
         | 
| 174 142 | 
             
                    {
         | 
| 175 | 
            -
                      "internalType": " | 
| 176 | 
            -
                      "name": " | 
| 177 | 
            -
                      "type": " | 
| 143 | 
            +
                      "internalType": "NftId",
         | 
| 144 | 
            +
                      "name": "nftId",
         | 
| 145 | 
            +
                      "type": "uint96"
         | 
| 178 146 | 
             
                    }
         | 
| 179 147 | 
             
                  ],
         | 
| 180 | 
            -
                  "name": " | 
| 148 | 
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         | 
| 181 149 | 
             
                  "type": "error"
         | 
| 182 150 | 
             
                },
         | 
| 183 151 | 
             
                {
         | 
| 184 152 | 
             
                  "inputs": [
         | 
| 185 153 | 
             
                    {
         | 
| 186 154 | 
             
                      "internalType": "address",
         | 
| 187 | 
            -
                      "name": " | 
| 155 | 
            +
                      "name": "contractAddress",
         | 
| 188 156 | 
             
                      "type": "address"
         | 
| 189 157 | 
             
                    }
         | 
| 190 158 | 
             
                  ],
         | 
| 191 | 
            -
                  "name": " | 
| 159 | 
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         | 
| 192 160 | 
             
                  "type": "error"
         | 
| 193 161 | 
             
                },
         | 
| 194 162 | 
             
                {
         | 
| 195 | 
            -
                  "inputs": [
         | 
| 196 | 
            -
             | 
| 197 | 
            -
                      "internalType": "address",
         | 
| 198 | 
            -
                      "name": "registryAddress",
         | 
| 199 | 
            -
                      "type": "address"
         | 
| 200 | 
            -
                    }
         | 
| 201 | 
            -
                  ],
         | 
| 202 | 
            -
                  "name": "ErrorNotRegistry",
         | 
| 163 | 
            +
                  "inputs": [],
         | 
| 164 | 
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         | 
| 203 165 | 
             
                  "type": "error"
         | 
| 204 166 | 
             
                },
         | 
| 205 167 | 
             
                {
         | 
| 206 168 | 
             
                  "inputs": [
         | 
| 207 169 | 
             
                    {
         | 
| 208 170 | 
             
                      "internalType": "address",
         | 
| 209 | 
            -
                      "name": " | 
| 171 | 
            +
                      "name": "account",
         | 
| 210 172 | 
             
                      "type": "address"
         | 
| 211 173 | 
             
                    }
         | 
| 212 174 | 
             
                  ],
         | 
| 213 | 
            -
                  "name": " | 
| 214 | 
            -
                  "type": "error"
         | 
| 215 | 
            -
                },
         | 
| 216 | 
            -
                {
         | 
| 217 | 
            -
                  "inputs": [],
         | 
| 218 | 
            -
                  "name": "ErrorRegistryAddressZero",
         | 
| 175 | 
            +
                  "name": "ErrorNftOwnableNotOwner",
         | 
| 219 176 | 
             
                  "type": "error"
         | 
| 220 177 | 
             
                },
         | 
| 221 178 | 
             
                {
         | 
| 222 179 | 
             
                  "inputs": [
         | 
| 223 180 | 
             
                    {
         | 
| 224 181 | 
             
                      "internalType": "address",
         | 
| 225 | 
            -
                      "name": " | 
| 182 | 
            +
                      "name": "registryAddress",
         | 
| 226 183 | 
             
                      "type": "address"
         | 
| 227 184 | 
             
                    }
         | 
| 228 185 | 
             
                  ],
         | 
| 229 | 
            -
                  "name": " | 
| 230 | 
            -
                  "type": "error"
         | 
| 231 | 
            -
                },
         | 
| 232 | 
            -
                {
         | 
| 233 | 
            -
                  "inputs": [],
         | 
| 234 | 
            -
                  "name": "ErrorRegistryNotInitialized",
         | 
| 186 | 
            +
                  "name": "ErrorNotRegistry",
         | 
| 235 187 | 
             
                  "type": "error"
         | 
| 236 188 | 
             
                },
         | 
| 237 189 | 
             
                {
         | 
| @@ -289,6 +241,12 @@ | |
| 289 241 | 
             
                {
         | 
| 290 242 | 
             
                  "anonymous": false,
         | 
| 291 243 | 
             
                  "inputs": [
         | 
| 244 | 
            +
                    {
         | 
| 245 | 
            +
                      "indexed": false,
         | 
| 246 | 
            +
                      "internalType": "address",
         | 
| 247 | 
            +
                      "name": "oldWallet",
         | 
| 248 | 
            +
                      "type": "address"
         | 
| 249 | 
            +
                    },
         | 
| 292 250 | 
             
                    {
         | 
| 293 251 | 
             
                      "indexed": false,
         | 
| 294 252 | 
             
                      "internalType": "address",
         | 
| @@ -326,7 +284,20 @@ | |
| 326 284 | 
             
                },
         | 
| 327 285 | 
             
                {
         | 
| 328 286 | 
             
                  "inputs": [],
         | 
| 329 | 
            -
                  "name": " | 
| 287 | 
            +
                  "name": "COMPONENT_LOCATION_V1",
         | 
| 288 | 
            +
                  "outputs": [
         | 
| 289 | 
            +
                    {
         | 
| 290 | 
            +
                      "internalType": "bytes32",
         | 
| 291 | 
            +
                      "name": "",
         | 
| 292 | 
            +
                      "type": "bytes32"
         | 
| 293 | 
            +
                    }
         | 
| 294 | 
            +
                  ],
         | 
| 295 | 
            +
                  "stateMutability": "view",
         | 
| 296 | 
            +
                  "type": "function"
         | 
| 297 | 
            +
                },
         | 
| 298 | 
            +
                {
         | 
| 299 | 
            +
                  "inputs": [],
         | 
| 300 | 
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         | 
| 330 301 | 
             
                  "outputs": [
         | 
| 331 302 | 
             
                    {
         | 
| 332 303 | 
             
                      "internalType": "bytes32",
         | 
| @@ -363,6 +334,46 @@ | |
| 363 334 | 
             
                  "stateMutability": "view",
         | 
| 364 335 | 
             
                  "type": "function"
         | 
| 365 336 | 
             
                },
         | 
| 337 | 
            +
                {
         | 
| 338 | 
            +
                  "inputs": [],
         | 
| 339 | 
            +
                  "name": "getComponentInfo",
         | 
| 340 | 
            +
                  "outputs": [
         | 
| 341 | 
            +
                    {
         | 
| 342 | 
            +
                      "components": [
         | 
| 343 | 
            +
                        {
         | 
| 344 | 
            +
                          "internalType": "string",
         | 
| 345 | 
            +
                          "name": "name",
         | 
| 346 | 
            +
                          "type": "string"
         | 
| 347 | 
            +
                        },
         | 
| 348 | 
            +
                        {
         | 
| 349 | 
            +
                          "internalType": "contract IERC20Metadata",
         | 
| 350 | 
            +
                          "name": "token",
         | 
| 351 | 
            +
                          "type": "address"
         | 
| 352 | 
            +
                        },
         | 
| 353 | 
            +
                        {
         | 
| 354 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 355 | 
            +
                          "name": "tokenHandler",
         | 
| 356 | 
            +
                          "type": "address"
         | 
| 357 | 
            +
                        },
         | 
| 358 | 
            +
                        {
         | 
| 359 | 
            +
                          "internalType": "address",
         | 
| 360 | 
            +
                          "name": "wallet",
         | 
| 361 | 
            +
                          "type": "address"
         | 
| 362 | 
            +
                        },
         | 
| 363 | 
            +
                        {
         | 
| 364 | 
            +
                          "internalType": "bytes",
         | 
| 365 | 
            +
                          "name": "data",
         | 
| 366 | 
            +
                          "type": "bytes"
         | 
| 367 | 
            +
                        }
         | 
| 368 | 
            +
                      ],
         | 
| 369 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 370 | 
            +
                      "name": "info",
         | 
| 371 | 
            +
                      "type": "tuple"
         | 
| 372 | 
            +
                    }
         | 
| 373 | 
            +
                  ],
         | 
| 374 | 
            +
                  "stateMutability": "view",
         | 
| 375 | 
            +
                  "type": "function"
         | 
| 376 | 
            +
                },
         | 
| 366 377 | 
             
                {
         | 
| 367 378 | 
             
                  "inputs": [],
         | 
| 368 379 | 
             
                  "name": "getInitialInfo",
         | 
| @@ -413,19 +424,6 @@ | |
| 413 424 | 
             
                  "stateMutability": "view",
         | 
| 414 425 | 
             
                  "type": "function"
         | 
| 415 426 | 
             
                },
         | 
| 416 | 
            -
                {
         | 
| 417 | 
            -
                  "inputs": [],
         | 
| 418 | 
            -
                  "name": "getInitialOwner",
         | 
| 419 | 
            -
                  "outputs": [
         | 
| 420 | 
            -
                    {
         | 
| 421 | 
            -
                      "internalType": "address",
         | 
| 422 | 
            -
                      "name": "",
         | 
| 423 | 
            -
                      "type": "address"
         | 
| 424 | 
            -
                    }
         | 
| 425 | 
            -
                  ],
         | 
| 426 | 
            -
                  "stateMutability": "view",
         | 
| 427 | 
            -
                  "type": "function"
         | 
| 428 | 
            -
                },
         | 
| 429 427 | 
             
                {
         | 
| 430 428 | 
             
                  "inputs": [],
         | 
| 431 429 | 
             
                  "name": "getInstance",
         | 
| @@ -439,19 +437,6 @@ | |
| 439 437 | 
             
                  "stateMutability": "view",
         | 
| 440 438 | 
             
                  "type": "function"
         | 
| 441 439 | 
             
                },
         | 
| 442 | 
            -
                {
         | 
| 443 | 
            -
                  "inputs": [],
         | 
| 444 | 
            -
                  "name": "getInstanceService",
         | 
| 445 | 
            -
                  "outputs": [
         | 
| 446 | 
            -
                    {
         | 
| 447 | 
            -
                      "internalType": "contract IInstanceService",
         | 
| 448 | 
            -
                      "name": "",
         | 
| 449 | 
            -
                      "type": "address"
         | 
| 450 | 
            -
                    }
         | 
| 451 | 
            -
                  ],
         | 
| 452 | 
            -
                  "stateMutability": "view",
         | 
| 453 | 
            -
                  "type": "function"
         | 
| 454 | 
            -
                },
         | 
| 455 440 | 
             
                {
         | 
| 456 441 | 
             
                  "inputs": [],
         | 
| 457 442 | 
             
                  "name": "getName",
         | 
| @@ -506,10 +491,10 @@ | |
| 506 491 | 
             
                },
         | 
| 507 492 | 
             
                {
         | 
| 508 493 | 
             
                  "inputs": [],
         | 
| 509 | 
            -
                  "name": " | 
| 494 | 
            +
                  "name": "getRegistry",
         | 
| 510 495 | 
             
                  "outputs": [
         | 
| 511 496 | 
             
                    {
         | 
| 512 | 
            -
                      "internalType": "contract  | 
| 497 | 
            +
                      "internalType": "contract IRegistry",
         | 
| 513 498 | 
             
                      "name": "",
         | 
| 514 499 | 
             
                      "type": "address"
         | 
| 515 500 | 
             
                    }
         | 
| @@ -519,10 +504,10 @@ | |
| 519 504 | 
             
                },
         | 
| 520 505 | 
             
                {
         | 
| 521 506 | 
             
                  "inputs": [],
         | 
| 522 | 
            -
                  "name": " | 
| 507 | 
            +
                  "name": "getRegistryAddress",
         | 
| 523 508 | 
             
                  "outputs": [
         | 
| 524 509 | 
             
                    {
         | 
| 525 | 
            -
                      "internalType": " | 
| 510 | 
            +
                      "internalType": "address",
         | 
| 526 511 | 
             
                      "name": "",
         | 
| 527 512 | 
             
                      "type": "address"
         | 
| 528 513 | 
             
                    }
         | 
| @@ -556,6 +541,130 @@ | |
| 556 541 | 
             
                  "stateMutability": "view",
         | 
| 557 542 | 
             
                  "type": "function"
         | 
| 558 543 | 
             
                },
         | 
| 544 | 
            +
                {
         | 
| 545 | 
            +
                  "inputs": [
         | 
| 546 | 
            +
                    {
         | 
| 547 | 
            +
                      "internalType": "address",
         | 
| 548 | 
            +
                      "name": "registry",
         | 
| 549 | 
            +
                      "type": "address"
         | 
| 550 | 
            +
                    },
         | 
| 551 | 
            +
                    {
         | 
| 552 | 
            +
                      "internalType": "NftId",
         | 
| 553 | 
            +
                      "name": "instanceNftId",
         | 
| 554 | 
            +
                      "type": "uint96"
         | 
| 555 | 
            +
                    },
         | 
| 556 | 
            +
                    {
         | 
| 557 | 
            +
                      "internalType": "string",
         | 
| 558 | 
            +
                      "name": "name",
         | 
| 559 | 
            +
                      "type": "string"
         | 
| 560 | 
            +
                    },
         | 
| 561 | 
            +
                    {
         | 
| 562 | 
            +
                      "internalType": "address",
         | 
| 563 | 
            +
                      "name": "token",
         | 
| 564 | 
            +
                      "type": "address"
         | 
| 565 | 
            +
                    },
         | 
| 566 | 
            +
                    {
         | 
| 567 | 
            +
                      "internalType": "ObjectType",
         | 
| 568 | 
            +
                      "name": "componentType",
         | 
| 569 | 
            +
                      "type": "uint8"
         | 
| 570 | 
            +
                    },
         | 
| 571 | 
            +
                    {
         | 
| 572 | 
            +
                      "internalType": "bool",
         | 
| 573 | 
            +
                      "name": "isInterceptor",
         | 
| 574 | 
            +
                      "type": "bool"
         | 
| 575 | 
            +
                    },
         | 
| 576 | 
            +
                    {
         | 
| 577 | 
            +
                      "internalType": "address",
         | 
| 578 | 
            +
                      "name": "initialOwner",
         | 
| 579 | 
            +
                      "type": "address"
         | 
| 580 | 
            +
                    },
         | 
| 581 | 
            +
                    {
         | 
| 582 | 
            +
                      "internalType": "bytes",
         | 
| 583 | 
            +
                      "name": "registryData",
         | 
| 584 | 
            +
                      "type": "bytes"
         | 
| 585 | 
            +
                    }
         | 
| 586 | 
            +
                  ],
         | 
| 587 | 
            +
                  "name": "initializeComponent",
         | 
| 588 | 
            +
                  "outputs": [],
         | 
| 589 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 590 | 
            +
                  "type": "function"
         | 
| 591 | 
            +
                },
         | 
| 592 | 
            +
                {
         | 
| 593 | 
            +
                  "inputs": [],
         | 
| 594 | 
            +
                  "name": "initializeERC165",
         | 
| 595 | 
            +
                  "outputs": [],
         | 
| 596 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 597 | 
            +
                  "type": "function"
         | 
| 598 | 
            +
                },
         | 
| 599 | 
            +
                {
         | 
| 600 | 
            +
                  "inputs": [
         | 
| 601 | 
            +
                    {
         | 
| 602 | 
            +
                      "internalType": "address",
         | 
| 603 | 
            +
                      "name": "initialOwner",
         | 
| 604 | 
            +
                      "type": "address"
         | 
| 605 | 
            +
                    },
         | 
| 606 | 
            +
                    {
         | 
| 607 | 
            +
                      "internalType": "address",
         | 
| 608 | 
            +
                      "name": "registryAddress",
         | 
| 609 | 
            +
                      "type": "address"
         | 
| 610 | 
            +
                    }
         | 
| 611 | 
            +
                  ],
         | 
| 612 | 
            +
                  "name": "initializeNftOwnable",
         | 
| 613 | 
            +
                  "outputs": [],
         | 
| 614 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 615 | 
            +
                  "type": "function"
         | 
| 616 | 
            +
                },
         | 
| 617 | 
            +
                {
         | 
| 618 | 
            +
                  "inputs": [
         | 
| 619 | 
            +
                    {
         | 
| 620 | 
            +
                      "internalType": "address",
         | 
| 621 | 
            +
                      "name": "registryAddress",
         | 
| 622 | 
            +
                      "type": "address"
         | 
| 623 | 
            +
                    },
         | 
| 624 | 
            +
                    {
         | 
| 625 | 
            +
                      "internalType": "NftId",
         | 
| 626 | 
            +
                      "name": "parentNftId",
         | 
| 627 | 
            +
                      "type": "uint96"
         | 
| 628 | 
            +
                    },
         | 
| 629 | 
            +
                    {
         | 
| 630 | 
            +
                      "internalType": "ObjectType",
         | 
| 631 | 
            +
                      "name": "objectType",
         | 
| 632 | 
            +
                      "type": "uint8"
         | 
| 633 | 
            +
                    },
         | 
| 634 | 
            +
                    {
         | 
| 635 | 
            +
                      "internalType": "bool",
         | 
| 636 | 
            +
                      "name": "isInterceptor",
         | 
| 637 | 
            +
                      "type": "bool"
         | 
| 638 | 
            +
                    },
         | 
| 639 | 
            +
                    {
         | 
| 640 | 
            +
                      "internalType": "address",
         | 
| 641 | 
            +
                      "name": "initialOwner",
         | 
| 642 | 
            +
                      "type": "address"
         | 
| 643 | 
            +
                    },
         | 
| 644 | 
            +
                    {
         | 
| 645 | 
            +
                      "internalType": "bytes",
         | 
| 646 | 
            +
                      "name": "registryData",
         | 
| 647 | 
            +
                      "type": "bytes"
         | 
| 648 | 
            +
                    }
         | 
| 649 | 
            +
                  ],
         | 
| 650 | 
            +
                  "name": "initializeRegisterable",
         | 
| 651 | 
            +
                  "outputs": [],
         | 
| 652 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 653 | 
            +
                  "type": "function"
         | 
| 654 | 
            +
                },
         | 
| 655 | 
            +
                {
         | 
| 656 | 
            +
                  "inputs": [
         | 
| 657 | 
            +
                    {
         | 
| 658 | 
            +
                      "internalType": "address",
         | 
| 659 | 
            +
                      "name": "registryAddress",
         | 
| 660 | 
            +
                      "type": "address"
         | 
| 661 | 
            +
                    }
         | 
| 662 | 
            +
                  ],
         | 
| 663 | 
            +
                  "name": "initializeRegistryLinked",
         | 
| 664 | 
            +
                  "outputs": [],
         | 
| 665 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 666 | 
            +
                  "type": "function"
         | 
| 667 | 
            +
                },
         | 
| 559 668 | 
             
                {
         | 
| 560 669 | 
             
                  "inputs": [],
         | 
| 561 670 | 
             
                  "name": "isConsumingScheduledOp",
         | 
| @@ -569,6 +678,19 @@ | |
| 569 678 | 
             
                  "stateMutability": "view",
         | 
| 570 679 | 
             
                  "type": "function"
         | 
| 571 680 | 
             
                },
         | 
| 681 | 
            +
                {
         | 
| 682 | 
            +
                  "inputs": [],
         | 
| 683 | 
            +
                  "name": "isNftInterceptor",
         | 
| 684 | 
            +
                  "outputs": [
         | 
| 685 | 
            +
                    {
         | 
| 686 | 
            +
                      "internalType": "bool",
         | 
| 687 | 
            +
                      "name": "isInterceptor",
         | 
| 688 | 
            +
                      "type": "bool"
         | 
| 689 | 
            +
                    }
         | 
| 690 | 
            +
                  ],
         | 
| 691 | 
            +
                  "stateMutability": "view",
         | 
| 692 | 
            +
                  "type": "function"
         | 
| 693 | 
            +
                },
         | 
| 572 694 | 
             
                {
         | 
| 573 695 | 
             
                  "inputs": [],
         | 
| 574 696 | 
             
                  "name": "linkToRegisteredNftId",
         | 
| @@ -583,6 +705,60 @@ | |
| 583 705 | 
             
                  "stateMutability": "nonpayable",
         | 
| 584 706 | 
             
                  "type": "function"
         | 
| 585 707 | 
             
                },
         | 
| 708 | 
            +
                {
         | 
| 709 | 
            +
                  "inputs": [
         | 
| 710 | 
            +
                    {
         | 
| 711 | 
            +
                      "internalType": "address",
         | 
| 712 | 
            +
                      "name": "to",
         | 
| 713 | 
            +
                      "type": "address"
         | 
| 714 | 
            +
                    },
         | 
| 715 | 
            +
                    {
         | 
| 716 | 
            +
                      "internalType": "uint256",
         | 
| 717 | 
            +
                      "name": "tokenId",
         | 
| 718 | 
            +
                      "type": "uint256"
         | 
| 719 | 
            +
                    }
         | 
| 720 | 
            +
                  ],
         | 
| 721 | 
            +
                  "name": "nftMint",
         | 
| 722 | 
            +
                  "outputs": [],
         | 
| 723 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 724 | 
            +
                  "type": "function"
         | 
| 725 | 
            +
                },
         | 
| 726 | 
            +
                {
         | 
| 727 | 
            +
                  "inputs": [
         | 
| 728 | 
            +
                    {
         | 
| 729 | 
            +
                      "internalType": "address",
         | 
| 730 | 
            +
                      "name": "from",
         | 
| 731 | 
            +
                      "type": "address"
         | 
| 732 | 
            +
                    },
         | 
| 733 | 
            +
                    {
         | 
| 734 | 
            +
                      "internalType": "address",
         | 
| 735 | 
            +
                      "name": "to",
         | 
| 736 | 
            +
                      "type": "address"
         | 
| 737 | 
            +
                    },
         | 
| 738 | 
            +
                    {
         | 
| 739 | 
            +
                      "internalType": "uint256",
         | 
| 740 | 
            +
                      "name": "tokenId",
         | 
| 741 | 
            +
                      "type": "uint256"
         | 
| 742 | 
            +
                    }
         | 
| 743 | 
            +
                  ],
         | 
| 744 | 
            +
                  "name": "nftTransferFrom",
         | 
| 745 | 
            +
                  "outputs": [],
         | 
| 746 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 747 | 
            +
                  "type": "function"
         | 
| 748 | 
            +
                },
         | 
| 749 | 
            +
                {
         | 
| 750 | 
            +
                  "inputs": [
         | 
| 751 | 
            +
                    {
         | 
| 752 | 
            +
                      "internalType": "bytes4",
         | 
| 753 | 
            +
                      "name": "interfaceId",
         | 
| 754 | 
            +
                      "type": "bytes4"
         | 
| 755 | 
            +
                    }
         | 
| 756 | 
            +
                  ],
         | 
| 757 | 
            +
                  "name": "registerInterface",
         | 
| 758 | 
            +
                  "outputs": [],
         | 
| 759 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 760 | 
            +
                  "type": "function"
         | 
| 761 | 
            +
                },
         | 
| 586 762 | 
             
                {
         | 
| 587 763 | 
             
                  "inputs": [
         | 
| 588 764 | 
             
                    {
         |