@etherisc/gif-next 0.0.2-f30e0eb-805 → 0.0.2-f398177-971
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 +6 -83
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +47 -6
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +70 -13
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +137 -6
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +144 -13
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +161 -20
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +151 -20
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +71 -20
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +62 -21
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +2 -2
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +310 -2004
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +101 -52
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +425 -2757
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +95 -58
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +124 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +348 -58
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +153 -207
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +38 -83
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2788 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +2 -2
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +113 -34
- 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 +8 -8
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +6 -6
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +6 -6
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- 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 +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +186 -236
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +38 -55
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +377 -182
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +74 -39
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +713 -83
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +147 -32
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +266 -442
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +82 -107
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +111 -174
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +233 -128
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +385 -51
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +109 -282
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +210 -99
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +682 -33
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.json +510 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +85 -27
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +420 -160
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +104 -53
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +880 -82
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +90 -39
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +1004 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +688 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +144 -57
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +28 -37
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +5 -37
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +2 -2
- 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 +22 -49
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +21 -34
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +23 -11
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +10 -23
- package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/{instance → shared}/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +3 -3
- 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/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +0 -13
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +69 -9
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +0 -13
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +85 -27
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +6 -19
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +80 -26
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +14 -27
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +6 -19
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +91 -28
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +24 -6
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- 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 +6 -19
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +106 -39
- 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/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +281 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +83 -4
- 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 +74 -19
- 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 +2 -2
- 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 +1 -1
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +116 -7
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +2 -2
- 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 +1 -1
- 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 +17 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/contracts/components/Component.sol +25 -4
- package/contracts/components/Distribution.sol +11 -6
- package/contracts/components/IComponent.sol +19 -3
- package/contracts/components/IPoolComponent.sol +8 -7
- package/contracts/components/IProductComponent.sol +5 -4
- package/contracts/components/Pool.sol +17 -14
- package/contracts/components/Product.sol +144 -62
- package/contracts/instance/BundleManager.sol +3 -4
- package/contracts/instance/IInstance.sol +32 -53
- package/contracts/instance/IInstanceService.sol +15 -14
- package/contracts/instance/Instance.sol +107 -205
- package/contracts/instance/InstanceAccessManager.sol +44 -25
- package/contracts/instance/InstanceAuthorizationsLib.sol +308 -0
- package/contracts/instance/InstanceReader.sol +85 -7
- package/contracts/instance/InstanceService.sol +102 -289
- package/contracts/instance/InstanceStore.sol +212 -0
- package/contracts/instance/ObjectManager.sol +1 -1
- package/contracts/instance/base/ComponentService.sol +53 -39
- package/contracts/instance/base/KeyValueStore.sol +8 -34
- package/contracts/instance/base/Lifecycle.sol +15 -4
- package/contracts/instance/module/IAccess.sol +2 -2
- package/contracts/instance/module/IBundle.sol +6 -4
- package/contracts/instance/module/IComponents.sol +7 -1
- package/contracts/instance/module/IDistribution.sol +3 -2
- package/contracts/instance/module/IPolicy.sol +13 -8
- package/contracts/instance/service/ApplicationService.sol +62 -226
- package/contracts/instance/service/BundleService.sol +172 -126
- package/contracts/instance/service/ClaimService.sol +318 -32
- package/contracts/instance/service/DistributionService.sol +71 -190
- package/contracts/instance/service/IApplicationService.sol +8 -28
- package/contracts/instance/service/IBundleService.sol +82 -26
- package/contracts/instance/service/IClaimService.sol +52 -23
- package/contracts/instance/service/IDistributionService.sol +11 -22
- package/contracts/instance/service/IPolicyService.sol +24 -16
- package/contracts/instance/service/IPoolService.sol +82 -3
- package/contracts/instance/service/IPricingService.sol +37 -0
- package/contracts/instance/service/PolicyService.sol +152 -179
- package/contracts/instance/service/PoolService.sol +239 -56
- package/contracts/instance/service/PricingService.sol +275 -0
- package/contracts/instance/service/PricingServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +27 -58
- package/contracts/registry/IRegistryService.sol +2 -3
- package/contracts/registry/RegistryService.sol +24 -21
- package/contracts/registry/ReleaseManager.sol +20 -18
- package/contracts/shared/IPolicyHolder.sol +23 -9
- package/contracts/shared/IRegistryLinked.sol +0 -1
- package/contracts/shared/IService.sol +6 -6
- package/contracts/shared/NftOwnable.sol +0 -2
- package/contracts/shared/PolicyHolder.sol +30 -17
- package/contracts/shared/Registerable.sol +10 -9
- package/contracts/shared/RegistryLinked.sol +0 -5
- package/contracts/shared/Service.sol +21 -7
- package/contracts/shared/TokenHandler.sol +4 -2
- package/contracts/test/TestService.sol +1 -1
- package/contracts/types/Amount.sol +109 -0
- package/contracts/types/ClaimId.sol +25 -2
- package/contracts/types/Fee.sol +16 -8
- package/contracts/types/ObjectType.sol +9 -5
- package/contracts/types/PayoutId.sol +33 -5
- package/contracts/types/StateId.sol +6 -2
- package/contracts/types/Timestamp.sol +5 -0
- package/package.json +1 -1
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
- /package/contracts/{instance → shared}/AccessManagerUpgradeableInitializeable.sol +0 -0
| @@ -3,6 +3,33 @@ | |
| 3 3 | 
             
              "contractName": "IPoolService",
         | 
| 4 4 | 
             
              "sourceName": "contracts/instance/service/IPoolService.sol",
         | 
| 5 5 | 
             
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [
         | 
| 8 | 
            +
                    {
         | 
| 9 | 
            +
                      "internalType": "address",
         | 
| 10 | 
            +
                      "name": "authority",
         | 
| 11 | 
            +
                      "type": "address"
         | 
| 12 | 
            +
                    }
         | 
| 13 | 
            +
                  ],
         | 
| 14 | 
            +
                  "name": "AccessManagedInvalidAuthority",
         | 
| 15 | 
            +
                  "type": "error"
         | 
| 16 | 
            +
                },
         | 
| 17 | 
            +
                {
         | 
| 18 | 
            +
                  "inputs": [
         | 
| 19 | 
            +
                    {
         | 
| 20 | 
            +
                      "internalType": "address",
         | 
| 21 | 
            +
                      "name": "caller",
         | 
| 22 | 
            +
                      "type": "address"
         | 
| 23 | 
            +
                    },
         | 
| 24 | 
            +
                    {
         | 
| 25 | 
            +
                      "internalType": "uint32",
         | 
| 26 | 
            +
                      "name": "delay",
         | 
| 27 | 
            +
                      "type": "uint32"
         | 
| 28 | 
            +
                    }
         | 
| 29 | 
            +
                  ],
         | 
| 30 | 
            +
                  "name": "AccessManagedRequiredDelay",
         | 
| 31 | 
            +
                  "type": "error"
         | 
| 32 | 
            +
                },
         | 
| 6 33 | 
             
                {
         | 
| 7 34 | 
             
                  "inputs": [
         | 
| 8 35 | 
             
                    {
         | 
| @@ -11,7 +38,7 @@ | |
| 11 38 | 
             
                      "type": "address"
         | 
| 12 39 | 
             
                    }
         | 
| 13 40 | 
             
                  ],
         | 
| 14 | 
            -
                  "name": " | 
| 41 | 
            +
                  "name": "AccessManagedUnauthorized",
         | 
| 15 42 | 
             
                  "type": "error"
         | 
| 16 43 | 
             
                },
         | 
| 17 44 | 
             
                {
         | 
| @@ -74,6 +101,106 @@ | |
| 74 101 | 
             
                  "name": "ErrorPoolServiceBundleOwnerRoleAlreadySet",
         | 
| 75 102 | 
             
                  "type": "error"
         | 
| 76 103 | 
             
                },
         | 
| 104 | 
            +
                {
         | 
| 105 | 
            +
                  "inputs": [
         | 
| 106 | 
            +
                    {
         | 
| 107 | 
            +
                      "internalType": "NftId",
         | 
| 108 | 
            +
                      "name": "bundlePoolNftId",
         | 
| 109 | 
            +
                      "type": "uint96"
         | 
| 110 | 
            +
                    },
         | 
| 111 | 
            +
                    {
         | 
| 112 | 
            +
                      "internalType": "NftId",
         | 
| 113 | 
            +
                      "name": "productPoolNftId",
         | 
| 114 | 
            +
                      "type": "uint96"
         | 
| 115 | 
            +
                    }
         | 
| 116 | 
            +
                  ],
         | 
| 117 | 
            +
                  "name": "ErrorPoolServiceBundlePoolMismatch",
         | 
| 118 | 
            +
                  "type": "error"
         | 
| 119 | 
            +
                },
         | 
| 120 | 
            +
                {
         | 
| 121 | 
            +
                  "inputs": [
         | 
| 122 | 
            +
                    {
         | 
| 123 | 
            +
                      "internalType": "Amount",
         | 
| 124 | 
            +
                      "name": "expectedAmount",
         | 
| 125 | 
            +
                      "type": "uint96"
         | 
| 126 | 
            +
                    },
         | 
| 127 | 
            +
                    {
         | 
| 128 | 
            +
                      "internalType": "Amount",
         | 
| 129 | 
            +
                      "name": "actualAmount",
         | 
| 130 | 
            +
                      "type": "uint96"
         | 
| 131 | 
            +
                    }
         | 
| 132 | 
            +
                  ],
         | 
| 133 | 
            +
                  "name": "ErrorPoolServiceInvalidTransferAmount",
         | 
| 134 | 
            +
                  "type": "error"
         | 
| 135 | 
            +
                },
         | 
| 136 | 
            +
                {
         | 
| 137 | 
            +
                  "inputs": [],
         | 
| 138 | 
            +
                  "name": "ErrorServiceNotImplemented",
         | 
| 139 | 
            +
                  "type": "error"
         | 
| 140 | 
            +
                },
         | 
| 141 | 
            +
                {
         | 
| 142 | 
            +
                  "anonymous": false,
         | 
| 143 | 
            +
                  "inputs": [
         | 
| 144 | 
            +
                    {
         | 
| 145 | 
            +
                      "indexed": false,
         | 
| 146 | 
            +
                      "internalType": "address",
         | 
| 147 | 
            +
                      "name": "authority",
         | 
| 148 | 
            +
                      "type": "address"
         | 
| 149 | 
            +
                    }
         | 
| 150 | 
            +
                  ],
         | 
| 151 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 152 | 
            +
                  "type": "event"
         | 
| 153 | 
            +
                },
         | 
| 154 | 
            +
                {
         | 
| 155 | 
            +
                  "anonymous": false,
         | 
| 156 | 
            +
                  "inputs": [
         | 
| 157 | 
            +
                    {
         | 
| 158 | 
            +
                      "indexed": false,
         | 
| 159 | 
            +
                      "internalType": "NftId",
         | 
| 160 | 
            +
                      "name": "instanceNftId",
         | 
| 161 | 
            +
                      "type": "uint96"
         | 
| 162 | 
            +
                    },
         | 
| 163 | 
            +
                    {
         | 
| 164 | 
            +
                      "indexed": false,
         | 
| 165 | 
            +
                      "internalType": "NftId",
         | 
| 166 | 
            +
                      "name": "poolNftId",
         | 
| 167 | 
            +
                      "type": "uint96"
         | 
| 168 | 
            +
                    },
         | 
| 169 | 
            +
                    {
         | 
| 170 | 
            +
                      "indexed": false,
         | 
| 171 | 
            +
                      "internalType": "NftId",
         | 
| 172 | 
            +
                      "name": "bundleNftId",
         | 
| 173 | 
            +
                      "type": "uint96"
         | 
| 174 | 
            +
                    }
         | 
| 175 | 
            +
                  ],
         | 
| 176 | 
            +
                  "name": "LogPoolServiceBundleClosed",
         | 
| 177 | 
            +
                  "type": "event"
         | 
| 178 | 
            +
                },
         | 
| 179 | 
            +
                {
         | 
| 180 | 
            +
                  "anonymous": false,
         | 
| 181 | 
            +
                  "inputs": [
         | 
| 182 | 
            +
                    {
         | 
| 183 | 
            +
                      "indexed": false,
         | 
| 184 | 
            +
                      "internalType": "NftId",
         | 
| 185 | 
            +
                      "name": "instanceNftId",
         | 
| 186 | 
            +
                      "type": "uint96"
         | 
| 187 | 
            +
                    },
         | 
| 188 | 
            +
                    {
         | 
| 189 | 
            +
                      "indexed": false,
         | 
| 190 | 
            +
                      "internalType": "NftId",
         | 
| 191 | 
            +
                      "name": "poolNftId",
         | 
| 192 | 
            +
                      "type": "uint96"
         | 
| 193 | 
            +
                    },
         | 
| 194 | 
            +
                    {
         | 
| 195 | 
            +
                      "indexed": false,
         | 
| 196 | 
            +
                      "internalType": "NftId",
         | 
| 197 | 
            +
                      "name": "bundleNftId",
         | 
| 198 | 
            +
                      "type": "uint96"
         | 
| 199 | 
            +
                    }
         | 
| 200 | 
            +
                  ],
         | 
| 201 | 
            +
                  "name": "LogPoolServiceBundleCreated",
         | 
| 202 | 
            +
                  "type": "event"
         | 
| 203 | 
            +
                },
         | 
| 77 204 | 
             
                {
         | 
| 78 205 | 
             
                  "anonymous": false,
         | 
| 79 206 | 
             
                  "inputs": [
         | 
| @@ -104,20 +231,97 @@ | |
| 104 231 | 
             
                    },
         | 
| 105 232 | 
             
                    {
         | 
| 106 233 | 
             
                      "indexed": false,
         | 
| 107 | 
            -
                      "internalType": " | 
| 234 | 
            +
                      "internalType": "Amount",
         | 
| 108 235 | 
             
                      "name": "previousMaxCapitalAmount",
         | 
| 109 | 
            -
                      "type": " | 
| 236 | 
            +
                      "type": "uint96"
         | 
| 110 237 | 
             
                    },
         | 
| 111 238 | 
             
                    {
         | 
| 112 239 | 
             
                      "indexed": false,
         | 
| 113 | 
            -
                      "internalType": " | 
| 240 | 
            +
                      "internalType": "Amount",
         | 
| 114 241 | 
             
                      "name": "currentMaxCapitalAmount",
         | 
| 115 | 
            -
                      "type": " | 
| 242 | 
            +
                      "type": "uint96"
         | 
| 116 243 | 
             
                    }
         | 
| 117 244 | 
             
                  ],
         | 
| 118 245 | 
             
                  "name": "LogPoolServiceMaxCapitalAmountUpdated",
         | 
| 119 246 | 
             
                  "type": "event"
         | 
| 120 247 | 
             
                },
         | 
| 248 | 
            +
                {
         | 
| 249 | 
            +
                  "inputs": [],
         | 
| 250 | 
            +
                  "name": "authority",
         | 
| 251 | 
            +
                  "outputs": [
         | 
| 252 | 
            +
                    {
         | 
| 253 | 
            +
                      "internalType": "address",
         | 
| 254 | 
            +
                      "name": "",
         | 
| 255 | 
            +
                      "type": "address"
         | 
| 256 | 
            +
                    }
         | 
| 257 | 
            +
                  ],
         | 
| 258 | 
            +
                  "stateMutability": "view",
         | 
| 259 | 
            +
                  "type": "function"
         | 
| 260 | 
            +
                },
         | 
| 261 | 
            +
                {
         | 
| 262 | 
            +
                  "inputs": [
         | 
| 263 | 
            +
                    {
         | 
| 264 | 
            +
                      "internalType": "NftId",
         | 
| 265 | 
            +
                      "name": "bundleNftId",
         | 
| 266 | 
            +
                      "type": "uint96"
         | 
| 267 | 
            +
                    }
         | 
| 268 | 
            +
                  ],
         | 
| 269 | 
            +
                  "name": "closeBundle",
         | 
| 270 | 
            +
                  "outputs": [],
         | 
| 271 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 272 | 
            +
                  "type": "function"
         | 
| 273 | 
            +
                },
         | 
| 274 | 
            +
                {
         | 
| 275 | 
            +
                  "inputs": [
         | 
| 276 | 
            +
                    {
         | 
| 277 | 
            +
                      "internalType": "address",
         | 
| 278 | 
            +
                      "name": "owner",
         | 
| 279 | 
            +
                      "type": "address"
         | 
| 280 | 
            +
                    },
         | 
| 281 | 
            +
                    {
         | 
| 282 | 
            +
                      "components": [
         | 
| 283 | 
            +
                        {
         | 
| 284 | 
            +
                          "internalType": "UFixed",
         | 
| 285 | 
            +
                          "name": "fractionalFee",
         | 
| 286 | 
            +
                          "type": "uint256"
         | 
| 287 | 
            +
                        },
         | 
| 288 | 
            +
                        {
         | 
| 289 | 
            +
                          "internalType": "uint256",
         | 
| 290 | 
            +
                          "name": "fixedFee",
         | 
| 291 | 
            +
                          "type": "uint256"
         | 
| 292 | 
            +
                        }
         | 
| 293 | 
            +
                      ],
         | 
| 294 | 
            +
                      "internalType": "struct Fee",
         | 
| 295 | 
            +
                      "name": "fee",
         | 
| 296 | 
            +
                      "type": "tuple"
         | 
| 297 | 
            +
                    },
         | 
| 298 | 
            +
                    {
         | 
| 299 | 
            +
                      "internalType": "Amount",
         | 
| 300 | 
            +
                      "name": "stakingAmount",
         | 
| 301 | 
            +
                      "type": "uint96"
         | 
| 302 | 
            +
                    },
         | 
| 303 | 
            +
                    {
         | 
| 304 | 
            +
                      "internalType": "Seconds",
         | 
| 305 | 
            +
                      "name": "lifetime",
         | 
| 306 | 
            +
                      "type": "uint40"
         | 
| 307 | 
            +
                    },
         | 
| 308 | 
            +
                    {
         | 
| 309 | 
            +
                      "internalType": "bytes",
         | 
| 310 | 
            +
                      "name": "filter",
         | 
| 311 | 
            +
                      "type": "bytes"
         | 
| 312 | 
            +
                    }
         | 
| 313 | 
            +
                  ],
         | 
| 314 | 
            +
                  "name": "createBundle",
         | 
| 315 | 
            +
                  "outputs": [
         | 
| 316 | 
            +
                    {
         | 
| 317 | 
            +
                      "internalType": "NftId",
         | 
| 318 | 
            +
                      "name": "bundleNftId",
         | 
| 319 | 
            +
                      "type": "uint96"
         | 
| 320 | 
            +
                    }
         | 
| 321 | 
            +
                  ],
         | 
| 322 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 323 | 
            +
                  "type": "function"
         | 
| 324 | 
            +
                },
         | 
| 121 325 | 
             
                {
         | 
| 122 326 | 
             
                  "inputs": [],
         | 
| 123 327 | 
             
                  "name": "getDomain",
         | 
| @@ -181,19 +385,6 @@ | |
| 181 385 | 
             
                  "stateMutability": "view",
         | 
| 182 386 | 
             
                  "type": "function"
         | 
| 183 387 | 
             
                },
         | 
| 184 | 
            -
                {
         | 
| 185 | 
            -
                  "inputs": [],
         | 
| 186 | 
            -
                  "name": "getMajorVersion",
         | 
| 187 | 
            -
                  "outputs": [
         | 
| 188 | 
            -
                    {
         | 
| 189 | 
            -
                      "internalType": "VersionPart",
         | 
| 190 | 
            -
                      "name": "majorVersion",
         | 
| 191 | 
            -
                      "type": "uint8"
         | 
| 192 | 
            -
                    }
         | 
| 193 | 
            -
                  ],
         | 
| 194 | 
            -
                  "stateMutability": "view",
         | 
| 195 | 
            -
                  "type": "function"
         | 
| 196 | 
            -
                },
         | 
| 197 388 | 
             
                {
         | 
| 198 389 | 
             
                  "inputs": [],
         | 
| 199 390 | 
             
                  "name": "getNftId",
         | 
| @@ -233,19 +424,6 @@ | |
| 233 424 | 
             
                  "stateMutability": "view",
         | 
| 234 425 | 
             
                  "type": "function"
         | 
| 235 426 | 
             
                },
         | 
| 236 | 
            -
                {
         | 
| 237 | 
            -
                  "inputs": [],
         | 
| 238 | 
            -
                  "name": "getRegistryAddress",
         | 
| 239 | 
            -
                  "outputs": [
         | 
| 240 | 
            -
                    {
         | 
| 241 | 
            -
                      "internalType": "address",
         | 
| 242 | 
            -
                      "name": "",
         | 
| 243 | 
            -
                      "type": "address"
         | 
| 244 | 
            -
                    }
         | 
| 245 | 
            -
                  ],
         | 
| 246 | 
            -
                  "stateMutability": "view",
         | 
| 247 | 
            -
                  "type": "function"
         | 
| 248 | 
            -
                },
         | 
| 249 427 | 
             
                {
         | 
| 250 428 | 
             
                  "inputs": [],
         | 
| 251 429 | 
             
                  "name": "getVersion",
         | 
| @@ -277,6 +455,19 @@ | |
| 277 455 | 
             
                  "stateMutability": "nonpayable",
         | 
| 278 456 | 
             
                  "type": "function"
         | 
| 279 457 | 
             
                },
         | 
| 458 | 
            +
                {
         | 
| 459 | 
            +
                  "inputs": [],
         | 
| 460 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 461 | 
            +
                  "outputs": [
         | 
| 462 | 
            +
                    {
         | 
| 463 | 
            +
                      "internalType": "bytes4",
         | 
| 464 | 
            +
                      "name": "",
         | 
| 465 | 
            +
                      "type": "bytes4"
         | 
| 466 | 
            +
                    }
         | 
| 467 | 
            +
                  ],
         | 
| 468 | 
            +
                  "stateMutability": "view",
         | 
| 469 | 
            +
                  "type": "function"
         | 
| 470 | 
            +
                },
         | 
| 280 471 | 
             
                {
         | 
| 281 472 | 
             
                  "inputs": [],
         | 
| 282 473 | 
             
                  "name": "linkToRegisteredNftId",
         | 
| @@ -284,6 +475,341 @@ | |
| 284 475 | 
             
                  "stateMutability": "nonpayable",
         | 
| 285 476 | 
             
                  "type": "function"
         | 
| 286 477 | 
             
                },
         | 
| 478 | 
            +
                {
         | 
| 479 | 
            +
                  "inputs": [
         | 
| 480 | 
            +
                    {
         | 
| 481 | 
            +
                      "internalType": "contract IInstance",
         | 
| 482 | 
            +
                      "name": "instance",
         | 
| 483 | 
            +
                      "type": "address"
         | 
| 484 | 
            +
                    },
         | 
| 485 | 
            +
                    {
         | 
| 486 | 
            +
                      "internalType": "NftId",
         | 
| 487 | 
            +
                      "name": "productNftId",
         | 
| 488 | 
            +
                      "type": "uint96"
         | 
| 489 | 
            +
                    },
         | 
| 490 | 
            +
                    {
         | 
| 491 | 
            +
                      "internalType": "NftId",
         | 
| 492 | 
            +
                      "name": "applicationNftId",
         | 
| 493 | 
            +
                      "type": "uint96"
         | 
| 494 | 
            +
                    },
         | 
| 495 | 
            +
                    {
         | 
| 496 | 
            +
                      "components": [
         | 
| 497 | 
            +
                        {
         | 
| 498 | 
            +
                          "internalType": "NftId",
         | 
| 499 | 
            +
                          "name": "productNftId",
         | 
| 500 | 
            +
                          "type": "uint96"
         | 
| 501 | 
            +
                        },
         | 
| 502 | 
            +
                        {
         | 
| 503 | 
            +
                          "internalType": "NftId",
         | 
| 504 | 
            +
                          "name": "bundleNftId",
         | 
| 505 | 
            +
                          "type": "uint96"
         | 
| 506 | 
            +
                        },
         | 
| 507 | 
            +
                        {
         | 
| 508 | 
            +
                          "internalType": "ReferralId",
         | 
| 509 | 
            +
                          "name": "referralId",
         | 
| 510 | 
            +
                          "type": "bytes8"
         | 
| 511 | 
            +
                        },
         | 
| 512 | 
            +
                        {
         | 
| 513 | 
            +
                          "internalType": "RiskId",
         | 
| 514 | 
            +
                          "name": "riskId",
         | 
| 515 | 
            +
                          "type": "bytes8"
         | 
| 516 | 
            +
                        },
         | 
| 517 | 
            +
                        {
         | 
| 518 | 
            +
                          "internalType": "Amount",
         | 
| 519 | 
            +
                          "name": "sumInsuredAmount",
         | 
| 520 | 
            +
                          "type": "uint96"
         | 
| 521 | 
            +
                        },
         | 
| 522 | 
            +
                        {
         | 
| 523 | 
            +
                          "internalType": "Amount",
         | 
| 524 | 
            +
                          "name": "premiumAmount",
         | 
| 525 | 
            +
                          "type": "uint96"
         | 
| 526 | 
            +
                        },
         | 
| 527 | 
            +
                        {
         | 
| 528 | 
            +
                          "internalType": "Amount",
         | 
| 529 | 
            +
                          "name": "premiumPaidAmount",
         | 
| 530 | 
            +
                          "type": "uint96"
         | 
| 531 | 
            +
                        },
         | 
| 532 | 
            +
                        {
         | 
| 533 | 
            +
                          "internalType": "Seconds",
         | 
| 534 | 
            +
                          "name": "lifetime",
         | 
| 535 | 
            +
                          "type": "uint40"
         | 
| 536 | 
            +
                        },
         | 
| 537 | 
            +
                        {
         | 
| 538 | 
            +
                          "internalType": "bytes",
         | 
| 539 | 
            +
                          "name": "applicationData",
         | 
| 540 | 
            +
                          "type": "bytes"
         | 
| 541 | 
            +
                        },
         | 
| 542 | 
            +
                        {
         | 
| 543 | 
            +
                          "internalType": "bytes",
         | 
| 544 | 
            +
                          "name": "policyData",
         | 
| 545 | 
            +
                          "type": "bytes"
         | 
| 546 | 
            +
                        },
         | 
| 547 | 
            +
                        {
         | 
| 548 | 
            +
                          "internalType": "uint16",
         | 
| 549 | 
            +
                          "name": "claimsCount",
         | 
| 550 | 
            +
                          "type": "uint16"
         | 
| 551 | 
            +
                        },
         | 
| 552 | 
            +
                        {
         | 
| 553 | 
            +
                          "internalType": "uint16",
         | 
| 554 | 
            +
                          "name": "openClaimsCount",
         | 
| 555 | 
            +
                          "type": "uint16"
         | 
| 556 | 
            +
                        },
         | 
| 557 | 
            +
                        {
         | 
| 558 | 
            +
                          "internalType": "Amount",
         | 
| 559 | 
            +
                          "name": "claimAmount",
         | 
| 560 | 
            +
                          "type": "uint96"
         | 
| 561 | 
            +
                        },
         | 
| 562 | 
            +
                        {
         | 
| 563 | 
            +
                          "internalType": "Amount",
         | 
| 564 | 
            +
                          "name": "payoutAmount",
         | 
| 565 | 
            +
                          "type": "uint96"
         | 
| 566 | 
            +
                        },
         | 
| 567 | 
            +
                        {
         | 
| 568 | 
            +
                          "internalType": "Timestamp",
         | 
| 569 | 
            +
                          "name": "activatedAt",
         | 
| 570 | 
            +
                          "type": "uint40"
         | 
| 571 | 
            +
                        },
         | 
| 572 | 
            +
                        {
         | 
| 573 | 
            +
                          "internalType": "Timestamp",
         | 
| 574 | 
            +
                          "name": "expiredAt",
         | 
| 575 | 
            +
                          "type": "uint40"
         | 
| 576 | 
            +
                        },
         | 
| 577 | 
            +
                        {
         | 
| 578 | 
            +
                          "internalType": "Timestamp",
         | 
| 579 | 
            +
                          "name": "closedAt",
         | 
| 580 | 
            +
                          "type": "uint40"
         | 
| 581 | 
            +
                        }
         | 
| 582 | 
            +
                      ],
         | 
| 583 | 
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 584 | 
            +
                      "name": "applicationInfo",
         | 
| 585 | 
            +
                      "type": "tuple"
         | 
| 586 | 
            +
                    },
         | 
| 587 | 
            +
                    {
         | 
| 588 | 
            +
                      "internalType": "Amount",
         | 
| 589 | 
            +
                      "name": "premiumAmount",
         | 
| 590 | 
            +
                      "type": "uint96"
         | 
| 591 | 
            +
                    }
         | 
| 592 | 
            +
                  ],
         | 
| 593 | 
            +
                  "name": "lockCollateral",
         | 
| 594 | 
            +
                  "outputs": [],
         | 
| 595 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 596 | 
            +
                  "type": "function"
         | 
| 597 | 
            +
                },
         | 
| 598 | 
            +
                {
         | 
| 599 | 
            +
                  "inputs": [
         | 
| 600 | 
            +
                    {
         | 
| 601 | 
            +
                      "internalType": "NftId",
         | 
| 602 | 
            +
                      "name": "bundleNftId",
         | 
| 603 | 
            +
                      "type": "uint96"
         | 
| 604 | 
            +
                    },
         | 
| 605 | 
            +
                    {
         | 
| 606 | 
            +
                      "components": [
         | 
| 607 | 
            +
                        {
         | 
| 608 | 
            +
                          "internalType": "uint256",
         | 
| 609 | 
            +
                          "name": "netPremiumAmount",
         | 
| 610 | 
            +
                          "type": "uint256"
         | 
| 611 | 
            +
                        },
         | 
| 612 | 
            +
                        {
         | 
| 613 | 
            +
                          "internalType": "uint256",
         | 
| 614 | 
            +
                          "name": "fullPremiumAmount",
         | 
| 615 | 
            +
                          "type": "uint256"
         | 
| 616 | 
            +
                        },
         | 
| 617 | 
            +
                        {
         | 
| 618 | 
            +
                          "internalType": "uint256",
         | 
| 619 | 
            +
                          "name": "premiumAmount",
         | 
| 620 | 
            +
                          "type": "uint256"
         | 
| 621 | 
            +
                        },
         | 
| 622 | 
            +
                        {
         | 
| 623 | 
            +
                          "internalType": "uint256",
         | 
| 624 | 
            +
                          "name": "productFeeFixAmount",
         | 
| 625 | 
            +
                          "type": "uint256"
         | 
| 626 | 
            +
                        },
         | 
| 627 | 
            +
                        {
         | 
| 628 | 
            +
                          "internalType": "uint256",
         | 
| 629 | 
            +
                          "name": "poolFeeFixAmount",
         | 
| 630 | 
            +
                          "type": "uint256"
         | 
| 631 | 
            +
                        },
         | 
| 632 | 
            +
                        {
         | 
| 633 | 
            +
                          "internalType": "uint256",
         | 
| 634 | 
            +
                          "name": "bundleFeeFixAmount",
         | 
| 635 | 
            +
                          "type": "uint256"
         | 
| 636 | 
            +
                        },
         | 
| 637 | 
            +
                        {
         | 
| 638 | 
            +
                          "internalType": "uint256",
         | 
| 639 | 
            +
                          "name": "distributionFeeFixAmount",
         | 
| 640 | 
            +
                          "type": "uint256"
         | 
| 641 | 
            +
                        },
         | 
| 642 | 
            +
                        {
         | 
| 643 | 
            +
                          "internalType": "uint256",
         | 
| 644 | 
            +
                          "name": "productFeeVarAmount",
         | 
| 645 | 
            +
                          "type": "uint256"
         | 
| 646 | 
            +
                        },
         | 
| 647 | 
            +
                        {
         | 
| 648 | 
            +
                          "internalType": "uint256",
         | 
| 649 | 
            +
                          "name": "poolFeeVarAmount",
         | 
| 650 | 
            +
                          "type": "uint256"
         | 
| 651 | 
            +
                        },
         | 
| 652 | 
            +
                        {
         | 
| 653 | 
            +
                          "internalType": "uint256",
         | 
| 654 | 
            +
                          "name": "bundleFeeVarAmount",
         | 
| 655 | 
            +
                          "type": "uint256"
         | 
| 656 | 
            +
                        },
         | 
| 657 | 
            +
                        {
         | 
| 658 | 
            +
                          "internalType": "uint256",
         | 
| 659 | 
            +
                          "name": "distributionFeeVarAmount",
         | 
| 660 | 
            +
                          "type": "uint256"
         | 
| 661 | 
            +
                        },
         | 
| 662 | 
            +
                        {
         | 
| 663 | 
            +
                          "internalType": "uint256",
         | 
| 664 | 
            +
                          "name": "distributionOwnerFeeFixAmount",
         | 
| 665 | 
            +
                          "type": "uint256"
         | 
| 666 | 
            +
                        },
         | 
| 667 | 
            +
                        {
         | 
| 668 | 
            +
                          "internalType": "uint256",
         | 
| 669 | 
            +
                          "name": "distributionOwnerFeeVarAmount",
         | 
| 670 | 
            +
                          "type": "uint256"
         | 
| 671 | 
            +
                        },
         | 
| 672 | 
            +
                        {
         | 
| 673 | 
            +
                          "internalType": "uint256",
         | 
| 674 | 
            +
                          "name": "commissionAmount",
         | 
| 675 | 
            +
                          "type": "uint256"
         | 
| 676 | 
            +
                        },
         | 
| 677 | 
            +
                        {
         | 
| 678 | 
            +
                          "internalType": "uint256",
         | 
| 679 | 
            +
                          "name": "discountAmount",
         | 
| 680 | 
            +
                          "type": "uint256"
         | 
| 681 | 
            +
                        }
         | 
| 682 | 
            +
                      ],
         | 
| 683 | 
            +
                      "internalType": "struct IPolicy.Premium",
         | 
| 684 | 
            +
                      "name": "premium",
         | 
| 685 | 
            +
                      "type": "tuple"
         | 
| 686 | 
            +
                    },
         | 
| 687 | 
            +
                    {
         | 
| 688 | 
            +
                      "internalType": "Amount",
         | 
| 689 | 
            +
                      "name": "actualAmountTransferred",
         | 
| 690 | 
            +
                      "type": "uint96"
         | 
| 691 | 
            +
                    }
         | 
| 692 | 
            +
                  ],
         | 
| 693 | 
            +
                  "name": "processSale",
         | 
| 694 | 
            +
                  "outputs": [],
         | 
| 695 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 696 | 
            +
                  "type": "function"
         | 
| 697 | 
            +
                },
         | 
| 698 | 
            +
                {
         | 
| 699 | 
            +
                  "inputs": [
         | 
| 700 | 
            +
                    {
         | 
| 701 | 
            +
                      "internalType": "contract IInstance",
         | 
| 702 | 
            +
                      "name": "instance",
         | 
| 703 | 
            +
                      "type": "address"
         | 
| 704 | 
            +
                    },
         | 
| 705 | 
            +
                    {
         | 
| 706 | 
            +
                      "internalType": "NftId",
         | 
| 707 | 
            +
                      "name": "policyNftId",
         | 
| 708 | 
            +
                      "type": "uint96"
         | 
| 709 | 
            +
                    },
         | 
| 710 | 
            +
                    {
         | 
| 711 | 
            +
                      "components": [
         | 
| 712 | 
            +
                        {
         | 
| 713 | 
            +
                          "internalType": "NftId",
         | 
| 714 | 
            +
                          "name": "productNftId",
         | 
| 715 | 
            +
                          "type": "uint96"
         | 
| 716 | 
            +
                        },
         | 
| 717 | 
            +
                        {
         | 
| 718 | 
            +
                          "internalType": "NftId",
         | 
| 719 | 
            +
                          "name": "bundleNftId",
         | 
| 720 | 
            +
                          "type": "uint96"
         | 
| 721 | 
            +
                        },
         | 
| 722 | 
            +
                        {
         | 
| 723 | 
            +
                          "internalType": "ReferralId",
         | 
| 724 | 
            +
                          "name": "referralId",
         | 
| 725 | 
            +
                          "type": "bytes8"
         | 
| 726 | 
            +
                        },
         | 
| 727 | 
            +
                        {
         | 
| 728 | 
            +
                          "internalType": "RiskId",
         | 
| 729 | 
            +
                          "name": "riskId",
         | 
| 730 | 
            +
                          "type": "bytes8"
         | 
| 731 | 
            +
                        },
         | 
| 732 | 
            +
                        {
         | 
| 733 | 
            +
                          "internalType": "Amount",
         | 
| 734 | 
            +
                          "name": "sumInsuredAmount",
         | 
| 735 | 
            +
                          "type": "uint96"
         | 
| 736 | 
            +
                        },
         | 
| 737 | 
            +
                        {
         | 
| 738 | 
            +
                          "internalType": "Amount",
         | 
| 739 | 
            +
                          "name": "premiumAmount",
         | 
| 740 | 
            +
                          "type": "uint96"
         | 
| 741 | 
            +
                        },
         | 
| 742 | 
            +
                        {
         | 
| 743 | 
            +
                          "internalType": "Amount",
         | 
| 744 | 
            +
                          "name": "premiumPaidAmount",
         | 
| 745 | 
            +
                          "type": "uint96"
         | 
| 746 | 
            +
                        },
         | 
| 747 | 
            +
                        {
         | 
| 748 | 
            +
                          "internalType": "Seconds",
         | 
| 749 | 
            +
                          "name": "lifetime",
         | 
| 750 | 
            +
                          "type": "uint40"
         | 
| 751 | 
            +
                        },
         | 
| 752 | 
            +
                        {
         | 
| 753 | 
            +
                          "internalType": "bytes",
         | 
| 754 | 
            +
                          "name": "applicationData",
         | 
| 755 | 
            +
                          "type": "bytes"
         | 
| 756 | 
            +
                        },
         | 
| 757 | 
            +
                        {
         | 
| 758 | 
            +
                          "internalType": "bytes",
         | 
| 759 | 
            +
                          "name": "policyData",
         | 
| 760 | 
            +
                          "type": "bytes"
         | 
| 761 | 
            +
                        },
         | 
| 762 | 
            +
                        {
         | 
| 763 | 
            +
                          "internalType": "uint16",
         | 
| 764 | 
            +
                          "name": "claimsCount",
         | 
| 765 | 
            +
                          "type": "uint16"
         | 
| 766 | 
            +
                        },
         | 
| 767 | 
            +
                        {
         | 
| 768 | 
            +
                          "internalType": "uint16",
         | 
| 769 | 
            +
                          "name": "openClaimsCount",
         | 
| 770 | 
            +
                          "type": "uint16"
         | 
| 771 | 
            +
                        },
         | 
| 772 | 
            +
                        {
         | 
| 773 | 
            +
                          "internalType": "Amount",
         | 
| 774 | 
            +
                          "name": "claimAmount",
         | 
| 775 | 
            +
                          "type": "uint96"
         | 
| 776 | 
            +
                        },
         | 
| 777 | 
            +
                        {
         | 
| 778 | 
            +
                          "internalType": "Amount",
         | 
| 779 | 
            +
                          "name": "payoutAmount",
         | 
| 780 | 
            +
                          "type": "uint96"
         | 
| 781 | 
            +
                        },
         | 
| 782 | 
            +
                        {
         | 
| 783 | 
            +
                          "internalType": "Timestamp",
         | 
| 784 | 
            +
                          "name": "activatedAt",
         | 
| 785 | 
            +
                          "type": "uint40"
         | 
| 786 | 
            +
                        },
         | 
| 787 | 
            +
                        {
         | 
| 788 | 
            +
                          "internalType": "Timestamp",
         | 
| 789 | 
            +
                          "name": "expiredAt",
         | 
| 790 | 
            +
                          "type": "uint40"
         | 
| 791 | 
            +
                        },
         | 
| 792 | 
            +
                        {
         | 
| 793 | 
            +
                          "internalType": "Timestamp",
         | 
| 794 | 
            +
                          "name": "closedAt",
         | 
| 795 | 
            +
                          "type": "uint40"
         | 
| 796 | 
            +
                        }
         | 
| 797 | 
            +
                      ],
         | 
| 798 | 
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 799 | 
            +
                      "name": "policyInfo",
         | 
| 800 | 
            +
                      "type": "tuple"
         | 
| 801 | 
            +
                    },
         | 
| 802 | 
            +
                    {
         | 
| 803 | 
            +
                      "internalType": "Amount",
         | 
| 804 | 
            +
                      "name": "payoutAmount",
         | 
| 805 | 
            +
                      "type": "uint96"
         | 
| 806 | 
            +
                    }
         | 
| 807 | 
            +
                  ],
         | 
| 808 | 
            +
                  "name": "reduceCollateral",
         | 
| 809 | 
            +
                  "outputs": [],
         | 
| 810 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 811 | 
            +
                  "type": "function"
         | 
| 812 | 
            +
                },
         | 
| 287 813 | 
             
                {
         | 
| 288 814 | 
             
                  "inputs": [
         | 
| 289 815 | 
             
                    {
         | 
| @@ -303,6 +829,129 @@ | |
| 303 829 | 
             
                  "stateMutability": "nonpayable",
         | 
| 304 830 | 
             
                  "type": "function"
         | 
| 305 831 | 
             
                },
         | 
| 832 | 
            +
                {
         | 
| 833 | 
            +
                  "inputs": [
         | 
| 834 | 
            +
                    {
         | 
| 835 | 
            +
                      "internalType": "contract IInstance",
         | 
| 836 | 
            +
                      "name": "instance",
         | 
| 837 | 
            +
                      "type": "address"
         | 
| 838 | 
            +
                    },
         | 
| 839 | 
            +
                    {
         | 
| 840 | 
            +
                      "internalType": "NftId",
         | 
| 841 | 
            +
                      "name": "policyNftId",
         | 
| 842 | 
            +
                      "type": "uint96"
         | 
| 843 | 
            +
                    },
         | 
| 844 | 
            +
                    {
         | 
| 845 | 
            +
                      "components": [
         | 
| 846 | 
            +
                        {
         | 
| 847 | 
            +
                          "internalType": "NftId",
         | 
| 848 | 
            +
                          "name": "productNftId",
         | 
| 849 | 
            +
                          "type": "uint96"
         | 
| 850 | 
            +
                        },
         | 
| 851 | 
            +
                        {
         | 
| 852 | 
            +
                          "internalType": "NftId",
         | 
| 853 | 
            +
                          "name": "bundleNftId",
         | 
| 854 | 
            +
                          "type": "uint96"
         | 
| 855 | 
            +
                        },
         | 
| 856 | 
            +
                        {
         | 
| 857 | 
            +
                          "internalType": "ReferralId",
         | 
| 858 | 
            +
                          "name": "referralId",
         | 
| 859 | 
            +
                          "type": "bytes8"
         | 
| 860 | 
            +
                        },
         | 
| 861 | 
            +
                        {
         | 
| 862 | 
            +
                          "internalType": "RiskId",
         | 
| 863 | 
            +
                          "name": "riskId",
         | 
| 864 | 
            +
                          "type": "bytes8"
         | 
| 865 | 
            +
                        },
         | 
| 866 | 
            +
                        {
         | 
| 867 | 
            +
                          "internalType": "Amount",
         | 
| 868 | 
            +
                          "name": "sumInsuredAmount",
         | 
| 869 | 
            +
                          "type": "uint96"
         | 
| 870 | 
            +
                        },
         | 
| 871 | 
            +
                        {
         | 
| 872 | 
            +
                          "internalType": "Amount",
         | 
| 873 | 
            +
                          "name": "premiumAmount",
         | 
| 874 | 
            +
                          "type": "uint96"
         | 
| 875 | 
            +
                        },
         | 
| 876 | 
            +
                        {
         | 
| 877 | 
            +
                          "internalType": "Amount",
         | 
| 878 | 
            +
                          "name": "premiumPaidAmount",
         | 
| 879 | 
            +
                          "type": "uint96"
         | 
| 880 | 
            +
                        },
         | 
| 881 | 
            +
                        {
         | 
| 882 | 
            +
                          "internalType": "Seconds",
         | 
| 883 | 
            +
                          "name": "lifetime",
         | 
| 884 | 
            +
                          "type": "uint40"
         | 
| 885 | 
            +
                        },
         | 
| 886 | 
            +
                        {
         | 
| 887 | 
            +
                          "internalType": "bytes",
         | 
| 888 | 
            +
                          "name": "applicationData",
         | 
| 889 | 
            +
                          "type": "bytes"
         | 
| 890 | 
            +
                        },
         | 
| 891 | 
            +
                        {
         | 
| 892 | 
            +
                          "internalType": "bytes",
         | 
| 893 | 
            +
                          "name": "policyData",
         | 
| 894 | 
            +
                          "type": "bytes"
         | 
| 895 | 
            +
                        },
         | 
| 896 | 
            +
                        {
         | 
| 897 | 
            +
                          "internalType": "uint16",
         | 
| 898 | 
            +
                          "name": "claimsCount",
         | 
| 899 | 
            +
                          "type": "uint16"
         | 
| 900 | 
            +
                        },
         | 
| 901 | 
            +
                        {
         | 
| 902 | 
            +
                          "internalType": "uint16",
         | 
| 903 | 
            +
                          "name": "openClaimsCount",
         | 
| 904 | 
            +
                          "type": "uint16"
         | 
| 905 | 
            +
                        },
         | 
| 906 | 
            +
                        {
         | 
| 907 | 
            +
                          "internalType": "Amount",
         | 
| 908 | 
            +
                          "name": "claimAmount",
         | 
| 909 | 
            +
                          "type": "uint96"
         | 
| 910 | 
            +
                        },
         | 
| 911 | 
            +
                        {
         | 
| 912 | 
            +
                          "internalType": "Amount",
         | 
| 913 | 
            +
                          "name": "payoutAmount",
         | 
| 914 | 
            +
                          "type": "uint96"
         | 
| 915 | 
            +
                        },
         | 
| 916 | 
            +
                        {
         | 
| 917 | 
            +
                          "internalType": "Timestamp",
         | 
| 918 | 
            +
                          "name": "activatedAt",
         | 
| 919 | 
            +
                          "type": "uint40"
         | 
| 920 | 
            +
                        },
         | 
| 921 | 
            +
                        {
         | 
| 922 | 
            +
                          "internalType": "Timestamp",
         | 
| 923 | 
            +
                          "name": "expiredAt",
         | 
| 924 | 
            +
                          "type": "uint40"
         | 
| 925 | 
            +
                        },
         | 
| 926 | 
            +
                        {
         | 
| 927 | 
            +
                          "internalType": "Timestamp",
         | 
| 928 | 
            +
                          "name": "closedAt",
         | 
| 929 | 
            +
                          "type": "uint40"
         | 
| 930 | 
            +
                        }
         | 
| 931 | 
            +
                      ],
         | 
| 932 | 
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 933 | 
            +
                      "name": "policyInfo",
         | 
| 934 | 
            +
                      "type": "tuple"
         | 
| 935 | 
            +
                    }
         | 
| 936 | 
            +
                  ],
         | 
| 937 | 
            +
                  "name": "releaseCollateral",
         | 
| 938 | 
            +
                  "outputs": [],
         | 
| 939 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 940 | 
            +
                  "type": "function"
         | 
| 941 | 
            +
                },
         | 
| 942 | 
            +
                {
         | 
| 943 | 
            +
                  "inputs": [
         | 
| 944 | 
            +
                    {
         | 
| 945 | 
            +
                      "internalType": "address",
         | 
| 946 | 
            +
                      "name": "",
         | 
| 947 | 
            +
                      "type": "address"
         | 
| 948 | 
            +
                    }
         | 
| 949 | 
            +
                  ],
         | 
| 950 | 
            +
                  "name": "setAuthority",
         | 
| 951 | 
            +
                  "outputs": [],
         | 
| 952 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 953 | 
            +
                  "type": "function"
         | 
| 954 | 
            +
                },
         | 
| 306 955 | 
             
                {
         | 
| 307 956 | 
             
                  "inputs": [
         | 
| 308 957 | 
             
                    {
         | 
| @@ -378,9 +1027,9 @@ | |
| 378 1027 | 
             
                {
         | 
| 379 1028 | 
             
                  "inputs": [
         | 
| 380 1029 | 
             
                    {
         | 
| 381 | 
            -
                      "internalType": " | 
| 1030 | 
            +
                      "internalType": "Amount",
         | 
| 382 1031 | 
             
                      "name": "maxCapitalAmount",
         | 
| 383 | 
            -
                      "type": " | 
| 1032 | 
            +
                      "type": "uint96"
         | 
| 384 1033 | 
             
                    }
         | 
| 385 1034 | 
             
                  ],
         | 
| 386 1035 | 
             
                  "name": "setMaxCapitalAmount",
         |