@etherisc/gif-next 0.0.2-f29e479-370 → 0.0.2-f2df3e2-873
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 +78 -89
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +139 -140
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +156 -64
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +181 -112
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +353 -176
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +162 -138
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +299 -245
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +83 -162
- 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 +527 -400
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +175 -51
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +500 -612
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +472 -126
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +253 -236
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +305 -211
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +71 -23
- 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 +86 -31
- 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 +56 -73
- 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 +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +291 -100
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +46 -22
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +422 -252
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +78 -14
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +373 -87
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +55 -7
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +579 -123
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +71 -47
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +200 -46
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +241 -188
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +251 -58
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +444 -25
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +430 -76
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +511 -14
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +80 -14
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +544 -153
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +51 -27
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +562 -52
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +24 -12
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +115 -52
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +16 -12
- 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 +19 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +0 -24
- 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 +31 -12
- 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 +18 -37
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +7 -7
- 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 +2 -2
- 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/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +80 -14
- 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 +2 -2
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -2
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +2 -2
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +3 -3
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +87 -16
- 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/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 +3 -3
- 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 +102 -27
- 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 +2 -2
- 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 +185 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +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 +40 -9
- 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 +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 +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 +38 -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 +99 -87
- package/contracts/components/Distribution.sol +18 -21
- package/contracts/components/IComponent.sol +40 -18
- package/contracts/components/IDistributionComponent.sol +1 -22
- package/contracts/components/IPoolComponent.sol +73 -47
- package/contracts/components/IProductComponent.sol +3 -2
- package/contracts/components/Pool.sol +178 -130
- package/contracts/components/Product.sol +157 -71
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +10 -9
- package/contracts/instance/Cloneable.sol +7 -2
- package/contracts/instance/IInstance.sol +37 -27
- package/contracts/instance/IInstanceService.sol +18 -9
- package/contracts/instance/Instance.sol +117 -98
- package/contracts/instance/InstanceAccessManager.sol +388 -158
- package/contracts/instance/InstanceReader.sol +36 -12
- package/contracts/instance/InstanceService.sol +193 -191
- package/contracts/instance/ObjectManager.sol +6 -8
- package/contracts/instance/base/ComponentService.sol +17 -30
- package/contracts/instance/base/KeyValueStore.sol +13 -5
- package/contracts/instance/base/Lifecycle.sol +23 -6
- package/contracts/instance/module/IAccess.sol +21 -14
- package/contracts/instance/module/IBundle.sol +8 -5
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +2 -1
- package/contracts/instance/module/IPolicy.sol +37 -7
- package/contracts/instance/module/ISetup.sol +7 -22
- package/contracts/instance/service/ApplicationService.sol +137 -50
- package/contracts/instance/service/BundleService.sol +221 -83
- package/contracts/instance/service/ClaimService.sol +114 -26
- package/contracts/instance/service/DistributionService.sol +174 -118
- package/contracts/instance/service/IApplicationService.sol +9 -13
- package/contracts/instance/service/IBundleService.sol +68 -26
- package/contracts/instance/service/IClaimService.sol +46 -15
- package/contracts/instance/service/IDistributionService.sol +20 -4
- package/contracts/instance/service/IPolicyService.sol +69 -21
- package/contracts/instance/service/IPoolService.sol +82 -3
- package/contracts/instance/service/PolicyService.sol +297 -232
- package/contracts/instance/service/PoolService.sol +214 -20
- package/contracts/instance/service/ProductService.sol +31 -54
- package/contracts/registry/ChainNft.sol +8 -0
- package/contracts/registry/IRegistry.sol +2 -0
- package/contracts/registry/IRegistryService.sol +4 -3
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +23 -20
- package/contracts/registry/RegistryService.sol +15 -16
- package/contracts/registry/ReleaseManager.sol +20 -18
- package/contracts/shared/IService.sol +4 -6
- package/contracts/shared/Registerable.sol +2 -2
- package/contracts/shared/Service.sol +21 -7
- package/contracts/shared/TokenHandler.sol +11 -5
- package/contracts/test/TestService.sol +1 -1
- package/contracts/types/Amount.sol +65 -0
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +25 -2
- package/contracts/types/Fee.sol +13 -5
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/ObjectType.sol +6 -5
- package/contracts/types/PayoutId.sol +33 -5
- package/contracts/types/Referral.sol +4 -0
- package/contracts/types/RoleId.sol +13 -6
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +7 -2
- package/contracts/types/Timestamp.sol +18 -13
- package/contracts/types/UFixed.sol +1 -0
- package/contracts/types/Version.sol +1 -0
- package/package.json +1 -1
| @@ -3,6 +3,44 @@ | |
| 3 3 | 
             
              "contractName": "IPolicyService",
         | 
| 4 4 | 
             
              "sourceName": "contracts/instance/service/IPolicyService.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 | 
            +
                },
         | 
| 33 | 
            +
                {
         | 
| 34 | 
            +
                  "inputs": [
         | 
| 35 | 
            +
                    {
         | 
| 36 | 
            +
                      "internalType": "address",
         | 
| 37 | 
            +
                      "name": "caller",
         | 
| 38 | 
            +
                      "type": "address"
         | 
| 39 | 
            +
                    }
         | 
| 40 | 
            +
                  ],
         | 
| 41 | 
            +
                  "name": "AccessManagedUnauthorized",
         | 
| 42 | 
            +
                  "type": "error"
         | 
| 43 | 
            +
                },
         | 
| 6 44 | 
             
                {
         | 
| 7 45 | 
             
                  "inputs": [
         | 
| 8 46 | 
             
                    {
         | 
| @@ -119,27 +157,37 @@ | |
| 119 157 | 
             
                    },
         | 
| 120 158 | 
             
                    {
         | 
| 121 159 | 
             
                      "internalType": "uint256",
         | 
| 122 | 
            -
                      "name": " | 
| 160 | 
            +
                      "name": "expectedPremiumAmount",
         | 
| 123 161 | 
             
                      "type": "uint256"
         | 
| 124 162 | 
             
                    },
         | 
| 125 163 | 
             
                    {
         | 
| 126 164 | 
             
                      "internalType": "uint256",
         | 
| 127 | 
            -
                      "name": " | 
| 165 | 
            +
                      "name": "recalculatedPremiumAmount",
         | 
| 128 166 | 
             
                      "type": "uint256"
         | 
| 129 167 | 
             
                    }
         | 
| 130 168 | 
             
                  ],
         | 
| 131 | 
            -
                  "name": " | 
| 169 | 
            +
                  "name": "ErrorIPolicyServicePremiumMismatch",
         | 
| 132 170 | 
             
                  "type": "error"
         | 
| 133 171 | 
             
                },
         | 
| 134 172 | 
             
                {
         | 
| 135 173 | 
             
                  "inputs": [
         | 
| 136 174 | 
             
                    {
         | 
| 137 | 
            -
                      "internalType": " | 
| 138 | 
            -
                      "name": " | 
| 139 | 
            -
                      "type": " | 
| 175 | 
            +
                      "internalType": "NftId",
         | 
| 176 | 
            +
                      "name": "policyNftId",
         | 
| 177 | 
            +
                      "type": "uint96"
         | 
| 178 | 
            +
                    },
         | 
| 179 | 
            +
                    {
         | 
| 180 | 
            +
                      "internalType": "uint256",
         | 
| 181 | 
            +
                      "name": "premiumAmount",
         | 
| 182 | 
            +
                      "type": "uint256"
         | 
| 183 | 
            +
                    },
         | 
| 184 | 
            +
                    {
         | 
| 185 | 
            +
                      "internalType": "uint256",
         | 
| 186 | 
            +
                      "name": "premiumPaidAmount",
         | 
| 187 | 
            +
                      "type": "uint256"
         | 
| 140 188 | 
             
                    }
         | 
| 141 189 | 
             
                  ],
         | 
| 142 | 
            -
                  "name": " | 
| 190 | 
            +
                  "name": "ErrorIPolicyServicePremiumNotFullyPaid",
         | 
| 143 191 | 
             
                  "type": "error"
         | 
| 144 192 | 
             
                },
         | 
| 145 193 | 
             
                {
         | 
| @@ -199,75 +247,228 @@ | |
| 199 247 | 
             
                      "type": "uint96"
         | 
| 200 248 | 
             
                    },
         | 
| 201 249 | 
             
                    {
         | 
| 202 | 
            -
                      "internalType": " | 
| 203 | 
            -
                      "name": " | 
| 204 | 
            -
                      "type": " | 
| 250 | 
            +
                      "internalType": "Amount",
         | 
| 251 | 
            +
                      "name": "sumInsured",
         | 
| 252 | 
            +
                      "type": "uint96"
         | 
| 253 | 
            +
                    },
         | 
| 254 | 
            +
                    {
         | 
| 255 | 
            +
                      "internalType": "Amount",
         | 
| 256 | 
            +
                      "name": "payoutsIncludingClaimAmount",
         | 
| 257 | 
            +
                      "type": "uint96"
         | 
| 205 258 | 
             
                    }
         | 
| 206 259 | 
             
                  ],
         | 
| 207 | 
            -
                  "name": " | 
| 208 | 
            -
                  " | 
| 209 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 210 | 
            -
                  "type": "function"
         | 
| 260 | 
            +
                  "name": "ErrorPolicyServiceClaimExceedsSumInsured",
         | 
| 261 | 
            +
                  "type": "error"
         | 
| 211 262 | 
             
                },
         | 
| 212 263 | 
             
                {
         | 
| 213 264 | 
             
                  "inputs": [
         | 
| 214 265 | 
             
                    {
         | 
| 215 | 
            -
                      "internalType": " | 
| 216 | 
            -
                      "name": " | 
| 217 | 
            -
                      "type": " | 
| 266 | 
            +
                      "internalType": "NftId",
         | 
| 267 | 
            +
                      "name": "policyNftId",
         | 
| 268 | 
            +
                      "type": "uint96"
         | 
| 269 | 
            +
                    }
         | 
| 270 | 
            +
                  ],
         | 
| 271 | 
            +
                  "name": "ErrorPolicyServicePolicyNotOpen",
         | 
| 272 | 
            +
                  "type": "error"
         | 
| 273 | 
            +
                },
         | 
| 274 | 
            +
                {
         | 
| 275 | 
            +
                  "inputs": [
         | 
| 276 | 
            +
                    {
         | 
| 277 | 
            +
                      "internalType": "NftId",
         | 
| 278 | 
            +
                      "name": "policyNftId",
         | 
| 279 | 
            +
                      "type": "uint96"
         | 
| 218 280 | 
             
                    },
         | 
| 219 281 | 
             
                    {
         | 
| 220 | 
            -
                      "internalType": " | 
| 221 | 
            -
                      "name": " | 
| 222 | 
            -
                      "type": " | 
| 282 | 
            +
                      "internalType": "NftId",
         | 
| 283 | 
            +
                      "name": "expectedProduct",
         | 
| 284 | 
            +
                      "type": "uint96"
         | 
| 223 285 | 
             
                    },
         | 
| 224 286 | 
             
                    {
         | 
| 225 | 
            -
                      "internalType": " | 
| 226 | 
            -
                      "name": " | 
| 227 | 
            -
                      "type": " | 
| 287 | 
            +
                      "internalType": "NftId",
         | 
| 288 | 
            +
                      "name": "actualProduct",
         | 
| 289 | 
            +
                      "type": "uint96"
         | 
| 290 | 
            +
                    }
         | 
| 291 | 
            +
                  ],
         | 
| 292 | 
            +
                  "name": "ErrorPolicyServicePolicyProductMismatch",
         | 
| 293 | 
            +
                  "type": "error"
         | 
| 294 | 
            +
                },
         | 
| 295 | 
            +
                {
         | 
| 296 | 
            +
                  "anonymous": false,
         | 
| 297 | 
            +
                  "inputs": [
         | 
| 298 | 
            +
                    {
         | 
| 299 | 
            +
                      "indexed": false,
         | 
| 300 | 
            +
                      "internalType": "address",
         | 
| 301 | 
            +
                      "name": "authority",
         | 
| 302 | 
            +
                      "type": "address"
         | 
| 303 | 
            +
                    }
         | 
| 304 | 
            +
                  ],
         | 
| 305 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 306 | 
            +
                  "type": "event"
         | 
| 307 | 
            +
                },
         | 
| 308 | 
            +
                {
         | 
| 309 | 
            +
                  "anonymous": false,
         | 
| 310 | 
            +
                  "inputs": [
         | 
| 311 | 
            +
                    {
         | 
| 312 | 
            +
                      "indexed": false,
         | 
| 313 | 
            +
                      "internalType": "NftId",
         | 
| 314 | 
            +
                      "name": "policyNftId",
         | 
| 315 | 
            +
                      "type": "uint96"
         | 
| 228 316 | 
             
                    },
         | 
| 229 317 | 
             
                    {
         | 
| 230 | 
            -
                      " | 
| 231 | 
            -
                      " | 
| 232 | 
            -
                      " | 
| 318 | 
            +
                      "indexed": false,
         | 
| 319 | 
            +
                      "internalType": "ClaimId",
         | 
| 320 | 
            +
                      "name": "claimId",
         | 
| 321 | 
            +
                      "type": "uint16"
         | 
| 322 | 
            +
                    }
         | 
| 323 | 
            +
                  ],
         | 
| 324 | 
            +
                  "name": "LogPolicyServiceClaimClosed",
         | 
| 325 | 
            +
                  "type": "event"
         | 
| 326 | 
            +
                },
         | 
| 327 | 
            +
                {
         | 
| 328 | 
            +
                  "anonymous": false,
         | 
| 329 | 
            +
                  "inputs": [
         | 
| 330 | 
            +
                    {
         | 
| 331 | 
            +
                      "indexed": false,
         | 
| 332 | 
            +
                      "internalType": "NftId",
         | 
| 333 | 
            +
                      "name": "policyNftId",
         | 
| 334 | 
            +
                      "type": "uint96"
         | 
| 335 | 
            +
                    },
         | 
| 336 | 
            +
                    {
         | 
| 337 | 
            +
                      "indexed": false,
         | 
| 338 | 
            +
                      "internalType": "ClaimId",
         | 
| 339 | 
            +
                      "name": "claimId",
         | 
| 340 | 
            +
                      "type": "uint16"
         | 
| 233 341 | 
             
                    },
         | 
| 234 342 | 
             
                    {
         | 
| 343 | 
            +
                      "indexed": false,
         | 
| 344 | 
            +
                      "internalType": "Amount",
         | 
| 345 | 
            +
                      "name": "confirmedAmount",
         | 
| 346 | 
            +
                      "type": "uint96"
         | 
| 347 | 
            +
                    }
         | 
| 348 | 
            +
                  ],
         | 
| 349 | 
            +
                  "name": "LogPolicyServiceClaimConfirmed",
         | 
| 350 | 
            +
                  "type": "event"
         | 
| 351 | 
            +
                },
         | 
| 352 | 
            +
                {
         | 
| 353 | 
            +
                  "anonymous": false,
         | 
| 354 | 
            +
                  "inputs": [
         | 
| 355 | 
            +
                    {
         | 
| 356 | 
            +
                      "indexed": false,
         | 
| 235 357 | 
             
                      "internalType": "NftId",
         | 
| 236 | 
            -
                      "name": " | 
| 358 | 
            +
                      "name": "policyNftId",
         | 
| 237 359 | 
             
                      "type": "uint96"
         | 
| 238 360 | 
             
                    },
         | 
| 239 361 | 
             
                    {
         | 
| 240 | 
            -
                      " | 
| 241 | 
            -
                      " | 
| 242 | 
            -
                      " | 
| 362 | 
            +
                      "indexed": false,
         | 
| 363 | 
            +
                      "internalType": "ClaimId",
         | 
| 364 | 
            +
                      "name": "claimId",
         | 
| 365 | 
            +
                      "type": "uint16"
         | 
| 243 366 | 
             
                    }
         | 
| 244 367 | 
             
                  ],
         | 
| 245 | 
            -
                  "name": " | 
| 246 | 
            -
                  " | 
| 368 | 
            +
                  "name": "LogPolicyServiceClaimDeclined",
         | 
| 369 | 
            +
                  "type": "event"
         | 
| 370 | 
            +
                },
         | 
| 371 | 
            +
                {
         | 
| 372 | 
            +
                  "anonymous": false,
         | 
| 373 | 
            +
                  "inputs": [
         | 
| 247 374 | 
             
                    {
         | 
| 248 | 
            -
                      " | 
| 249 | 
            -
                      " | 
| 250 | 
            -
                      " | 
| 375 | 
            +
                      "indexed": false,
         | 
| 376 | 
            +
                      "internalType": "NftId",
         | 
| 377 | 
            +
                      "name": "policyNftId",
         | 
| 378 | 
            +
                      "type": "uint96"
         | 
| 251 379 | 
             
                    },
         | 
| 252 380 | 
             
                    {
         | 
| 253 | 
            -
                      " | 
| 254 | 
            -
                      " | 
| 255 | 
            -
                      " | 
| 381 | 
            +
                      "indexed": false,
         | 
| 382 | 
            +
                      "internalType": "ClaimId",
         | 
| 383 | 
            +
                      "name": "claimId",
         | 
| 384 | 
            +
                      "type": "uint16"
         | 
| 256 385 | 
             
                    },
         | 
| 257 386 | 
             
                    {
         | 
| 258 | 
            -
                      " | 
| 259 | 
            -
                      " | 
| 260 | 
            -
                      " | 
| 387 | 
            +
                      "indexed": false,
         | 
| 388 | 
            +
                      "internalType": "Amount",
         | 
| 389 | 
            +
                      "name": "claimAmount",
         | 
| 390 | 
            +
                      "type": "uint96"
         | 
| 391 | 
            +
                    }
         | 
| 392 | 
            +
                  ],
         | 
| 393 | 
            +
                  "name": "LogPolicyServiceClaimSubmitted",
         | 
| 394 | 
            +
                  "type": "event"
         | 
| 395 | 
            +
                },
         | 
| 396 | 
            +
                {
         | 
| 397 | 
            +
                  "anonymous": false,
         | 
| 398 | 
            +
                  "inputs": [
         | 
| 399 | 
            +
                    {
         | 
| 400 | 
            +
                      "indexed": false,
         | 
| 401 | 
            +
                      "internalType": "NftId",
         | 
| 402 | 
            +
                      "name": "policyNftId",
         | 
| 403 | 
            +
                      "type": "uint96"
         | 
| 261 404 | 
             
                    },
         | 
| 262 405 | 
             
                    {
         | 
| 263 | 
            -
                      " | 
| 264 | 
            -
                      " | 
| 265 | 
            -
                      " | 
| 406 | 
            +
                      "indexed": false,
         | 
| 407 | 
            +
                      "internalType": "PayoutId",
         | 
| 408 | 
            +
                      "name": "payoutId",
         | 
| 409 | 
            +
                      "type": "uint24"
         | 
| 266 410 | 
             
                    },
         | 
| 267 411 | 
             
                    {
         | 
| 268 | 
            -
                      " | 
| 269 | 
            -
                      " | 
| 270 | 
            -
                      " | 
| 412 | 
            +
                      "indexed": false,
         | 
| 413 | 
            +
                      "internalType": "Amount",
         | 
| 414 | 
            +
                      "name": "amount",
         | 
| 415 | 
            +
                      "type": "uint96"
         | 
| 416 | 
            +
                    }
         | 
| 417 | 
            +
                  ],
         | 
| 418 | 
            +
                  "name": "LogPolicyServicePayoutCreated",
         | 
| 419 | 
            +
                  "type": "event"
         | 
| 420 | 
            +
                },
         | 
| 421 | 
            +
                {
         | 
| 422 | 
            +
                  "anonymous": false,
         | 
| 423 | 
            +
                  "inputs": [
         | 
| 424 | 
            +
                    {
         | 
| 425 | 
            +
                      "indexed": false,
         | 
| 426 | 
            +
                      "internalType": "NftId",
         | 
| 427 | 
            +
                      "name": "policyNftId",
         | 
| 428 | 
            +
                      "type": "uint96"
         | 
| 429 | 
            +
                    },
         | 
| 430 | 
            +
                    {
         | 
| 431 | 
            +
                      "indexed": false,
         | 
| 432 | 
            +
                      "internalType": "PayoutId",
         | 
| 433 | 
            +
                      "name": "payoutId",
         | 
| 434 | 
            +
                      "type": "uint24"
         | 
| 435 | 
            +
                    },
         | 
| 436 | 
            +
                    {
         | 
| 437 | 
            +
                      "indexed": false,
         | 
| 438 | 
            +
                      "internalType": "Amount",
         | 
| 439 | 
            +
                      "name": "amount",
         | 
| 440 | 
            +
                      "type": "uint96"
         | 
| 441 | 
            +
                    }
         | 
| 442 | 
            +
                  ],
         | 
| 443 | 
            +
                  "name": "LogPolicyServicePayoutProcessed",
         | 
| 444 | 
            +
                  "type": "event"
         | 
| 445 | 
            +
                },
         | 
| 446 | 
            +
                {
         | 
| 447 | 
            +
                  "inputs": [
         | 
| 448 | 
            +
                    {
         | 
| 449 | 
            +
                      "internalType": "NftId",
         | 
| 450 | 
            +
                      "name": "policyNftId",
         | 
| 451 | 
            +
                      "type": "uint96"
         | 
| 452 | 
            +
                    },
         | 
| 453 | 
            +
                    {
         | 
| 454 | 
            +
                      "internalType": "Timestamp",
         | 
| 455 | 
            +
                      "name": "activateAt",
         | 
| 456 | 
            +
                      "type": "uint40"
         | 
| 457 | 
            +
                    }
         | 
| 458 | 
            +
                  ],
         | 
| 459 | 
            +
                  "name": "activate",
         | 
| 460 | 
            +
                  "outputs": [],
         | 
| 461 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 462 | 
            +
                  "type": "function"
         | 
| 463 | 
            +
                },
         | 
| 464 | 
            +
                {
         | 
| 465 | 
            +
                  "inputs": [],
         | 
| 466 | 
            +
                  "name": "authority",
         | 
| 467 | 
            +
                  "outputs": [
         | 
| 468 | 
            +
                    {
         | 
| 469 | 
            +
                      "internalType": "address",
         | 
| 470 | 
            +
                      "name": "",
         | 
| 471 | 
            +
                      "type": "address"
         | 
| 271 472 | 
             
                    }
         | 
| 272 473 | 
             
                  ],
         | 
| 273 474 | 
             
                  "stateMutability": "view",
         | 
| @@ -310,6 +511,47 @@ | |
| 310 511 | 
             
                  "stateMutability": "nonpayable",
         | 
| 311 512 | 
             
                  "type": "function"
         | 
| 312 513 | 
             
                },
         | 
| 514 | 
            +
                {
         | 
| 515 | 
            +
                  "inputs": [
         | 
| 516 | 
            +
                    {
         | 
| 517 | 
            +
                      "internalType": "NftId",
         | 
| 518 | 
            +
                      "name": "policyNftId",
         | 
| 519 | 
            +
                      "type": "uint96"
         | 
| 520 | 
            +
                    },
         | 
| 521 | 
            +
                    {
         | 
| 522 | 
            +
                      "internalType": "ClaimId",
         | 
| 523 | 
            +
                      "name": "claimId",
         | 
| 524 | 
            +
                      "type": "uint16"
         | 
| 525 | 
            +
                    }
         | 
| 526 | 
            +
                  ],
         | 
| 527 | 
            +
                  "name": "closeClaim",
         | 
| 528 | 
            +
                  "outputs": [],
         | 
| 529 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 530 | 
            +
                  "type": "function"
         | 
| 531 | 
            +
                },
         | 
| 532 | 
            +
                {
         | 
| 533 | 
            +
                  "inputs": [
         | 
| 534 | 
            +
                    {
         | 
| 535 | 
            +
                      "internalType": "NftId",
         | 
| 536 | 
            +
                      "name": "policyNftId",
         | 
| 537 | 
            +
                      "type": "uint96"
         | 
| 538 | 
            +
                    },
         | 
| 539 | 
            +
                    {
         | 
| 540 | 
            +
                      "internalType": "bool",
         | 
| 541 | 
            +
                      "name": "requirePremiumPayment",
         | 
| 542 | 
            +
                      "type": "bool"
         | 
| 543 | 
            +
                    },
         | 
| 544 | 
            +
                    {
         | 
| 545 | 
            +
                      "internalType": "Timestamp",
         | 
| 546 | 
            +
                      "name": "activateAt",
         | 
| 547 | 
            +
                      "type": "uint40"
         | 
| 548 | 
            +
                    }
         | 
| 549 | 
            +
                  ],
         | 
| 550 | 
            +
                  "name": "collateralize",
         | 
| 551 | 
            +
                  "outputs": [],
         | 
| 552 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 553 | 
            +
                  "type": "function"
         | 
| 554 | 
            +
                },
         | 
| 313 555 | 
             
                {
         | 
| 314 556 | 
             
                  "inputs": [
         | 
| 315 557 | 
             
                    {
         | 
| @@ -328,6 +570,63 @@ | |
| 328 570 | 
             
                  "stateMutability": "nonpayable",
         | 
| 329 571 | 
             
                  "type": "function"
         | 
| 330 572 | 
             
                },
         | 
| 573 | 
            +
                {
         | 
| 574 | 
            +
                  "inputs": [
         | 
| 575 | 
            +
                    {
         | 
| 576 | 
            +
                      "internalType": "NftId",
         | 
| 577 | 
            +
                      "name": "policyNftId",
         | 
| 578 | 
            +
                      "type": "uint96"
         | 
| 579 | 
            +
                    },
         | 
| 580 | 
            +
                    {
         | 
| 581 | 
            +
                      "internalType": "ClaimId",
         | 
| 582 | 
            +
                      "name": "claimId",
         | 
| 583 | 
            +
                      "type": "uint16"
         | 
| 584 | 
            +
                    },
         | 
| 585 | 
            +
                    {
         | 
| 586 | 
            +
                      "internalType": "Amount",
         | 
| 587 | 
            +
                      "name": "confirmedAmount",
         | 
| 588 | 
            +
                      "type": "uint96"
         | 
| 589 | 
            +
                    }
         | 
| 590 | 
            +
                  ],
         | 
| 591 | 
            +
                  "name": "confirmClaim",
         | 
| 592 | 
            +
                  "outputs": [],
         | 
| 593 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 594 | 
            +
                  "type": "function"
         | 
| 595 | 
            +
                },
         | 
| 596 | 
            +
                {
         | 
| 597 | 
            +
                  "inputs": [
         | 
| 598 | 
            +
                    {
         | 
| 599 | 
            +
                      "internalType": "NftId",
         | 
| 600 | 
            +
                      "name": "policyNftId",
         | 
| 601 | 
            +
                      "type": "uint96"
         | 
| 602 | 
            +
                    },
         | 
| 603 | 
            +
                    {
         | 
| 604 | 
            +
                      "internalType": "ClaimId",
         | 
| 605 | 
            +
                      "name": "claimId",
         | 
| 606 | 
            +
                      "type": "uint16"
         | 
| 607 | 
            +
                    },
         | 
| 608 | 
            +
                    {
         | 
| 609 | 
            +
                      "internalType": "Amount",
         | 
| 610 | 
            +
                      "name": "amount",
         | 
| 611 | 
            +
                      "type": "uint96"
         | 
| 612 | 
            +
                    },
         | 
| 613 | 
            +
                    {
         | 
| 614 | 
            +
                      "internalType": "bytes",
         | 
| 615 | 
            +
                      "name": "data",
         | 
| 616 | 
            +
                      "type": "bytes"
         | 
| 617 | 
            +
                    }
         | 
| 618 | 
            +
                  ],
         | 
| 619 | 
            +
                  "name": "createPayout",
         | 
| 620 | 
            +
                  "outputs": [
         | 
| 621 | 
            +
                    {
         | 
| 622 | 
            +
                      "internalType": "PayoutId",
         | 
| 623 | 
            +
                      "name": "payoutId",
         | 
| 624 | 
            +
                      "type": "uint24"
         | 
| 625 | 
            +
                    }
         | 
| 626 | 
            +
                  ],
         | 
| 627 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 628 | 
            +
                  "type": "function"
         | 
| 629 | 
            +
                },
         | 
| 331 630 | 
             
                {
         | 
| 332 631 | 
             
                  "inputs": [
         | 
| 333 632 | 
             
                    {
         | 
| @@ -341,6 +640,24 @@ | |
| 341 640 | 
             
                  "stateMutability": "nonpayable",
         | 
| 342 641 | 
             
                  "type": "function"
         | 
| 343 642 | 
             
                },
         | 
| 643 | 
            +
                {
         | 
| 644 | 
            +
                  "inputs": [
         | 
| 645 | 
            +
                    {
         | 
| 646 | 
            +
                      "internalType": "NftId",
         | 
| 647 | 
            +
                      "name": "policyNftId",
         | 
| 648 | 
            +
                      "type": "uint96"
         | 
| 649 | 
            +
                    },
         | 
| 650 | 
            +
                    {
         | 
| 651 | 
            +
                      "internalType": "ClaimId",
         | 
| 652 | 
            +
                      "name": "claimId",
         | 
| 653 | 
            +
                      "type": "uint16"
         | 
| 654 | 
            +
                    }
         | 
| 655 | 
            +
                  ],
         | 
| 656 | 
            +
                  "name": "declineClaim",
         | 
| 657 | 
            +
                  "outputs": [],
         | 
| 658 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 659 | 
            +
                  "type": "function"
         | 
| 660 | 
            +
                },
         | 
| 344 661 | 
             
                {
         | 
| 345 662 | 
             
                  "inputs": [
         | 
| 346 663 | 
             
                    {
         | 
| @@ -417,19 +734,6 @@ | |
| 417 734 | 
             
                  "stateMutability": "view",
         | 
| 418 735 | 
             
                  "type": "function"
         | 
| 419 736 | 
             
                },
         | 
| 420 | 
            -
                {
         | 
| 421 | 
            -
                  "inputs": [],
         | 
| 422 | 
            -
                  "name": "getMajorVersion",
         | 
| 423 | 
            -
                  "outputs": [
         | 
| 424 | 
            -
                    {
         | 
| 425 | 
            -
                      "internalType": "VersionPart",
         | 
| 426 | 
            -
                      "name": "majorVersion",
         | 
| 427 | 
            -
                      "type": "uint8"
         | 
| 428 | 
            -
                    }
         | 
| 429 | 
            -
                  ],
         | 
| 430 | 
            -
                  "stateMutability": "view",
         | 
| 431 | 
            -
                  "type": "function"
         | 
| 432 | 
            -
                },
         | 
| 433 737 | 
             
                {
         | 
| 434 738 | 
             
                  "inputs": [],
         | 
| 435 739 | 
             
                  "name": "getNftId",
         | 
| @@ -513,6 +817,19 @@ | |
| 513 817 | 
             
                  "stateMutability": "nonpayable",
         | 
| 514 818 | 
             
                  "type": "function"
         | 
| 515 819 | 
             
                },
         | 
| 820 | 
            +
                {
         | 
| 821 | 
            +
                  "inputs": [],
         | 
| 822 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 823 | 
            +
                  "outputs": [
         | 
| 824 | 
            +
                    {
         | 
| 825 | 
            +
                      "internalType": "bytes4",
         | 
| 826 | 
            +
                      "name": "",
         | 
| 827 | 
            +
                      "type": "bytes4"
         | 
| 828 | 
            +
                    }
         | 
| 829 | 
            +
                  ],
         | 
| 830 | 
            +
                  "stateMutability": "view",
         | 
| 831 | 
            +
                  "type": "function"
         | 
| 832 | 
            +
                },
         | 
| 516 833 | 
             
                {
         | 
| 517 834 | 
             
                  "inputs": [],
         | 
| 518 835 | 
             
                  "name": "linkToRegisteredNftId",
         | 
| @@ -523,20 +840,32 @@ | |
| 523 840 | 
             
                {
         | 
| 524 841 | 
             
                  "inputs": [
         | 
| 525 842 | 
             
                    {
         | 
| 526 | 
            -
                      "internalType": " | 
| 527 | 
            -
                      "name": " | 
| 528 | 
            -
                      "type": " | 
| 843 | 
            +
                      "internalType": "NftId",
         | 
| 844 | 
            +
                      "name": "policyNftId",
         | 
| 845 | 
            +
                      "type": "uint96"
         | 
| 846 | 
            +
                    },
         | 
| 847 | 
            +
                    {
         | 
| 848 | 
            +
                      "internalType": "PayoutId",
         | 
| 849 | 
            +
                      "name": "payoutId",
         | 
| 850 | 
            +
                      "type": "uint24"
         | 
| 529 851 | 
             
                    }
         | 
| 530 852 | 
             
                  ],
         | 
| 531 | 
            -
                  "name": " | 
| 532 | 
            -
                  "outputs": [
         | 
| 853 | 
            +
                  "name": "processPayout",
         | 
| 854 | 
            +
                  "outputs": [],
         | 
| 855 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 856 | 
            +
                  "type": "function"
         | 
| 857 | 
            +
                },
         | 
| 858 | 
            +
                {
         | 
| 859 | 
            +
                  "inputs": [
         | 
| 533 860 | 
             
                    {
         | 
| 534 | 
            -
                      "internalType": " | 
| 861 | 
            +
                      "internalType": "address",
         | 
| 535 862 | 
             
                      "name": "",
         | 
| 536 | 
            -
                      "type": " | 
| 863 | 
            +
                      "type": "address"
         | 
| 537 864 | 
             
                    }
         | 
| 538 865 | 
             
                  ],
         | 
| 539 | 
            -
                  " | 
| 866 | 
            +
                  "name": "setAuthority",
         | 
| 867 | 
            +
                  "outputs": [],
         | 
| 868 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 540 869 | 
             
                  "type": "function"
         | 
| 541 870 | 
             
                },
         | 
| 542 871 | 
             
                {
         | 
| @@ -547,21 +876,46 @@ | |
| 547 876 | 
             
                      "type": "uint96"
         | 
| 548 877 | 
             
                    },
         | 
| 549 878 | 
             
                    {
         | 
| 550 | 
            -
                      "internalType": " | 
| 551 | 
            -
                      "name": " | 
| 552 | 
            -
                      "type": " | 
| 879 | 
            +
                      "internalType": "Amount",
         | 
| 880 | 
            +
                      "name": "claimAmount",
         | 
| 881 | 
            +
                      "type": "uint96"
         | 
| 553 882 | 
             
                    },
         | 
| 554 883 | 
             
                    {
         | 
| 555 | 
            -
                      "internalType": " | 
| 556 | 
            -
                      "name": " | 
| 557 | 
            -
                      "type": " | 
| 884 | 
            +
                      "internalType": "bytes",
         | 
| 885 | 
            +
                      "name": "claimData",
         | 
| 886 | 
            +
                      "type": "bytes"
         | 
| 887 | 
            +
                    }
         | 
| 888 | 
            +
                  ],
         | 
| 889 | 
            +
                  "name": "submitClaim",
         | 
| 890 | 
            +
                  "outputs": [
         | 
| 891 | 
            +
                    {
         | 
| 892 | 
            +
                      "internalType": "ClaimId",
         | 
| 893 | 
            +
                      "name": "claimId",
         | 
| 894 | 
            +
                      "type": "uint16"
         | 
| 558 895 | 
             
                    }
         | 
| 559 896 | 
             
                  ],
         | 
| 560 | 
            -
                  "name": "underwrite",
         | 
| 561 | 
            -
                  "outputs": [],
         | 
| 562 897 | 
             
                  "stateMutability": "nonpayable",
         | 
| 563 898 | 
             
                  "type": "function"
         | 
| 564 899 | 
             
                },
         | 
| 900 | 
            +
                {
         | 
| 901 | 
            +
                  "inputs": [
         | 
| 902 | 
            +
                    {
         | 
| 903 | 
            +
                      "internalType": "bytes4",
         | 
| 904 | 
            +
                      "name": "interfaceId",
         | 
| 905 | 
            +
                      "type": "bytes4"
         | 
| 906 | 
            +
                    }
         | 
| 907 | 
            +
                  ],
         | 
| 908 | 
            +
                  "name": "supportsInterface",
         | 
| 909 | 
            +
                  "outputs": [
         | 
| 910 | 
            +
                    {
         | 
| 911 | 
            +
                      "internalType": "bool",
         | 
| 912 | 
            +
                      "name": "",
         | 
| 913 | 
            +
                      "type": "bool"
         | 
| 914 | 
            +
                    }
         | 
| 915 | 
            +
                  ],
         | 
| 916 | 
            +
                  "stateMutability": "view",
         | 
| 917 | 
            +
                  "type": "function"
         | 
| 918 | 
            +
                },
         | 
| 565 919 | 
             
                {
         | 
| 566 920 | 
             
                  "inputs": [
         | 
| 567 921 | 
             
                    {
         |