@etherisc/gif-next 0.0.2-f7b8c9f-518 → 0.0.2-f7bec40-735
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +178 -14
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +873 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +1023 -204
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +636 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +862 -39
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +916 -129
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +694 -40
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +958 -267
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +778 -194
- 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/Cloneable.sol/Cloneable.json +190 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +226 -1822
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +616 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +444 -2190
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1348 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +124 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1569 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +979 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +656 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2788 -0
- 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/{InstanceBase.sol/InstanceBase.json → ComponentService.sol/ComponentService.json} +282 -195
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +27 -158
- 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 +67 -245
- 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 +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{distribution/IDistribution.sol → IDistribution.sol}/IDistribution.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/ISetup.sol/ISetup.json} +2 -2
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +918 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +648 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1288 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +696 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +1384 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +752 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1103 -177
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +780 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IApplicationService.sol/IApplicationService.json} +231 -204
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +735 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +743 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +540 -146
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +651 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +669 -153
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ServiceBase.sol/ServiceBase.json → service/IPricingService.sol/IPricingService.json} +245 -203
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +88 -397
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1281 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +740 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1080 -211
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +708 -0
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +1004 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +688 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +327 -531
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +640 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +60 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +255 -63
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +309 -196
- 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 +229 -212
- 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 +422 -269
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +311 -122
- 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 +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +485 -0
- package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- 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 +27 -29
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +189 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +8 -34
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{components/BaseComponent.sol/BaseComponent.json → shared/IService.sol/IService.json} +93 -67
- 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 +107 -27
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +302 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +283 -63
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +116 -51
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentServiceBase.sol/ComponentServiceBase.json → shared/Service.sol/Service.json} +187 -180
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +114 -0
- 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 +4 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +116 -51
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +14 -14
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +204 -200
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
- 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 -174
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
- 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 +281 -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 +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +74 -19
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +31 -17
- 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 +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- 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 +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
- 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 +134 -8
- 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 +51 -7
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{experiment/types/TypeB.sol/TypeBLib.json → types/UFixed.sol/MathLib.json} +4 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/{UFixedMathLib.json → UFixedLib.json} +3 -3
- 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 +22 -3
- package/contracts/components/Component.sol +272 -0
- package/contracts/components/Distribution.sol +209 -79
- package/contracts/components/IComponent.sol +90 -0
- package/contracts/components/IDistributionComponent.sol +43 -18
- package/contracts/components/IPoolComponent.sol +90 -40
- package/contracts/components/IProductComponent.sol +17 -13
- package/contracts/components/Pool.sol +222 -166
- package/contracts/components/Product.sol +258 -182
- package/contracts/instance/BundleManager.sol +126 -0
- package/contracts/instance/Cloneable.sol +51 -0
- package/contracts/instance/IInstance.sol +63 -40
- package/contracts/instance/IInstanceService.sol +73 -0
- package/contracts/instance/Instance.sol +213 -71
- package/contracts/instance/InstanceAccessManager.sol +541 -0
- package/contracts/instance/InstanceAuthorizationsLib.sol +308 -0
- package/contracts/instance/InstanceReader.sol +368 -0
- package/contracts/instance/InstanceService.sol +308 -0
- package/contracts/instance/InstanceServiceManager.sol +54 -0
- package/contracts/instance/InstanceStore.sol +212 -0
- package/contracts/instance/ObjectManager.sol +82 -0
- package/contracts/instance/base/ComponentService.sol +148 -0
- package/contracts/instance/base/IKeyValueStore.sol +13 -14
- package/contracts/instance/base/ILifecycle.sol +3 -3
- package/contracts/instance/base/KeyValueStore.sol +30 -42
- package/contracts/instance/base/Lifecycle.sol +27 -7
- package/contracts/instance/module/IAccess.sol +54 -0
- package/contracts/instance/module/IBundle.sol +23 -0
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +42 -0
- package/contracts/instance/module/IPolicy.sol +77 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +33 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ApplicationService.sol +186 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +382 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/ClaimService.sol +437 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +317 -23
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IApplicationService.sol +62 -0
- package/contracts/instance/service/IBundleService.sol +118 -0
- package/contracts/instance/service/IClaimService.sol +90 -0
- package/contracts/instance/service/IDistributionService.sol +77 -2
- package/contracts/instance/service/IPolicyService.sol +80 -0
- package/contracts/instance/service/IPoolService.sol +95 -18
- package/contracts/instance/service/IPricingService.sol +37 -0
- package/contracts/instance/service/IProductService.sol +9 -76
- package/contracts/instance/service/PolicyService.sol +376 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +339 -85
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/PricingService.sol +275 -0
- package/contracts/instance/service/PricingServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +135 -435
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +49 -26
- package/contracts/registry/IRegistry.sol +53 -25
- package/contracts/registry/IRegistryService.sol +53 -16
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +289 -313
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +165 -247
- package/contracts/registry/RegistryServiceManager.sol +30 -11
- package/contracts/registry/ReleaseManager.sol +324 -0
- package/contracts/registry/TokenRegistry.sol +116 -0
- package/contracts/shared/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/shared/ERC165.sol +15 -9
- package/contracts/shared/INftOwnable.sol +11 -10
- package/contracts/shared/IPolicyHolder.sol +40 -0
- package/contracts/shared/IRegisterable.sol +4 -6
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +18 -0
- package/contracts/shared/IVersionable.sol +4 -47
- package/contracts/shared/NftOwnable.sol +65 -83
- package/contracts/shared/PolicyHolder.sol +94 -0
- package/contracts/shared/ProxyManager.sol +101 -26
- package/contracts/shared/Registerable.sol +25 -39
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +72 -0
- package/contracts/shared/TokenHandler.sol +35 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +2 -2
- package/contracts/shared/Versionable.sol +5 -93
- package/contracts/test/TestFee.sol +2 -2
- package/contracts/test/TestRegisterable.sol +1 -1
- package/contracts/test/TestRoleId.sol +1 -1
- package/contracts/test/TestService.sol +6 -7
- package/contracts/types/Amount.sol +109 -0
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +75 -0
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +19 -10
- package/contracts/types/Key32.sol +8 -3
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +44 -14
- package/contracts/types/PayoutId.sol +82 -0
- package/contracts/types/Referral.sol +89 -0
- package/contracts/types/RoleId.sol +68 -9
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +12 -3
- package/contracts/types/Timestamp.sol +22 -13
- package/contracts/types/UFixed.sol +129 -12
- package/contracts/types/Version.sol +5 -1
- package/package.json +6 -5
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -254
- 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/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- 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/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
- 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/base/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -421
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -297
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -297
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -117
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -117
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +0 -10
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -271
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -271
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -164
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -164
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -113
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -131
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -638
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -638
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -794
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -457
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +0 -4
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +0 -557
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -716
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -744
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +0 -99
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/contracts/components/BaseComponent.sol +0 -79
- package/contracts/components/IBaseComponent.sol +0 -19
- 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/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/ComponentServiceBase.sol +0 -49
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/InstanceBase.sol +0 -89
- package/contracts/instance/base/ModuleBase.sol +0 -57
- package/contracts/instance/base/ServiceBase.sol +0 -44
- package/contracts/instance/module/access/Access.sol +0 -149
- package/contracts/instance/module/access/IAccess.sol +0 -53
- package/contracts/instance/module/bundle/BundleModule.sol +0 -134
- package/contracts/instance/module/bundle/IBundle.sol +0 -53
- package/contracts/instance/module/component/ComponentModule.sol +0 -71
- package/contracts/instance/module/component/IComponent.sol +0 -28
- package/contracts/instance/module/distribution/DistributionModule.sol +0 -17
- package/contracts/instance/module/distribution/IDistribution.sol +0 -10
- package/contracts/instance/module/policy/IPolicy.sol +0 -63
- package/contracts/instance/module/policy/PolicyModule.sol +0 -91
- package/contracts/instance/module/pool/IPoolModule.sol +0 -41
- package/contracts/instance/module/pool/PoolModule.sol +0 -95
- package/contracts/instance/module/risk/IRisk.sol +0 -26
- package/contracts/instance/module/risk/RiskModule.sol +0 -62
- package/contracts/instance/module/treasury/ITreasury.sol +0 -84
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -131
- package/contracts/instance/service/ComponentOwnerService.sol +0 -275
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/registry/IChainNft.sol +0 -22
- package/contracts/test/TestDistribution.sol +0 -22
- package/contracts/test/TestPool.sol +0 -27
- package/contracts/test/TestProduct.sol +0 -74
- package/contracts/types/ReferralId.sol +0 -48
@@ -3,25 +3,15 @@
|
|
3
3
|
"contractName": "NftOwnable",
|
4
4
|
"sourceName": "contracts/shared/NftOwnable.sol",
|
5
5
|
"abi": [
|
6
|
-
{
|
7
|
-
"inputs": [],
|
8
|
-
"stateMutability": "nonpayable",
|
9
|
-
"type": "constructor"
|
10
|
-
},
|
11
6
|
{
|
12
7
|
"inputs": [
|
13
|
-
{
|
14
|
-
"internalType": "address",
|
15
|
-
"name": "registry",
|
16
|
-
"type": "address"
|
17
|
-
},
|
18
8
|
{
|
19
9
|
"internalType": "NftId",
|
20
10
|
"name": "nftId",
|
21
11
|
"type": "uint96"
|
22
12
|
}
|
23
13
|
],
|
24
|
-
"name": "
|
14
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
25
15
|
"type": "error"
|
26
16
|
},
|
27
17
|
{
|
@@ -32,7 +22,12 @@
|
|
32
22
|
"type": "address"
|
33
23
|
}
|
34
24
|
],
|
35
|
-
"name": "
|
25
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
26
|
+
"type": "error"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"inputs": [],
|
30
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
36
31
|
"type": "error"
|
37
32
|
},
|
38
33
|
{
|
@@ -43,7 +38,7 @@
|
|
43
38
|
"type": "address"
|
44
39
|
}
|
45
40
|
],
|
46
|
-
"name": "
|
41
|
+
"name": "ErrorNftOwnableNotOwner",
|
47
42
|
"type": "error"
|
48
43
|
},
|
49
44
|
{
|
@@ -59,24 +54,39 @@
|
|
59
54
|
},
|
60
55
|
{
|
61
56
|
"inputs": [],
|
62
|
-
"name": "
|
57
|
+
"name": "InvalidInitialization",
|
58
|
+
"type": "error"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"inputs": [],
|
62
|
+
"name": "NotInitializing",
|
63
63
|
"type": "error"
|
64
64
|
},
|
65
65
|
{
|
66
|
+
"anonymous": false,
|
66
67
|
"inputs": [
|
67
68
|
{
|
68
|
-
"
|
69
|
-
"
|
70
|
-
"
|
69
|
+
"indexed": false,
|
70
|
+
"internalType": "uint64",
|
71
|
+
"name": "version",
|
72
|
+
"type": "uint64"
|
71
73
|
}
|
72
74
|
],
|
73
|
-
"name": "
|
74
|
-
"type": "
|
75
|
+
"name": "Initialized",
|
76
|
+
"type": "event"
|
75
77
|
},
|
76
78
|
{
|
77
79
|
"inputs": [],
|
78
|
-
"name": "
|
79
|
-
"
|
80
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
81
|
+
"outputs": [
|
82
|
+
{
|
83
|
+
"internalType": "bytes32",
|
84
|
+
"name": "",
|
85
|
+
"type": "bytes32"
|
86
|
+
}
|
87
|
+
],
|
88
|
+
"stateMutability": "view",
|
89
|
+
"type": "function"
|
80
90
|
},
|
81
91
|
{
|
82
92
|
"inputs": [],
|
@@ -117,26 +127,96 @@
|
|
117
127
|
"stateMutability": "view",
|
118
128
|
"type": "function"
|
119
129
|
},
|
130
|
+
{
|
131
|
+
"inputs": [],
|
132
|
+
"name": "initializeERC165",
|
133
|
+
"outputs": [],
|
134
|
+
"stateMutability": "nonpayable",
|
135
|
+
"type": "function"
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"inputs": [
|
139
|
+
{
|
140
|
+
"internalType": "address",
|
141
|
+
"name": "initialOwner",
|
142
|
+
"type": "address"
|
143
|
+
},
|
144
|
+
{
|
145
|
+
"internalType": "address",
|
146
|
+
"name": "registryAddress",
|
147
|
+
"type": "address"
|
148
|
+
}
|
149
|
+
],
|
150
|
+
"name": "initializeNftOwnable",
|
151
|
+
"outputs": [],
|
152
|
+
"stateMutability": "nonpayable",
|
153
|
+
"type": "function"
|
154
|
+
},
|
155
|
+
{
|
156
|
+
"inputs": [
|
157
|
+
{
|
158
|
+
"internalType": "address",
|
159
|
+
"name": "registryAddress",
|
160
|
+
"type": "address"
|
161
|
+
}
|
162
|
+
],
|
163
|
+
"name": "initializeRegistryLinked",
|
164
|
+
"outputs": [],
|
165
|
+
"stateMutability": "nonpayable",
|
166
|
+
"type": "function"
|
167
|
+
},
|
120
168
|
{
|
121
169
|
"inputs": [],
|
122
170
|
"name": "linkToRegisteredNftId",
|
123
171
|
"outputs": [],
|
124
172
|
"stateMutability": "nonpayable",
|
125
173
|
"type": "function"
|
174
|
+
},
|
175
|
+
{
|
176
|
+
"inputs": [
|
177
|
+
{
|
178
|
+
"internalType": "bytes4",
|
179
|
+
"name": "interfaceId",
|
180
|
+
"type": "bytes4"
|
181
|
+
}
|
182
|
+
],
|
183
|
+
"name": "registerInterface",
|
184
|
+
"outputs": [],
|
185
|
+
"stateMutability": "nonpayable",
|
186
|
+
"type": "function"
|
187
|
+
},
|
188
|
+
{
|
189
|
+
"inputs": [
|
190
|
+
{
|
191
|
+
"internalType": "bytes4",
|
192
|
+
"name": "interfaceId",
|
193
|
+
"type": "bytes4"
|
194
|
+
}
|
195
|
+
],
|
196
|
+
"name": "supportsInterface",
|
197
|
+
"outputs": [
|
198
|
+
{
|
199
|
+
"internalType": "bool",
|
200
|
+
"name": "",
|
201
|
+
"type": "bool"
|
202
|
+
}
|
203
|
+
],
|
204
|
+
"stateMutability": "view",
|
205
|
+
"type": "function"
|
126
206
|
}
|
127
207
|
],
|
128
|
-
"bytecode": "
|
129
|
-
"deployedBytecode": "
|
208
|
+
"bytecode": "0x608060405234801561001057600080fd5b50610888806100206000396000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c8063644c45e011610066578063644c45e01461012f578063675393bf14610157578063893d20e81461016a578063ada9652e14610172578063f7c34ee01461019557600080fd5b806301ffc9a7146100a3578063138461e0146100e5578063214cdb80146100ef57806336fc697e146101025780635ab1bd531461010a575b600080fd5b6100d06100b136600461072e565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100ed6101a8565b005b6100ed6100fd36600461072e565b6103af565b6100ed6103dc565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100dc565b600080516020610833833981519152546040516001600160601b0390911681526020016100dc565b6100ed610165366004610774565b610422565b610117610530565b61018760008051602061083383398151915281565b6040519081526020016100dc565b6100ed6101a3366004610791565b610667565b600060008051602061083383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610217573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061023b91906107ca565b1561026c5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061027f6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156102c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102eb91906107ca565b6103135760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610263565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610367573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061038b91906107ec565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6103b76106de565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6103e46106de565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61042a6106de565b806001600160a01b03163b6000036104605760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610263565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa9250505080156104da575060408051601f3d908101601f191682019092526104d7918101906107ca565b60015b6105025760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610263565b8061052b5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610263565b505b50565b60008060008051602061083383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c491906107ca565b15610651576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610627573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064b9190610815565b91505090565b54600160601b90046001600160a01b0316919050565b61066f6106de565b61067881610422565b6106806103dc565b6001600160a01b0382166106a75760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061083383398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661072c57604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561074057600080fd5b81356001600160e01b03198116811461075857600080fd5b9392505050565b6001600160a01b038116811461052d57600080fd5b60006020828403121561078657600080fd5b81356107588161075f565b600080604083850312156107a457600080fd5b82356107af8161075f565b915060208301356107bf8161075f565b809150509250929050565b6000602082840312156107dc57600080fd5b8151801515811461075857600080fd5b6000602082840312156107fe57600080fd5b81516001600160601b038116811461075857600080fd5b60006020828403121561082757600080fd5b81516107588161075f56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a2646970667358221220ff22e230b0cf211608074fd0d77fcd86aeb806d83a2544d468ffa83072a7c3d764736f6c63430008140033",
|
209
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b506004361061009e5760003560e01c8063644c45e011610066578063644c45e01461012f578063675393bf14610157578063893d20e81461016a578063ada9652e14610172578063f7c34ee01461019557600080fd5b806301ffc9a7146100a3578063138461e0146100e5578063214cdb80146100ef57806336fc697e146101025780635ab1bd531461010a575b600080fd5b6100d06100b136600461072e565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100ed6101a8565b005b6100ed6100fd36600461072e565b6103af565b6100ed6103dc565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016100dc565b600080516020610833833981519152546040516001600160601b0390911681526020016100dc565b6100ed610165366004610774565b610422565b610117610530565b61018760008051602061083383398151915281565b6040519081526020016100dc565b6100ed6101a3366004610791565b610667565b600060008051602061083383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610217573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061023b91906107ca565b1561026c5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061027f6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156102c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102eb91906107ca565b6103135760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610263565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610367573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061038b91906107ec565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6103b76106de565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6103e46106de565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61042a6106de565b806001600160a01b03163b6000036104605760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610263565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa9250505080156104da575060408051601f3d908101601f191682019092526104d7918101906107ca565b60015b6105025760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610263565b8061052b5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610263565b505b50565b60008060008051602061083383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156105a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c491906107ca565b15610651576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610627573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064b9190610815565b91505090565b54600160601b90046001600160a01b0316919050565b61066f6106de565b61067881610422565b6106806103dc565b6001600160a01b0382166106a75760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061083383398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661072c57604051631afcd79f60e31b815260040160405180910390fd5b565b60006020828403121561074057600080fd5b81356001600160e01b03198116811461075857600080fd5b9392505050565b6001600160a01b038116811461052d57600080fd5b60006020828403121561078657600080fd5b81356107588161075f565b600080604083850312156107a457600080fd5b82356107af8161075f565b915060208301356107bf8161075f565b809150509250929050565b6000602082840312156107dc57600080fd5b8151801515811461075857600080fd5b6000602082840312156107fe57600080fd5b81516001600160601b038116811461075857600080fd5b60006020828403121561082757600080fd5b81516107588161075f56fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a2646970667358221220ff22e230b0cf211608074fd0d77fcd86aeb806d83a2544d468ffa83072a7c3d764736f6c63430008140033",
|
130
210
|
"linkReferences": {
|
131
211
|
"contracts/types/NftId.sol": {
|
132
212
|
"NftIdLib": [
|
133
213
|
{
|
134
214
|
"length": 20,
|
135
|
-
"start":
|
215
|
+
"start": 509
|
136
216
|
},
|
137
217
|
{
|
138
218
|
"length": 20,
|
139
|
-
"start":
|
219
|
+
"start": 1414
|
140
220
|
}
|
141
221
|
]
|
142
222
|
}
|
@@ -146,11 +226,11 @@
|
|
146
226
|
"NftIdLib": [
|
147
227
|
{
|
148
228
|
"length": 20,
|
149
|
-
"start":
|
229
|
+
"start": 477
|
150
230
|
},
|
151
231
|
{
|
152
232
|
"length": 20,
|
153
|
-
"start":
|
233
|
+
"start": 1382
|
154
234
|
}
|
155
235
|
]
|
156
236
|
}
|
@@ -0,0 +1,302 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "PolicyHolder",
|
4
|
+
"sourceName": "contracts/shared/PolicyHolder.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "registryAddress",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "ErrorNotRegistry",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [],
|
19
|
+
"name": "InvalidInitialization",
|
20
|
+
"type": "error"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"inputs": [],
|
24
|
+
"name": "NotInitializing",
|
25
|
+
"type": "error"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"anonymous": false,
|
29
|
+
"inputs": [
|
30
|
+
{
|
31
|
+
"indexed": false,
|
32
|
+
"internalType": "uint64",
|
33
|
+
"name": "version",
|
34
|
+
"type": "uint64"
|
35
|
+
}
|
36
|
+
],
|
37
|
+
"name": "Initialized",
|
38
|
+
"type": "event"
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"inputs": [],
|
42
|
+
"name": "POLICY_HOLDER_STORAGE_LOCATION_V1",
|
43
|
+
"outputs": [
|
44
|
+
{
|
45
|
+
"internalType": "bytes32",
|
46
|
+
"name": "",
|
47
|
+
"type": "bytes32"
|
48
|
+
}
|
49
|
+
],
|
50
|
+
"stateMutability": "view",
|
51
|
+
"type": "function"
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"inputs": [
|
55
|
+
{
|
56
|
+
"internalType": "NftId",
|
57
|
+
"name": "policyNftId",
|
58
|
+
"type": "uint96"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"internalType": "ClaimId",
|
62
|
+
"name": "claimId",
|
63
|
+
"type": "uint16"
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"internalType": "Amount",
|
67
|
+
"name": "amount",
|
68
|
+
"type": "uint96"
|
69
|
+
}
|
70
|
+
],
|
71
|
+
"name": "claimConfirmed",
|
72
|
+
"outputs": [],
|
73
|
+
"stateMutability": "nonpayable",
|
74
|
+
"type": "function"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"inputs": [
|
78
|
+
{
|
79
|
+
"internalType": "NftId",
|
80
|
+
"name": "policyNftId",
|
81
|
+
"type": "uint96"
|
82
|
+
},
|
83
|
+
{
|
84
|
+
"internalType": "ClaimId",
|
85
|
+
"name": "claimId",
|
86
|
+
"type": "uint16"
|
87
|
+
}
|
88
|
+
],
|
89
|
+
"name": "getBeneficiary",
|
90
|
+
"outputs": [
|
91
|
+
{
|
92
|
+
"internalType": "address",
|
93
|
+
"name": "beneficiary",
|
94
|
+
"type": "address"
|
95
|
+
}
|
96
|
+
],
|
97
|
+
"stateMutability": "view",
|
98
|
+
"type": "function"
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"inputs": [],
|
102
|
+
"name": "getRegistry",
|
103
|
+
"outputs": [
|
104
|
+
{
|
105
|
+
"internalType": "contract IRegistry",
|
106
|
+
"name": "",
|
107
|
+
"type": "address"
|
108
|
+
}
|
109
|
+
],
|
110
|
+
"stateMutability": "view",
|
111
|
+
"type": "function"
|
112
|
+
},
|
113
|
+
{
|
114
|
+
"inputs": [],
|
115
|
+
"name": "initializeERC165",
|
116
|
+
"outputs": [],
|
117
|
+
"stateMutability": "nonpayable",
|
118
|
+
"type": "function"
|
119
|
+
},
|
120
|
+
{
|
121
|
+
"inputs": [
|
122
|
+
{
|
123
|
+
"internalType": "address",
|
124
|
+
"name": "registryAddress",
|
125
|
+
"type": "address"
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"internalType": "address",
|
129
|
+
"name": "beneficiaryDefault",
|
130
|
+
"type": "address"
|
131
|
+
}
|
132
|
+
],
|
133
|
+
"name": "initializePolicyHolder",
|
134
|
+
"outputs": [],
|
135
|
+
"stateMutability": "nonpayable",
|
136
|
+
"type": "function"
|
137
|
+
},
|
138
|
+
{
|
139
|
+
"inputs": [
|
140
|
+
{
|
141
|
+
"internalType": "address",
|
142
|
+
"name": "registryAddress",
|
143
|
+
"type": "address"
|
144
|
+
}
|
145
|
+
],
|
146
|
+
"name": "initializeRegistryLinked",
|
147
|
+
"outputs": [],
|
148
|
+
"stateMutability": "nonpayable",
|
149
|
+
"type": "function"
|
150
|
+
},
|
151
|
+
{
|
152
|
+
"inputs": [
|
153
|
+
{
|
154
|
+
"internalType": "address",
|
155
|
+
"name": "",
|
156
|
+
"type": "address"
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"internalType": "address",
|
160
|
+
"name": "",
|
161
|
+
"type": "address"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"internalType": "uint256",
|
165
|
+
"name": "",
|
166
|
+
"type": "uint256"
|
167
|
+
},
|
168
|
+
{
|
169
|
+
"internalType": "bytes",
|
170
|
+
"name": "",
|
171
|
+
"type": "bytes"
|
172
|
+
}
|
173
|
+
],
|
174
|
+
"name": "onERC721Received",
|
175
|
+
"outputs": [
|
176
|
+
{
|
177
|
+
"internalType": "bytes4",
|
178
|
+
"name": "",
|
179
|
+
"type": "bytes4"
|
180
|
+
}
|
181
|
+
],
|
182
|
+
"stateMutability": "nonpayable",
|
183
|
+
"type": "function"
|
184
|
+
},
|
185
|
+
{
|
186
|
+
"inputs": [
|
187
|
+
{
|
188
|
+
"internalType": "NftId",
|
189
|
+
"name": "policyNftId",
|
190
|
+
"type": "uint96"
|
191
|
+
},
|
192
|
+
{
|
193
|
+
"internalType": "PayoutId",
|
194
|
+
"name": "payoutId",
|
195
|
+
"type": "uint24"
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"internalType": "address",
|
199
|
+
"name": "beneficiary",
|
200
|
+
"type": "address"
|
201
|
+
},
|
202
|
+
{
|
203
|
+
"internalType": "Amount",
|
204
|
+
"name": "amount",
|
205
|
+
"type": "uint96"
|
206
|
+
}
|
207
|
+
],
|
208
|
+
"name": "payoutExecuted",
|
209
|
+
"outputs": [],
|
210
|
+
"stateMutability": "nonpayable",
|
211
|
+
"type": "function"
|
212
|
+
},
|
213
|
+
{
|
214
|
+
"inputs": [
|
215
|
+
{
|
216
|
+
"internalType": "NftId",
|
217
|
+
"name": "policyNftId",
|
218
|
+
"type": "uint96"
|
219
|
+
}
|
220
|
+
],
|
221
|
+
"name": "policyActivated",
|
222
|
+
"outputs": [],
|
223
|
+
"stateMutability": "nonpayable",
|
224
|
+
"type": "function"
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"inputs": [
|
228
|
+
{
|
229
|
+
"internalType": "NftId",
|
230
|
+
"name": "policyNftId",
|
231
|
+
"type": "uint96"
|
232
|
+
}
|
233
|
+
],
|
234
|
+
"name": "policyExpired",
|
235
|
+
"outputs": [],
|
236
|
+
"stateMutability": "nonpayable",
|
237
|
+
"type": "function"
|
238
|
+
},
|
239
|
+
{
|
240
|
+
"inputs": [
|
241
|
+
{
|
242
|
+
"internalType": "bytes4",
|
243
|
+
"name": "interfaceId",
|
244
|
+
"type": "bytes4"
|
245
|
+
}
|
246
|
+
],
|
247
|
+
"name": "registerInterface",
|
248
|
+
"outputs": [],
|
249
|
+
"stateMutability": "nonpayable",
|
250
|
+
"type": "function"
|
251
|
+
},
|
252
|
+
{
|
253
|
+
"inputs": [
|
254
|
+
{
|
255
|
+
"internalType": "bytes4",
|
256
|
+
"name": "interfaceId",
|
257
|
+
"type": "bytes4"
|
258
|
+
}
|
259
|
+
],
|
260
|
+
"name": "supportsInterface",
|
261
|
+
"outputs": [
|
262
|
+
{
|
263
|
+
"internalType": "bool",
|
264
|
+
"name": "",
|
265
|
+
"type": "bool"
|
266
|
+
}
|
267
|
+
],
|
268
|
+
"stateMutability": "view",
|
269
|
+
"type": "function"
|
270
|
+
}
|
271
|
+
],
|
272
|
+
"bytecode": "0x608060405234801561001057600080fd5b506108a9806100206000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063675393bf1161008c578063b8ab37f411610066578063b8ab37f414610200578063b95a758014610214578063c642e0de14610227578063d0030d43146101ba57600080fd5b8063675393bf146101a75780636e75a77d146101ba578063b414004e146101cb57600080fd5b806301ffc9a7146100d4578063150b7a0214610116578063214cdb801461014e57806336fc697e146101635780635280d8231461016b5780635ab1bd5314610196575b600080fd5b6101016100e23660046105d6565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610135610124366004610623565b630a85bd0160e11b95945050505050565b6040516001600160e01b0319909116815260200161010d565b61016161015c3660046105d6565b61023a565b005b610161610267565b61017e6101793660046106e3565b6102ad565b6040516001600160a01b03909116815260200161010d565b6001546001600160a01b031661017e565b6101616101b536600461071c565b610453565b6101616101c8366004610737565b50565b6101f27f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0081565b60405190815260200161010d565b61016161020e366004610754565b50505050565b6101616102223660046107b6565b610565565b6101616102353660046107e9565b505050565b610242610586565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b61026f610586565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6001600160601b03821660009081527f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f006020908152604080832061ffff851684529091529020546001600160a01b03168015801561037d5750604051630b9c6c9360e41b815261ffff8316600482015273__$0e0c503522f35343ef1955427c5075b143$__9063b9c6c93090602401602060405180830381865af4158015610359573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061037d9190610834565b1561044d577f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f006001600160601b038416600090815260209182526040808220815163bc1b392d60e01b81529151909373__$0e0c503522f35343ef1955427c5075b143$__9263bc1b392d92600480830193928290030181865af4158015610408573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061042c9190610856565b61ffff1681526020810191909152604001600020546001600160a01b031690505b92915050565b61045b610586565b806001600160a01b03163b6000036104965760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015610510575060408051601f3d908101601f1916820190925261050d91810190610834565b60015b6105385760405163fdeac91f60e01b81526001600160a01b038216600482015260240161048d565b806105615760405163fdeac91f60e01b81526001600160a01b038316600482015260240161048d565b5050565b61056d610586565b61057682610453565b61056163921fa53760e01b61023a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff166105d457604051631afcd79f60e31b815260040160405180910390fd5b565b6000602082840312156105e857600080fd5b81356001600160e01b03198116811461060057600080fd5b9392505050565b80356001600160a01b038116811461061e57600080fd5b919050565b60008060008060006080868803121561063b57600080fd5b61064486610607565b945061065260208701610607565b935060408601359250606086013567ffffffffffffffff8082111561067657600080fd5b818801915088601f83011261068a57600080fd5b81358181111561069957600080fd5b8960208285010111156106ab57600080fd5b9699959850939650602001949392505050565b6001600160601b03811681146101c857600080fd5b61ffff811681146101c857600080fd5b600080604083850312156106f657600080fd5b8235610701816106be565b91506020830135610711816106d3565b809150509250929050565b60006020828403121561072e57600080fd5b61060082610607565b60006020828403121561074957600080fd5b8135610600816106be565b6000806000806080858703121561076a57600080fd5b8435610775816106be565b9350602085013562ffffff8116811461078d57600080fd5b925061079b60408601610607565b915060608501356107ab816106be565b939692955090935050565b600080604083850312156107c957600080fd5b6107d283610607565b91506107e060208401610607565b90509250929050565b6000806000606084860312156107fe57600080fd5b8335610809816106be565b92506020840135610819816106d3565b91506040840135610829816106be565b809150509250925092565b60006020828403121561084657600080fd5b8151801515811461060057600080fd5b60006020828403121561086857600080fd5b8151610600816106d356fea26469706673582212208bca17fc7d74f0b15d58cc2e1ca16e66f98ee43e1999be0c7dba7568c7cd69b764736f6c63430008140033",
|
273
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063675393bf1161008c578063b8ab37f411610066578063b8ab37f414610200578063b95a758014610214578063c642e0de14610227578063d0030d43146101ba57600080fd5b8063675393bf146101a75780636e75a77d146101ba578063b414004e146101cb57600080fd5b806301ffc9a7146100d4578063150b7a0214610116578063214cdb801461014e57806336fc697e146101635780635280d8231461016b5780635ab1bd5314610196575b600080fd5b6101016100e23660046105d6565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b610135610124366004610623565b630a85bd0160e11b95945050505050565b6040516001600160e01b0319909116815260200161010d565b61016161015c3660046105d6565b61023a565b005b610161610267565b61017e6101793660046106e3565b6102ad565b6040516001600160a01b03909116815260200161010d565b6001546001600160a01b031661017e565b6101616101b536600461071c565b610453565b6101616101c8366004610737565b50565b6101f27f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0081565b60405190815260200161010d565b61016161020e366004610754565b50505050565b6101616102223660046107b6565b610565565b6101616102353660046107e9565b505050565b610242610586565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b61026f610586565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6001600160601b03821660009081527f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f006020908152604080832061ffff851684529091529020546001600160a01b03168015801561037d5750604051630b9c6c9360e41b815261ffff8316600482015273__$0e0c503522f35343ef1955427c5075b143$__9063b9c6c93090602401602060405180830381865af4158015610359573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061037d9190610834565b1561044d577f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f006001600160601b038416600090815260209182526040808220815163bc1b392d60e01b81529151909373__$0e0c503522f35343ef1955427c5075b143$__9263bc1b392d92600480830193928290030181865af4158015610408573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061042c9190610856565b61ffff1681526020810191909152604001600020546001600160a01b031690505b92915050565b61045b610586565b806001600160a01b03163b6000036104965760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015610510575060408051601f3d908101601f1916820190925261050d91810190610834565b60015b6105385760405163fdeac91f60e01b81526001600160a01b038216600482015260240161048d565b806105615760405163fdeac91f60e01b81526001600160a01b038316600482015260240161048d565b5050565b61056d610586565b61057682610453565b61056163921fa53760e01b61023a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff166105d457604051631afcd79f60e31b815260040160405180910390fd5b565b6000602082840312156105e857600080fd5b81356001600160e01b03198116811461060057600080fd5b9392505050565b80356001600160a01b038116811461061e57600080fd5b919050565b60008060008060006080868803121561063b57600080fd5b61064486610607565b945061065260208701610607565b935060408601359250606086013567ffffffffffffffff8082111561067657600080fd5b818801915088601f83011261068a57600080fd5b81358181111561069957600080fd5b8960208285010111156106ab57600080fd5b9699959850939650602001949392505050565b6001600160601b03811681146101c857600080fd5b61ffff811681146101c857600080fd5b600080604083850312156106f657600080fd5b8235610701816106be565b91506020830135610711816106d3565b809150509250929050565b60006020828403121561072e57600080fd5b61060082610607565b60006020828403121561074957600080fd5b8135610600816106be565b6000806000806080858703121561076a57600080fd5b8435610775816106be565b9350602085013562ffffff8116811461078d57600080fd5b925061079b60408601610607565b915060608501356107ab816106be565b939692955090935050565b600080604083850312156107c957600080fd5b6107d283610607565b91506107e060208401610607565b90509250929050565b6000806000606084860312156107fe57600080fd5b8335610809816106be565b92506020840135610819816106d3565b91506040840135610829816106be565b809150509250925092565b60006020828403121561084657600080fd5b8151801515811461060057600080fd5b60006020828403121561086857600080fd5b8151610600816106d356fea26469706673582212208bca17fc7d74f0b15d58cc2e1ca16e66f98ee43e1999be0c7dba7568c7cd69b764736f6c63430008140033",
|
274
|
+
"linkReferences": {
|
275
|
+
"contracts/types/ClaimId.sol": {
|
276
|
+
"ClaimIdLib": [
|
277
|
+
{
|
278
|
+
"length": 20,
|
279
|
+
"start": 831
|
280
|
+
},
|
281
|
+
{
|
282
|
+
"length": 20,
|
283
|
+
"start": 1006
|
284
|
+
}
|
285
|
+
]
|
286
|
+
}
|
287
|
+
},
|
288
|
+
"deployedLinkReferences": {
|
289
|
+
"contracts/types/ClaimId.sol": {
|
290
|
+
"ClaimIdLib": [
|
291
|
+
{
|
292
|
+
"length": 20,
|
293
|
+
"start": 799
|
294
|
+
},
|
295
|
+
{
|
296
|
+
"length": 20,
|
297
|
+
"start": 974
|
298
|
+
}
|
299
|
+
]
|
300
|
+
}
|
301
|
+
}
|
302
|
+
}
|