@etherisc/gif-next 0.0.2-f4f92b3-338 → 0.0.2-f509abc-684
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +73 -1
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +270 -94
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +627 -157
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +122 -72
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +323 -102
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +325 -186
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +126 -144
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +552 -212
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +374 -166
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +64 -50
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +5 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +801 -434
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +194 -192
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +992 -782
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +441 -164
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +119 -221
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +371 -302
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +330 -102
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +8 -13
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +118 -169
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +40 -10
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +61 -78
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +968 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +665 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +306 -315
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +305 -93
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +754 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +637 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1212 -252
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +453 -85
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +556 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +155 -240
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +409 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +711 -139
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +60 -286
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +81 -147
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +22 -169
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +185 -391
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +311 -127
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +222 -204
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +310 -90
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +142 -221
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +302 -90
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +34 -2
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +83 -174
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +47 -15
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +193 -216
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +300 -94
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +11 -11
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +141 -37
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +40 -29
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +21 -29
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IB.sol/IB.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +18 -20
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +22 -169
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +113 -33
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +294 -74
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +125 -55
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +113 -164
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +125 -55
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +134 -221
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +8 -190
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +2 -2
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +25 -7
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
- package/contracts/components/Component.sol +112 -83
- package/contracts/components/Distribution.sol +189 -53
- package/contracts/components/IComponent.sol +48 -17
- package/contracts/components/IDistributionComponent.sol +39 -15
- package/contracts/components/IPoolComponent.sol +84 -41
- package/contracts/components/IProductComponent.sol +3 -2
- package/contracts/components/Pool.sol +211 -153
- package/contracts/components/Product.sol +96 -61
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +7 -5
- package/contracts/instance/Cloneable.sol +7 -2
- package/contracts/instance/IInstance.sol +36 -10
- package/contracts/instance/IInstanceService.sol +36 -4
- package/contracts/instance/Instance.sol +101 -43
- package/contracts/instance/InstanceAccessManager.sol +383 -159
- package/contracts/instance/InstanceReader.sol +7 -10
- package/contracts/instance/InstanceService.sol +262 -129
- package/contracts/instance/InstanceServiceManager.sol +1 -1
- package/contracts/instance/ObjectManager.sol +6 -8
- package/contracts/instance/base/ComponentService.sol +6 -6
- package/contracts/instance/base/KeyValueStore.sol +5 -2
- package/contracts/instance/base/Lifecycle.sol +11 -2
- package/contracts/instance/module/IAccess.sol +22 -16
- package/contracts/instance/module/IBundle.sol +2 -1
- package/contracts/instance/module/IComponents.sol +35 -0
- package/contracts/instance/module/IDistribution.sol +2 -0
- package/contracts/instance/module/IPolicy.sol +30 -3
- package/contracts/instance/module/ISetup.sol +7 -20
- package/contracts/instance/service/ApplicationService.sol +350 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +82 -39
- package/contracts/instance/service/BundleServiceManager.sol +1 -1
- package/contracts/instance/service/ClaimService.sol +151 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +376 -15
- package/contracts/instance/service/DistributionServiceManager.sol +1 -1
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +30 -12
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +86 -0
- package/contracts/instance/service/IPolicyService.sol +27 -49
- package/contracts/instance/service/IPoolService.sol +17 -2
- package/contracts/instance/service/PolicyService.sol +148 -283
- package/contracts/instance/service/PolicyServiceManager.sol +2 -2
- package/contracts/instance/service/PoolService.sol +130 -19
- package/contracts/instance/service/PoolServiceManager.sol +1 -1
- package/contracts/instance/service/ProductService.sol +20 -11
- package/contracts/instance/service/ProductServiceManager.sol +2 -2
- package/contracts/registry/ChainNft.sol +8 -0
- package/contracts/registry/IRegistry.sol +5 -2
- package/contracts/registry/IRegistryService.sol +10 -8
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +43 -28
- package/contracts/registry/RegistryService.sol +69 -48
- package/contracts/registry/RegistryServiceManager.sol +13 -13
- package/contracts/registry/ReleaseManager.sol +18 -28
- package/contracts/registry/TokenRegistry.sol +16 -12
- package/contracts/shared/ERC165.sol +14 -12
- package/contracts/shared/INftOwnable.sol +11 -10
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +3 -3
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +2 -0
- package/contracts/shared/IVersionable.sol +4 -47
- package/contracts/shared/NftOwnable.sol +66 -85
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +100 -25
- package/contracts/shared/Registerable.sol +7 -19
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +15 -17
- package/contracts/shared/TokenHandler.sol +11 -5
- package/contracts/shared/Versionable.sol +4 -92
- package/contracts/test/TestRegisterable.sol +1 -1
- package/contracts/test/TestService.sol +1 -1
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +52 -0
- package/contracts/types/DistributorType.sol +2 -2
- package/contracts/types/Fee.sol +1 -0
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/ObjectType.sol +10 -5
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/Referral.sol +4 -0
- package/contracts/types/RoleId.sol +16 -9
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +1 -0
- package/contracts/types/Timestamp.sol +13 -13
- package/contracts/types/UFixed.sol +1 -0
- package/contracts/types/Version.sol +1 -0
- package/package.json +3 -3
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/contracts/experiment/cloning/Cloner.sol +0 -47
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
| @@ -41,33 +41,6 @@ | |
| 41 41 | 
             
                  "name": "AccessManagedUnauthorized",
         | 
| 42 42 | 
             
                  "type": "error"
         | 
| 43 43 | 
             
                },
         | 
| 44 | 
            -
                {
         | 
| 45 | 
            -
                  "inputs": [
         | 
| 46 | 
            -
                    {
         | 
| 47 | 
            -
                      "internalType": "address",
         | 
| 48 | 
            -
                      "name": "registry",
         | 
| 49 | 
            -
                      "type": "address"
         | 
| 50 | 
            -
                    },
         | 
| 51 | 
            -
                    {
         | 
| 52 | 
            -
                      "internalType": "NftId",
         | 
| 53 | 
            -
                      "name": "nftId",
         | 
| 54 | 
            -
                      "type": "uint96"
         | 
| 55 | 
            -
                    }
         | 
| 56 | 
            -
                  ],
         | 
| 57 | 
            -
                  "name": "ErrorAlreadyLinked",
         | 
| 58 | 
            -
                  "type": "error"
         | 
| 59 | 
            -
                },
         | 
| 60 | 
            -
                {
         | 
| 61 | 
            -
                  "inputs": [
         | 
| 62 | 
            -
                    {
         | 
| 63 | 
            -
                      "internalType": "address",
         | 
| 64 | 
            -
                      "name": "contractAddress",
         | 
| 65 | 
            -
                      "type": "address"
         | 
| 66 | 
            -
                    }
         | 
| 67 | 
            -
                  ],
         | 
| 68 | 
            -
                  "name": "ErrorContractNotRegistered",
         | 
| 69 | 
            -
                  "type": "error"
         | 
| 70 | 
            -
                },
         | 
| 71 44 | 
             
                {
         | 
| 72 45 | 
             
                  "inputs": [
         | 
| 73 46 | 
             
                    {
         | 
| @@ -95,57 +68,63 @@ | |
| 95 68 | 
             
                      "internalType": "NftId",
         | 
| 96 69 | 
             
                      "name": "nftId",
         | 
| 97 70 | 
             
                      "type": "uint96"
         | 
| 98 | 
            -
                    },
         | 
| 99 | 
            -
                    {
         | 
| 100 | 
            -
                      "internalType": "ObjectType",
         | 
| 101 | 
            -
                      "name": "objectType",
         | 
| 102 | 
            -
                      "type": "uint8"
         | 
| 103 71 | 
             
                    }
         | 
| 104 72 | 
             
                  ],
         | 
| 105 | 
            -
                  "name": " | 
| 73 | 
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         | 
| 106 74 | 
             
                  "type": "error"
         | 
| 107 75 | 
             
                },
         | 
| 108 76 | 
             
                {
         | 
| 109 77 | 
             
                  "inputs": [
         | 
| 110 78 | 
             
                    {
         | 
| 111 79 | 
             
                      "internalType": "address",
         | 
| 112 | 
            -
                      "name": " | 
| 80 | 
            +
                      "name": "contractAddress",
         | 
| 113 81 | 
             
                      "type": "address"
         | 
| 114 82 | 
             
                    }
         | 
| 115 83 | 
             
                  ],
         | 
| 116 | 
            -
                  "name": " | 
| 84 | 
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         | 
| 85 | 
            +
                  "type": "error"
         | 
| 86 | 
            +
                },
         | 
| 87 | 
            +
                {
         | 
| 88 | 
            +
                  "inputs": [],
         | 
| 89 | 
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         | 
| 117 90 | 
             
                  "type": "error"
         | 
| 118 91 | 
             
                },
         | 
| 119 92 | 
             
                {
         | 
| 120 93 | 
             
                  "inputs": [
         | 
| 121 94 | 
             
                    {
         | 
| 122 95 | 
             
                      "internalType": "address",
         | 
| 123 | 
            -
                      "name": " | 
| 96 | 
            +
                      "name": "account",
         | 
| 124 97 | 
             
                      "type": "address"
         | 
| 125 98 | 
             
                    }
         | 
| 126 99 | 
             
                  ],
         | 
| 127 | 
            -
                  "name": " | 
| 100 | 
            +
                  "name": "ErrorNftOwnableNotOwner",
         | 
| 128 101 | 
             
                  "type": "error"
         | 
| 129 102 | 
             
                },
         | 
| 130 103 | 
             
                {
         | 
| 131 | 
            -
                  "inputs": [ | 
| 132 | 
            -
             | 
| 104 | 
            +
                  "inputs": [
         | 
| 105 | 
            +
                    {
         | 
| 106 | 
            +
                      "internalType": "NftId",
         | 
| 107 | 
            +
                      "name": "nftId",
         | 
| 108 | 
            +
                      "type": "uint96"
         | 
| 109 | 
            +
                    },
         | 
| 110 | 
            +
                    {
         | 
| 111 | 
            +
                      "internalType": "ObjectType",
         | 
| 112 | 
            +
                      "name": "objectType",
         | 
| 113 | 
            +
                      "type": "uint8"
         | 
| 114 | 
            +
                    }
         | 
| 115 | 
            +
                  ],
         | 
| 116 | 
            +
                  "name": "ErrorNoLifecycle",
         | 
| 133 117 | 
             
                  "type": "error"
         | 
| 134 118 | 
             
                },
         | 
| 135 119 | 
             
                {
         | 
| 136 120 | 
             
                  "inputs": [
         | 
| 137 121 | 
             
                    {
         | 
| 138 122 | 
             
                      "internalType": "address",
         | 
| 139 | 
            -
                      "name": " | 
| 123 | 
            +
                      "name": "registryAddress",
         | 
| 140 124 | 
             
                      "type": "address"
         | 
| 141 125 | 
             
                    }
         | 
| 142 126 | 
             
                  ],
         | 
| 143 | 
            -
                  "name": " | 
| 144 | 
            -
                  "type": "error"
         | 
| 145 | 
            -
                },
         | 
| 146 | 
            -
                {
         | 
| 147 | 
            -
                  "inputs": [],
         | 
| 148 | 
            -
                  "name": "ErrorRegistryNotInitialized",
         | 
| 127 | 
            +
                  "name": "ErrorNotRegistry",
         | 
| 149 128 | 
             
                  "type": "error"
         | 
| 150 129 | 
             
                },
         | 
| 151 130 | 
             
                {
         | 
| @@ -303,6 +282,106 @@ | |
| 303 282 | 
             
                  "stateMutability": "view",
         | 
| 304 283 | 
             
                  "type": "function"
         | 
| 305 284 | 
             
                },
         | 
| 285 | 
            +
                {
         | 
| 286 | 
            +
                  "inputs": [
         | 
| 287 | 
            +
                    {
         | 
| 288 | 
            +
                      "internalType": "NftId",
         | 
| 289 | 
            +
                      "name": "applicationNftId",
         | 
| 290 | 
            +
                      "type": "uint96"
         | 
| 291 | 
            +
                    },
         | 
| 292 | 
            +
                    {
         | 
| 293 | 
            +
                      "components": [
         | 
| 294 | 
            +
                        {
         | 
| 295 | 
            +
                          "internalType": "NftId",
         | 
| 296 | 
            +
                          "name": "productNftId",
         | 
| 297 | 
            +
                          "type": "uint96"
         | 
| 298 | 
            +
                        },
         | 
| 299 | 
            +
                        {
         | 
| 300 | 
            +
                          "internalType": "NftId",
         | 
| 301 | 
            +
                          "name": "bundleNftId",
         | 
| 302 | 
            +
                          "type": "uint96"
         | 
| 303 | 
            +
                        },
         | 
| 304 | 
            +
                        {
         | 
| 305 | 
            +
                          "internalType": "ReferralId",
         | 
| 306 | 
            +
                          "name": "referralId",
         | 
| 307 | 
            +
                          "type": "bytes8"
         | 
| 308 | 
            +
                        },
         | 
| 309 | 
            +
                        {
         | 
| 310 | 
            +
                          "internalType": "RiskId",
         | 
| 311 | 
            +
                          "name": "riskId",
         | 
| 312 | 
            +
                          "type": "bytes8"
         | 
| 313 | 
            +
                        },
         | 
| 314 | 
            +
                        {
         | 
| 315 | 
            +
                          "internalType": "uint256",
         | 
| 316 | 
            +
                          "name": "sumInsuredAmount",
         | 
| 317 | 
            +
                          "type": "uint256"
         | 
| 318 | 
            +
                        },
         | 
| 319 | 
            +
                        {
         | 
| 320 | 
            +
                          "internalType": "uint256",
         | 
| 321 | 
            +
                          "name": "premiumAmount",
         | 
| 322 | 
            +
                          "type": "uint256"
         | 
| 323 | 
            +
                        },
         | 
| 324 | 
            +
                        {
         | 
| 325 | 
            +
                          "internalType": "uint256",
         | 
| 326 | 
            +
                          "name": "premiumPaidAmount",
         | 
| 327 | 
            +
                          "type": "uint256"
         | 
| 328 | 
            +
                        },
         | 
| 329 | 
            +
                        {
         | 
| 330 | 
            +
                          "internalType": "Seconds",
         | 
| 331 | 
            +
                          "name": "lifetime",
         | 
| 332 | 
            +
                          "type": "uint40"
         | 
| 333 | 
            +
                        },
         | 
| 334 | 
            +
                        {
         | 
| 335 | 
            +
                          "internalType": "bytes",
         | 
| 336 | 
            +
                          "name": "applicationData",
         | 
| 337 | 
            +
                          "type": "bytes"
         | 
| 338 | 
            +
                        },
         | 
| 339 | 
            +
                        {
         | 
| 340 | 
            +
                          "internalType": "bytes",
         | 
| 341 | 
            +
                          "name": "policyData",
         | 
| 342 | 
            +
                          "type": "bytes"
         | 
| 343 | 
            +
                        },
         | 
| 344 | 
            +
                        {
         | 
| 345 | 
            +
                          "internalType": "uint16",
         | 
| 346 | 
            +
                          "name": "claimsCount",
         | 
| 347 | 
            +
                          "type": "uint16"
         | 
| 348 | 
            +
                        },
         | 
| 349 | 
            +
                        {
         | 
| 350 | 
            +
                          "internalType": "uint16",
         | 
| 351 | 
            +
                          "name": "openClaimsCount",
         | 
| 352 | 
            +
                          "type": "uint16"
         | 
| 353 | 
            +
                        },
         | 
| 354 | 
            +
                        {
         | 
| 355 | 
            +
                          "internalType": "uint256",
         | 
| 356 | 
            +
                          "name": "payoutAmount",
         | 
| 357 | 
            +
                          "type": "uint256"
         | 
| 358 | 
            +
                        },
         | 
| 359 | 
            +
                        {
         | 
| 360 | 
            +
                          "internalType": "Timestamp",
         | 
| 361 | 
            +
                          "name": "activatedAt",
         | 
| 362 | 
            +
                          "type": "uint40"
         | 
| 363 | 
            +
                        },
         | 
| 364 | 
            +
                        {
         | 
| 365 | 
            +
                          "internalType": "Timestamp",
         | 
| 366 | 
            +
                          "name": "expiredAt",
         | 
| 367 | 
            +
                          "type": "uint40"
         | 
| 368 | 
            +
                        },
         | 
| 369 | 
            +
                        {
         | 
| 370 | 
            +
                          "internalType": "Timestamp",
         | 
| 371 | 
            +
                          "name": "closedAt",
         | 
| 372 | 
            +
                          "type": "uint40"
         | 
| 373 | 
            +
                        }
         | 
| 374 | 
            +
                      ],
         | 
| 375 | 
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 376 | 
            +
                      "name": "policy",
         | 
| 377 | 
            +
                      "type": "tuple"
         | 
| 378 | 
            +
                    }
         | 
| 379 | 
            +
                  ],
         | 
| 380 | 
            +
                  "name": "createApplication",
         | 
| 381 | 
            +
                  "outputs": [],
         | 
| 382 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 383 | 
            +
                  "type": "function"
         | 
| 384 | 
            +
                },
         | 
| 306 385 | 
             
                {
         | 
| 307 386 | 
             
                  "inputs": [
         | 
| 308 387 | 
             
                    {
         | 
| @@ -355,9 +434,9 @@ | |
| 355 434 | 
             
                          "type": "uint256"
         | 
| 356 435 | 
             
                        },
         | 
| 357 436 | 
             
                        {
         | 
| 358 | 
            -
                          "internalType": " | 
| 437 | 
            +
                          "internalType": "Seconds",
         | 
| 359 438 | 
             
                          "name": "lifetime",
         | 
| 360 | 
            -
                          "type": " | 
| 439 | 
            +
                          "type": "uint40"
         | 
| 361 440 | 
             
                        },
         | 
| 362 441 | 
             
                        {
         | 
| 363 442 | 
             
                          "internalType": "Timestamp",
         | 
| @@ -413,18 +492,35 @@ | |
| 413 492 | 
             
                            }
         | 
| 414 493 | 
             
                          ],
         | 
| 415 494 | 
             
                          "internalType": "struct Fee",
         | 
| 416 | 
            -
                          "name": " | 
| 495 | 
            +
                          "name": "minDistributionOwnerFee",
         | 
| 417 496 | 
             
                          "type": "tuple"
         | 
| 418 497 | 
             
                        },
         | 
| 419 498 | 
             
                        {
         | 
| 420 | 
            -
                          " | 
| 421 | 
            -
             | 
| 422 | 
            -
             | 
| 499 | 
            +
                          "components": [
         | 
| 500 | 
            +
                            {
         | 
| 501 | 
            +
                              "internalType": "UFixed",
         | 
| 502 | 
            +
                              "name": "fractionalFee",
         | 
| 503 | 
            +
                              "type": "uint256"
         | 
| 504 | 
            +
                            },
         | 
| 505 | 
            +
                            {
         | 
| 506 | 
            +
                              "internalType": "uint256",
         | 
| 507 | 
            +
                              "name": "fixedFee",
         | 
| 508 | 
            +
                              "type": "uint256"
         | 
| 509 | 
            +
                            }
         | 
| 510 | 
            +
                          ],
         | 
| 511 | 
            +
                          "internalType": "struct Fee",
         | 
| 512 | 
            +
                          "name": "distributionFee",
         | 
| 513 | 
            +
                          "type": "tuple"
         | 
| 423 514 | 
             
                        },
         | 
| 424 515 | 
             
                        {
         | 
| 425 516 | 
             
                          "internalType": "address",
         | 
| 426 517 | 
             
                          "name": "wallet",
         | 
| 427 518 | 
             
                          "type": "address"
         | 
| 519 | 
            +
                        },
         | 
| 520 | 
            +
                        {
         | 
| 521 | 
            +
                          "internalType": "uint256",
         | 
| 522 | 
            +
                          "name": "sumDistributionOwnerFees",
         | 
| 523 | 
            +
                          "type": "uint256"
         | 
| 428 524 | 
             
                        }
         | 
| 429 525 | 
             
                      ],
         | 
| 430 526 | 
             
                      "internalType": "struct ISetup.DistributionSetupInfo",
         | 
| @@ -441,98 +537,108 @@ | |
| 441 537 | 
             
                  "inputs": [
         | 
| 442 538 | 
             
                    {
         | 
| 443 539 | 
             
                      "internalType": "NftId",
         | 
| 444 | 
            -
                      "name": " | 
| 540 | 
            +
                      "name": "nftId",
         | 
| 445 541 | 
             
                      "type": "uint96"
         | 
| 446 542 | 
             
                    },
         | 
| 447 543 | 
             
                    {
         | 
| 448 544 | 
             
                      "components": [
         | 
| 449 545 | 
             
                        {
         | 
| 450 | 
            -
                          "internalType": " | 
| 451 | 
            -
                          "name": " | 
| 452 | 
            -
                          "type": " | 
| 453 | 
            -
                        },
         | 
| 454 | 
            -
                        {
         | 
| 455 | 
            -
                          "internalType": "NftId",
         | 
| 456 | 
            -
                          "name": "bundleNftId",
         | 
| 457 | 
            -
                          "type": "uint96"
         | 
| 546 | 
            +
                          "internalType": "DistributorType",
         | 
| 547 | 
            +
                          "name": "distributorType",
         | 
| 548 | 
            +
                          "type": "bytes8"
         | 
| 458 549 | 
             
                        },
         | 
| 459 550 | 
             
                        {
         | 
| 460 | 
            -
                          "internalType": " | 
| 461 | 
            -
                          "name": " | 
| 462 | 
            -
                          "type": " | 
| 551 | 
            +
                          "internalType": "bool",
         | 
| 552 | 
            +
                          "name": "active",
         | 
| 553 | 
            +
                          "type": "bool"
         | 
| 463 554 | 
             
                        },
         | 
| 464 555 | 
             
                        {
         | 
| 465 | 
            -
                          "internalType": " | 
| 466 | 
            -
                          "name": " | 
| 467 | 
            -
                          "type": " | 
| 556 | 
            +
                          "internalType": "bytes",
         | 
| 557 | 
            +
                          "name": "data",
         | 
| 558 | 
            +
                          "type": "bytes"
         | 
| 468 559 | 
             
                        },
         | 
| 469 560 | 
             
                        {
         | 
| 470 561 | 
             
                          "internalType": "uint256",
         | 
| 471 | 
            -
                          "name": " | 
| 562 | 
            +
                          "name": "sumCommisions",
         | 
| 472 563 | 
             
                          "type": "uint256"
         | 
| 473 564 | 
             
                        },
         | 
| 474 565 | 
             
                        {
         | 
| 475 566 | 
             
                          "internalType": "uint256",
         | 
| 476 | 
            -
                          "name": " | 
| 567 | 
            +
                          "name": "numPoliciesSold",
         | 
| 477 568 | 
             
                          "type": "uint256"
         | 
| 569 | 
            +
                        }
         | 
| 570 | 
            +
                      ],
         | 
| 571 | 
            +
                      "internalType": "struct IDistribution.DistributorInfo",
         | 
| 572 | 
            +
                      "name": "info",
         | 
| 573 | 
            +
                      "type": "tuple"
         | 
| 574 | 
            +
                    }
         | 
| 575 | 
            +
                  ],
         | 
| 576 | 
            +
                  "name": "createDistributor",
         | 
| 577 | 
            +
                  "outputs": [],
         | 
| 578 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 579 | 
            +
                  "type": "function"
         | 
| 580 | 
            +
                },
         | 
| 581 | 
            +
                {
         | 
| 582 | 
            +
                  "inputs": [
         | 
| 583 | 
            +
                    {
         | 
| 584 | 
            +
                      "internalType": "Key32",
         | 
| 585 | 
            +
                      "name": "distributorKey",
         | 
| 586 | 
            +
                      "type": "bytes32"
         | 
| 587 | 
            +
                    },
         | 
| 588 | 
            +
                    {
         | 
| 589 | 
            +
                      "components": [
         | 
| 590 | 
            +
                        {
         | 
| 591 | 
            +
                          "internalType": "string",
         | 
| 592 | 
            +
                          "name": "name",
         | 
| 593 | 
            +
                          "type": "string"
         | 
| 478 594 | 
             
                        },
         | 
| 479 595 | 
             
                        {
         | 
| 480 | 
            -
                          "internalType": " | 
| 481 | 
            -
                          "name": " | 
| 596 | 
            +
                          "internalType": "UFixed",
         | 
| 597 | 
            +
                          "name": "minDiscountPercentage",
         | 
| 482 598 | 
             
                          "type": "uint256"
         | 
| 483 599 | 
             
                        },
         | 
| 484 600 | 
             
                        {
         | 
| 485 | 
            -
                          "internalType": " | 
| 486 | 
            -
                          "name": " | 
| 601 | 
            +
                          "internalType": "UFixed",
         | 
| 602 | 
            +
                          "name": "maxDiscountPercentage",
         | 
| 487 603 | 
             
                          "type": "uint256"
         | 
| 488 604 | 
             
                        },
         | 
| 489 605 | 
             
                        {
         | 
| 490 | 
            -
                          "internalType": " | 
| 491 | 
            -
                          "name": " | 
| 492 | 
            -
                          "type": " | 
| 606 | 
            +
                          "internalType": "UFixed",
         | 
| 607 | 
            +
                          "name": "commissionPercentage",
         | 
| 608 | 
            +
                          "type": "uint256"
         | 
| 493 609 | 
             
                        },
         | 
| 494 610 | 
             
                        {
         | 
| 495 | 
            -
                          "internalType": " | 
| 496 | 
            -
                          "name": " | 
| 497 | 
            -
                          "type": " | 
| 611 | 
            +
                          "internalType": "uint32",
         | 
| 612 | 
            +
                          "name": "maxReferralCount",
         | 
| 613 | 
            +
                          "type": "uint32"
         | 
| 498 614 | 
             
                        },
         | 
| 499 615 | 
             
                        {
         | 
| 500 | 
            -
                          "internalType": " | 
| 501 | 
            -
                          "name": " | 
| 502 | 
            -
                          "type": " | 
| 616 | 
            +
                          "internalType": "uint32",
         | 
| 617 | 
            +
                          "name": "maxReferralLifetime",
         | 
| 618 | 
            +
                          "type": "uint32"
         | 
| 503 619 | 
             
                        },
         | 
| 504 620 | 
             
                        {
         | 
| 505 | 
            -
                          "internalType": " | 
| 506 | 
            -
                          "name": " | 
| 507 | 
            -
                          "type": " | 
| 621 | 
            +
                          "internalType": "bool",
         | 
| 622 | 
            +
                          "name": "allowSelfReferrals",
         | 
| 623 | 
            +
                          "type": "bool"
         | 
| 508 624 | 
             
                        },
         | 
| 509 625 | 
             
                        {
         | 
| 510 | 
            -
                          "internalType": " | 
| 511 | 
            -
                          "name": " | 
| 512 | 
            -
                          "type": " | 
| 626 | 
            +
                          "internalType": "bool",
         | 
| 627 | 
            +
                          "name": "allowRenewals",
         | 
| 628 | 
            +
                          "type": "bool"
         | 
| 513 629 | 
             
                        },
         | 
| 514 630 | 
             
                        {
         | 
| 515 | 
            -
                          "internalType": " | 
| 516 | 
            -
                          "name": " | 
| 517 | 
            -
                          "type": " | 
| 518 | 
            -
                        },
         | 
| 519 | 
            -
                        {
         | 
| 520 | 
            -
                          "internalType": "Timestamp",
         | 
| 521 | 
            -
                          "name": "expiredAt",
         | 
| 522 | 
            -
                          "type": "uint40"
         | 
| 523 | 
            -
                        },
         | 
| 524 | 
            -
                        {
         | 
| 525 | 
            -
                          "internalType": "Timestamp",
         | 
| 526 | 
            -
                          "name": "closedAt",
         | 
| 527 | 
            -
                          "type": "uint40"
         | 
| 631 | 
            +
                          "internalType": "bytes",
         | 
| 632 | 
            +
                          "name": "data",
         | 
| 633 | 
            +
                          "type": "bytes"
         | 
| 528 634 | 
             
                        }
         | 
| 529 635 | 
             
                      ],
         | 
| 530 | 
            -
                      "internalType": "struct  | 
| 531 | 
            -
                      "name": " | 
| 636 | 
            +
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         | 
| 637 | 
            +
                      "name": "info",
         | 
| 532 638 | 
             
                      "type": "tuple"
         | 
| 533 639 | 
             
                    }
         | 
| 534 640 | 
             
                  ],
         | 
| 535 | 
            -
                  "name": " | 
| 641 | 
            +
                  "name": "createDistributorType",
         | 
| 536 642 | 
             
                  "outputs": [],
         | 
| 537 643 | 
             
                  "stateMutability": "nonpayable",
         | 
| 538 644 | 
             
                  "type": "function"
         | 
| @@ -547,89 +653,33 @@ | |
| 547 653 | 
             
                    {
         | 
| 548 654 | 
             
                      "components": [
         | 
| 549 655 | 
             
                        {
         | 
| 550 | 
            -
                          "internalType": " | 
| 551 | 
            -
                          "name": " | 
| 552 | 
            -
                          "type": " | 
| 656 | 
            +
                          "internalType": "string",
         | 
| 657 | 
            +
                          "name": "name",
         | 
| 658 | 
            +
                          "type": "string"
         | 
| 553 659 | 
             
                        },
         | 
| 554 660 | 
             
                        {
         | 
| 555 | 
            -
                          "internalType": "contract  | 
| 556 | 
            -
                          "name": " | 
| 661 | 
            +
                          "internalType": "contract IERC20Metadata",
         | 
| 662 | 
            +
                          "name": "token",
         | 
| 557 663 | 
             
                          "type": "address"
         | 
| 558 664 | 
             
                        },
         | 
| 559 665 | 
             
                        {
         | 
| 560 | 
            -
                          "internalType": " | 
| 561 | 
            -
                          "name": " | 
| 562 | 
            -
                          "type": " | 
| 563 | 
            -
                        },
         | 
| 564 | 
            -
                        {
         | 
| 565 | 
            -
                          "components": [
         | 
| 566 | 
            -
                            {
         | 
| 567 | 
            -
                              "internalType": "UFixed",
         | 
| 568 | 
            -
                              "name": "fractionalFee",
         | 
| 569 | 
            -
                              "type": "uint256"
         | 
| 570 | 
            -
                            },
         | 
| 571 | 
            -
                            {
         | 
| 572 | 
            -
                              "internalType": "uint256",
         | 
| 573 | 
            -
                              "name": "fixedFee",
         | 
| 574 | 
            -
                              "type": "uint256"
         | 
| 575 | 
            -
                            }
         | 
| 576 | 
            -
                          ],
         | 
| 577 | 
            -
                          "internalType": "struct Fee",
         | 
| 578 | 
            -
                          "name": "poolFee",
         | 
| 579 | 
            -
                          "type": "tuple"
         | 
| 580 | 
            -
                        },
         | 
| 581 | 
            -
                        {
         | 
| 582 | 
            -
                          "components": [
         | 
| 583 | 
            -
                            {
         | 
| 584 | 
            -
                              "internalType": "UFixed",
         | 
| 585 | 
            -
                              "name": "fractionalFee",
         | 
| 586 | 
            -
                              "type": "uint256"
         | 
| 587 | 
            -
                            },
         | 
| 588 | 
            -
                            {
         | 
| 589 | 
            -
                              "internalType": "uint256",
         | 
| 590 | 
            -
                              "name": "fixedFee",
         | 
| 591 | 
            -
                              "type": "uint256"
         | 
| 592 | 
            -
                            }
         | 
| 593 | 
            -
                          ],
         | 
| 594 | 
            -
                          "internalType": "struct Fee",
         | 
| 595 | 
            -
                          "name": "stakingFee",
         | 
| 596 | 
            -
                          "type": "tuple"
         | 
| 597 | 
            -
                        },
         | 
| 598 | 
            -
                        {
         | 
| 599 | 
            -
                          "components": [
         | 
| 600 | 
            -
                            {
         | 
| 601 | 
            -
                              "internalType": "UFixed",
         | 
| 602 | 
            -
                              "name": "fractionalFee",
         | 
| 603 | 
            -
                              "type": "uint256"
         | 
| 604 | 
            -
                            },
         | 
| 605 | 
            -
                            {
         | 
| 606 | 
            -
                              "internalType": "uint256",
         | 
| 607 | 
            -
                              "name": "fixedFee",
         | 
| 608 | 
            -
                              "type": "uint256"
         | 
| 609 | 
            -
                            }
         | 
| 610 | 
            -
                          ],
         | 
| 611 | 
            -
                          "internalType": "struct Fee",
         | 
| 612 | 
            -
                          "name": "performanceFee",
         | 
| 613 | 
            -
                          "type": "tuple"
         | 
| 614 | 
            -
                        },
         | 
| 615 | 
            -
                        {
         | 
| 616 | 
            -
                          "internalType": "bool",
         | 
| 617 | 
            -
                          "name": "isIntercepting",
         | 
| 618 | 
            -
                          "type": "bool"
         | 
| 619 | 
            -
                        },
         | 
| 620 | 
            -
                        {
         | 
| 621 | 
            -
                          "internalType": "bool",
         | 
| 622 | 
            -
                          "name": "isConfirmingApplication",
         | 
| 623 | 
            -
                          "type": "bool"
         | 
| 666 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 667 | 
            +
                          "name": "tokenHandler",
         | 
| 668 | 
            +
                          "type": "address"
         | 
| 624 669 | 
             
                        },
         | 
| 625 670 | 
             
                        {
         | 
| 626 671 | 
             
                          "internalType": "address",
         | 
| 627 672 | 
             
                          "name": "wallet",
         | 
| 628 673 | 
             
                          "type": "address"
         | 
| 674 | 
            +
                        },
         | 
| 675 | 
            +
                        {
         | 
| 676 | 
            +
                          "internalType": "bytes",
         | 
| 677 | 
            +
                          "name": "data",
         | 
| 678 | 
            +
                          "type": "bytes"
         | 
| 629 679 | 
             
                        }
         | 
| 630 680 | 
             
                      ],
         | 
| 631 | 
            -
                      "internalType": "struct  | 
| 632 | 
            -
                      "name": " | 
| 681 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 682 | 
            +
                      "name": "info",
         | 
| 633 683 | 
             
                      "type": "tuple"
         | 
| 634 684 | 
             
                    }
         | 
| 635 685 | 
             
                  ],
         | 
| @@ -667,23 +717,6 @@ | |
| 667 717 | 
             
                          "name": "poolNftId",
         | 
| 668 718 | 
             
                          "type": "uint96"
         | 
| 669 719 | 
             
                        },
         | 
| 670 | 
            -
                        {
         | 
| 671 | 
            -
                          "components": [
         | 
| 672 | 
            -
                            {
         | 
| 673 | 
            -
                              "internalType": "UFixed",
         | 
| 674 | 
            -
                              "name": "fractionalFee",
         | 
| 675 | 
            -
                              "type": "uint256"
         | 
| 676 | 
            -
                            },
         | 
| 677 | 
            -
                            {
         | 
| 678 | 
            -
                              "internalType": "uint256",
         | 
| 679 | 
            -
                              "name": "fixedFee",
         | 
| 680 | 
            -
                              "type": "uint256"
         | 
| 681 | 
            -
                            }
         | 
| 682 | 
            -
                          ],
         | 
| 683 | 
            -
                          "internalType": "struct Fee",
         | 
| 684 | 
            -
                          "name": "distributionFee",
         | 
| 685 | 
            -
                          "type": "tuple"
         | 
| 686 | 
            -
                        },
         | 
| 687 720 | 
             
                        {
         | 
| 688 721 | 
             
                          "components": [
         | 
| 689 722 | 
             
                            {
         | 
| @@ -718,57 +751,6 @@ | |
| 718 751 | 
             
                          "name": "processingFee",
         | 
| 719 752 | 
             
                          "type": "tuple"
         | 
| 720 753 | 
             
                        },
         | 
| 721 | 
            -
                        {
         | 
| 722 | 
            -
                          "components": [
         | 
| 723 | 
            -
                            {
         | 
| 724 | 
            -
                              "internalType": "UFixed",
         | 
| 725 | 
            -
                              "name": "fractionalFee",
         | 
| 726 | 
            -
                              "type": "uint256"
         | 
| 727 | 
            -
                            },
         | 
| 728 | 
            -
                            {
         | 
| 729 | 
            -
                              "internalType": "uint256",
         | 
| 730 | 
            -
                              "name": "fixedFee",
         | 
| 731 | 
            -
                              "type": "uint256"
         | 
| 732 | 
            -
                            }
         | 
| 733 | 
            -
                          ],
         | 
| 734 | 
            -
                          "internalType": "struct Fee",
         | 
| 735 | 
            -
                          "name": "poolFee",
         | 
| 736 | 
            -
                          "type": "tuple"
         | 
| 737 | 
            -
                        },
         | 
| 738 | 
            -
                        {
         | 
| 739 | 
            -
                          "components": [
         | 
| 740 | 
            -
                            {
         | 
| 741 | 
            -
                              "internalType": "UFixed",
         | 
| 742 | 
            -
                              "name": "fractionalFee",
         | 
| 743 | 
            -
                              "type": "uint256"
         | 
| 744 | 
            -
                            },
         | 
| 745 | 
            -
                            {
         | 
| 746 | 
            -
                              "internalType": "uint256",
         | 
| 747 | 
            -
                              "name": "fixedFee",
         | 
| 748 | 
            -
                              "type": "uint256"
         | 
| 749 | 
            -
                            }
         | 
| 750 | 
            -
                          ],
         | 
| 751 | 
            -
                          "internalType": "struct Fee",
         | 
| 752 | 
            -
                          "name": "stakingFee",
         | 
| 753 | 
            -
                          "type": "tuple"
         | 
| 754 | 
            -
                        },
         | 
| 755 | 
            -
                        {
         | 
| 756 | 
            -
                          "components": [
         | 
| 757 | 
            -
                            {
         | 
| 758 | 
            -
                              "internalType": "UFixed",
         | 
| 759 | 
            -
                              "name": "fractionalFee",
         | 
| 760 | 
            -
                              "type": "uint256"
         | 
| 761 | 
            -
                            },
         | 
| 762 | 
            -
                            {
         | 
| 763 | 
            -
                              "internalType": "uint256",
         | 
| 764 | 
            -
                              "name": "fixedFee",
         | 
| 765 | 
            -
                              "type": "uint256"
         | 
| 766 | 
            -
                            }
         | 
| 767 | 
            -
                          ],
         | 
| 768 | 
            -
                          "internalType": "struct Fee",
         | 
| 769 | 
            -
                          "name": "performanceFee",
         | 
| 770 | 
            -
                          "type": "tuple"
         | 
| 771 | 
            -
                        },
         | 
| 772 754 | 
             
                        {
         | 
| 773 755 | 
             
                          "internalType": "bool",
         | 
| 774 756 | 
             
                          "name": "isIntercepting",
         | 
| @@ -790,6 +772,61 @@ | |
| 790 772 | 
             
                  "stateMutability": "nonpayable",
         | 
| 791 773 | 
             
                  "type": "function"
         | 
| 792 774 | 
             
                },
         | 
| 775 | 
            +
                {
         | 
| 776 | 
            +
                  "inputs": [
         | 
| 777 | 
            +
                    {
         | 
| 778 | 
            +
                      "internalType": "Key32",
         | 
| 779 | 
            +
                      "name": "referralKey",
         | 
| 780 | 
            +
                      "type": "bytes32"
         | 
| 781 | 
            +
                    },
         | 
| 782 | 
            +
                    {
         | 
| 783 | 
            +
                      "components": [
         | 
| 784 | 
            +
                        {
         | 
| 785 | 
            +
                          "internalType": "NftId",
         | 
| 786 | 
            +
                          "name": "distributorNftId",
         | 
| 787 | 
            +
                          "type": "uint96"
         | 
| 788 | 
            +
                        },
         | 
| 789 | 
            +
                        {
         | 
| 790 | 
            +
                          "internalType": "string",
         | 
| 791 | 
            +
                          "name": "referralCode",
         | 
| 792 | 
            +
                          "type": "string"
         | 
| 793 | 
            +
                        },
         | 
| 794 | 
            +
                        {
         | 
| 795 | 
            +
                          "internalType": "UFixed",
         | 
| 796 | 
            +
                          "name": "discountPercentage",
         | 
| 797 | 
            +
                          "type": "uint256"
         | 
| 798 | 
            +
                        },
         | 
| 799 | 
            +
                        {
         | 
| 800 | 
            +
                          "internalType": "uint32",
         | 
| 801 | 
            +
                          "name": "maxReferrals",
         | 
| 802 | 
            +
                          "type": "uint32"
         | 
| 803 | 
            +
                        },
         | 
| 804 | 
            +
                        {
         | 
| 805 | 
            +
                          "internalType": "uint32",
         | 
| 806 | 
            +
                          "name": "usedReferrals",
         | 
| 807 | 
            +
                          "type": "uint32"
         | 
| 808 | 
            +
                        },
         | 
| 809 | 
            +
                        {
         | 
| 810 | 
            +
                          "internalType": "Timestamp",
         | 
| 811 | 
            +
                          "name": "expiryAt",
         | 
| 812 | 
            +
                          "type": "uint40"
         | 
| 813 | 
            +
                        },
         | 
| 814 | 
            +
                        {
         | 
| 815 | 
            +
                          "internalType": "bytes",
         | 
| 816 | 
            +
                          "name": "data",
         | 
| 817 | 
            +
                          "type": "bytes"
         | 
| 818 | 
            +
                        }
         | 
| 819 | 
            +
                      ],
         | 
| 820 | 
            +
                      "internalType": "struct IDistribution.ReferralInfo",
         | 
| 821 | 
            +
                      "name": "referralInfo",
         | 
| 822 | 
            +
                      "type": "tuple"
         | 
| 823 | 
            +
                    }
         | 
| 824 | 
            +
                  ],
         | 
| 825 | 
            +
                  "name": "createReferral",
         | 
| 826 | 
            +
                  "outputs": [],
         | 
| 827 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 828 | 
            +
                  "type": "function"
         | 
| 829 | 
            +
                },
         | 
| 793 830 | 
             
                {
         | 
| 794 831 | 
             
                  "inputs": [
         | 
| 795 832 | 
             
                    {
         | 
| @@ -1024,6 +1061,19 @@ | |
| 1024 1061 | 
             
                  "stateMutability": "view",
         | 
| 1025 1062 | 
             
                  "type": "function"
         | 
| 1026 1063 | 
             
                },
         | 
| 1064 | 
            +
                {
         | 
| 1065 | 
            +
                  "inputs": [],
         | 
| 1066 | 
            +
                  "name": "getInstanceAccessManager",
         | 
| 1067 | 
            +
                  "outputs": [
         | 
| 1068 | 
            +
                    {
         | 
| 1069 | 
            +
                      "internalType": "contract InstanceAccessManager",
         | 
| 1070 | 
            +
                      "name": "",
         | 
| 1071 | 
            +
                      "type": "address"
         | 
| 1072 | 
            +
                    }
         | 
| 1073 | 
            +
                  ],
         | 
| 1074 | 
            +
                  "stateMutability": "view",
         | 
| 1075 | 
            +
                  "type": "function"
         | 
| 1076 | 
            +
                },
         | 
| 1027 1077 | 
             
                {
         | 
| 1028 1078 | 
             
                  "inputs": [],
         | 
| 1029 1079 | 
             
                  "name": "getInstanceReader",
         | 
| @@ -1174,6 +1224,19 @@ | |
| 1174 1224 | 
             
                  "stateMutability": "view",
         | 
| 1175 1225 | 
             
                  "type": "function"
         | 
| 1176 1226 | 
             
                },
         | 
| 1227 | 
            +
                {
         | 
| 1228 | 
            +
                  "inputs": [],
         | 
| 1229 | 
            +
                  "name": "getRegistryAddress",
         | 
| 1230 | 
            +
                  "outputs": [
         | 
| 1231 | 
            +
                    {
         | 
| 1232 | 
            +
                      "internalType": "address",
         | 
| 1233 | 
            +
                      "name": "",
         | 
| 1234 | 
            +
                      "type": "address"
         | 
| 1235 | 
            +
                    }
         | 
| 1236 | 
            +
                  ],
         | 
| 1237 | 
            +
                  "stateMutability": "view",
         | 
| 1238 | 
            +
                  "type": "function"
         | 
| 1239 | 
            +
                },
         | 
| 1177 1240 | 
             
                {
         | 
| 1178 1241 | 
             
                  "inputs": [
         | 
| 1179 1242 | 
             
                    {
         | 
| @@ -1265,11 +1328,16 @@ | |
| 1265 1328 | 
             
                  "inputs": [
         | 
| 1266 1329 | 
             
                    {
         | 
| 1267 1330 | 
             
                      "internalType": "address",
         | 
| 1268 | 
            -
                      "name": "",
         | 
| 1331 | 
            +
                      "name": "to",
         | 
| 1269 1332 | 
             
                      "type": "address"
         | 
| 1333 | 
            +
                    },
         | 
| 1334 | 
            +
                    {
         | 
| 1335 | 
            +
                      "internalType": "uint256",
         | 
| 1336 | 
            +
                      "name": "tokenId",
         | 
| 1337 | 
            +
                      "type": "uint256"
         | 
| 1270 1338 | 
             
                    }
         | 
| 1271 1339 | 
             
                  ],
         | 
| 1272 | 
            -
                  "name": " | 
| 1340 | 
            +
                  "name": "nftMint",
         | 
| 1273 1341 | 
             
                  "outputs": [],
         | 
| 1274 1342 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1275 1343 | 
             
                  "type": "function"
         | 
| @@ -1277,31 +1345,80 @@ | |
| 1277 1345 | 
             
                {
         | 
| 1278 1346 | 
             
                  "inputs": [
         | 
| 1279 1347 | 
             
                    {
         | 
| 1280 | 
            -
                      "internalType": " | 
| 1281 | 
            -
                      "name": " | 
| 1282 | 
            -
                      "type": " | 
| 1348 | 
            +
                      "internalType": "address",
         | 
| 1349 | 
            +
                      "name": "from",
         | 
| 1350 | 
            +
                      "type": "address"
         | 
| 1351 | 
            +
                    },
         | 
| 1352 | 
            +
                    {
         | 
| 1353 | 
            +
                      "internalType": "address",
         | 
| 1354 | 
            +
                      "name": "to",
         | 
| 1355 | 
            +
                      "type": "address"
         | 
| 1356 | 
            +
                    },
         | 
| 1357 | 
            +
                    {
         | 
| 1358 | 
            +
                      "internalType": "uint256",
         | 
| 1359 | 
            +
                      "name": "tokenId",
         | 
| 1360 | 
            +
                      "type": "uint256"
         | 
| 1283 1361 | 
             
                    }
         | 
| 1284 1362 | 
             
                  ],
         | 
| 1285 | 
            -
                  "name": " | 
| 1286 | 
            -
                  "outputs": [
         | 
| 1363 | 
            +
                  "name": "nftTransferFrom",
         | 
| 1364 | 
            +
                  "outputs": [],
         | 
| 1365 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1366 | 
            +
                  "type": "function"
         | 
| 1367 | 
            +
                },
         | 
| 1368 | 
            +
                {
         | 
| 1369 | 
            +
                  "inputs": [
         | 
| 1287 1370 | 
             
                    {
         | 
| 1288 | 
            -
                      "internalType": " | 
| 1371 | 
            +
                      "internalType": "address",
         | 
| 1289 1372 | 
             
                      "name": "",
         | 
| 1290 | 
            -
                      "type": " | 
| 1373 | 
            +
                      "type": "address"
         | 
| 1291 1374 | 
             
                    }
         | 
| 1292 1375 | 
             
                  ],
         | 
| 1293 | 
            -
                  " | 
| 1376 | 
            +
                  "name": "setAuthority",
         | 
| 1377 | 
            +
                  "outputs": [],
         | 
| 1378 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1294 1379 | 
             
                  "type": "function"
         | 
| 1295 1380 | 
             
                },
         | 
| 1296 1381 | 
             
                {
         | 
| 1297 1382 | 
             
                  "inputs": [
         | 
| 1298 1383 | 
             
                    {
         | 
| 1299 | 
            -
                      "internalType": " | 
| 1300 | 
            -
                      "name": " | 
| 1301 | 
            -
                      "type": " | 
| 1302 | 
            -
                    } | 
| 1303 | 
            -
             | 
| 1304 | 
            -
             | 
| 1384 | 
            +
                      "internalType": "contract InstanceAccessManager",
         | 
| 1385 | 
            +
                      "name": "accessManager",
         | 
| 1386 | 
            +
                      "type": "address"
         | 
| 1387 | 
            +
                    }
         | 
| 1388 | 
            +
                  ],
         | 
| 1389 | 
            +
                  "name": "setInstanceAccessManager",
         | 
| 1390 | 
            +
                  "outputs": [],
         | 
| 1391 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1392 | 
            +
                  "type": "function"
         | 
| 1393 | 
            +
                },
         | 
| 1394 | 
            +
                {
         | 
| 1395 | 
            +
                  "inputs": [
         | 
| 1396 | 
            +
                    {
         | 
| 1397 | 
            +
                      "internalType": "bytes4",
         | 
| 1398 | 
            +
                      "name": "interfaceId",
         | 
| 1399 | 
            +
                      "type": "bytes4"
         | 
| 1400 | 
            +
                    }
         | 
| 1401 | 
            +
                  ],
         | 
| 1402 | 
            +
                  "name": "supportsInterface",
         | 
| 1403 | 
            +
                  "outputs": [
         | 
| 1404 | 
            +
                    {
         | 
| 1405 | 
            +
                      "internalType": "bool",
         | 
| 1406 | 
            +
                      "name": "",
         | 
| 1407 | 
            +
                      "type": "bool"
         | 
| 1408 | 
            +
                    }
         | 
| 1409 | 
            +
                  ],
         | 
| 1410 | 
            +
                  "stateMutability": "view",
         | 
| 1411 | 
            +
                  "type": "function"
         | 
| 1412 | 
            +
                },
         | 
| 1413 | 
            +
                {
         | 
| 1414 | 
            +
                  "inputs": [
         | 
| 1415 | 
            +
                    {
         | 
| 1416 | 
            +
                      "internalType": "ObjectType",
         | 
| 1417 | 
            +
                      "name": "objectType",
         | 
| 1418 | 
            +
                      "type": "uint8"
         | 
| 1419 | 
            +
                    },
         | 
| 1420 | 
            +
                    {
         | 
| 1421 | 
            +
                      "internalType": "KeyId",
         | 
| 1305 1422 | 
             
                      "name": "id",
         | 
| 1306 1423 | 
             
                      "type": "bytes31"
         | 
| 1307 1424 | 
             
                    }
         | 
| @@ -1317,6 +1434,129 @@ | |
| 1317 1434 | 
             
                  "stateMutability": "pure",
         | 
| 1318 1435 | 
             
                  "type": "function"
         | 
| 1319 1436 | 
             
                },
         | 
| 1437 | 
            +
                {
         | 
| 1438 | 
            +
                  "inputs": [
         | 
| 1439 | 
            +
                    {
         | 
| 1440 | 
            +
                      "internalType": "NftId",
         | 
| 1441 | 
            +
                      "name": "applicationNftId",
         | 
| 1442 | 
            +
                      "type": "uint96"
         | 
| 1443 | 
            +
                    },
         | 
| 1444 | 
            +
                    {
         | 
| 1445 | 
            +
                      "components": [
         | 
| 1446 | 
            +
                        {
         | 
| 1447 | 
            +
                          "internalType": "NftId",
         | 
| 1448 | 
            +
                          "name": "productNftId",
         | 
| 1449 | 
            +
                          "type": "uint96"
         | 
| 1450 | 
            +
                        },
         | 
| 1451 | 
            +
                        {
         | 
| 1452 | 
            +
                          "internalType": "NftId",
         | 
| 1453 | 
            +
                          "name": "bundleNftId",
         | 
| 1454 | 
            +
                          "type": "uint96"
         | 
| 1455 | 
            +
                        },
         | 
| 1456 | 
            +
                        {
         | 
| 1457 | 
            +
                          "internalType": "ReferralId",
         | 
| 1458 | 
            +
                          "name": "referralId",
         | 
| 1459 | 
            +
                          "type": "bytes8"
         | 
| 1460 | 
            +
                        },
         | 
| 1461 | 
            +
                        {
         | 
| 1462 | 
            +
                          "internalType": "RiskId",
         | 
| 1463 | 
            +
                          "name": "riskId",
         | 
| 1464 | 
            +
                          "type": "bytes8"
         | 
| 1465 | 
            +
                        },
         | 
| 1466 | 
            +
                        {
         | 
| 1467 | 
            +
                          "internalType": "uint256",
         | 
| 1468 | 
            +
                          "name": "sumInsuredAmount",
         | 
| 1469 | 
            +
                          "type": "uint256"
         | 
| 1470 | 
            +
                        },
         | 
| 1471 | 
            +
                        {
         | 
| 1472 | 
            +
                          "internalType": "uint256",
         | 
| 1473 | 
            +
                          "name": "premiumAmount",
         | 
| 1474 | 
            +
                          "type": "uint256"
         | 
| 1475 | 
            +
                        },
         | 
| 1476 | 
            +
                        {
         | 
| 1477 | 
            +
                          "internalType": "uint256",
         | 
| 1478 | 
            +
                          "name": "premiumPaidAmount",
         | 
| 1479 | 
            +
                          "type": "uint256"
         | 
| 1480 | 
            +
                        },
         | 
| 1481 | 
            +
                        {
         | 
| 1482 | 
            +
                          "internalType": "Seconds",
         | 
| 1483 | 
            +
                          "name": "lifetime",
         | 
| 1484 | 
            +
                          "type": "uint40"
         | 
| 1485 | 
            +
                        },
         | 
| 1486 | 
            +
                        {
         | 
| 1487 | 
            +
                          "internalType": "bytes",
         | 
| 1488 | 
            +
                          "name": "applicationData",
         | 
| 1489 | 
            +
                          "type": "bytes"
         | 
| 1490 | 
            +
                        },
         | 
| 1491 | 
            +
                        {
         | 
| 1492 | 
            +
                          "internalType": "bytes",
         | 
| 1493 | 
            +
                          "name": "policyData",
         | 
| 1494 | 
            +
                          "type": "bytes"
         | 
| 1495 | 
            +
                        },
         | 
| 1496 | 
            +
                        {
         | 
| 1497 | 
            +
                          "internalType": "uint16",
         | 
| 1498 | 
            +
                          "name": "claimsCount",
         | 
| 1499 | 
            +
                          "type": "uint16"
         | 
| 1500 | 
            +
                        },
         | 
| 1501 | 
            +
                        {
         | 
| 1502 | 
            +
                          "internalType": "uint16",
         | 
| 1503 | 
            +
                          "name": "openClaimsCount",
         | 
| 1504 | 
            +
                          "type": "uint16"
         | 
| 1505 | 
            +
                        },
         | 
| 1506 | 
            +
                        {
         | 
| 1507 | 
            +
                          "internalType": "uint256",
         | 
| 1508 | 
            +
                          "name": "payoutAmount",
         | 
| 1509 | 
            +
                          "type": "uint256"
         | 
| 1510 | 
            +
                        },
         | 
| 1511 | 
            +
                        {
         | 
| 1512 | 
            +
                          "internalType": "Timestamp",
         | 
| 1513 | 
            +
                          "name": "activatedAt",
         | 
| 1514 | 
            +
                          "type": "uint40"
         | 
| 1515 | 
            +
                        },
         | 
| 1516 | 
            +
                        {
         | 
| 1517 | 
            +
                          "internalType": "Timestamp",
         | 
| 1518 | 
            +
                          "name": "expiredAt",
         | 
| 1519 | 
            +
                          "type": "uint40"
         | 
| 1520 | 
            +
                        },
         | 
| 1521 | 
            +
                        {
         | 
| 1522 | 
            +
                          "internalType": "Timestamp",
         | 
| 1523 | 
            +
                          "name": "closedAt",
         | 
| 1524 | 
            +
                          "type": "uint40"
         | 
| 1525 | 
            +
                        }
         | 
| 1526 | 
            +
                      ],
         | 
| 1527 | 
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 1528 | 
            +
                      "name": "policy",
         | 
| 1529 | 
            +
                      "type": "tuple"
         | 
| 1530 | 
            +
                    },
         | 
| 1531 | 
            +
                    {
         | 
| 1532 | 
            +
                      "internalType": "StateId",
         | 
| 1533 | 
            +
                      "name": "newState",
         | 
| 1534 | 
            +
                      "type": "uint8"
         | 
| 1535 | 
            +
                    }
         | 
| 1536 | 
            +
                  ],
         | 
| 1537 | 
            +
                  "name": "updateApplication",
         | 
| 1538 | 
            +
                  "outputs": [],
         | 
| 1539 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1540 | 
            +
                  "type": "function"
         | 
| 1541 | 
            +
                },
         | 
| 1542 | 
            +
                {
         | 
| 1543 | 
            +
                  "inputs": [
         | 
| 1544 | 
            +
                    {
         | 
| 1545 | 
            +
                      "internalType": "NftId",
         | 
| 1546 | 
            +
                      "name": "applicationNftId",
         | 
| 1547 | 
            +
                      "type": "uint96"
         | 
| 1548 | 
            +
                    },
         | 
| 1549 | 
            +
                    {
         | 
| 1550 | 
            +
                      "internalType": "StateId",
         | 
| 1551 | 
            +
                      "name": "newState",
         | 
| 1552 | 
            +
                      "type": "uint8"
         | 
| 1553 | 
            +
                    }
         | 
| 1554 | 
            +
                  ],
         | 
| 1555 | 
            +
                  "name": "updateApplicationState",
         | 
| 1556 | 
            +
                  "outputs": [],
         | 
| 1557 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1558 | 
            +
                  "type": "function"
         | 
| 1559 | 
            +
                },
         | 
| 1320 1560 | 
             
                {
         | 
| 1321 1561 | 
             
                  "inputs": [
         | 
| 1322 1562 | 
             
                    {
         | 
| @@ -1369,9 +1609,9 @@ | |
| 1369 1609 | 
             
                          "type": "uint256"
         | 
| 1370 1610 | 
             
                        },
         | 
| 1371 1611 | 
             
                        {
         | 
| 1372 | 
            -
                          "internalType": " | 
| 1612 | 
            +
                          "internalType": "Seconds",
         | 
| 1373 1613 | 
             
                          "name": "lifetime",
         | 
| 1374 | 
            -
                          "type": " | 
| 1614 | 
            +
                          "type": "uint40"
         | 
| 1375 1615 | 
             
                        },
         | 
| 1376 1616 | 
             
                        {
         | 
| 1377 1617 | 
             
                          "internalType": "Timestamp",
         | 
| @@ -1427,45 +1667,218 @@ | |
| 1427 1667 | 
             
                    {
         | 
| 1428 1668 | 
             
                      "components": [
         | 
| 1429 1669 | 
             
                        {
         | 
| 1430 | 
            -
                          "internalType": "NftId",
         | 
| 1431 | 
            -
                          "name": "productNftId",
         | 
| 1432 | 
            -
                          "type": "uint96"
         | 
| 1670 | 
            +
                          "internalType": "NftId",
         | 
| 1671 | 
            +
                          "name": "productNftId",
         | 
| 1672 | 
            +
                          "type": "uint96"
         | 
| 1673 | 
            +
                        },
         | 
| 1674 | 
            +
                        {
         | 
| 1675 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 1676 | 
            +
                          "name": "tokenHandler",
         | 
| 1677 | 
            +
                          "type": "address"
         | 
| 1678 | 
            +
                        },
         | 
| 1679 | 
            +
                        {
         | 
| 1680 | 
            +
                          "components": [
         | 
| 1681 | 
            +
                            {
         | 
| 1682 | 
            +
                              "internalType": "UFixed",
         | 
| 1683 | 
            +
                              "name": "fractionalFee",
         | 
| 1684 | 
            +
                              "type": "uint256"
         | 
| 1685 | 
            +
                            },
         | 
| 1686 | 
            +
                            {
         | 
| 1687 | 
            +
                              "internalType": "uint256",
         | 
| 1688 | 
            +
                              "name": "fixedFee",
         | 
| 1689 | 
            +
                              "type": "uint256"
         | 
| 1690 | 
            +
                            }
         | 
| 1691 | 
            +
                          ],
         | 
| 1692 | 
            +
                          "internalType": "struct Fee",
         | 
| 1693 | 
            +
                          "name": "minDistributionOwnerFee",
         | 
| 1694 | 
            +
                          "type": "tuple"
         | 
| 1695 | 
            +
                        },
         | 
| 1696 | 
            +
                        {
         | 
| 1697 | 
            +
                          "components": [
         | 
| 1698 | 
            +
                            {
         | 
| 1699 | 
            +
                              "internalType": "UFixed",
         | 
| 1700 | 
            +
                              "name": "fractionalFee",
         | 
| 1701 | 
            +
                              "type": "uint256"
         | 
| 1702 | 
            +
                            },
         | 
| 1703 | 
            +
                            {
         | 
| 1704 | 
            +
                              "internalType": "uint256",
         | 
| 1705 | 
            +
                              "name": "fixedFee",
         | 
| 1706 | 
            +
                              "type": "uint256"
         | 
| 1707 | 
            +
                            }
         | 
| 1708 | 
            +
                          ],
         | 
| 1709 | 
            +
                          "internalType": "struct Fee",
         | 
| 1710 | 
            +
                          "name": "distributionFee",
         | 
| 1711 | 
            +
                          "type": "tuple"
         | 
| 1712 | 
            +
                        },
         | 
| 1713 | 
            +
                        {
         | 
| 1714 | 
            +
                          "internalType": "address",
         | 
| 1715 | 
            +
                          "name": "wallet",
         | 
| 1716 | 
            +
                          "type": "address"
         | 
| 1717 | 
            +
                        },
         | 
| 1718 | 
            +
                        {
         | 
| 1719 | 
            +
                          "internalType": "uint256",
         | 
| 1720 | 
            +
                          "name": "sumDistributionOwnerFees",
         | 
| 1721 | 
            +
                          "type": "uint256"
         | 
| 1722 | 
            +
                        }
         | 
| 1723 | 
            +
                      ],
         | 
| 1724 | 
            +
                      "internalType": "struct ISetup.DistributionSetupInfo",
         | 
| 1725 | 
            +
                      "name": "setup",
         | 
| 1726 | 
            +
                      "type": "tuple"
         | 
| 1727 | 
            +
                    },
         | 
| 1728 | 
            +
                    {
         | 
| 1729 | 
            +
                      "internalType": "StateId",
         | 
| 1730 | 
            +
                      "name": "newState",
         | 
| 1731 | 
            +
                      "type": "uint8"
         | 
| 1732 | 
            +
                    }
         | 
| 1733 | 
            +
                  ],
         | 
| 1734 | 
            +
                  "name": "updateDistributionSetup",
         | 
| 1735 | 
            +
                  "outputs": [],
         | 
| 1736 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1737 | 
            +
                  "type": "function"
         | 
| 1738 | 
            +
                },
         | 
| 1739 | 
            +
                {
         | 
| 1740 | 
            +
                  "inputs": [
         | 
| 1741 | 
            +
                    {
         | 
| 1742 | 
            +
                      "internalType": "NftId",
         | 
| 1743 | 
            +
                      "name": "distributionNftId",
         | 
| 1744 | 
            +
                      "type": "uint96"
         | 
| 1745 | 
            +
                    },
         | 
| 1746 | 
            +
                    {
         | 
| 1747 | 
            +
                      "internalType": "StateId",
         | 
| 1748 | 
            +
                      "name": "newState",
         | 
| 1749 | 
            +
                      "type": "uint8"
         | 
| 1750 | 
            +
                    }
         | 
| 1751 | 
            +
                  ],
         | 
| 1752 | 
            +
                  "name": "updateDistributionSetupState",
         | 
| 1753 | 
            +
                  "outputs": [],
         | 
| 1754 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1755 | 
            +
                  "type": "function"
         | 
| 1756 | 
            +
                },
         | 
| 1757 | 
            +
                {
         | 
| 1758 | 
            +
                  "inputs": [
         | 
| 1759 | 
            +
                    {
         | 
| 1760 | 
            +
                      "internalType": "NftId",
         | 
| 1761 | 
            +
                      "name": "nftId",
         | 
| 1762 | 
            +
                      "type": "uint96"
         | 
| 1763 | 
            +
                    },
         | 
| 1764 | 
            +
                    {
         | 
| 1765 | 
            +
                      "components": [
         | 
| 1766 | 
            +
                        {
         | 
| 1767 | 
            +
                          "internalType": "DistributorType",
         | 
| 1768 | 
            +
                          "name": "distributorType",
         | 
| 1769 | 
            +
                          "type": "bytes8"
         | 
| 1770 | 
            +
                        },
         | 
| 1771 | 
            +
                        {
         | 
| 1772 | 
            +
                          "internalType": "bool",
         | 
| 1773 | 
            +
                          "name": "active",
         | 
| 1774 | 
            +
                          "type": "bool"
         | 
| 1775 | 
            +
                        },
         | 
| 1776 | 
            +
                        {
         | 
| 1777 | 
            +
                          "internalType": "bytes",
         | 
| 1778 | 
            +
                          "name": "data",
         | 
| 1779 | 
            +
                          "type": "bytes"
         | 
| 1780 | 
            +
                        },
         | 
| 1781 | 
            +
                        {
         | 
| 1782 | 
            +
                          "internalType": "uint256",
         | 
| 1783 | 
            +
                          "name": "sumCommisions",
         | 
| 1784 | 
            +
                          "type": "uint256"
         | 
| 1785 | 
            +
                        },
         | 
| 1786 | 
            +
                        {
         | 
| 1787 | 
            +
                          "internalType": "uint256",
         | 
| 1788 | 
            +
                          "name": "numPoliciesSold",
         | 
| 1789 | 
            +
                          "type": "uint256"
         | 
| 1790 | 
            +
                        }
         | 
| 1791 | 
            +
                      ],
         | 
| 1792 | 
            +
                      "internalType": "struct IDistribution.DistributorInfo",
         | 
| 1793 | 
            +
                      "name": "info",
         | 
| 1794 | 
            +
                      "type": "tuple"
         | 
| 1795 | 
            +
                    },
         | 
| 1796 | 
            +
                    {
         | 
| 1797 | 
            +
                      "internalType": "StateId",
         | 
| 1798 | 
            +
                      "name": "newState",
         | 
| 1799 | 
            +
                      "type": "uint8"
         | 
| 1800 | 
            +
                    }
         | 
| 1801 | 
            +
                  ],
         | 
| 1802 | 
            +
                  "name": "updateDistributor",
         | 
| 1803 | 
            +
                  "outputs": [],
         | 
| 1804 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1805 | 
            +
                  "type": "function"
         | 
| 1806 | 
            +
                },
         | 
| 1807 | 
            +
                {
         | 
| 1808 | 
            +
                  "inputs": [
         | 
| 1809 | 
            +
                    {
         | 
| 1810 | 
            +
                      "internalType": "NftId",
         | 
| 1811 | 
            +
                      "name": "nftId",
         | 
| 1812 | 
            +
                      "type": "uint96"
         | 
| 1813 | 
            +
                    },
         | 
| 1814 | 
            +
                    {
         | 
| 1815 | 
            +
                      "internalType": "StateId",
         | 
| 1816 | 
            +
                      "name": "newState",
         | 
| 1817 | 
            +
                      "type": "uint8"
         | 
| 1818 | 
            +
                    }
         | 
| 1819 | 
            +
                  ],
         | 
| 1820 | 
            +
                  "name": "updateDistributorState",
         | 
| 1821 | 
            +
                  "outputs": [],
         | 
| 1822 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1823 | 
            +
                  "type": "function"
         | 
| 1824 | 
            +
                },
         | 
| 1825 | 
            +
                {
         | 
| 1826 | 
            +
                  "inputs": [
         | 
| 1827 | 
            +
                    {
         | 
| 1828 | 
            +
                      "internalType": "Key32",
         | 
| 1829 | 
            +
                      "name": "distributorKey",
         | 
| 1830 | 
            +
                      "type": "bytes32"
         | 
| 1831 | 
            +
                    },
         | 
| 1832 | 
            +
                    {
         | 
| 1833 | 
            +
                      "components": [
         | 
| 1834 | 
            +
                        {
         | 
| 1835 | 
            +
                          "internalType": "string",
         | 
| 1836 | 
            +
                          "name": "name",
         | 
| 1837 | 
            +
                          "type": "string"
         | 
| 1838 | 
            +
                        },
         | 
| 1839 | 
            +
                        {
         | 
| 1840 | 
            +
                          "internalType": "UFixed",
         | 
| 1841 | 
            +
                          "name": "minDiscountPercentage",
         | 
| 1842 | 
            +
                          "type": "uint256"
         | 
| 1843 | 
            +
                        },
         | 
| 1844 | 
            +
                        {
         | 
| 1845 | 
            +
                          "internalType": "UFixed",
         | 
| 1846 | 
            +
                          "name": "maxDiscountPercentage",
         | 
| 1847 | 
            +
                          "type": "uint256"
         | 
| 1433 1848 | 
             
                        },
         | 
| 1434 1849 | 
             
                        {
         | 
| 1435 | 
            -
                          "internalType": " | 
| 1436 | 
            -
                          "name": " | 
| 1437 | 
            -
                          "type": " | 
| 1850 | 
            +
                          "internalType": "UFixed",
         | 
| 1851 | 
            +
                          "name": "commissionPercentage",
         | 
| 1852 | 
            +
                          "type": "uint256"
         | 
| 1438 1853 | 
             
                        },
         | 
| 1439 1854 | 
             
                        {
         | 
| 1440 | 
            -
                          " | 
| 1441 | 
            -
             | 
| 1442 | 
            -
             | 
| 1443 | 
            -
             | 
| 1444 | 
            -
             | 
| 1445 | 
            -
             | 
| 1446 | 
            -
             | 
| 1447 | 
            -
             | 
| 1448 | 
            -
                              "name": "fixedFee",
         | 
| 1449 | 
            -
                              "type": "uint256"
         | 
| 1450 | 
            -
                            }
         | 
| 1451 | 
            -
                          ],
         | 
| 1452 | 
            -
                          "internalType": "struct Fee",
         | 
| 1453 | 
            -
                          "name": "distributionFee",
         | 
| 1454 | 
            -
                          "type": "tuple"
         | 
| 1855 | 
            +
                          "internalType": "uint32",
         | 
| 1856 | 
            +
                          "name": "maxReferralCount",
         | 
| 1857 | 
            +
                          "type": "uint32"
         | 
| 1858 | 
            +
                        },
         | 
| 1859 | 
            +
                        {
         | 
| 1860 | 
            +
                          "internalType": "uint32",
         | 
| 1861 | 
            +
                          "name": "maxReferralLifetime",
         | 
| 1862 | 
            +
                          "type": "uint32"
         | 
| 1455 1863 | 
             
                        },
         | 
| 1456 1864 | 
             
                        {
         | 
| 1457 1865 | 
             
                          "internalType": "bool",
         | 
| 1458 | 
            -
                          "name": " | 
| 1866 | 
            +
                          "name": "allowSelfReferrals",
         | 
| 1459 1867 | 
             
                          "type": "bool"
         | 
| 1460 1868 | 
             
                        },
         | 
| 1461 1869 | 
             
                        {
         | 
| 1462 | 
            -
                          "internalType": " | 
| 1463 | 
            -
                          "name": " | 
| 1464 | 
            -
                          "type": " | 
| 1870 | 
            +
                          "internalType": "bool",
         | 
| 1871 | 
            +
                          "name": "allowRenewals",
         | 
| 1872 | 
            +
                          "type": "bool"
         | 
| 1873 | 
            +
                        },
         | 
| 1874 | 
            +
                        {
         | 
| 1875 | 
            +
                          "internalType": "bytes",
         | 
| 1876 | 
            +
                          "name": "data",
         | 
| 1877 | 
            +
                          "type": "bytes"
         | 
| 1465 1878 | 
             
                        }
         | 
| 1466 1879 | 
             
                      ],
         | 
| 1467 | 
            -
                      "internalType": "struct  | 
| 1468 | 
            -
                      "name": " | 
| 1880 | 
            +
                      "internalType": "struct IDistribution.DistributorTypeInfo",
         | 
| 1881 | 
            +
                      "name": "info",
         | 
| 1469 1882 | 
             
                      "type": "tuple"
         | 
| 1470 1883 | 
             
                    },
         | 
| 1471 1884 | 
             
                    {
         | 
| @@ -1474,7 +1887,7 @@ | |
| 1474 1887 | 
             
                      "type": "uint8"
         | 
| 1475 1888 | 
             
                    }
         | 
| 1476 1889 | 
             
                  ],
         | 
| 1477 | 
            -
                  "name": " | 
| 1890 | 
            +
                  "name": "updateDistributorType",
         | 
| 1478 1891 | 
             
                  "outputs": [],
         | 
| 1479 1892 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1480 1893 | 
             
                  "type": "function"
         | 
| @@ -1482,9 +1895,9 @@ | |
| 1482 1895 | 
             
                {
         | 
| 1483 1896 | 
             
                  "inputs": [
         | 
| 1484 1897 | 
             
                    {
         | 
| 1485 | 
            -
                      "internalType": " | 
| 1486 | 
            -
                      "name": " | 
| 1487 | 
            -
                      "type": " | 
| 1898 | 
            +
                      "internalType": "Key32",
         | 
| 1899 | 
            +
                      "name": "distributorKey",
         | 
| 1900 | 
            +
                      "type": "bytes32"
         | 
| 1488 1901 | 
             
                    },
         | 
| 1489 1902 | 
             
                    {
         | 
| 1490 1903 | 
             
                      "internalType": "StateId",
         | 
| @@ -1492,7 +1905,7 @@ | |
| 1492 1905 | 
             
                      "type": "uint8"
         | 
| 1493 1906 | 
             
                    }
         | 
| 1494 1907 | 
             
                  ],
         | 
| 1495 | 
            -
                  "name": " | 
| 1908 | 
            +
                  "name": "updateDistributorTypeState",
         | 
| 1496 1909 | 
             
                  "outputs": [],
         | 
| 1497 1910 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1498 1911 | 
             
                  "type": "function"
         | 
| @@ -1542,9 +1955,9 @@ | |
| 1542 1955 | 
             
                          "type": "uint256"
         | 
| 1543 1956 | 
             
                        },
         | 
| 1544 1957 | 
             
                        {
         | 
| 1545 | 
            -
                          "internalType": " | 
| 1958 | 
            +
                          "internalType": "Seconds",
         | 
| 1546 1959 | 
             
                          "name": "lifetime",
         | 
| 1547 | 
            -
                          "type": " | 
| 1960 | 
            +
                          "type": "uint40"
         | 
| 1548 1961 | 
             
                        },
         | 
| 1549 1962 | 
             
                        {
         | 
| 1550 1963 | 
             
                          "internalType": "bytes",
         | 
| @@ -1630,89 +2043,33 @@ | |
| 1630 2043 | 
             
                    {
         | 
| 1631 2044 | 
             
                      "components": [
         | 
| 1632 2045 | 
             
                        {
         | 
| 1633 | 
            -
                          "internalType": " | 
| 1634 | 
            -
                          "name": " | 
| 1635 | 
            -
                          "type": " | 
| 2046 | 
            +
                          "internalType": "string",
         | 
| 2047 | 
            +
                          "name": "name",
         | 
| 2048 | 
            +
                          "type": "string"
         | 
| 1636 2049 | 
             
                        },
         | 
| 1637 2050 | 
             
                        {
         | 
| 1638 | 
            -
                          "internalType": "contract  | 
| 1639 | 
            -
                          "name": " | 
| 2051 | 
            +
                          "internalType": "contract IERC20Metadata",
         | 
| 2052 | 
            +
                          "name": "token",
         | 
| 1640 2053 | 
             
                          "type": "address"
         | 
| 1641 2054 | 
             
                        },
         | 
| 1642 2055 | 
             
                        {
         | 
| 1643 | 
            -
                          "internalType": " | 
| 1644 | 
            -
                          "name": " | 
| 1645 | 
            -
                          "type": " | 
| 1646 | 
            -
                        },
         | 
| 1647 | 
            -
                        {
         | 
| 1648 | 
            -
                          "components": [
         | 
| 1649 | 
            -
                            {
         | 
| 1650 | 
            -
                              "internalType": "UFixed",
         | 
| 1651 | 
            -
                              "name": "fractionalFee",
         | 
| 1652 | 
            -
                              "type": "uint256"
         | 
| 1653 | 
            -
                            },
         | 
| 1654 | 
            -
                            {
         | 
| 1655 | 
            -
                              "internalType": "uint256",
         | 
| 1656 | 
            -
                              "name": "fixedFee",
         | 
| 1657 | 
            -
                              "type": "uint256"
         | 
| 1658 | 
            -
                            }
         | 
| 1659 | 
            -
                          ],
         | 
| 1660 | 
            -
                          "internalType": "struct Fee",
         | 
| 1661 | 
            -
                          "name": "poolFee",
         | 
| 1662 | 
            -
                          "type": "tuple"
         | 
| 1663 | 
            -
                        },
         | 
| 1664 | 
            -
                        {
         | 
| 1665 | 
            -
                          "components": [
         | 
| 1666 | 
            -
                            {
         | 
| 1667 | 
            -
                              "internalType": "UFixed",
         | 
| 1668 | 
            -
                              "name": "fractionalFee",
         | 
| 1669 | 
            -
                              "type": "uint256"
         | 
| 1670 | 
            -
                            },
         | 
| 1671 | 
            -
                            {
         | 
| 1672 | 
            -
                              "internalType": "uint256",
         | 
| 1673 | 
            -
                              "name": "fixedFee",
         | 
| 1674 | 
            -
                              "type": "uint256"
         | 
| 1675 | 
            -
                            }
         | 
| 1676 | 
            -
                          ],
         | 
| 1677 | 
            -
                          "internalType": "struct Fee",
         | 
| 1678 | 
            -
                          "name": "stakingFee",
         | 
| 1679 | 
            -
                          "type": "tuple"
         | 
| 1680 | 
            -
                        },
         | 
| 1681 | 
            -
                        {
         | 
| 1682 | 
            -
                          "components": [
         | 
| 1683 | 
            -
                            {
         | 
| 1684 | 
            -
                              "internalType": "UFixed",
         | 
| 1685 | 
            -
                              "name": "fractionalFee",
         | 
| 1686 | 
            -
                              "type": "uint256"
         | 
| 1687 | 
            -
                            },
         | 
| 1688 | 
            -
                            {
         | 
| 1689 | 
            -
                              "internalType": "uint256",
         | 
| 1690 | 
            -
                              "name": "fixedFee",
         | 
| 1691 | 
            -
                              "type": "uint256"
         | 
| 1692 | 
            -
                            }
         | 
| 1693 | 
            -
                          ],
         | 
| 1694 | 
            -
                          "internalType": "struct Fee",
         | 
| 1695 | 
            -
                          "name": "performanceFee",
         | 
| 1696 | 
            -
                          "type": "tuple"
         | 
| 1697 | 
            -
                        },
         | 
| 1698 | 
            -
                        {
         | 
| 1699 | 
            -
                          "internalType": "bool",
         | 
| 1700 | 
            -
                          "name": "isIntercepting",
         | 
| 1701 | 
            -
                          "type": "bool"
         | 
| 1702 | 
            -
                        },
         | 
| 1703 | 
            -
                        {
         | 
| 1704 | 
            -
                          "internalType": "bool",
         | 
| 1705 | 
            -
                          "name": "isConfirmingApplication",
         | 
| 1706 | 
            -
                          "type": "bool"
         | 
| 2056 | 
            +
                          "internalType": "contract TokenHandler",
         | 
| 2057 | 
            +
                          "name": "tokenHandler",
         | 
| 2058 | 
            +
                          "type": "address"
         | 
| 1707 2059 | 
             
                        },
         | 
| 1708 2060 | 
             
                        {
         | 
| 1709 2061 | 
             
                          "internalType": "address",
         | 
| 1710 2062 | 
             
                          "name": "wallet",
         | 
| 1711 2063 | 
             
                          "type": "address"
         | 
| 2064 | 
            +
                        },
         | 
| 2065 | 
            +
                        {
         | 
| 2066 | 
            +
                          "internalType": "bytes",
         | 
| 2067 | 
            +
                          "name": "data",
         | 
| 2068 | 
            +
                          "type": "bytes"
         | 
| 1712 2069 | 
             
                        }
         | 
| 1713 2070 | 
             
                      ],
         | 
| 1714 | 
            -
                      "internalType": "struct  | 
| 1715 | 
            -
                      "name": " | 
| 2071 | 
            +
                      "internalType": "struct IComponents.ComponentInfo",
         | 
| 2072 | 
            +
                      "name": "info",
         | 
| 1716 2073 | 
             
                      "type": "tuple"
         | 
| 1717 2074 | 
             
                    },
         | 
| 1718 2075 | 
             
                    {
         | 
| @@ -1773,23 +2130,6 @@ | |
| 1773 2130 | 
             
                          "name": "poolNftId",
         | 
| 1774 2131 | 
             
                          "type": "uint96"
         | 
| 1775 2132 | 
             
                        },
         | 
| 1776 | 
            -
                        {
         | 
| 1777 | 
            -
                          "components": [
         | 
| 1778 | 
            -
                            {
         | 
| 1779 | 
            -
                              "internalType": "UFixed",
         | 
| 1780 | 
            -
                              "name": "fractionalFee",
         | 
| 1781 | 
            -
                              "type": "uint256"
         | 
| 1782 | 
            -
                            },
         | 
| 1783 | 
            -
                            {
         | 
| 1784 | 
            -
                              "internalType": "uint256",
         | 
| 1785 | 
            -
                              "name": "fixedFee",
         | 
| 1786 | 
            -
                              "type": "uint256"
         | 
| 1787 | 
            -
                            }
         | 
| 1788 | 
            -
                          ],
         | 
| 1789 | 
            -
                          "internalType": "struct Fee",
         | 
| 1790 | 
            -
                          "name": "distributionFee",
         | 
| 1791 | 
            -
                          "type": "tuple"
         | 
| 1792 | 
            -
                        },
         | 
| 1793 2133 | 
             
                        {
         | 
| 1794 2134 | 
             
                          "components": [
         | 
| 1795 2135 | 
             
                            {
         | 
| @@ -1824,57 +2164,6 @@ | |
| 1824 2164 | 
             
                          "name": "processingFee",
         | 
| 1825 2165 | 
             
                          "type": "tuple"
         | 
| 1826 2166 | 
             
                        },
         | 
| 1827 | 
            -
                        {
         | 
| 1828 | 
            -
                          "components": [
         | 
| 1829 | 
            -
                            {
         | 
| 1830 | 
            -
                              "internalType": "UFixed",
         | 
| 1831 | 
            -
                              "name": "fractionalFee",
         | 
| 1832 | 
            -
                              "type": "uint256"
         | 
| 1833 | 
            -
                            },
         | 
| 1834 | 
            -
                            {
         | 
| 1835 | 
            -
                              "internalType": "uint256",
         | 
| 1836 | 
            -
                              "name": "fixedFee",
         | 
| 1837 | 
            -
                              "type": "uint256"
         | 
| 1838 | 
            -
                            }
         | 
| 1839 | 
            -
                          ],
         | 
| 1840 | 
            -
                          "internalType": "struct Fee",
         | 
| 1841 | 
            -
                          "name": "poolFee",
         | 
| 1842 | 
            -
                          "type": "tuple"
         | 
| 1843 | 
            -
                        },
         | 
| 1844 | 
            -
                        {
         | 
| 1845 | 
            -
                          "components": [
         | 
| 1846 | 
            -
                            {
         | 
| 1847 | 
            -
                              "internalType": "UFixed",
         | 
| 1848 | 
            -
                              "name": "fractionalFee",
         | 
| 1849 | 
            -
                              "type": "uint256"
         | 
| 1850 | 
            -
                            },
         | 
| 1851 | 
            -
                            {
         | 
| 1852 | 
            -
                              "internalType": "uint256",
         | 
| 1853 | 
            -
                              "name": "fixedFee",
         | 
| 1854 | 
            -
                              "type": "uint256"
         | 
| 1855 | 
            -
                            }
         | 
| 1856 | 
            -
                          ],
         | 
| 1857 | 
            -
                          "internalType": "struct Fee",
         | 
| 1858 | 
            -
                          "name": "stakingFee",
         | 
| 1859 | 
            -
                          "type": "tuple"
         | 
| 1860 | 
            -
                        },
         | 
| 1861 | 
            -
                        {
         | 
| 1862 | 
            -
                          "components": [
         | 
| 1863 | 
            -
                            {
         | 
| 1864 | 
            -
                              "internalType": "UFixed",
         | 
| 1865 | 
            -
                              "name": "fractionalFee",
         | 
| 1866 | 
            -
                              "type": "uint256"
         | 
| 1867 | 
            -
                            },
         | 
| 1868 | 
            -
                            {
         | 
| 1869 | 
            -
                              "internalType": "uint256",
         | 
| 1870 | 
            -
                              "name": "fixedFee",
         | 
| 1871 | 
            -
                              "type": "uint256"
         | 
| 1872 | 
            -
                            }
         | 
| 1873 | 
            -
                          ],
         | 
| 1874 | 
            -
                          "internalType": "struct Fee",
         | 
| 1875 | 
            -
                          "name": "performanceFee",
         | 
| 1876 | 
            -
                          "type": "tuple"
         | 
| 1877 | 
            -
                        },
         | 
| 1878 2167 | 
             
                        {
         | 
| 1879 2168 | 
             
                          "internalType": "bool",
         | 
| 1880 2169 | 
             
                          "name": "isIntercepting",
         | 
| @@ -1919,6 +2208,84 @@ | |
| 1919 2208 | 
             
                  "stateMutability": "nonpayable",
         | 
| 1920 2209 | 
             
                  "type": "function"
         | 
| 1921 2210 | 
             
                },
         | 
| 2211 | 
            +
                {
         | 
| 2212 | 
            +
                  "inputs": [
         | 
| 2213 | 
            +
                    {
         | 
| 2214 | 
            +
                      "internalType": "Key32",
         | 
| 2215 | 
            +
                      "name": "referralKey",
         | 
| 2216 | 
            +
                      "type": "bytes32"
         | 
| 2217 | 
            +
                    },
         | 
| 2218 | 
            +
                    {
         | 
| 2219 | 
            +
                      "components": [
         | 
| 2220 | 
            +
                        {
         | 
| 2221 | 
            +
                          "internalType": "NftId",
         | 
| 2222 | 
            +
                          "name": "distributorNftId",
         | 
| 2223 | 
            +
                          "type": "uint96"
         | 
| 2224 | 
            +
                        },
         | 
| 2225 | 
            +
                        {
         | 
| 2226 | 
            +
                          "internalType": "string",
         | 
| 2227 | 
            +
                          "name": "referralCode",
         | 
| 2228 | 
            +
                          "type": "string"
         | 
| 2229 | 
            +
                        },
         | 
| 2230 | 
            +
                        {
         | 
| 2231 | 
            +
                          "internalType": "UFixed",
         | 
| 2232 | 
            +
                          "name": "discountPercentage",
         | 
| 2233 | 
            +
                          "type": "uint256"
         | 
| 2234 | 
            +
                        },
         | 
| 2235 | 
            +
                        {
         | 
| 2236 | 
            +
                          "internalType": "uint32",
         | 
| 2237 | 
            +
                          "name": "maxReferrals",
         | 
| 2238 | 
            +
                          "type": "uint32"
         | 
| 2239 | 
            +
                        },
         | 
| 2240 | 
            +
                        {
         | 
| 2241 | 
            +
                          "internalType": "uint32",
         | 
| 2242 | 
            +
                          "name": "usedReferrals",
         | 
| 2243 | 
            +
                          "type": "uint32"
         | 
| 2244 | 
            +
                        },
         | 
| 2245 | 
            +
                        {
         | 
| 2246 | 
            +
                          "internalType": "Timestamp",
         | 
| 2247 | 
            +
                          "name": "expiryAt",
         | 
| 2248 | 
            +
                          "type": "uint40"
         | 
| 2249 | 
            +
                        },
         | 
| 2250 | 
            +
                        {
         | 
| 2251 | 
            +
                          "internalType": "bytes",
         | 
| 2252 | 
            +
                          "name": "data",
         | 
| 2253 | 
            +
                          "type": "bytes"
         | 
| 2254 | 
            +
                        }
         | 
| 2255 | 
            +
                      ],
         | 
| 2256 | 
            +
                      "internalType": "struct IDistribution.ReferralInfo",
         | 
| 2257 | 
            +
                      "name": "referralInfo",
         | 
| 2258 | 
            +
                      "type": "tuple"
         | 
| 2259 | 
            +
                    },
         | 
| 2260 | 
            +
                    {
         | 
| 2261 | 
            +
                      "internalType": "StateId",
         | 
| 2262 | 
            +
                      "name": "newState",
         | 
| 2263 | 
            +
                      "type": "uint8"
         | 
| 2264 | 
            +
                    }
         | 
| 2265 | 
            +
                  ],
         | 
| 2266 | 
            +
                  "name": "updateReferral",
         | 
| 2267 | 
            +
                  "outputs": [],
         | 
| 2268 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2269 | 
            +
                  "type": "function"
         | 
| 2270 | 
            +
                },
         | 
| 2271 | 
            +
                {
         | 
| 2272 | 
            +
                  "inputs": [
         | 
| 2273 | 
            +
                    {
         | 
| 2274 | 
            +
                      "internalType": "Key32",
         | 
| 2275 | 
            +
                      "name": "referralKey",
         | 
| 2276 | 
            +
                      "type": "bytes32"
         | 
| 2277 | 
            +
                    },
         | 
| 2278 | 
            +
                    {
         | 
| 2279 | 
            +
                      "internalType": "StateId",
         | 
| 2280 | 
            +
                      "name": "newState",
         | 
| 2281 | 
            +
                      "type": "uint8"
         | 
| 2282 | 
            +
                    }
         | 
| 2283 | 
            +
                  ],
         | 
| 2284 | 
            +
                  "name": "updateReferralState",
         | 
| 2285 | 
            +
                  "outputs": [],
         | 
| 2286 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 2287 | 
            +
                  "type": "function"
         | 
| 2288 | 
            +
                },
         | 
| 1922 2289 | 
             
                {
         | 
| 1923 2290 | 
             
                  "inputs": [
         | 
| 1924 2291 | 
             
                    {
         |