@etherisc/gif-next 0.0.2-e922e07-736 → 0.0.2-e9a637d-547
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 +0 -71
 - 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 +68 -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 +214 -2063
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +196 -51
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +363 -2832
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +491 -127
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +101 -167
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +333 -171
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +75 -23
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2677 -0
 - 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 +124 -53
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +21 -13
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +384 -249
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +74 -14
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +104 -41
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +11 -7
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +195 -121
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +51 -47
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +80 -14
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +212 -186
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +80 -14
 - 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 +90 -24
 - 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 +136 -65
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +27 -19
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +561 -51
 - 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 +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 +161 -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/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/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 +2 -2
 - 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/IComponent.sol +9 -1
 - package/contracts/components/IPoolComponent.sol +5 -43
 - package/contracts/components/Pool.sol +47 -122
 - package/contracts/components/Product.sol +4 -0
 - package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
 - package/contracts/instance/BundleManager.sol +6 -4
 - package/contracts/instance/Cloneable.sol +7 -2
 - package/contracts/instance/IInstance.sol +23 -55
 - package/contracts/instance/IInstanceService.sol +31 -6
 - package/contracts/instance/Instance.sol +90 -182
 - package/contracts/instance/InstanceAccessManager.sol +402 -159
 - package/contracts/instance/InstanceReader.sol +12 -12
 - package/contracts/instance/InstanceService.sol +287 -246
 - package/contracts/instance/InstanceStore.sol +219 -0
 - 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 +11 -2
 - 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/ISetup.sol +3 -16
 - package/contracts/instance/service/ApplicationService.sol +18 -16
 - package/contracts/instance/service/BundleService.sol +213 -81
 - package/contracts/instance/service/ClaimService.sol +3 -3
 - package/contracts/instance/service/DistributionService.sol +57 -70
 - package/contracts/instance/service/IBundleService.sol +63 -25
 - package/contracts/instance/service/IDistributionService.sol +1 -0
 - package/contracts/instance/service/IPoolService.sol +82 -3
 - package/contracts/instance/service/PolicyService.sol +68 -100
 - package/contracts/instance/service/PoolService.sol +214 -20
 - package/contracts/instance/service/ProductService.sol +34 -58
 - 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 +60 -0
 - package/contracts/types/Blocknumber.sol +1 -0
 - package/contracts/types/Fee.sol +13 -5
 - package/contracts/types/NftId.sol +8 -0
 - package/contracts/types/ObjectType.sol +1 -0
 - package/contracts/types/RoleId.sol +6 -4
 - package/contracts/types/StateId.sol +1 -0
 - package/contracts/types/Timestamp.sol +1 -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,7 @@ 
     | 
|
| 
       11 
38 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       12 
39 
     | 
    
         
             
                    }
         
     | 
| 
       13 
40 
     | 
    
         
             
                  ],
         
     | 
| 
       14 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "AccessManagedUnauthorized",
         
     | 
| 
       15 
42 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       16 
43 
     | 
    
         
             
                },
         
     | 
| 
       17 
44 
     | 
    
         
             
                {
         
     | 
| 
         @@ -63,6 +90,32 @@ 
     | 
|
| 
       63 
90 
     | 
    
         
             
                  "name": "ErrorNotRegistry",
         
     | 
| 
       64 
91 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       65 
92 
     | 
    
         
             
                },
         
     | 
| 
      
 93 
     | 
    
         
            +
                {
         
     | 
| 
      
 94 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 95 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 96 
     | 
    
         
            +
                    {
         
     | 
| 
      
 97 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 98 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 99 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 100 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 101 
     | 
    
         
            +
                    }
         
     | 
| 
      
 102 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 103 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 104 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 105 
     | 
    
         
            +
                },
         
     | 
| 
      
 106 
     | 
    
         
            +
                {
         
     | 
| 
      
 107 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 108 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 109 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 110 
     | 
    
         
            +
                    {
         
     | 
| 
      
 111 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 112 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 113 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 114 
     | 
    
         
            +
                    }
         
     | 
| 
      
 115 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 116 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 117 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 118 
     | 
    
         
            +
                },
         
     | 
| 
       66 
119 
     | 
    
         
             
                {
         
     | 
| 
       67 
120 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       68 
121 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -248,19 +301,6 @@ 
     | 
|
| 
       248 
301 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       249 
302 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       250 
303 
     | 
    
         
             
                },
         
     | 
| 
       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 
304 
     | 
    
         
             
                {
         
     | 
| 
       265 
305 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       266 
306 
     | 
    
         
             
                  "name": "getNftId",
         
     | 
| 
         @@ -344,6 +384,19 @@ 
     | 
|
| 
       344 
384 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       345 
385 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       346 
386 
     | 
    
         
             
                },
         
     | 
| 
      
 387 
     | 
    
         
            +
                {
         
     | 
| 
      
 388 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 389 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 390 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 391 
     | 
    
         
            +
                    {
         
     | 
| 
      
 392 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 393 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 394 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 395 
     | 
    
         
            +
                    }
         
     | 
| 
      
 396 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 397 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 398 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 399 
     | 
    
         
            +
                },
         
     | 
| 
       347 
400 
     | 
    
         
             
                {
         
     | 
| 
       348 
401 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       349 
402 
     | 
    
         
             
                  "name": "linkToRegisteredNftId",
         
     | 
| 
         @@ -369,6 +422,19 @@ 
     | 
|
| 
       369 
422 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       370 
423 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       371 
424 
     | 
    
         
             
                },
         
     | 
| 
      
 425 
     | 
    
         
            +
                {
         
     | 
| 
      
 426 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 427 
     | 
    
         
            +
                    {
         
     | 
| 
      
 428 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 429 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 430 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 431 
     | 
    
         
            +
                    }
         
     | 
| 
      
 432 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 433 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 434 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 435 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 436 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 437 
     | 
    
         
            +
                },
         
     | 
| 
       372 
438 
     | 
    
         
             
                {
         
     | 
| 
       373 
439 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       374 
440 
     | 
    
         
             
                    {
         
     | 
    
        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 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -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 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -152,17 +190,6 @@ 
     | 
|
| 
       152 
190 
     | 
    
         
             
                  "name": "ErrorIPolicyServicePremiumNotFullyPaid",
         
     | 
| 
       153 
191 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       154 
192 
     | 
    
         
             
                },
         
     | 
| 
       155 
     | 
    
         
            -
                {
         
     | 
| 
       156 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       157 
     | 
    
         
            -
                    {
         
     | 
| 
       158 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       159 
     | 
    
         
            -
                      "name": "caller",
         
     | 
| 
       160 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       161 
     | 
    
         
            -
                    }
         
     | 
| 
       162 
     | 
    
         
            -
                  ],
         
     | 
| 
       163 
     | 
    
         
            -
                  "name": "ErrorIServiceCallerUnknown",
         
     | 
| 
       164 
     | 
    
         
            -
                  "type": "error"
         
     | 
| 
       165 
     | 
    
         
            -
                },
         
     | 
| 
       166 
193 
     | 
    
         
             
                {
         
     | 
| 
       167 
194 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       168 
195 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -212,6 +239,19 @@ 
     | 
|
| 
       212 
239 
     | 
    
         
             
                  "name": "ErrorNotRegistry",
         
     | 
| 
       213 
240 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       214 
241 
     | 
    
         
             
                },
         
     | 
| 
      
 242 
     | 
    
         
            +
                {
         
     | 
| 
      
 243 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 244 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 245 
     | 
    
         
            +
                    {
         
     | 
| 
      
 246 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 247 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 248 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 249 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 250 
     | 
    
         
            +
                    }
         
     | 
| 
      
 251 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 252 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 253 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 254 
     | 
    
         
            +
                },
         
     | 
| 
       215 
255 
     | 
    
         
             
                {
         
     | 
| 
       216 
256 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       217 
257 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -230,6 +270,19 @@ 
     | 
|
| 
       230 
270 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       231 
271 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       232 
272 
     | 
    
         
             
                },
         
     | 
| 
      
 273 
     | 
    
         
            +
                {
         
     | 
| 
      
 274 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 275 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 276 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 277 
     | 
    
         
            +
                    {
         
     | 
| 
      
 278 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 279 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 280 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 281 
     | 
    
         
            +
                    }
         
     | 
| 
      
 282 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 283 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 284 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 285 
     | 
    
         
            +
                },
         
     | 
| 
       233 
286 
     | 
    
         
             
                {
         
     | 
| 
       234 
287 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       235 
288 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -374,19 +427,6 @@ 
     | 
|
| 
       374 
427 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       375 
428 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       376 
429 
     | 
    
         
             
                },
         
     | 
| 
       377 
     | 
    
         
            -
                {
         
     | 
| 
       378 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       379 
     | 
    
         
            -
                  "name": "getMajorVersion",
         
     | 
| 
       380 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       381 
     | 
    
         
            -
                    {
         
     | 
| 
       382 
     | 
    
         
            -
                      "internalType": "VersionPart",
         
     | 
| 
       383 
     | 
    
         
            -
                      "name": "majorVersion",
         
     | 
| 
       384 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       385 
     | 
    
         
            -
                    }
         
     | 
| 
       386 
     | 
    
         
            -
                  ],
         
     | 
| 
       387 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       388 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       389 
     | 
    
         
            -
                },
         
     | 
| 
       390 
430 
     | 
    
         
             
                {
         
     | 
| 
       391 
431 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       392 
432 
     | 
    
         
             
                  "name": "getNftId",
         
     | 
| 
         @@ -470,6 +510,19 @@ 
     | 
|
| 
       470 
510 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       471 
511 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       472 
512 
     | 
    
         
             
                },
         
     | 
| 
      
 513 
     | 
    
         
            +
                {
         
     | 
| 
      
 514 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 515 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 516 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 517 
     | 
    
         
            +
                    {
         
     | 
| 
      
 518 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 519 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 520 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 521 
     | 
    
         
            +
                    }
         
     | 
| 
      
 522 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 523 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 524 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 525 
     | 
    
         
            +
                },
         
     | 
| 
       473 
526 
     | 
    
         
             
                {
         
     | 
| 
       474 
527 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       475 
528 
     | 
    
         
             
                  "name": "linkToRegisteredNftId",
         
     | 
| 
         @@ -477,6 +530,19 @@ 
     | 
|
| 
       477 
530 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       478 
531 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       479 
532 
     | 
    
         
             
                },
         
     | 
| 
      
 533 
     | 
    
         
            +
                {
         
     | 
| 
      
 534 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 535 
     | 
    
         
            +
                    {
         
     | 
| 
      
 536 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 537 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 538 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 539 
     | 
    
         
            +
                    }
         
     | 
| 
      
 540 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 541 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 542 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 543 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 544 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 545 
     | 
    
         
            +
                },
         
     | 
| 
       480 
546 
     | 
    
         
             
                {
         
     | 
| 
       481 
547 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       482 
548 
     | 
    
         
             
                    {
         
     |