@etherisc/gif-next 0.0.2-e922e07-736 → 0.0.2-e94f4c7-084
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 +68 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +84 -0
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IComponent.sol/IComponent.json +158 -0
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +158 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +184 -149
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +158 -0
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +114 -189
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +68 -0
 - 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 +457 -268
 - 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 +426 -476
 - 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 +217 -169
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +304 -210
 - 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 +85 -30
 - 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 +175 -83
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +29 -13
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +426 -233
 - 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 +372 -86
 - 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 +189 -139
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +48 -56
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +111 -40
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +246 -170
 - 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 +101 -24
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +470 -41
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +627 -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 +607 -85
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +71 -19
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +777 -55
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +72 -12
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +114 -51
 - 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 +17 -36
 - 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 +2 -2
 - 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 +86 -15
 - 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 +2 -2
 - 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 +101 -26
 - 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 +209 -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 +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/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 +42 -10
 - package/contracts/components/Distribution.sol +6 -2
 - package/contracts/components/IComponent.sol +9 -1
 - package/contracts/components/IPoolComponent.sol +6 -44
 - package/contracts/components/Pool.sol +50 -126
 - package/contracts/components/Product.sol +141 -59
 - package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
 - package/contracts/instance/BundleManager.sol +9 -8
 - 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 -204
 - 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 +6 -4
 - package/contracts/instance/module/IComponents.sol +41 -0
 - package/contracts/instance/module/IPolicy.sol +11 -6
 - package/contracts/instance/module/ISetup.sol +3 -16
 - package/contracts/instance/service/ApplicationService.sol +25 -19
 - package/contracts/instance/service/BundleService.sol +224 -80
 - package/contracts/instance/service/ClaimService.sol +114 -26
 - package/contracts/instance/service/DistributionService.sol +58 -77
 - package/contracts/instance/service/IApplicationService.sol +3 -7
 - package/contracts/instance/service/IBundleService.sol +72 -25
 - package/contracts/instance/service/IClaimService.sol +46 -15
 - package/contracts/instance/service/IDistributionService.sol +1 -0
 - package/contracts/instance/service/IPolicyService.sol +72 -5
 - package/contracts/instance/service/IPoolService.sol +85 -3
 - package/contracts/instance/service/PolicyService.sol +320 -143
 - package/contracts/instance/service/PoolService.sol +245 -18
 - 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 +10 -11
 - package/contracts/registry/ReleaseManager.sol +20 -18
 - package/contracts/shared/IService.sol +4 -6
 - 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 +70 -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/RoleId.sol +6 -4
 - package/contracts/types/StateId.sol +7 -2
 - package/contracts/types/Timestamp.sol +6 -0
 - package/contracts/types/UFixed.sol +1 -0
 - package/contracts/types/Version.sol +1 -0
 - package/package.json +1 -1
 
| 
         @@ -3,6 +3,33 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
              "contractName": "IClaimService",
         
     | 
| 
       4 
4 
     | 
    
         
             
              "sourceName": "contracts/instance/service/IClaimService.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,80 @@ 
     | 
|
| 
       11 
38 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       12 
39 
     | 
    
         
             
                    }
         
     | 
| 
       13 
40 
     | 
    
         
             
                  ],
         
     | 
| 
       14 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "AccessManagedUnauthorized",
         
     | 
| 
      
 42 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 43 
     | 
    
         
            +
                },
         
     | 
| 
      
 44 
     | 
    
         
            +
                {
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 46 
     | 
    
         
            +
                    {
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 49 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    },
         
     | 
| 
      
 51 
     | 
    
         
            +
                    {
         
     | 
| 
      
 52 
     | 
    
         
            +
                      "internalType": "ClaimId",
         
     | 
| 
      
 53 
     | 
    
         
            +
                      "name": "claimId",
         
     | 
| 
      
 54 
     | 
    
         
            +
                      "type": "uint16"
         
     | 
| 
      
 55 
     | 
    
         
            +
                    },
         
     | 
| 
      
 56 
     | 
    
         
            +
                    {
         
     | 
| 
      
 57 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "name": "expectedState",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 60 
     | 
    
         
            +
                    },
         
     | 
| 
      
 61 
     | 
    
         
            +
                    {
         
     | 
| 
      
 62 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 63 
     | 
    
         
            +
                      "name": "actualState",
         
     | 
| 
      
 64 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 65 
     | 
    
         
            +
                    }
         
     | 
| 
      
 66 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 67 
     | 
    
         
            +
                  "name": "ErrorClaimServiceClaimNotInExpectedState",
         
     | 
| 
      
 68 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 69 
     | 
    
         
            +
                },
         
     | 
| 
      
 70 
     | 
    
         
            +
                {
         
     | 
| 
      
 71 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 72 
     | 
    
         
            +
                    {
         
     | 
| 
      
 73 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 74 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 75 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 76 
     | 
    
         
            +
                    },
         
     | 
| 
      
 77 
     | 
    
         
            +
                    {
         
     | 
| 
      
 78 
     | 
    
         
            +
                      "internalType": "ClaimId",
         
     | 
| 
      
 79 
     | 
    
         
            +
                      "name": "claimId",
         
     | 
| 
      
 80 
     | 
    
         
            +
                      "type": "uint16"
         
     | 
| 
      
 81 
     | 
    
         
            +
                    },
         
     | 
| 
      
 82 
     | 
    
         
            +
                    {
         
     | 
| 
      
 83 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 84 
     | 
    
         
            +
                      "name": "claimAmount",
         
     | 
| 
      
 85 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 86 
     | 
    
         
            +
                    },
         
     | 
| 
      
 87 
     | 
    
         
            +
                    {
         
     | 
| 
      
 88 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 89 
     | 
    
         
            +
                      "name": "paidAmount",
         
     | 
| 
      
 90 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 91 
     | 
    
         
            +
                    }
         
     | 
| 
      
 92 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 93 
     | 
    
         
            +
                  "name": "ErrorClaimServiceClaimWithMissingPayouts",
         
     | 
| 
      
 94 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 95 
     | 
    
         
            +
                },
         
     | 
| 
      
 96 
     | 
    
         
            +
                {
         
     | 
| 
      
 97 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 98 
     | 
    
         
            +
                    {
         
     | 
| 
      
 99 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 100 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 101 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 102 
     | 
    
         
            +
                    },
         
     | 
| 
      
 103 
     | 
    
         
            +
                    {
         
     | 
| 
      
 104 
     | 
    
         
            +
                      "internalType": "ClaimId",
         
     | 
| 
      
 105 
     | 
    
         
            +
                      "name": "claimId",
         
     | 
| 
      
 106 
     | 
    
         
            +
                      "type": "uint16"
         
     | 
| 
      
 107 
     | 
    
         
            +
                    },
         
     | 
| 
      
 108 
     | 
    
         
            +
                    {
         
     | 
| 
      
 109 
     | 
    
         
            +
                      "internalType": "uint8",
         
     | 
| 
      
 110 
     | 
    
         
            +
                      "name": "openPayouts",
         
     | 
| 
      
 111 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 112 
     | 
    
         
            +
                    }
         
     | 
| 
      
 113 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 114 
     | 
    
         
            +
                  "name": "ErrorClaimServiceClaimWithOpenPayouts",
         
     | 
| 
       15 
115 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       16 
116 
     | 
    
         
             
                },
         
     | 
| 
       17 
117 
     | 
    
         
             
                {
         
     | 
| 
         @@ -64,25 +164,43 @@ 
     | 
|
| 
       64 
164 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       65 
165 
     | 
    
         
             
                },
         
     | 
| 
       66 
166 
     | 
    
         
             
                {
         
     | 
| 
      
 167 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
       67 
168 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       68 
169 
     | 
    
         
             
                    {
         
     | 
| 
       69 
     | 
    
         
            -
                      " 
     | 
| 
       70 
     | 
    
         
            -
                      " 
     | 
| 
       71 
     | 
    
         
            -
                      " 
     | 
| 
       72 
     | 
    
         
            -
             
     | 
| 
      
 170 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 171 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 172 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 173 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 174 
     | 
    
         
            +
                    }
         
     | 
| 
      
 175 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 176 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 177 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 178 
     | 
    
         
            +
                },
         
     | 
| 
      
 179 
     | 
    
         
            +
                {
         
     | 
| 
      
 180 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 181 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 182 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
       73 
183 
     | 
    
         
             
                    {
         
     | 
| 
       74 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       75 
     | 
    
         
            -
                      "name": " 
     | 
| 
       76 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 184 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 185 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 186 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       77 
187 
     | 
    
         
             
                    }
         
     | 
| 
       78 
188 
     | 
    
         
             
                  ],
         
     | 
| 
       79 
     | 
    
         
            -
                  " 
     | 
| 
       80 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       81 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 189 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
       82 
190 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       83 
191 
     | 
    
         
             
                },
         
     | 
| 
       84 
192 
     | 
    
         
             
                {
         
     | 
| 
       85 
193 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 194 
     | 
    
         
            +
                    {
         
     | 
| 
      
 195 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 196 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 197 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 198 
     | 
    
         
            +
                    },
         
     | 
| 
      
 199 
     | 
    
         
            +
                    {
         
     | 
| 
      
 200 
     | 
    
         
            +
                      "internalType": "contract InstanceReader",
         
     | 
| 
      
 201 
     | 
    
         
            +
                      "name": "instanceReader",
         
     | 
| 
      
 202 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 203 
     | 
    
         
            +
                    },
         
     | 
| 
       86 
204 
     | 
    
         
             
                    {
         
     | 
| 
       87 
205 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       88 
206 
     | 
    
         
             
                      "name": "policyNftId",
         
     | 
| 
         @@ -92,14 +210,9 @@ 
     | 
|
| 
       92 
210 
     | 
    
         
             
                      "internalType": "ClaimId",
         
     | 
| 
       93 
211 
     | 
    
         
             
                      "name": "claimId",
         
     | 
| 
       94 
212 
     | 
    
         
             
                      "type": "uint16"
         
     | 
| 
       95 
     | 
    
         
            -
                    },
         
     | 
| 
       96 
     | 
    
         
            -
                    {
         
     | 
| 
       97 
     | 
    
         
            -
                      "internalType": "uint256",
         
     | 
| 
       98 
     | 
    
         
            -
                      "name": "claimAmount",
         
     | 
| 
       99 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       100 
213 
     | 
    
         
             
                    }
         
     | 
| 
       101 
214 
     | 
    
         
             
                  ],
         
     | 
| 
       102 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 215 
     | 
    
         
            +
                  "name": "close",
         
     | 
| 
       103 
216 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       104 
217 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       105 
218 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -107,48 +220,57 @@ 
     | 
|
| 
       107 
220 
     | 
    
         
             
                {
         
     | 
| 
       108 
221 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       109 
222 
     | 
    
         
             
                    {
         
     | 
| 
       110 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       111 
     | 
    
         
            -
                      "name": " 
     | 
| 
       112 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 223 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 224 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 225 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       113 
226 
     | 
    
         
             
                    },
         
     | 
| 
       114 
227 
     | 
    
         
             
                    {
         
     | 
| 
       115 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       116 
     | 
    
         
            -
                      "name": " 
     | 
| 
       117 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 228 
     | 
    
         
            +
                      "internalType": "contract InstanceReader",
         
     | 
| 
      
 229 
     | 
    
         
            +
                      "name": "instanceReader",
         
     | 
| 
      
 230 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       118 
231 
     | 
    
         
             
                    },
         
     | 
| 
       119 
232 
     | 
    
         
             
                    {
         
     | 
| 
       120 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       121 
     | 
    
         
            -
                      "name": " 
     | 
| 
       122 
     | 
    
         
            -
                      "type": " 
     | 
| 
       123 
     | 
    
         
            -
                    }
         
     | 
| 
       124 
     | 
    
         
            -
                  ],
         
     | 
| 
       125 
     | 
    
         
            -
                  "name": "createClaim",
         
     | 
| 
       126 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 233 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 234 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 235 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 236 
     | 
    
         
            +
                    },
         
     | 
| 
       127 
237 
     | 
    
         
             
                    {
         
     | 
| 
       128 
238 
     | 
    
         
             
                      "internalType": "ClaimId",
         
     | 
| 
       129 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
      
 239 
     | 
    
         
            +
                      "name": "claimId",
         
     | 
| 
       130 
240 
     | 
    
         
             
                      "type": "uint16"
         
     | 
| 
      
 241 
     | 
    
         
            +
                    },
         
     | 
| 
      
 242 
     | 
    
         
            +
                    {
         
     | 
| 
      
 243 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 244 
     | 
    
         
            +
                      "name": "claimAmount",
         
     | 
| 
      
 245 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       131 
246 
     | 
    
         
             
                    }
         
     | 
| 
       132 
247 
     | 
    
         
             
                  ],
         
     | 
| 
      
 248 
     | 
    
         
            +
                  "name": "confirm",
         
     | 
| 
      
 249 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
       133 
250 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       134 
251 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       135 
252 
     | 
    
         
             
                },
         
     | 
| 
       136 
253 
     | 
    
         
             
                {
         
     | 
| 
       137 
254 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 255 
     | 
    
         
            +
                    {
         
     | 
| 
      
 256 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 257 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 258 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 259 
     | 
    
         
            +
                    },
         
     | 
| 
       138 
260 
     | 
    
         
             
                    {
         
     | 
| 
       139 
261 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       140 
262 
     | 
    
         
             
                      "name": "policyNftId",
         
     | 
| 
       141 
263 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       142 
264 
     | 
    
         
             
                    },
         
     | 
| 
       143 
265 
     | 
    
         
             
                    {
         
     | 
| 
       144 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       145 
     | 
    
         
            -
                      "name": " 
     | 
| 
       146 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 266 
     | 
    
         
            +
                      "internalType": "PayoutId",
         
     | 
| 
      
 267 
     | 
    
         
            +
                      "name": "payoutId",
         
     | 
| 
      
 268 
     | 
    
         
            +
                      "type": "uint24"
         
     | 
| 
       147 
269 
     | 
    
         
             
                    },
         
     | 
| 
       148 
270 
     | 
    
         
             
                    {
         
     | 
| 
       149 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
      
 271 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
       150 
272 
     | 
    
         
             
                      "name": "payoutAmount",
         
     | 
| 
       151 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 273 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       152 
274 
     | 
    
         
             
                    },
         
     | 
| 
       153 
275 
     | 
    
         
             
                    {
         
     | 
| 
       154 
276 
     | 
    
         
             
                      "internalType": "bytes",
         
     | 
| 
         @@ -157,18 +279,22 @@ 
     | 
|
| 
       157 
279 
     | 
    
         
             
                    }
         
     | 
| 
       158 
280 
     | 
    
         
             
                  ],
         
     | 
| 
       159 
281 
     | 
    
         
             
                  "name": "createPayout",
         
     | 
| 
       160 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       161 
     | 
    
         
            -
                    {
         
     | 
| 
       162 
     | 
    
         
            -
                      "internalType": "PayoutId",
         
     | 
| 
       163 
     | 
    
         
            -
                      "name": "payoutId",
         
     | 
| 
       164 
     | 
    
         
            -
                      "type": "uint24"
         
     | 
| 
       165 
     | 
    
         
            -
                    }
         
     | 
| 
       166 
     | 
    
         
            -
                  ],
         
     | 
| 
      
 282 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
       167 
283 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       168 
284 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       169 
285 
     | 
    
         
             
                },
         
     | 
| 
       170 
286 
     | 
    
         
             
                {
         
     | 
| 
       171 
287 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 288 
     | 
    
         
            +
                    {
         
     | 
| 
      
 289 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 290 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 291 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 292 
     | 
    
         
            +
                    },
         
     | 
| 
      
 293 
     | 
    
         
            +
                    {
         
     | 
| 
      
 294 
     | 
    
         
            +
                      "internalType": "contract InstanceReader",
         
     | 
| 
      
 295 
     | 
    
         
            +
                      "name": "instanceReader",
         
     | 
| 
      
 296 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 297 
     | 
    
         
            +
                    },
         
     | 
| 
       172 
298 
     | 
    
         
             
                    {
         
     | 
| 
       173 
299 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       174 
300 
     | 
    
         
             
                      "name": "policyNftId",
         
     | 
| 
         @@ -180,7 +306,7 @@ 
     | 
|
| 
       180 
306 
     | 
    
         
             
                      "type": "uint16"
         
     | 
| 
       181 
307 
     | 
    
         
             
                    }
         
     | 
| 
       182 
308 
     | 
    
         
             
                  ],
         
     | 
| 
       183 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 309 
     | 
    
         
            +
                  "name": "decline",
         
     | 
| 
       184 
310 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       185 
311 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       186 
312 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -248,19 +374,6 @@ 
     | 
|
| 
       248 
374 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       249 
375 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       250 
376 
     | 
    
         
             
                },
         
     | 
| 
       251 
     | 
    
         
            -
                {
         
     | 
| 
       252 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       253 
     | 
    
         
            -
                  "name": "getMajorVersion",
         
     | 
| 
       254 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       255 
     | 
    
         
            -
                    {
         
     | 
| 
       256 
     | 
    
         
            -
                      "internalType": "VersionPart",
         
     | 
| 
       257 
     | 
    
         
            -
                      "name": "majorVersion",
         
     | 
| 
       258 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       259 
     | 
    
         
            -
                    }
         
     | 
| 
       260 
     | 
    
         
            -
                  ],
         
     | 
| 
       261 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       262 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       263 
     | 
    
         
            -
                },
         
     | 
| 
       264 
377 
     | 
    
         
             
                {
         
     | 
| 
       265 
378 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       266 
379 
     | 
    
         
             
                  "name": "getNftId",
         
     | 
| 
         @@ -344,6 +457,19 @@ 
     | 
|
| 
       344 
457 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       345 
458 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       346 
459 
     | 
    
         
             
                },
         
     | 
| 
      
 460 
     | 
    
         
            +
                {
         
     | 
| 
      
 461 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 462 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 463 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 464 
     | 
    
         
            +
                    {
         
     | 
| 
      
 465 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 466 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 467 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 468 
     | 
    
         
            +
                    }
         
     | 
| 
      
 469 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 470 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 471 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 472 
     | 
    
         
            +
                },
         
     | 
| 
       347 
473 
     | 
    
         
             
                {
         
     | 
| 
       348 
474 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       349 
475 
     | 
    
         
             
                  "name": "linkToRegisteredNftId",
         
     | 
| 
         @@ -353,6 +479,16 @@ 
     | 
|
| 
       353 
479 
     | 
    
         
             
                },
         
     | 
| 
       354 
480 
     | 
    
         
             
                {
         
     | 
| 
       355 
481 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 482 
     | 
    
         
            +
                    {
         
     | 
| 
      
 483 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 484 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 485 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 486 
     | 
    
         
            +
                    },
         
     | 
| 
      
 487 
     | 
    
         
            +
                    {
         
     | 
| 
      
 488 
     | 
    
         
            +
                      "internalType": "contract InstanceReader",
         
     | 
| 
      
 489 
     | 
    
         
            +
                      "name": "instanceReader",
         
     | 
| 
      
 490 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 491 
     | 
    
         
            +
                    },
         
     | 
| 
       356 
492 
     | 
    
         
             
                    {
         
     | 
| 
       357 
493 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       358 
494 
     | 
    
         
             
                      "name": "policyNftId",
         
     | 
| 
         @@ -364,7 +500,64 @@ 
     | 
|
| 
       364 
500 
     | 
    
         
             
                      "type": "uint24"
         
     | 
| 
       365 
501 
     | 
    
         
             
                    }
         
     | 
| 
       366 
502 
     | 
    
         
             
                  ],
         
     | 
| 
       367 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 503 
     | 
    
         
            +
                  "name": "processPayout",
         
     | 
| 
      
 504 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 505 
     | 
    
         
            +
                    {
         
     | 
| 
      
 506 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 507 
     | 
    
         
            +
                      "name": "amount",
         
     | 
| 
      
 508 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 509 
     | 
    
         
            +
                    },
         
     | 
| 
      
 510 
     | 
    
         
            +
                    {
         
     | 
| 
      
 511 
     | 
    
         
            +
                      "internalType": "bool",
         
     | 
| 
      
 512 
     | 
    
         
            +
                      "name": "payoutIsClosingClaim",
         
     | 
| 
      
 513 
     | 
    
         
            +
                      "type": "bool"
         
     | 
| 
      
 514 
     | 
    
         
            +
                    }
         
     | 
| 
      
 515 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 516 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 517 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 518 
     | 
    
         
            +
                },
         
     | 
| 
      
 519 
     | 
    
         
            +
                {
         
     | 
| 
      
 520 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 521 
     | 
    
         
            +
                    {
         
     | 
| 
      
 522 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 523 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 524 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 525 
     | 
    
         
            +
                    }
         
     | 
| 
      
 526 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 527 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 528 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 529 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 530 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 531 
     | 
    
         
            +
                },
         
     | 
| 
      
 532 
     | 
    
         
            +
                {
         
     | 
| 
      
 533 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 534 
     | 
    
         
            +
                    {
         
     | 
| 
      
 535 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 536 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 537 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 538 
     | 
    
         
            +
                    },
         
     | 
| 
      
 539 
     | 
    
         
            +
                    {
         
     | 
| 
      
 540 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 541 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 542 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 543 
     | 
    
         
            +
                    },
         
     | 
| 
      
 544 
     | 
    
         
            +
                    {
         
     | 
| 
      
 545 
     | 
    
         
            +
                      "internalType": "ClaimId",
         
     | 
| 
      
 546 
     | 
    
         
            +
                      "name": "claimId",
         
     | 
| 
      
 547 
     | 
    
         
            +
                      "type": "uint16"
         
     | 
| 
      
 548 
     | 
    
         
            +
                    },
         
     | 
| 
      
 549 
     | 
    
         
            +
                    {
         
     | 
| 
      
 550 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 551 
     | 
    
         
            +
                      "name": "claimAmount",
         
     | 
| 
      
 552 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 553 
     | 
    
         
            +
                    },
         
     | 
| 
      
 554 
     | 
    
         
            +
                    {
         
     | 
| 
      
 555 
     | 
    
         
            +
                      "internalType": "bytes",
         
     | 
| 
      
 556 
     | 
    
         
            +
                      "name": "claimData",
         
     | 
| 
      
 557 
     | 
    
         
            +
                      "type": "bytes"
         
     | 
| 
      
 558 
     | 
    
         
            +
                    }
         
     | 
| 
      
 559 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 560 
     | 
    
         
            +
                  "name": "submit",
         
     | 
| 
       368 
561 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       369 
562 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       370 
563 
     | 
    
         
             
                  "type": "function"
         
     | 
    
        package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json
    CHANGED
    
    | 
         @@ -3,6 +3,55 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
              "contractName": "IDistributionService",
         
     | 
| 
       4 
4 
     | 
    
         
             
              "sourceName": "contracts/instance/service/IDistributionService.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 
     | 
    
         
            +
                },
         
     | 
| 
      
 44 
     | 
    
         
            +
                {
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 46 
     | 
    
         
            +
                    {
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
      
 49 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    }
         
     | 
| 
      
 51 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 52 
     | 
    
         
            +
                  "name": "ErrorDistributionServiceCallerNotRegistered",
         
     | 
| 
      
 53 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 54 
     | 
    
         
            +
                },
         
     | 
| 
       6 
55 
     | 
    
         
             
                {
         
     | 
| 
       7 
56 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       8 
57 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -238,17 +287,6 @@ 
     | 
|
| 
       238 
287 
     | 
    
         
             
                  "name": "ErrorIDistributionServiceReferralInvalid",
         
     | 
| 
       239 
288 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       240 
289 
     | 
    
         
             
                },
         
     | 
| 
       241 
     | 
    
         
            -
                {
         
     | 
| 
       242 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       243 
     | 
    
         
            -
                    {
         
     | 
| 
       244 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       245 
     | 
    
         
            -
                      "name": "caller",
         
     | 
| 
       246 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       247 
     | 
    
         
            -
                    }
         
     | 
| 
       248 
     | 
    
         
            -
                  ],
         
     | 
| 
       249 
     | 
    
         
            -
                  "name": "ErrorIServiceCallerUnknown",
         
     | 
| 
       250 
     | 
    
         
            -
                  "type": "error"
         
     | 
| 
       251 
     | 
    
         
            -
                },
         
     | 
| 
       252 
290 
     | 
    
         
             
                {
         
     | 
| 
       253 
291 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       254 
292 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -298,6 +336,32 @@ 
     | 
|
| 
       298 
336 
     | 
    
         
             
                  "name": "ErrorNotRegistry",
         
     | 
| 
       299 
337 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       300 
338 
     | 
    
         
             
                },
         
     | 
| 
      
 339 
     | 
    
         
            +
                {
         
     | 
| 
      
 340 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 341 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 342 
     | 
    
         
            +
                    {
         
     | 
| 
      
 343 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 344 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 345 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 346 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 347 
     | 
    
         
            +
                    }
         
     | 
| 
      
 348 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 349 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 350 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 351 
     | 
    
         
            +
                },
         
     | 
| 
      
 352 
     | 
    
         
            +
                {
         
     | 
| 
      
 353 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 354 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 355 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 356 
     | 
    
         
            +
                    {
         
     | 
| 
      
 357 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 358 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 359 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 360 
     | 
    
         
            +
                    }
         
     | 
| 
      
 361 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 362 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 363 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 364 
     | 
    
         
            +
                },
         
     | 
| 
       301 
365 
     | 
    
         
             
                {
         
     | 
| 
       302 
366 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       303 
367 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -676,19 +740,6 @@ 
     | 
|
| 
       676 
740 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       677 
741 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       678 
742 
     | 
    
         
             
                },
         
     | 
| 
       679 
     | 
    
         
            -
                {
         
     | 
| 
       680 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       681 
     | 
    
         
            -
                  "name": "getMajorVersion",
         
     | 
| 
       682 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       683 
     | 
    
         
            -
                    {
         
     | 
| 
       684 
     | 
    
         
            -
                      "internalType": "VersionPart",
         
     | 
| 
       685 
     | 
    
         
            -
                      "name": "majorVersion",
         
     | 
| 
       686 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       687 
     | 
    
         
            -
                    }
         
     | 
| 
       688 
     | 
    
         
            -
                  ],
         
     | 
| 
       689 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       690 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       691 
     | 
    
         
            -
                },
         
     | 
| 
       692 
743 
     | 
    
         
             
                {
         
     | 
| 
       693 
744 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       694 
745 
     | 
    
         
             
                  "name": "getNftId",
         
     | 
| 
         @@ -772,6 +823,19 @@ 
     | 
|
| 
       772 
823 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       773 
824 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       774 
825 
     | 
    
         
             
                },
         
     | 
| 
      
 826 
     | 
    
         
            +
                {
         
     | 
| 
      
 827 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 828 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 829 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 830 
     | 
    
         
            +
                    {
         
     | 
| 
      
 831 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 832 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 833 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 834 
     | 
    
         
            +
                    }
         
     | 
| 
      
 835 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 836 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 837 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 838 
     | 
    
         
            +
                },
         
     | 
| 
       775 
839 
     | 
    
         
             
                {
         
     | 
| 
       776 
840 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       777 
841 
     | 
    
         
             
                  "name": "linkToRegisteredNftId",
         
     | 
| 
         @@ -908,6 +972,19 @@ 
     | 
|
| 
       908 
972 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       909 
973 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       910 
974 
     | 
    
         
             
                },
         
     | 
| 
      
 975 
     | 
    
         
            +
                {
         
     | 
| 
      
 976 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 977 
     | 
    
         
            +
                    {
         
     | 
| 
      
 978 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 979 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 980 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 981 
     | 
    
         
            +
                    }
         
     | 
| 
      
 982 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 983 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 984 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 985 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 986 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 987 
     | 
    
         
            +
                },
         
     | 
| 
       911 
988 
     | 
    
         
             
                {
         
     | 
| 
       912 
989 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       913 
990 
     | 
    
         
             
                    {
         
     |