@etherisc/gif-next 0.0.2-f7be756-963 → 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 +337 -19
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +698 -30
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +1376 -0
- 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 +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +1000 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +1095 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +861 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +1214 -135
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +1008 -156
- 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 +312 -1138
- 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 +441 -1229
- 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/ComponentService.sol/ComponentService.json +631 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +532 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +194 -0
- 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/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
- 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 +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/{treasury → module}/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 +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1556 -0
- 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/IApplicationService.sol/IApplicationService.json +493 -0
- 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 +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +840 -0
- 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 +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +1077 -0
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.json +510 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +442 -0
- 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 +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1622 -0
- 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 +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +864 -0
- 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 +252 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +595 -27
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +858 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +652 -50
- 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 +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1150 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +657 -0
- 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 +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +125 -0
- 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 +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +175 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +11 -11
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +327 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +238 -0
- 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 +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +569 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +339 -0
- 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/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +256 -220
- 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 +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +370 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
- package/artifacts/contracts/test/TestService.sol/TestService.json +588 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +104 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
- 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 +4 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +312 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +78 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
- 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 +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
- 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 +110 -4
- 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/UFixedLib.json +479 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
- package/contracts/components/Component.sol +245 -50
- package/contracts/components/Distribution.sol +285 -0
- package/contracts/components/IComponent.sol +90 -0
- package/contracts/components/IDistributionComponent.sol +71 -0
- package/contracts/components/IPoolComponent.sol +114 -0
- package/contracts/components/IProductComponent.sol +41 -0
- package/contracts/components/Pool.sol +280 -30
- package/contracts/components/Product.sol +337 -51
- package/contracts/instance/BundleManager.sol +126 -0
- package/contracts/instance/Cloneable.sol +51 -0
- package/contracts/instance/IInstance.sol +74 -22
- package/contracts/instance/IInstanceService.sol +73 -0
- package/contracts/instance/Instance.sol +210 -53
- 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 +49 -0
- package/contracts/instance/base/ILifecycle.sol +30 -0
- package/contracts/instance/base/KeyValueStore.sol +149 -0
- package/contracts/instance/base/Lifecycle.sol +120 -0
- 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 +348 -0
- 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 +87 -0
- package/contracts/instance/service/IPolicyService.sol +80 -0
- package/contracts/instance/service/IPoolService.sol +114 -0
- package/contracts/instance/service/IPricingService.sol +37 -0
- package/contracts/instance/service/IProductService.sol +40 -0
- package/contracts/instance/service/PolicyService.sol +376 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +403 -0
- 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 +210 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +137 -62
- package/contracts/registry/IRegistry.sol +75 -41
- package/contracts/registry/IRegistryService.sol +66 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +413 -128
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +286 -0
- package/contracts/registry/RegistryServiceManager.sol +62 -0
- package/contracts/registry/ReleaseManager.sol +324 -0
- package/contracts/registry/TokenRegistry.sol +116 -0
- package/contracts/shared/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +27 -0
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +40 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +18 -0
- package/contracts/shared/IVersionable.sol +53 -0
- package/contracts/shared/NftOwnable.sol +118 -0
- package/contracts/shared/PolicyHolder.sol +94 -0
- package/contracts/shared/ProxyManager.sol +169 -0
- package/contracts/shared/Registerable.sol +75 -0
- 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 +16 -0
- package/contracts/shared/Versionable.sol +59 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestRegisterable.sol +18 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +25 -0
- package/contracts/{mock/Dip.sol → test/TestToken.sol} +5 -5
- package/contracts/test/TestVersion.sol +44 -0
- package/contracts/test/TestVersionable.sol +17 -0
- package/contracts/{mock → test}/Usdc.sol +1 -1
- package/contracts/types/AddressSet.sol +58 -0
- 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 +53 -20
- package/contracts/types/Key32.sol +50 -0
- package/contracts/types/NftId.sol +30 -1
- package/contracts/types/NftIdSet.sol +62 -0
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +69 -15
- package/contracts/types/PayoutId.sol +82 -0
- package/contracts/types/Referral.sol +89 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +97 -0
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +23 -4
- package/contracts/types/Timestamp.sol +36 -6
- package/contracts/types/UFixed.sol +139 -23
- package/contracts/types/Version.sol +108 -0
- package/package.json +11 -5
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -255
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
- 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/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/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -299
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -127
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
- package/artifacts/contracts/mock/Dip.sol/DIP.dbg.json +0 -4
- package/artifacts/contracts/mock/Dip.sol/DIP.json +0 -338
- package/artifacts/contracts/mock/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/mock/TestPool.sol/TestPool.json +0 -294
- package/artifacts/contracts/mock/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/mock/TestProduct.sol/TestProduct.json +0 -384
- package/artifacts/contracts/mock/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/mock/Usdc.sol/USDC.json +0 -338
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
- package/contracts/components/IPool.sol +0 -15
- package/contracts/components/IProduct.sol +0 -16
- 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/README.md +0 -112
- 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/access/Access.sol +0 -165
- package/contracts/instance/access/IAccess.sol +0 -63
- package/contracts/instance/component/ComponentModule.sol +0 -274
- package/contracts/instance/component/IComponent.sol +0 -74
- package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
- package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
- package/contracts/instance/policy/IPolicy.sol +0 -50
- package/contracts/instance/policy/PolicyModule.sol +0 -114
- package/contracts/instance/pool/IPoolModule.sol +0 -23
- package/contracts/instance/pool/PoolModule.sol +0 -81
- package/contracts/instance/product/IProductService.sol +0 -36
- package/contracts/instance/product/ProductService.sol +0 -136
- package/contracts/instance/treasury/ITreasury.sol +0 -91
- package/contracts/instance/treasury/TokenHandler.sol +0 -24
- package/contracts/instance/treasury/TreasuryModule.sol +0 -168
- package/contracts/mock/TestPool.sol +0 -16
- package/contracts/mock/TestProduct.sol +0 -39
- package/contracts/registry/IChainNft.sol +0 -21
@@ -6,185 +6,204 @@
|
|
6
6
|
{
|
7
7
|
"inputs": [
|
8
8
|
{
|
9
|
-
"internalType": "
|
10
|
-
"name": "
|
11
|
-
"type": "
|
12
|
-
},
|
13
|
-
{
|
14
|
-
"internalType": "ObjectType",
|
15
|
-
"name": "objectType",
|
16
|
-
"type": "uint8"
|
17
|
-
},
|
18
|
-
{
|
19
|
-
"internalType": "StateId",
|
20
|
-
"name": "fromStateId",
|
21
|
-
"type": "uint8"
|
22
|
-
},
|
23
|
-
{
|
24
|
-
"internalType": "StateId",
|
25
|
-
"name": "toStateId",
|
26
|
-
"type": "uint8"
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "authority",
|
11
|
+
"type": "address"
|
27
12
|
}
|
28
13
|
],
|
29
|
-
"name": "
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
30
15
|
"type": "error"
|
31
16
|
},
|
32
17
|
{
|
33
18
|
"inputs": [
|
34
19
|
{
|
35
|
-
"internalType": "
|
36
|
-
"name": "
|
37
|
-
"type": "
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
38
23
|
},
|
39
24
|
{
|
40
|
-
"internalType": "
|
41
|
-
"name": "
|
42
|
-
"type": "
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
43
28
|
}
|
44
29
|
],
|
45
|
-
"name": "
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
46
31
|
"type": "error"
|
47
32
|
},
|
48
33
|
{
|
49
|
-
"anonymous": false,
|
50
34
|
"inputs": [
|
51
35
|
{
|
52
|
-
"
|
53
|
-
"
|
54
|
-
"
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
},
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "caller",
|
38
|
+
"type": "address"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
63
46
|
{
|
64
|
-
"
|
65
|
-
"
|
66
|
-
"
|
67
|
-
"type": "uint8"
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "instanceBundleManager",
|
49
|
+
"type": "address"
|
68
50
|
}
|
69
51
|
],
|
70
|
-
"name": "
|
71
|
-
"type": "
|
52
|
+
"name": "ErrorInstanceBundleManagerAlreadySet",
|
53
|
+
"type": "error"
|
72
54
|
},
|
73
55
|
{
|
74
|
-
"anonymous": false,
|
75
56
|
"inputs": [
|
76
57
|
{
|
77
|
-
"
|
78
|
-
"
|
79
|
-
"
|
80
|
-
|
81
|
-
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "instanceAuthority",
|
60
|
+
"type": "address"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "ErrorInstanceBundleManagerAuthorityMismatch",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [
|
82
68
|
{
|
83
|
-
"
|
84
|
-
"
|
85
|
-
"
|
86
|
-
|
87
|
-
|
69
|
+
"internalType": "address",
|
70
|
+
"name": "instance",
|
71
|
+
"type": "address"
|
72
|
+
}
|
73
|
+
],
|
74
|
+
"name": "ErrorInstanceBundleManagerInstanceMismatch",
|
75
|
+
"type": "error"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"inputs": [
|
88
79
|
{
|
89
|
-
"
|
90
|
-
"
|
91
|
-
"
|
92
|
-
|
93
|
-
|
80
|
+
"internalType": "address",
|
81
|
+
"name": "instanceAccessManager",
|
82
|
+
"type": "address"
|
83
|
+
}
|
84
|
+
],
|
85
|
+
"name": "ErrorInstanceInstanceAccessManagerAlreadySet",
|
86
|
+
"type": "error"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"inputs": [
|
94
90
|
{
|
95
|
-
"
|
96
|
-
"
|
97
|
-
"
|
98
|
-
"type": "uint8"
|
91
|
+
"internalType": "address",
|
92
|
+
"name": "instanceAuthority",
|
93
|
+
"type": "address"
|
99
94
|
}
|
100
95
|
],
|
101
|
-
"name": "
|
102
|
-
"type": "
|
96
|
+
"name": "ErrorInstanceInstanceAccessManagerAuthorityMismatch",
|
97
|
+
"type": "error"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"inputs": [],
|
101
|
+
"name": "ErrorInstanceInstanceAccessManagerZero",
|
102
|
+
"type": "error"
|
103
103
|
},
|
104
104
|
{
|
105
|
-
"anonymous": false,
|
106
105
|
"inputs": [
|
107
106
|
{
|
108
|
-
"
|
109
|
-
"
|
110
|
-
"
|
111
|
-
|
112
|
-
|
107
|
+
"internalType": "address",
|
108
|
+
"name": "instanceAuthority",
|
109
|
+
"type": "address"
|
110
|
+
}
|
111
|
+
],
|
112
|
+
"name": "ErrorInstanceInstanceReaderInstanceMismatch",
|
113
|
+
"type": "error"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"inputs": [
|
113
117
|
{
|
114
|
-
"indexed": false,
|
115
118
|
"internalType": "address",
|
116
|
-
"name": "
|
119
|
+
"name": "instanceStore",
|
117
120
|
"type": "address"
|
118
|
-
}
|
121
|
+
}
|
122
|
+
],
|
123
|
+
"name": "ErrorInstanceInstanceStoreAlreadySet",
|
124
|
+
"type": "error"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"inputs": [
|
119
128
|
{
|
120
|
-
"
|
121
|
-
"
|
122
|
-
"
|
123
|
-
"type": "string"
|
129
|
+
"internalType": "address",
|
130
|
+
"name": "instanceAuthority",
|
131
|
+
"type": "address"
|
124
132
|
}
|
125
133
|
],
|
126
|
-
"name": "
|
127
|
-
"type": "
|
134
|
+
"name": "ErrorInstanceInstanceStoreAuthorityMismatch",
|
135
|
+
"type": "error"
|
128
136
|
},
|
129
137
|
{
|
130
|
-
"anonymous": false,
|
131
138
|
"inputs": [
|
132
139
|
{
|
133
|
-
"indexed": false,
|
134
140
|
"internalType": "NftId",
|
135
141
|
"name": "nftId",
|
136
142
|
"type": "uint96"
|
137
|
-
}
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
143
|
+
}
|
144
|
+
],
|
145
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
146
|
+
"type": "error"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"inputs": [
|
144
150
|
{
|
145
|
-
"
|
146
|
-
"
|
147
|
-
"
|
148
|
-
"type": "uint8"
|
151
|
+
"internalType": "address",
|
152
|
+
"name": "contractAddress",
|
153
|
+
"type": "address"
|
149
154
|
}
|
150
155
|
],
|
151
|
-
"name": "
|
152
|
-
"type": "
|
156
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
157
|
+
"type": "error"
|
153
158
|
},
|
154
159
|
{
|
155
160
|
"inputs": [],
|
156
|
-
"name": "
|
157
|
-
"
|
161
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
162
|
+
"type": "error"
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"inputs": [
|
158
166
|
{
|
159
|
-
"internalType": "
|
160
|
-
"name": "
|
161
|
-
"type": "
|
167
|
+
"internalType": "address",
|
168
|
+
"name": "account",
|
169
|
+
"type": "address"
|
162
170
|
}
|
163
171
|
],
|
164
|
-
"
|
165
|
-
"type": "
|
172
|
+
"name": "ErrorNftOwnableNotOwner",
|
173
|
+
"type": "error"
|
166
174
|
},
|
167
175
|
{
|
168
|
-
"inputs": [
|
169
|
-
"name": "POOL_OWNER_ROLE",
|
170
|
-
"outputs": [
|
176
|
+
"inputs": [
|
171
177
|
{
|
172
|
-
"internalType": "
|
173
|
-
"name": "
|
174
|
-
"type": "
|
178
|
+
"internalType": "address",
|
179
|
+
"name": "registryAddress",
|
180
|
+
"type": "address"
|
175
181
|
}
|
176
182
|
],
|
177
|
-
"
|
178
|
-
"type": "
|
183
|
+
"name": "ErrorNotRegistry",
|
184
|
+
"type": "error"
|
185
|
+
},
|
186
|
+
{
|
187
|
+
"anonymous": false,
|
188
|
+
"inputs": [
|
189
|
+
{
|
190
|
+
"indexed": false,
|
191
|
+
"internalType": "address",
|
192
|
+
"name": "authority",
|
193
|
+
"type": "address"
|
194
|
+
}
|
195
|
+
],
|
196
|
+
"name": "AuthorityUpdated",
|
197
|
+
"type": "event"
|
179
198
|
},
|
180
199
|
{
|
181
200
|
"inputs": [],
|
182
|
-
"name": "
|
201
|
+
"name": "authority",
|
183
202
|
"outputs": [
|
184
203
|
{
|
185
|
-
"internalType": "
|
186
|
-
"name": "
|
187
|
-
"type": "
|
204
|
+
"internalType": "address",
|
205
|
+
"name": "",
|
206
|
+
"type": "address"
|
188
207
|
}
|
189
208
|
],
|
190
209
|
"stateMutability": "view",
|
@@ -193,72 +212,93 @@
|
|
193
212
|
{
|
194
213
|
"inputs": [
|
195
214
|
{
|
196
|
-
"internalType": "
|
197
|
-
"name": "
|
198
|
-
"type": "
|
215
|
+
"internalType": "string",
|
216
|
+
"name": "roleName",
|
217
|
+
"type": "string"
|
218
|
+
},
|
219
|
+
{
|
220
|
+
"internalType": "string",
|
221
|
+
"name": "adminName",
|
222
|
+
"type": "string"
|
223
|
+
}
|
224
|
+
],
|
225
|
+
"name": "createRole",
|
226
|
+
"outputs": [
|
227
|
+
{
|
228
|
+
"internalType": "RoleId",
|
229
|
+
"name": "roleId",
|
230
|
+
"type": "uint64"
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"internalType": "RoleId",
|
234
|
+
"name": "admin",
|
235
|
+
"type": "uint64"
|
199
236
|
}
|
200
237
|
],
|
201
|
-
"name": "activate",
|
202
|
-
"outputs": [],
|
203
238
|
"stateMutability": "nonpayable",
|
204
239
|
"type": "function"
|
205
240
|
},
|
206
241
|
{
|
207
242
|
"inputs": [
|
208
243
|
{
|
209
|
-
"internalType": "
|
210
|
-
"name": "
|
211
|
-
"type": "
|
244
|
+
"internalType": "address",
|
245
|
+
"name": "target",
|
246
|
+
"type": "address"
|
212
247
|
},
|
213
248
|
{
|
214
|
-
"
|
215
|
-
|
216
|
-
|
217
|
-
"name": "fractionalFee",
|
218
|
-
"type": "uint256"
|
219
|
-
},
|
220
|
-
{
|
221
|
-
"internalType": "uint256",
|
222
|
-
"name": "fixedFee",
|
223
|
-
"type": "uint256"
|
224
|
-
}
|
225
|
-
],
|
226
|
-
"internalType": "struct Fee",
|
227
|
-
"name": "fee",
|
228
|
-
"type": "tuple"
|
249
|
+
"internalType": "string",
|
250
|
+
"name": "name",
|
251
|
+
"type": "string"
|
229
252
|
}
|
230
253
|
],
|
231
|
-
"name": "
|
254
|
+
"name": "createTarget",
|
255
|
+
"outputs": [],
|
256
|
+
"stateMutability": "nonpayable",
|
257
|
+
"type": "function"
|
258
|
+
},
|
259
|
+
{
|
260
|
+
"inputs": [],
|
261
|
+
"name": "getBundleManager",
|
232
262
|
"outputs": [
|
233
263
|
{
|
234
|
-
"internalType": "
|
235
|
-
"name": "
|
236
|
-
"type": "
|
237
|
-
}
|
264
|
+
"internalType": "contract BundleManager",
|
265
|
+
"name": "",
|
266
|
+
"type": "address"
|
267
|
+
}
|
268
|
+
],
|
269
|
+
"stateMutability": "view",
|
270
|
+
"type": "function"
|
271
|
+
},
|
272
|
+
{
|
273
|
+
"inputs": [],
|
274
|
+
"name": "getBundleService",
|
275
|
+
"outputs": [
|
238
276
|
{
|
239
|
-
"internalType": "
|
240
|
-
"name": "
|
241
|
-
"type": "
|
277
|
+
"internalType": "contract IBundleService",
|
278
|
+
"name": "",
|
279
|
+
"type": "address"
|
242
280
|
}
|
243
281
|
],
|
244
|
-
"stateMutability": "
|
282
|
+
"stateMutability": "view",
|
245
283
|
"type": "function"
|
246
284
|
},
|
247
285
|
{
|
248
286
|
"inputs": [],
|
249
|
-
"name": "
|
287
|
+
"name": "getDistributionService",
|
250
288
|
"outputs": [
|
251
289
|
{
|
252
|
-
"internalType": "
|
253
|
-
"name": "
|
254
|
-
"type": "
|
290
|
+
"internalType": "contract IDistributionService",
|
291
|
+
"name": "",
|
292
|
+
"type": "address"
|
255
293
|
}
|
256
294
|
],
|
257
295
|
"stateMutability": "view",
|
258
296
|
"type": "function"
|
259
297
|
},
|
260
298
|
{
|
261
|
-
"inputs": [
|
299
|
+
"inputs": [],
|
300
|
+
"name": "getInitialInfo",
|
301
|
+
"outputs": [
|
262
302
|
{
|
263
303
|
"components": [
|
264
304
|
{
|
@@ -276,6 +316,11 @@
|
|
276
316
|
"name": "objectType",
|
277
317
|
"type": "uint8"
|
278
318
|
},
|
319
|
+
{
|
320
|
+
"internalType": "bool",
|
321
|
+
"name": "isInterceptor",
|
322
|
+
"type": "bool"
|
323
|
+
},
|
279
324
|
{
|
280
325
|
"internalType": "address",
|
281
326
|
"name": "objectAddress",
|
@@ -285,586 +330,16 @@
|
|
285
330
|
"internalType": "address",
|
286
331
|
"name": "initialOwner",
|
287
332
|
"type": "address"
|
333
|
+
},
|
334
|
+
{
|
335
|
+
"internalType": "bytes",
|
336
|
+
"name": "data",
|
337
|
+
"type": "bytes"
|
288
338
|
}
|
289
339
|
],
|
290
|
-
"internalType": "struct IRegistry.
|
291
|
-
"name": "
|
340
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
341
|
+
"name": "",
|
292
342
|
"type": "tuple"
|
293
|
-
},
|
294
|
-
{
|
295
|
-
"internalType": "address",
|
296
|
-
"name": "applicationOwner",
|
297
|
-
"type": "address"
|
298
|
-
},
|
299
|
-
{
|
300
|
-
"internalType": "uint256",
|
301
|
-
"name": "sumInsuredAmount",
|
302
|
-
"type": "uint256"
|
303
|
-
},
|
304
|
-
{
|
305
|
-
"internalType": "uint256",
|
306
|
-
"name": "premiumAmount",
|
307
|
-
"type": "uint256"
|
308
|
-
},
|
309
|
-
{
|
310
|
-
"internalType": "uint256",
|
311
|
-
"name": "lifetime",
|
312
|
-
"type": "uint256"
|
313
|
-
},
|
314
|
-
{
|
315
|
-
"internalType": "NftId",
|
316
|
-
"name": "bundleNftId",
|
317
|
-
"type": "uint96"
|
318
|
-
}
|
319
|
-
],
|
320
|
-
"name": "createApplication",
|
321
|
-
"outputs": [
|
322
|
-
{
|
323
|
-
"internalType": "NftId",
|
324
|
-
"name": "nftId",
|
325
|
-
"type": "uint96"
|
326
|
-
}
|
327
|
-
],
|
328
|
-
"stateMutability": "nonpayable",
|
329
|
-
"type": "function"
|
330
|
-
},
|
331
|
-
{
|
332
|
-
"inputs": [
|
333
|
-
{
|
334
|
-
"internalType": "string",
|
335
|
-
"name": "roleName",
|
336
|
-
"type": "string"
|
337
|
-
}
|
338
|
-
],
|
339
|
-
"name": "createRole",
|
340
|
-
"outputs": [
|
341
|
-
{
|
342
|
-
"internalType": "bytes32",
|
343
|
-
"name": "role",
|
344
|
-
"type": "bytes32"
|
345
|
-
}
|
346
|
-
],
|
347
|
-
"stateMutability": "nonpayable",
|
348
|
-
"type": "function"
|
349
|
-
},
|
350
|
-
{
|
351
|
-
"inputs": [
|
352
|
-
{
|
353
|
-
"internalType": "bytes32",
|
354
|
-
"name": "role",
|
355
|
-
"type": "bytes32"
|
356
|
-
}
|
357
|
-
],
|
358
|
-
"name": "disableRole",
|
359
|
-
"outputs": [],
|
360
|
-
"stateMutability": "nonpayable",
|
361
|
-
"type": "function"
|
362
|
-
},
|
363
|
-
{
|
364
|
-
"inputs": [
|
365
|
-
{
|
366
|
-
"internalType": "bytes32",
|
367
|
-
"name": "role",
|
368
|
-
"type": "bytes32"
|
369
|
-
}
|
370
|
-
],
|
371
|
-
"name": "enableRole",
|
372
|
-
"outputs": [],
|
373
|
-
"stateMutability": "nonpayable",
|
374
|
-
"type": "function"
|
375
|
-
},
|
376
|
-
{
|
377
|
-
"inputs": [
|
378
|
-
{
|
379
|
-
"internalType": "NftId",
|
380
|
-
"name": "nftId",
|
381
|
-
"type": "uint96"
|
382
|
-
}
|
383
|
-
],
|
384
|
-
"name": "getBundleNftForPolicy",
|
385
|
-
"outputs": [
|
386
|
-
{
|
387
|
-
"internalType": "NftId",
|
388
|
-
"name": "bundleNft",
|
389
|
-
"type": "uint96"
|
390
|
-
}
|
391
|
-
],
|
392
|
-
"stateMutability": "view",
|
393
|
-
"type": "function"
|
394
|
-
},
|
395
|
-
{
|
396
|
-
"inputs": [
|
397
|
-
{
|
398
|
-
"internalType": "address",
|
399
|
-
"name": "componentAddress",
|
400
|
-
"type": "address"
|
401
|
-
}
|
402
|
-
],
|
403
|
-
"name": "getComponentId",
|
404
|
-
"outputs": [
|
405
|
-
{
|
406
|
-
"internalType": "NftId",
|
407
|
-
"name": "nftId",
|
408
|
-
"type": "uint96"
|
409
|
-
}
|
410
|
-
],
|
411
|
-
"stateMutability": "view",
|
412
|
-
"type": "function"
|
413
|
-
},
|
414
|
-
{
|
415
|
-
"inputs": [
|
416
|
-
{
|
417
|
-
"internalType": "uint256",
|
418
|
-
"name": "idx",
|
419
|
-
"type": "uint256"
|
420
|
-
}
|
421
|
-
],
|
422
|
-
"name": "getComponentId",
|
423
|
-
"outputs": [
|
424
|
-
{
|
425
|
-
"internalType": "NftId",
|
426
|
-
"name": "nftId",
|
427
|
-
"type": "uint96"
|
428
|
-
}
|
429
|
-
],
|
430
|
-
"stateMutability": "view",
|
431
|
-
"type": "function"
|
432
|
-
},
|
433
|
-
{
|
434
|
-
"inputs": [
|
435
|
-
{
|
436
|
-
"internalType": "NftId",
|
437
|
-
"name": "nftId",
|
438
|
-
"type": "uint96"
|
439
|
-
}
|
440
|
-
],
|
441
|
-
"name": "getComponentInfo",
|
442
|
-
"outputs": [
|
443
|
-
{
|
444
|
-
"components": [
|
445
|
-
{
|
446
|
-
"internalType": "NftId",
|
447
|
-
"name": "nftId",
|
448
|
-
"type": "uint96"
|
449
|
-
},
|
450
|
-
{
|
451
|
-
"internalType": "StateId",
|
452
|
-
"name": "state",
|
453
|
-
"type": "uint8"
|
454
|
-
},
|
455
|
-
{
|
456
|
-
"internalType": "contract IERC20Metadata",
|
457
|
-
"name": "token",
|
458
|
-
"type": "address"
|
459
|
-
}
|
460
|
-
],
|
461
|
-
"internalType": "struct IComponent.ComponentInfo",
|
462
|
-
"name": "info",
|
463
|
-
"type": "tuple"
|
464
|
-
}
|
465
|
-
],
|
466
|
-
"stateMutability": "view",
|
467
|
-
"type": "function"
|
468
|
-
},
|
469
|
-
{
|
470
|
-
"inputs": [],
|
471
|
-
"name": "getComponentOwnerService",
|
472
|
-
"outputs": [
|
473
|
-
{
|
474
|
-
"internalType": "contract IComponentOwnerService",
|
475
|
-
"name": "",
|
476
|
-
"type": "address"
|
477
|
-
}
|
478
|
-
],
|
479
|
-
"stateMutability": "view",
|
480
|
-
"type": "function"
|
481
|
-
},
|
482
|
-
{
|
483
|
-
"inputs": [],
|
484
|
-
"name": "getData",
|
485
|
-
"outputs": [
|
486
|
-
{
|
487
|
-
"internalType": "bytes",
|
488
|
-
"name": "data",
|
489
|
-
"type": "bytes"
|
490
|
-
}
|
491
|
-
],
|
492
|
-
"stateMutability": "view",
|
493
|
-
"type": "function"
|
494
|
-
},
|
495
|
-
{
|
496
|
-
"inputs": [],
|
497
|
-
"name": "getInitialOwner",
|
498
|
-
"outputs": [
|
499
|
-
{
|
500
|
-
"internalType": "address",
|
501
|
-
"name": "initialOwner",
|
502
|
-
"type": "address"
|
503
|
-
}
|
504
|
-
],
|
505
|
-
"stateMutability": "view",
|
506
|
-
"type": "function"
|
507
|
-
},
|
508
|
-
{
|
509
|
-
"inputs": [
|
510
|
-
{
|
511
|
-
"internalType": "ObjectType",
|
512
|
-
"name": "objectType",
|
513
|
-
"type": "uint8"
|
514
|
-
}
|
515
|
-
],
|
516
|
-
"name": "getInitialState",
|
517
|
-
"outputs": [
|
518
|
-
{
|
519
|
-
"internalType": "StateId",
|
520
|
-
"name": "",
|
521
|
-
"type": "uint8"
|
522
|
-
}
|
523
|
-
],
|
524
|
-
"stateMutability": "view",
|
525
|
-
"type": "function"
|
526
|
-
},
|
527
|
-
{
|
528
|
-
"inputs": [],
|
529
|
-
"name": "getNftId",
|
530
|
-
"outputs": [
|
531
|
-
{
|
532
|
-
"internalType": "NftId",
|
533
|
-
"name": "nftId",
|
534
|
-
"type": "uint96"
|
535
|
-
}
|
536
|
-
],
|
537
|
-
"stateMutability": "view",
|
538
|
-
"type": "function"
|
539
|
-
},
|
540
|
-
{
|
541
|
-
"inputs": [],
|
542
|
-
"name": "getOwner",
|
543
|
-
"outputs": [
|
544
|
-
{
|
545
|
-
"internalType": "address",
|
546
|
-
"name": "owner",
|
547
|
-
"type": "address"
|
548
|
-
}
|
549
|
-
],
|
550
|
-
"stateMutability": "view",
|
551
|
-
"type": "function"
|
552
|
-
},
|
553
|
-
{
|
554
|
-
"inputs": [],
|
555
|
-
"name": "getParentNftId",
|
556
|
-
"outputs": [
|
557
|
-
{
|
558
|
-
"internalType": "NftId",
|
559
|
-
"name": "parentNftId",
|
560
|
-
"type": "uint96"
|
561
|
-
}
|
562
|
-
],
|
563
|
-
"stateMutability": "view",
|
564
|
-
"type": "function"
|
565
|
-
},
|
566
|
-
{
|
567
|
-
"inputs": [
|
568
|
-
{
|
569
|
-
"internalType": "NftId",
|
570
|
-
"name": "nftId",
|
571
|
-
"type": "uint96"
|
572
|
-
}
|
573
|
-
],
|
574
|
-
"name": "getPolicyInfo",
|
575
|
-
"outputs": [
|
576
|
-
{
|
577
|
-
"components": [
|
578
|
-
{
|
579
|
-
"internalType": "NftId",
|
580
|
-
"name": "nftId",
|
581
|
-
"type": "uint96"
|
582
|
-
},
|
583
|
-
{
|
584
|
-
"internalType": "StateId",
|
585
|
-
"name": "state",
|
586
|
-
"type": "uint8"
|
587
|
-
},
|
588
|
-
{
|
589
|
-
"internalType": "uint256",
|
590
|
-
"name": "sumInsuredAmount",
|
591
|
-
"type": "uint256"
|
592
|
-
},
|
593
|
-
{
|
594
|
-
"internalType": "uint256",
|
595
|
-
"name": "premiumAmount",
|
596
|
-
"type": "uint256"
|
597
|
-
},
|
598
|
-
{
|
599
|
-
"internalType": "uint256",
|
600
|
-
"name": "premiumPaidAmount",
|
601
|
-
"type": "uint256"
|
602
|
-
},
|
603
|
-
{
|
604
|
-
"internalType": "uint256",
|
605
|
-
"name": "lifetime",
|
606
|
-
"type": "uint256"
|
607
|
-
},
|
608
|
-
{
|
609
|
-
"internalType": "uint256",
|
610
|
-
"name": "createdAt",
|
611
|
-
"type": "uint256"
|
612
|
-
},
|
613
|
-
{
|
614
|
-
"internalType": "uint256",
|
615
|
-
"name": "updatedAt",
|
616
|
-
"type": "uint256"
|
617
|
-
},
|
618
|
-
{
|
619
|
-
"internalType": "uint256",
|
620
|
-
"name": "activatedAt",
|
621
|
-
"type": "uint256"
|
622
|
-
},
|
623
|
-
{
|
624
|
-
"internalType": "uint256",
|
625
|
-
"name": "expiredAt",
|
626
|
-
"type": "uint256"
|
627
|
-
},
|
628
|
-
{
|
629
|
-
"internalType": "uint256",
|
630
|
-
"name": "closedAt",
|
631
|
-
"type": "uint256"
|
632
|
-
}
|
633
|
-
],
|
634
|
-
"internalType": "struct IPolicy.PolicyInfo",
|
635
|
-
"name": "info",
|
636
|
-
"type": "tuple"
|
637
|
-
}
|
638
|
-
],
|
639
|
-
"stateMutability": "view",
|
640
|
-
"type": "function"
|
641
|
-
},
|
642
|
-
{
|
643
|
-
"inputs": [
|
644
|
-
{
|
645
|
-
"internalType": "NftId",
|
646
|
-
"name": "nftId",
|
647
|
-
"type": "uint96"
|
648
|
-
}
|
649
|
-
],
|
650
|
-
"name": "getPoolInfo",
|
651
|
-
"outputs": [
|
652
|
-
{
|
653
|
-
"components": [
|
654
|
-
{
|
655
|
-
"internalType": "NftId",
|
656
|
-
"name": "nftId",
|
657
|
-
"type": "uint96"
|
658
|
-
},
|
659
|
-
{
|
660
|
-
"internalType": "uint256",
|
661
|
-
"name": "capital",
|
662
|
-
"type": "uint256"
|
663
|
-
},
|
664
|
-
{
|
665
|
-
"internalType": "uint256",
|
666
|
-
"name": "lockedCapital",
|
667
|
-
"type": "uint256"
|
668
|
-
}
|
669
|
-
],
|
670
|
-
"internalType": "struct IPool.PoolInfo",
|
671
|
-
"name": "info",
|
672
|
-
"type": "tuple"
|
673
|
-
}
|
674
|
-
],
|
675
|
-
"stateMutability": "view",
|
676
|
-
"type": "function"
|
677
|
-
},
|
678
|
-
{
|
679
|
-
"inputs": [
|
680
|
-
{
|
681
|
-
"internalType": "NftId",
|
682
|
-
"name": "poolNftId",
|
683
|
-
"type": "uint96"
|
684
|
-
}
|
685
|
-
],
|
686
|
-
"name": "getPoolSetup",
|
687
|
-
"outputs": [
|
688
|
-
{
|
689
|
-
"components": [
|
690
|
-
{
|
691
|
-
"internalType": "NftId",
|
692
|
-
"name": "poolNftId",
|
693
|
-
"type": "uint96"
|
694
|
-
},
|
695
|
-
{
|
696
|
-
"internalType": "address",
|
697
|
-
"name": "wallet",
|
698
|
-
"type": "address"
|
699
|
-
},
|
700
|
-
{
|
701
|
-
"components": [
|
702
|
-
{
|
703
|
-
"internalType": "UFixed",
|
704
|
-
"name": "fractionalFee",
|
705
|
-
"type": "uint256"
|
706
|
-
},
|
707
|
-
{
|
708
|
-
"internalType": "uint256",
|
709
|
-
"name": "fixedFee",
|
710
|
-
"type": "uint256"
|
711
|
-
}
|
712
|
-
],
|
713
|
-
"internalType": "struct Fee",
|
714
|
-
"name": "stakingFee",
|
715
|
-
"type": "tuple"
|
716
|
-
},
|
717
|
-
{
|
718
|
-
"components": [
|
719
|
-
{
|
720
|
-
"internalType": "UFixed",
|
721
|
-
"name": "fractionalFee",
|
722
|
-
"type": "uint256"
|
723
|
-
},
|
724
|
-
{
|
725
|
-
"internalType": "uint256",
|
726
|
-
"name": "fixedFee",
|
727
|
-
"type": "uint256"
|
728
|
-
}
|
729
|
-
],
|
730
|
-
"internalType": "struct Fee",
|
731
|
-
"name": "performanceFee",
|
732
|
-
"type": "tuple"
|
733
|
-
}
|
734
|
-
],
|
735
|
-
"internalType": "struct ITreasuryModule.PoolSetup",
|
736
|
-
"name": "setup",
|
737
|
-
"type": "tuple"
|
738
|
-
}
|
739
|
-
],
|
740
|
-
"stateMutability": "view",
|
741
|
-
"type": "function"
|
742
|
-
},
|
743
|
-
{
|
744
|
-
"inputs": [],
|
745
|
-
"name": "getProductService",
|
746
|
-
"outputs": [
|
747
|
-
{
|
748
|
-
"internalType": "contract IProductService",
|
749
|
-
"name": "",
|
750
|
-
"type": "address"
|
751
|
-
}
|
752
|
-
],
|
753
|
-
"stateMutability": "view",
|
754
|
-
"type": "function"
|
755
|
-
},
|
756
|
-
{
|
757
|
-
"inputs": [
|
758
|
-
{
|
759
|
-
"internalType": "NftId",
|
760
|
-
"name": "productNftId",
|
761
|
-
"type": "uint96"
|
762
|
-
}
|
763
|
-
],
|
764
|
-
"name": "getProductSetup",
|
765
|
-
"outputs": [
|
766
|
-
{
|
767
|
-
"components": [
|
768
|
-
{
|
769
|
-
"internalType": "NftId",
|
770
|
-
"name": "productNftId",
|
771
|
-
"type": "uint96"
|
772
|
-
},
|
773
|
-
{
|
774
|
-
"internalType": "NftId",
|
775
|
-
"name": "distributorNftId",
|
776
|
-
"type": "uint96"
|
777
|
-
},
|
778
|
-
{
|
779
|
-
"internalType": "NftId",
|
780
|
-
"name": "poolNftId",
|
781
|
-
"type": "uint96"
|
782
|
-
},
|
783
|
-
{
|
784
|
-
"internalType": "contract IERC20",
|
785
|
-
"name": "token",
|
786
|
-
"type": "address"
|
787
|
-
},
|
788
|
-
{
|
789
|
-
"internalType": "contract TokenHandler",
|
790
|
-
"name": "tokenHandler",
|
791
|
-
"type": "address"
|
792
|
-
},
|
793
|
-
{
|
794
|
-
"internalType": "address",
|
795
|
-
"name": "wallet",
|
796
|
-
"type": "address"
|
797
|
-
},
|
798
|
-
{
|
799
|
-
"components": [
|
800
|
-
{
|
801
|
-
"internalType": "UFixed",
|
802
|
-
"name": "fractionalFee",
|
803
|
-
"type": "uint256"
|
804
|
-
},
|
805
|
-
{
|
806
|
-
"internalType": "uint256",
|
807
|
-
"name": "fixedFee",
|
808
|
-
"type": "uint256"
|
809
|
-
}
|
810
|
-
],
|
811
|
-
"internalType": "struct Fee",
|
812
|
-
"name": "policyFee",
|
813
|
-
"type": "tuple"
|
814
|
-
},
|
815
|
-
{
|
816
|
-
"components": [
|
817
|
-
{
|
818
|
-
"internalType": "UFixed",
|
819
|
-
"name": "fractionalFee",
|
820
|
-
"type": "uint256"
|
821
|
-
},
|
822
|
-
{
|
823
|
-
"internalType": "uint256",
|
824
|
-
"name": "fixedFee",
|
825
|
-
"type": "uint256"
|
826
|
-
}
|
827
|
-
],
|
828
|
-
"internalType": "struct Fee",
|
829
|
-
"name": "processingFee",
|
830
|
-
"type": "tuple"
|
831
|
-
}
|
832
|
-
],
|
833
|
-
"internalType": "struct ITreasuryModule.ProductSetup",
|
834
|
-
"name": "setup",
|
835
|
-
"type": "tuple"
|
836
|
-
}
|
837
|
-
],
|
838
|
-
"stateMutability": "view",
|
839
|
-
"type": "function"
|
840
|
-
},
|
841
|
-
{
|
842
|
-
"inputs": [],
|
843
|
-
"name": "getRegistry",
|
844
|
-
"outputs": [
|
845
|
-
{
|
846
|
-
"internalType": "contract IRegistry",
|
847
|
-
"name": "registry",
|
848
|
-
"type": "address"
|
849
|
-
}
|
850
|
-
],
|
851
|
-
"stateMutability": "view",
|
852
|
-
"type": "function"
|
853
|
-
},
|
854
|
-
{
|
855
|
-
"inputs": [
|
856
|
-
{
|
857
|
-
"internalType": "uint256",
|
858
|
-
"name": "idx",
|
859
|
-
"type": "uint256"
|
860
|
-
}
|
861
|
-
],
|
862
|
-
"name": "getRole",
|
863
|
-
"outputs": [
|
864
|
-
{
|
865
|
-
"internalType": "bytes32",
|
866
|
-
"name": "role",
|
867
|
-
"type": "bytes32"
|
868
343
|
}
|
869
344
|
],
|
870
345
|
"stateMutability": "view",
|
@@ -872,90 +347,11 @@
|
|
872
347
|
},
|
873
348
|
{
|
874
349
|
"inputs": [],
|
875
|
-
"name": "
|
876
|
-
"outputs": [
|
877
|
-
{
|
878
|
-
"internalType": "uint256",
|
879
|
-
"name": "roles",
|
880
|
-
"type": "uint256"
|
881
|
-
}
|
882
|
-
],
|
883
|
-
"stateMutability": "view",
|
884
|
-
"type": "function"
|
885
|
-
},
|
886
|
-
{
|
887
|
-
"inputs": [
|
888
|
-
{
|
889
|
-
"internalType": "string",
|
890
|
-
"name": "roleName",
|
891
|
-
"type": "string"
|
892
|
-
}
|
893
|
-
],
|
894
|
-
"name": "getRoleForName",
|
895
|
-
"outputs": [
|
896
|
-
{
|
897
|
-
"internalType": "bytes32",
|
898
|
-
"name": "role",
|
899
|
-
"type": "bytes32"
|
900
|
-
}
|
901
|
-
],
|
902
|
-
"stateMutability": "pure",
|
903
|
-
"type": "function"
|
904
|
-
},
|
905
|
-
{
|
906
|
-
"inputs": [
|
907
|
-
{
|
908
|
-
"internalType": "bytes32",
|
909
|
-
"name": "role",
|
910
|
-
"type": "bytes32"
|
911
|
-
}
|
912
|
-
],
|
913
|
-
"name": "getRoleInfo",
|
914
|
-
"outputs": [
|
915
|
-
{
|
916
|
-
"components": [
|
917
|
-
{
|
918
|
-
"internalType": "bytes32",
|
919
|
-
"name": "id",
|
920
|
-
"type": "bytes32"
|
921
|
-
},
|
922
|
-
{
|
923
|
-
"internalType": "string",
|
924
|
-
"name": "name",
|
925
|
-
"type": "string"
|
926
|
-
},
|
927
|
-
{
|
928
|
-
"internalType": "bool",
|
929
|
-
"name": "isActive",
|
930
|
-
"type": "bool"
|
931
|
-
}
|
932
|
-
],
|
933
|
-
"internalType": "struct IAccess.RoleInfo",
|
934
|
-
"name": "info",
|
935
|
-
"type": "tuple"
|
936
|
-
}
|
937
|
-
],
|
938
|
-
"stateMutability": "view",
|
939
|
-
"type": "function"
|
940
|
-
},
|
941
|
-
{
|
942
|
-
"inputs": [
|
943
|
-
{
|
944
|
-
"internalType": "bytes32",
|
945
|
-
"name": "role",
|
946
|
-
"type": "bytes32"
|
947
|
-
},
|
948
|
-
{
|
949
|
-
"internalType": "uint256",
|
950
|
-
"name": "idx",
|
951
|
-
"type": "uint256"
|
952
|
-
}
|
953
|
-
],
|
954
|
-
"name": "getRoleMember",
|
350
|
+
"name": "getInstanceAccessManager",
|
955
351
|
"outputs": [
|
956
352
|
{
|
957
|
-
"internalType": "
|
958
|
-
"name": "
|
353
|
+
"internalType": "contract InstanceAccessManager",
|
354
|
+
"name": "",
|
959
355
|
"type": "address"
|
960
356
|
}
|
961
357
|
],
|
@@ -963,37 +359,25 @@
|
|
963
359
|
"type": "function"
|
964
360
|
},
|
965
361
|
{
|
966
|
-
"inputs": [
|
967
|
-
|
968
|
-
"internalType": "bytes32",
|
969
|
-
"name": "role",
|
970
|
-
"type": "bytes32"
|
971
|
-
}
|
972
|
-
],
|
973
|
-
"name": "getRoleMemberCount",
|
362
|
+
"inputs": [],
|
363
|
+
"name": "getInstanceReader",
|
974
364
|
"outputs": [
|
975
365
|
{
|
976
|
-
"internalType": "
|
977
|
-
"name": "
|
978
|
-
"type": "
|
366
|
+
"internalType": "contract InstanceReader",
|
367
|
+
"name": "",
|
368
|
+
"type": "address"
|
979
369
|
}
|
980
370
|
],
|
981
371
|
"stateMutability": "view",
|
982
372
|
"type": "function"
|
983
373
|
},
|
984
374
|
{
|
985
|
-
"inputs": [
|
986
|
-
|
987
|
-
"internalType": "NftId",
|
988
|
-
"name": "productNftId",
|
989
|
-
"type": "uint96"
|
990
|
-
}
|
991
|
-
],
|
992
|
-
"name": "getTokenHandler",
|
375
|
+
"inputs": [],
|
376
|
+
"name": "getInstanceStore",
|
993
377
|
"outputs": [
|
994
378
|
{
|
995
|
-
"internalType": "contract
|
996
|
-
"name": "
|
379
|
+
"internalType": "contract InstanceStore",
|
380
|
+
"name": "",
|
997
381
|
"type": "address"
|
998
382
|
}
|
999
383
|
],
|
@@ -1002,54 +386,38 @@
|
|
1002
386
|
},
|
1003
387
|
{
|
1004
388
|
"inputs": [],
|
1005
|
-
"name": "
|
389
|
+
"name": "getMajorVersion",
|
1006
390
|
"outputs": [
|
1007
391
|
{
|
1008
|
-
"internalType": "
|
1009
|
-
"name": "
|
392
|
+
"internalType": "VersionPart",
|
393
|
+
"name": "majorVersion",
|
1010
394
|
"type": "uint8"
|
1011
395
|
}
|
1012
396
|
],
|
1013
|
-
"stateMutability": "
|
397
|
+
"stateMutability": "pure",
|
1014
398
|
"type": "function"
|
1015
399
|
},
|
1016
400
|
{
|
1017
|
-
"inputs": [
|
1018
|
-
|
1019
|
-
|
1020
|
-
"name": "role",
|
1021
|
-
"type": "bytes32"
|
1022
|
-
},
|
401
|
+
"inputs": [],
|
402
|
+
"name": "getNftId",
|
403
|
+
"outputs": [
|
1023
404
|
{
|
1024
|
-
"internalType": "
|
1025
|
-
"name": "
|
1026
|
-
"type": "
|
405
|
+
"internalType": "NftId",
|
406
|
+
"name": "",
|
407
|
+
"type": "uint96"
|
1027
408
|
}
|
1028
409
|
],
|
1029
|
-
"
|
1030
|
-
"outputs": [],
|
1031
|
-
"stateMutability": "nonpayable",
|
410
|
+
"stateMutability": "view",
|
1032
411
|
"type": "function"
|
1033
412
|
},
|
1034
413
|
{
|
1035
|
-
"inputs": [
|
1036
|
-
|
1037
|
-
"internalType": "bytes32",
|
1038
|
-
"name": "role",
|
1039
|
-
"type": "bytes32"
|
1040
|
-
},
|
1041
|
-
{
|
1042
|
-
"internalType": "address",
|
1043
|
-
"name": "member",
|
1044
|
-
"type": "address"
|
1045
|
-
}
|
1046
|
-
],
|
1047
|
-
"name": "hasRole",
|
414
|
+
"inputs": [],
|
415
|
+
"name": "getOwner",
|
1048
416
|
"outputs": [
|
1049
417
|
{
|
1050
|
-
"internalType": "
|
418
|
+
"internalType": "address",
|
1051
419
|
"name": "",
|
1052
|
-
"type": "
|
420
|
+
"type": "address"
|
1053
421
|
}
|
1054
422
|
],
|
1055
423
|
"stateMutability": "view",
|
@@ -1057,183 +425,108 @@
|
|
1057
425
|
},
|
1058
426
|
{
|
1059
427
|
"inputs": [],
|
1060
|
-
"name": "
|
428
|
+
"name": "getPolicyService",
|
1061
429
|
"outputs": [
|
1062
430
|
{
|
1063
|
-
"internalType": "
|
431
|
+
"internalType": "contract IPolicyService",
|
1064
432
|
"name": "",
|
1065
|
-
"type": "
|
433
|
+
"type": "address"
|
1066
434
|
}
|
1067
435
|
],
|
1068
|
-
"stateMutability": "
|
436
|
+
"stateMutability": "view",
|
1069
437
|
"type": "function"
|
1070
438
|
},
|
1071
439
|
{
|
1072
440
|
"inputs": [],
|
1073
|
-
"name": "
|
441
|
+
"name": "getPoolService",
|
1074
442
|
"outputs": [
|
1075
443
|
{
|
1076
|
-
"internalType": "
|
444
|
+
"internalType": "contract IPoolService",
|
1077
445
|
"name": "",
|
1078
|
-
"type": "
|
446
|
+
"type": "address"
|
1079
447
|
}
|
1080
448
|
],
|
1081
449
|
"stateMutability": "view",
|
1082
450
|
"type": "function"
|
1083
451
|
},
|
1084
452
|
{
|
1085
|
-
"inputs": [
|
1086
|
-
|
1087
|
-
"internalType": "ObjectType",
|
1088
|
-
"name": "objectType",
|
1089
|
-
"type": "uint8"
|
1090
|
-
},
|
1091
|
-
{
|
1092
|
-
"internalType": "StateId",
|
1093
|
-
"name": "fromId",
|
1094
|
-
"type": "uint8"
|
1095
|
-
},
|
1096
|
-
{
|
1097
|
-
"internalType": "StateId",
|
1098
|
-
"name": "toId",
|
1099
|
-
"type": "uint8"
|
1100
|
-
}
|
1101
|
-
],
|
1102
|
-
"name": "isValidTransition",
|
453
|
+
"inputs": [],
|
454
|
+
"name": "getProductService",
|
1103
455
|
"outputs": [
|
1104
456
|
{
|
1105
|
-
"internalType": "
|
457
|
+
"internalType": "contract IProductService",
|
1106
458
|
"name": "",
|
1107
|
-
"type": "
|
459
|
+
"type": "address"
|
1108
460
|
}
|
1109
461
|
],
|
1110
462
|
"stateMutability": "view",
|
1111
463
|
"type": "function"
|
1112
464
|
},
|
1113
465
|
{
|
1114
|
-
"inputs": [
|
466
|
+
"inputs": [],
|
467
|
+
"name": "getRegistry",
|
468
|
+
"outputs": [
|
1115
469
|
{
|
1116
|
-
"internalType": "
|
1117
|
-
"name": "
|
1118
|
-
"type": "
|
470
|
+
"internalType": "contract IRegistry",
|
471
|
+
"name": "",
|
472
|
+
"type": "address"
|
1119
473
|
}
|
1120
474
|
],
|
1121
|
-
"
|
1122
|
-
"outputs": [],
|
1123
|
-
"stateMutability": "nonpayable",
|
475
|
+
"stateMutability": "view",
|
1124
476
|
"type": "function"
|
1125
477
|
},
|
1126
478
|
{
|
1127
479
|
"inputs": [
|
1128
480
|
{
|
1129
|
-
"internalType": "
|
1130
|
-
"name": "
|
1131
|
-
"type": "
|
481
|
+
"internalType": "RoleId",
|
482
|
+
"name": "roleId",
|
483
|
+
"type": "uint64"
|
1132
484
|
},
|
1133
485
|
{
|
1134
|
-
"internalType": "
|
1135
|
-
"name": "
|
1136
|
-
"type": "
|
486
|
+
"internalType": "address",
|
487
|
+
"name": "account",
|
488
|
+
"type": "address"
|
1137
489
|
}
|
1138
490
|
],
|
1139
|
-
"name": "
|
491
|
+
"name": "grantRole",
|
1140
492
|
"outputs": [],
|
1141
493
|
"stateMutability": "nonpayable",
|
1142
494
|
"type": "function"
|
1143
495
|
},
|
1144
496
|
{
|
1145
497
|
"inputs": [],
|
1146
|
-
"name": "
|
1147
|
-
"outputs": [
|
1148
|
-
{
|
1149
|
-
"internalType": "NftId",
|
1150
|
-
"name": "nftId",
|
1151
|
-
"type": "uint96"
|
1152
|
-
}
|
1153
|
-
],
|
1154
|
-
"stateMutability": "nonpayable",
|
1155
|
-
"type": "function"
|
1156
|
-
},
|
1157
|
-
{
|
1158
|
-
"inputs": [
|
1159
|
-
{
|
1160
|
-
"internalType": "contract IComponentContract",
|
1161
|
-
"name": "component",
|
1162
|
-
"type": "address"
|
1163
|
-
}
|
1164
|
-
],
|
1165
|
-
"name": "registerComponent",
|
498
|
+
"name": "isConsumingScheduledOp",
|
1166
499
|
"outputs": [
|
1167
500
|
{
|
1168
|
-
"internalType": "
|
1169
|
-
"name": "
|
1170
|
-
"type": "
|
501
|
+
"internalType": "bytes4",
|
502
|
+
"name": "",
|
503
|
+
"type": "bytes4"
|
1171
504
|
}
|
1172
505
|
],
|
1173
|
-
"stateMutability": "
|
506
|
+
"stateMutability": "view",
|
1174
507
|
"type": "function"
|
1175
508
|
},
|
1176
509
|
{
|
1177
|
-
"inputs": [
|
1178
|
-
|
1179
|
-
"internalType": "NftId",
|
1180
|
-
"name": "nftId",
|
1181
|
-
"type": "uint96"
|
1182
|
-
}
|
1183
|
-
],
|
1184
|
-
"name": "registerPool",
|
510
|
+
"inputs": [],
|
511
|
+
"name": "linkToRegisteredNftId",
|
1185
512
|
"outputs": [],
|
1186
513
|
"stateMutability": "nonpayable",
|
1187
514
|
"type": "function"
|
1188
515
|
},
|
1189
516
|
{
|
1190
517
|
"inputs": [
|
1191
|
-
{
|
1192
|
-
"internalType": "NftId",
|
1193
|
-
"name": "poolNftId",
|
1194
|
-
"type": "uint96"
|
1195
|
-
},
|
1196
518
|
{
|
1197
519
|
"internalType": "address",
|
1198
|
-
"name": "
|
520
|
+
"name": "to",
|
1199
521
|
"type": "address"
|
1200
522
|
},
|
1201
523
|
{
|
1202
|
-
"
|
1203
|
-
|
1204
|
-
|
1205
|
-
"name": "fractionalFee",
|
1206
|
-
"type": "uint256"
|
1207
|
-
},
|
1208
|
-
{
|
1209
|
-
"internalType": "uint256",
|
1210
|
-
"name": "fixedFee",
|
1211
|
-
"type": "uint256"
|
1212
|
-
}
|
1213
|
-
],
|
1214
|
-
"internalType": "struct Fee",
|
1215
|
-
"name": "stakingFee",
|
1216
|
-
"type": "tuple"
|
1217
|
-
},
|
1218
|
-
{
|
1219
|
-
"components": [
|
1220
|
-
{
|
1221
|
-
"internalType": "UFixed",
|
1222
|
-
"name": "fractionalFee",
|
1223
|
-
"type": "uint256"
|
1224
|
-
},
|
1225
|
-
{
|
1226
|
-
"internalType": "uint256",
|
1227
|
-
"name": "fixedFee",
|
1228
|
-
"type": "uint256"
|
1229
|
-
}
|
1230
|
-
],
|
1231
|
-
"internalType": "struct Fee",
|
1232
|
-
"name": "performanceFee",
|
1233
|
-
"type": "tuple"
|
524
|
+
"internalType": "uint256",
|
525
|
+
"name": "tokenId",
|
526
|
+
"type": "uint256"
|
1234
527
|
}
|
1235
528
|
],
|
1236
|
-
"name": "
|
529
|
+
"name": "nftMint",
|
1237
530
|
"outputs": [],
|
1238
531
|
"stateMutability": "nonpayable",
|
1239
532
|
"type": "function"
|
@@ -1241,66 +534,22 @@
|
|
1241
534
|
{
|
1242
535
|
"inputs": [
|
1243
536
|
{
|
1244
|
-
"internalType": "
|
1245
|
-
"name": "
|
1246
|
-
"type": "uint96"
|
1247
|
-
},
|
1248
|
-
{
|
1249
|
-
"internalType": "NftId",
|
1250
|
-
"name": "distributorNftId",
|
1251
|
-
"type": "uint96"
|
1252
|
-
},
|
1253
|
-
{
|
1254
|
-
"internalType": "NftId",
|
1255
|
-
"name": "poolNftId",
|
1256
|
-
"type": "uint96"
|
1257
|
-
},
|
1258
|
-
{
|
1259
|
-
"internalType": "contract IERC20",
|
1260
|
-
"name": "token",
|
537
|
+
"internalType": "address",
|
538
|
+
"name": "from",
|
1261
539
|
"type": "address"
|
1262
540
|
},
|
1263
541
|
{
|
1264
542
|
"internalType": "address",
|
1265
|
-
"name": "
|
543
|
+
"name": "to",
|
1266
544
|
"type": "address"
|
1267
545
|
},
|
1268
546
|
{
|
1269
|
-
"
|
1270
|
-
|
1271
|
-
|
1272
|
-
"name": "fractionalFee",
|
1273
|
-
"type": "uint256"
|
1274
|
-
},
|
1275
|
-
{
|
1276
|
-
"internalType": "uint256",
|
1277
|
-
"name": "fixedFee",
|
1278
|
-
"type": "uint256"
|
1279
|
-
}
|
1280
|
-
],
|
1281
|
-
"internalType": "struct Fee",
|
1282
|
-
"name": "policyFee",
|
1283
|
-
"type": "tuple"
|
1284
|
-
},
|
1285
|
-
{
|
1286
|
-
"components": [
|
1287
|
-
{
|
1288
|
-
"internalType": "UFixed",
|
1289
|
-
"name": "fractionalFee",
|
1290
|
-
"type": "uint256"
|
1291
|
-
},
|
1292
|
-
{
|
1293
|
-
"internalType": "uint256",
|
1294
|
-
"name": "fixedFee",
|
1295
|
-
"type": "uint256"
|
1296
|
-
}
|
1297
|
-
],
|
1298
|
-
"internalType": "struct Fee",
|
1299
|
-
"name": "processingFee",
|
1300
|
-
"type": "tuple"
|
547
|
+
"internalType": "uint256",
|
548
|
+
"name": "tokenId",
|
549
|
+
"type": "uint256"
|
1301
550
|
}
|
1302
551
|
],
|
1303
|
-
"name": "
|
552
|
+
"name": "nftTransferFrom",
|
1304
553
|
"outputs": [],
|
1305
554
|
"stateMutability": "nonpayable",
|
1306
555
|
"type": "function"
|
@@ -1308,13 +557,13 @@
|
|
1308
557
|
{
|
1309
558
|
"inputs": [
|
1310
559
|
{
|
1311
|
-
"internalType": "
|
1312
|
-
"name": "
|
1313
|
-
"type": "
|
560
|
+
"internalType": "RoleId",
|
561
|
+
"name": "roleId",
|
562
|
+
"type": "uint64"
|
1314
563
|
},
|
1315
564
|
{
|
1316
565
|
"internalType": "address",
|
1317
|
-
"name": "
|
566
|
+
"name": "account",
|
1318
567
|
"type": "address"
|
1319
568
|
}
|
1320
569
|
],
|
@@ -1326,82 +575,35 @@
|
|
1326
575
|
{
|
1327
576
|
"inputs": [
|
1328
577
|
{
|
1329
|
-
"
|
1330
|
-
|
1331
|
-
|
1332
|
-
"name": "nftId",
|
1333
|
-
"type": "uint96"
|
1334
|
-
},
|
1335
|
-
{
|
1336
|
-
"internalType": "StateId",
|
1337
|
-
"name": "state",
|
1338
|
-
"type": "uint8"
|
1339
|
-
},
|
1340
|
-
{
|
1341
|
-
"internalType": "contract IERC20Metadata",
|
1342
|
-
"name": "token",
|
1343
|
-
"type": "address"
|
1344
|
-
}
|
1345
|
-
],
|
1346
|
-
"internalType": "struct IComponent.ComponentInfo",
|
1347
|
-
"name": "info",
|
1348
|
-
"type": "tuple"
|
1349
|
-
}
|
1350
|
-
],
|
1351
|
-
"name": "setComponentInfo",
|
1352
|
-
"outputs": [
|
1353
|
-
{
|
1354
|
-
"internalType": "NftId",
|
1355
|
-
"name": "componentNftId",
|
1356
|
-
"type": "uint96"
|
578
|
+
"internalType": "address",
|
579
|
+
"name": "",
|
580
|
+
"type": "address"
|
1357
581
|
}
|
1358
582
|
],
|
583
|
+
"name": "setAuthority",
|
584
|
+
"outputs": [],
|
1359
585
|
"stateMutability": "nonpayable",
|
1360
586
|
"type": "function"
|
1361
587
|
},
|
1362
588
|
{
|
1363
589
|
"inputs": [
|
1364
590
|
{
|
1365
|
-
"internalType": "
|
1366
|
-
"name": "
|
1367
|
-
"type": "
|
591
|
+
"internalType": "string",
|
592
|
+
"name": "targetName",
|
593
|
+
"type": "string"
|
1368
594
|
},
|
1369
595
|
{
|
1370
|
-
"
|
1371
|
-
|
1372
|
-
|
1373
|
-
"name": "fractionalFee",
|
1374
|
-
"type": "uint256"
|
1375
|
-
},
|
1376
|
-
{
|
1377
|
-
"internalType": "uint256",
|
1378
|
-
"name": "fixedFee",
|
1379
|
-
"type": "uint256"
|
1380
|
-
}
|
1381
|
-
],
|
1382
|
-
"internalType": "struct Fee",
|
1383
|
-
"name": "stakingFee",
|
1384
|
-
"type": "tuple"
|
596
|
+
"internalType": "bytes4[]",
|
597
|
+
"name": "selectors",
|
598
|
+
"type": "bytes4[]"
|
1385
599
|
},
|
1386
600
|
{
|
1387
|
-
"
|
1388
|
-
|
1389
|
-
|
1390
|
-
"name": "fractionalFee",
|
1391
|
-
"type": "uint256"
|
1392
|
-
},
|
1393
|
-
{
|
1394
|
-
"internalType": "uint256",
|
1395
|
-
"name": "fixedFee",
|
1396
|
-
"type": "uint256"
|
1397
|
-
}
|
1398
|
-
],
|
1399
|
-
"internalType": "struct Fee",
|
1400
|
-
"name": "performanceFee",
|
1401
|
-
"type": "tuple"
|
601
|
+
"internalType": "RoleId",
|
602
|
+
"name": "roleId",
|
603
|
+
"type": "uint64"
|
1402
604
|
}
|
1403
605
|
],
|
1404
|
-
"name": "
|
606
|
+
"name": "setTargetFunctionRole",
|
1405
607
|
"outputs": [],
|
1406
608
|
"stateMutability": "nonpayable",
|
1407
609
|
"type": "function"
|
@@ -1409,46 +611,17 @@
|
|
1409
611
|
{
|
1410
612
|
"inputs": [
|
1411
613
|
{
|
1412
|
-
"internalType": "
|
1413
|
-
"name": "
|
1414
|
-
"type": "
|
1415
|
-
},
|
1416
|
-
{
|
1417
|
-
"components": [
|
1418
|
-
{
|
1419
|
-
"internalType": "UFixed",
|
1420
|
-
"name": "fractionalFee",
|
1421
|
-
"type": "uint256"
|
1422
|
-
},
|
1423
|
-
{
|
1424
|
-
"internalType": "uint256",
|
1425
|
-
"name": "fixedFee",
|
1426
|
-
"type": "uint256"
|
1427
|
-
}
|
1428
|
-
],
|
1429
|
-
"internalType": "struct Fee",
|
1430
|
-
"name": "policyFee",
|
1431
|
-
"type": "tuple"
|
614
|
+
"internalType": "address",
|
615
|
+
"name": "target",
|
616
|
+
"type": "address"
|
1432
617
|
},
|
1433
618
|
{
|
1434
|
-
"
|
1435
|
-
|
1436
|
-
|
1437
|
-
"name": "fractionalFee",
|
1438
|
-
"type": "uint256"
|
1439
|
-
},
|
1440
|
-
{
|
1441
|
-
"internalType": "uint256",
|
1442
|
-
"name": "fixedFee",
|
1443
|
-
"type": "uint256"
|
1444
|
-
}
|
1445
|
-
],
|
1446
|
-
"internalType": "struct Fee",
|
1447
|
-
"name": "processingFee",
|
1448
|
-
"type": "tuple"
|
619
|
+
"internalType": "bool",
|
620
|
+
"name": "locked",
|
621
|
+
"type": "bool"
|
1449
622
|
}
|
1450
623
|
],
|
1451
|
-
"name": "
|
624
|
+
"name": "setTargetLocked",
|
1452
625
|
"outputs": [],
|
1453
626
|
"stateMutability": "nonpayable",
|
1454
627
|
"type": "function"
|
@@ -1456,19 +629,20 @@
|
|
1456
629
|
{
|
1457
630
|
"inputs": [
|
1458
631
|
{
|
1459
|
-
"internalType": "
|
1460
|
-
"name": "
|
1461
|
-
"type": "
|
1462
|
-
}
|
632
|
+
"internalType": "bytes4",
|
633
|
+
"name": "interfaceId",
|
634
|
+
"type": "bytes4"
|
635
|
+
}
|
636
|
+
],
|
637
|
+
"name": "supportsInterface",
|
638
|
+
"outputs": [
|
1463
639
|
{
|
1464
|
-
"internalType": "
|
1465
|
-
"name": "
|
1466
|
-
"type": "
|
640
|
+
"internalType": "bool",
|
641
|
+
"name": "",
|
642
|
+
"type": "bool"
|
1467
643
|
}
|
1468
644
|
],
|
1469
|
-
"
|
1470
|
-
"outputs": [],
|
1471
|
-
"stateMutability": "nonpayable",
|
645
|
+
"stateMutability": "view",
|
1472
646
|
"type": "function"
|
1473
647
|
}
|
1474
648
|
],
|