@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
 
    
        package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json
    CHANGED
    
    | 
         @@ -3,6 +3,33 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
              "contractName": "IApplicationService",
         
     | 
| 
       4 
4 
     | 
    
         
             
              "sourceName": "contracts/instance/service/IApplicationService.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 
     | 
    
         
             
                {
         
     | 
| 
         @@ -95,6 +122,19 @@ 
     | 
|
| 
       95 
122 
     | 
    
         
             
                  "name": "IApplicationServicePolicyNotApplied",
         
     | 
| 
       96 
123 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       97 
124 
     | 
    
         
             
                },
         
     | 
| 
      
 125 
     | 
    
         
            +
                {
         
     | 
| 
      
 126 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 127 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 128 
     | 
    
         
            +
                    {
         
     | 
| 
      
 129 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 130 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 131 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 132 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 133 
     | 
    
         
            +
                    }
         
     | 
| 
      
 134 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 135 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 136 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 137 
     | 
    
         
            +
                },
         
     | 
| 
       98 
138 
     | 
    
         
             
                {
         
     | 
| 
       99 
139 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       100 
140 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -138,6 +178,19 @@ 
     | 
|
| 
       138 
178 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       139 
179 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       140 
180 
     | 
    
         
             
                },
         
     | 
| 
      
 181 
     | 
    
         
            +
                {
         
     | 
| 
      
 182 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 183 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 184 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 185 
     | 
    
         
            +
                    {
         
     | 
| 
      
 186 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 187 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 188 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 189 
     | 
    
         
            +
                    }
         
     | 
| 
      
 190 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 191 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 192 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 193 
     | 
    
         
            +
                },
         
     | 
| 
       141 
194 
     | 
    
         
             
                {
         
     | 
| 
       142 
195 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       143 
196 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -376,19 +429,6 @@ 
     | 
|
| 
       376 
429 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       377 
430 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       378 
431 
     | 
    
         
             
                },
         
     | 
| 
       379 
     | 
    
         
            -
                {
         
     | 
| 
       380 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       381 
     | 
    
         
            -
                  "name": "getMajorVersion",
         
     | 
| 
       382 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       383 
     | 
    
         
            -
                    {
         
     | 
| 
       384 
     | 
    
         
            -
                      "internalType": "VersionPart",
         
     | 
| 
       385 
     | 
    
         
            -
                      "name": "majorVersion",
         
     | 
| 
       386 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       387 
     | 
    
         
            -
                    }
         
     | 
| 
       388 
     | 
    
         
            -
                  ],
         
     | 
| 
       389 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       390 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       391 
     | 
    
         
            -
                },
         
     | 
| 
       392 
432 
     | 
    
         
             
                {
         
     | 
| 
       393 
433 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       394 
434 
     | 
    
         
             
                  "name": "getNftId",
         
     | 
| 
         @@ -472,6 +512,19 @@ 
     | 
|
| 
       472 
512 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       473 
513 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       474 
514 
     | 
    
         
             
                },
         
     | 
| 
      
 515 
     | 
    
         
            +
                {
         
     | 
| 
      
 516 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 517 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 518 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 519 
     | 
    
         
            +
                    {
         
     | 
| 
      
 520 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 521 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 522 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 523 
     | 
    
         
            +
                    }
         
     | 
| 
      
 524 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 525 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 526 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 527 
     | 
    
         
            +
                },
         
     | 
| 
       475 
528 
     | 
    
         
             
                {
         
     | 
| 
       476 
529 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       477 
530 
     | 
    
         
             
                  "name": "linkToRegisteredNftId",
         
     | 
| 
         @@ -516,6 +569,19 @@ 
     | 
|
| 
       516 
569 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       517 
570 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       518 
571 
     | 
    
         
             
                },
         
     | 
| 
      
 572 
     | 
    
         
            +
                {
         
     | 
| 
      
 573 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 574 
     | 
    
         
            +
                    {
         
     | 
| 
      
 575 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 576 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 577 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 578 
     | 
    
         
            +
                    }
         
     | 
| 
      
 579 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 580 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 581 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 582 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 583 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 584 
     | 
    
         
            +
                },
         
     | 
| 
       519 
585 
     | 
    
         
             
                {
         
     | 
| 
       520 
586 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       521 
587 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -7,32 +7,117 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       8 
8 
     | 
    
         
             
                    {
         
     | 
| 
       9 
9 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       10 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 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",
         
     | 
| 
       11 
22 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       12 
23 
     | 
    
         
             
                    },
         
     | 
| 
      
 24 
     | 
    
         
            +
                    {
         
     | 
| 
      
 25 
     | 
    
         
            +
                      "internalType": "uint32",
         
     | 
| 
      
 26 
     | 
    
         
            +
                      "name": "delay",
         
     | 
| 
      
 27 
     | 
    
         
            +
                      "type": "uint32"
         
     | 
| 
      
 28 
     | 
    
         
            +
                    }
         
     | 
| 
      
 29 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 30 
     | 
    
         
            +
                  "name": "AccessManagedRequiredDelay",
         
     | 
| 
      
 31 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 32 
     | 
    
         
            +
                },
         
     | 
| 
      
 33 
     | 
    
         
            +
                {
         
     | 
| 
      
 34 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       13 
35 
     | 
    
         
             
                    {
         
     | 
| 
       14 
36 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       15 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 37 
     | 
    
         
            +
                      "name": "caller",
         
     | 
| 
       16 
38 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
      
 39 
     | 
    
         
            +
                    }
         
     | 
| 
      
 40 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 41 
     | 
    
         
            +
                  "name": "AccessManagedUnauthorized",
         
     | 
| 
      
 42 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 43 
     | 
    
         
            +
                },
         
     | 
| 
      
 44 
     | 
    
         
            +
                {
         
     | 
| 
      
 45 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 46 
     | 
    
         
            +
                    {
         
     | 
| 
      
 47 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 48 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 49 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 50 
     | 
    
         
            +
                    },
         
     | 
| 
      
 51 
     | 
    
         
            +
                    {
         
     | 
| 
      
 52 
     | 
    
         
            +
                      "internalType": "StateId",
         
     | 
| 
      
 53 
     | 
    
         
            +
                      "name": "state",
         
     | 
| 
      
 54 
     | 
    
         
            +
                      "type": "uint8"
         
     | 
| 
      
 55 
     | 
    
         
            +
                    },
         
     | 
| 
      
 56 
     | 
    
         
            +
                    {
         
     | 
| 
      
 57 
     | 
    
         
            +
                      "internalType": "Timestamp",
         
     | 
| 
      
 58 
     | 
    
         
            +
                      "name": "expiredAt",
         
     | 
| 
      
 59 
     | 
    
         
            +
                      "type": "uint40"
         
     | 
| 
      
 60 
     | 
    
         
            +
                    }
         
     | 
| 
      
 61 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 62 
     | 
    
         
            +
                  "name": "ErrorBundleServiceBundleNotOpen",
         
     | 
| 
      
 63 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 64 
     | 
    
         
            +
                },
         
     | 
| 
      
 65 
     | 
    
         
            +
                {
         
     | 
| 
      
 66 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 67 
     | 
    
         
            +
                    {
         
     | 
| 
      
 68 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 69 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 70 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       17 
71 
     | 
    
         
             
                    },
         
     | 
| 
       18 
72 
     | 
    
         
             
                    {
         
     | 
| 
       19 
73 
     | 
    
         
             
                      "internalType": "uint256",
         
     | 
| 
       20 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 74 
     | 
    
         
            +
                      "name": "openPoliciesCount",
         
     | 
| 
       21 
75 
     | 
    
         
             
                      "type": "uint256"
         
     | 
| 
       22 
76 
     | 
    
         
             
                    }
         
     | 
| 
       23 
77 
     | 
    
         
             
                  ],
         
     | 
| 
       24 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 78 
     | 
    
         
            +
                  "name": "ErrorBundleServiceBundleWithOpenPolicies",
         
     | 
| 
      
 79 
     | 
    
         
            +
                  "type": "error"
         
     | 
| 
      
 80 
     | 
    
         
            +
                },
         
     | 
| 
      
 81 
     | 
    
         
            +
                {
         
     | 
| 
      
 82 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 83 
     | 
    
         
            +
                    {
         
     | 
| 
      
 84 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 85 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 86 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 87 
     | 
    
         
            +
                    },
         
     | 
| 
      
 88 
     | 
    
         
            +
                    {
         
     | 
| 
      
 89 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 90 
     | 
    
         
            +
                      "name": "capacityAmount",
         
     | 
| 
      
 91 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 92 
     | 
    
         
            +
                    },
         
     | 
| 
      
 93 
     | 
    
         
            +
                    {
         
     | 
| 
      
 94 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 95 
     | 
    
         
            +
                      "name": "collateralAmount",
         
     | 
| 
      
 96 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 97 
     | 
    
         
            +
                    }
         
     | 
| 
      
 98 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 99 
     | 
    
         
            +
                  "name": "ErrorBundleServiceCapacityInsufficient",
         
     | 
| 
       25 
100 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       26 
101 
     | 
    
         
             
                },
         
     | 
| 
       27 
102 
     | 
    
         
             
                {
         
     | 
| 
       28 
103 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       29 
104 
     | 
    
         
             
                    {
         
     | 
| 
       30 
105 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       31 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 106 
     | 
    
         
            +
                      "name": "bundleOwner",
         
     | 
| 
      
 107 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 108 
     | 
    
         
            +
                    },
         
     | 
| 
      
 109 
     | 
    
         
            +
                    {
         
     | 
| 
      
 110 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 111 
     | 
    
         
            +
                      "name": "tokenHandlerAddress",
         
     | 
| 
       32 
112 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
      
 113 
     | 
    
         
            +
                    },
         
     | 
| 
      
 114 
     | 
    
         
            +
                    {
         
     | 
| 
      
 115 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 116 
     | 
    
         
            +
                      "name": "amount",
         
     | 
| 
      
 117 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
       33 
118 
     | 
    
         
             
                    }
         
     | 
| 
       34 
119 
     | 
    
         
             
                  ],
         
     | 
| 
       35 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 120 
     | 
    
         
            +
                  "name": "ErrorBundleServiceInsufficientAllowance",
         
     | 
| 
       36 
121 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       37 
122 
     | 
    
         
             
                },
         
     | 
| 
       38 
123 
     | 
    
         
             
                {
         
     | 
| 
         @@ -85,35 +170,87 @@ 
     | 
|
| 
       85 
170 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       86 
171 
     | 
    
         
             
                },
         
     | 
| 
       87 
172 
     | 
    
         
             
                {
         
     | 
| 
      
 173 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
       88 
174 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       89 
175 
     | 
    
         
             
                    {
         
     | 
| 
       90 
     | 
    
         
            -
                      " 
     | 
| 
       91 
     | 
    
         
            -
                      " 
     | 
| 
      
 176 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 177 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 178 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
       92 
179 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       93 
     | 
    
         
            -
                    } 
     | 
| 
      
 180 
     | 
    
         
            +
                    }
         
     | 
| 
      
 181 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 182 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 183 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 184 
     | 
    
         
            +
                },
         
     | 
| 
      
 185 
     | 
    
         
            +
                {
         
     | 
| 
      
 186 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 187 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       94 
188 
     | 
    
         
             
                    {
         
     | 
| 
      
 189 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
       95 
190 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       96 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 191 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
       97 
192 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       98 
     | 
    
         
            -
                    } 
     | 
| 
      
 193 
     | 
    
         
            +
                    }
         
     | 
| 
      
 194 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 195 
     | 
    
         
            +
                  "name": "LogBundleServiceBundleActivated",
         
     | 
| 
      
 196 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 197 
     | 
    
         
            +
                },
         
     | 
| 
      
 198 
     | 
    
         
            +
                {
         
     | 
| 
      
 199 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 200 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       99 
201 
     | 
    
         
             
                    {
         
     | 
| 
      
 202 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
       100 
203 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
       101 
204 
     | 
    
         
             
                      "name": "bundleNftId",
         
     | 
| 
       102 
205 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
      
 206 
     | 
    
         
            +
                    }
         
     | 
| 
      
 207 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 208 
     | 
    
         
            +
                  "name": "LogBundleServiceBundleLocked",
         
     | 
| 
      
 209 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 210 
     | 
    
         
            +
                },
         
     | 
| 
      
 211 
     | 
    
         
            +
                {
         
     | 
| 
      
 212 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 213 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 214 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 215 
     | 
    
         
            +
                    {
         
     | 
| 
      
 216 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 217 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 218 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 219 
     | 
    
         
            +
                    }
         
     | 
| 
      
 220 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 221 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 222 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 223 
     | 
    
         
            +
                },
         
     | 
| 
      
 224 
     | 
    
         
            +
                {
         
     | 
| 
      
 225 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 226 
     | 
    
         
            +
                    {
         
     | 
| 
      
 227 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 228 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 229 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       103 
230 
     | 
    
         
             
                    },
         
     | 
| 
       104 
231 
     | 
    
         
             
                    {
         
     | 
| 
       105 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       106 
     | 
    
         
            -
                      "name": " 
     | 
| 
       107 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 232 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 233 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 234 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       108 
235 
     | 
    
         
             
                    }
         
     | 
| 
       109 
236 
     | 
    
         
             
                  ],
         
     | 
| 
       110 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 237 
     | 
    
         
            +
                  "name": "close",
         
     | 
| 
       111 
238 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       112 
239 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       113 
240 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       114 
241 
     | 
    
         
             
                },
         
     | 
| 
       115 
242 
     | 
    
         
             
                {
         
     | 
| 
       116 
243 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
      
 244 
     | 
    
         
            +
                    {
         
     | 
| 
      
 245 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 246 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 247 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 248 
     | 
    
         
            +
                    },
         
     | 
| 
      
 249 
     | 
    
         
            +
                    {
         
     | 
| 
      
 250 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 251 
     | 
    
         
            +
                      "name": "poolNftId",
         
     | 
| 
      
 252 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 253 
     | 
    
         
            +
                    },
         
     | 
| 
       117 
254 
     | 
    
         
             
                    {
         
     | 
| 
       118 
255 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       119 
256 
     | 
    
         
             
                      "name": "owner",
         
     | 
| 
         @@ -137,9 +274,9 @@ 
     | 
|
| 
       137 
274 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
       138 
275 
     | 
    
         
             
                    },
         
     | 
| 
       139 
276 
     | 
    
         
             
                    {
         
     | 
| 
       140 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       141 
     | 
    
         
            -
                      "name": " 
     | 
| 
       142 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 277 
     | 
    
         
            +
                      "internalType": "Amount",
         
     | 
| 
      
 278 
     | 
    
         
            +
                      "name": "stakingAmount",
         
     | 
| 
      
 279 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
       143 
280 
     | 
    
         
             
                    },
         
     | 
| 
       144 
281 
     | 
    
         
             
                    {
         
     | 
| 
       145 
282 
     | 
    
         
             
                      "internalType": "Seconds",
         
     | 
| 
         @@ -152,7 +289,7 @@ 
     | 
|
| 
       152 
289 
     | 
    
         
             
                      "type": "bytes"
         
     | 
| 
       153 
290 
     | 
    
         
             
                    }
         
     | 
| 
       154 
291 
     | 
    
         
             
                  ],
         
     | 
| 
       155 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 292 
     | 
    
         
            +
                  "name": "create",
         
     | 
| 
       156 
293 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       157 
294 
     | 
    
         
             
                    {
         
     | 
| 
       158 
295 
     | 
    
         
             
                      "internalType": "NftId",
         
     | 
| 
         @@ -226,19 +363,6 @@ 
     | 
|
| 
       226 
363 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       227 
364 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       228 
365 
     | 
    
         
             
                },
         
     | 
| 
       229 
     | 
    
         
            -
                {
         
     | 
| 
       230 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       231 
     | 
    
         
            -
                  "name": "getMajorVersion",
         
     | 
| 
       232 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       233 
     | 
    
         
            -
                    {
         
     | 
| 
       234 
     | 
    
         
            -
                      "internalType": "VersionPart",
         
     | 
| 
       235 
     | 
    
         
            -
                      "name": "majorVersion",
         
     | 
| 
       236 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       237 
     | 
    
         
            -
                    }
         
     | 
| 
       238 
     | 
    
         
            -
                  ],
         
     | 
| 
       239 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       240 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       241 
     | 
    
         
            -
                },
         
     | 
| 
       242 
366 
     | 
    
         
             
                {
         
     | 
| 
       243 
367 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       244 
368 
     | 
    
         
             
                  "name": "getNftId",
         
     | 
| 
         @@ -345,6 +469,19 @@ 
     | 
|
| 
       345 
469 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       346 
470 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       347 
471 
     | 
    
         
             
                },
         
     | 
| 
      
 472 
     | 
    
         
            +
                {
         
     | 
| 
      
 473 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 474 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 475 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 476 
     | 
    
         
            +
                    {
         
     | 
| 
      
 477 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 478 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 479 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 480 
     | 
    
         
            +
                    }
         
     | 
| 
      
 481 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 482 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 483 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 484 
     | 
    
         
            +
                },
         
     | 
| 
       348 
485 
     | 
    
         
             
                {
         
     | 
| 
       349 
486 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       350 
487 
     | 
    
         
             
                  "name": "linkToRegisteredNftId",
         
     | 
| 
         @@ -360,7 +497,7 @@ 
     | 
|
| 
       360 
497 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       361 
498 
     | 
    
         
             
                    }
         
     | 
| 
       362 
499 
     | 
    
         
             
                  ],
         
     | 
| 
       363 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 500 
     | 
    
         
            +
                  "name": "lock",
         
     | 
| 
       364 
501 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       365 
502 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       366 
503 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -389,77 +526,53 @@ 
     | 
|
| 
       389 
526 
     | 
    
         
             
                    },
         
     | 
| 
       390 
527 
     | 
    
         
             
                    {
         
     | 
| 
       391 
528 
     | 
    
         
             
                      "internalType": "uint256",
         
     | 
| 
       392 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 529 
     | 
    
         
            +
                      "name": "premium",
         
     | 
| 
       393 
530 
     | 
    
         
             
                      "type": "uint256"
         
     | 
| 
       394 
531 
     | 
    
         
             
                    }
         
     | 
| 
       395 
532 
     | 
    
         
             
                  ],
         
     | 
| 
       396 
533 
     | 
    
         
             
                  "name": "lockCollateral",
         
     | 
| 
       397 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
      
 534 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 535 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 536 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 537 
     | 
    
         
            +
                },
         
     | 
| 
      
 538 
     | 
    
         
            +
                {
         
     | 
| 
      
 539 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
       398 
540 
     | 
    
         
             
                    {
         
     | 
| 
       399 
     | 
    
         
            -
                      " 
     | 
| 
       400 
     | 
    
         
            -
             
     | 
| 
       401 
     | 
    
         
            -
             
     | 
| 
       402 
     | 
    
         
            -
             
     | 
| 
       403 
     | 
    
         
            -
             
     | 
| 
       404 
     | 
    
         
            -
             
     | 
| 
       405 
     | 
    
         
            -
             
     | 
| 
       406 
     | 
    
         
            -
             
     | 
| 
       407 
     | 
    
         
            -
             
     | 
| 
       408 
     | 
    
         
            -
             
     | 
| 
       409 
     | 
    
         
            -
             
     | 
| 
       410 
     | 
    
         
            -
             
     | 
| 
       411 
     | 
    
         
            -
             
     | 
| 
       412 
     | 
    
         
            -
             
     | 
| 
       413 
     | 
    
         
            -
             
     | 
| 
       414 
     | 
    
         
            -
             
     | 
| 
       415 
     | 
    
         
            -
             
     | 
| 
       416 
     | 
    
         
            -
             
     | 
| 
       417 
     | 
    
         
            -
             
     | 
| 
       418 
     | 
    
         
            -
             
     | 
| 
       419 
     | 
    
         
            -
             
     | 
| 
       420 
     | 
    
         
            -
             
     | 
| 
       421 
     | 
    
         
            -
             
     | 
| 
       422 
     | 
    
         
            -
             
     | 
| 
       423 
     | 
    
         
            -
             
     | 
| 
       424 
     | 
    
         
            -
             
     | 
| 
       425 
     | 
    
         
            -
             
     | 
| 
       426 
     | 
    
         
            -
             
     | 
| 
       427 
     | 
    
         
            -
             
     | 
| 
       428 
     | 
    
         
            -
             
     | 
| 
       429 
     | 
    
         
            -
             
     | 
| 
       430 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       431 
     | 
    
         
            -
                        },
         
     | 
| 
       432 
     | 
    
         
            -
                        {
         
     | 
| 
       433 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       434 
     | 
    
         
            -
                          "name": "lockedAmount",
         
     | 
| 
       435 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       436 
     | 
    
         
            -
                        },
         
     | 
| 
       437 
     | 
    
         
            -
                        {
         
     | 
| 
       438 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       439 
     | 
    
         
            -
                          "name": "balanceAmount",
         
     | 
| 
       440 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       441 
     | 
    
         
            -
                        },
         
     | 
| 
       442 
     | 
    
         
            -
                        {
         
     | 
| 
       443 
     | 
    
         
            -
                          "internalType": "Seconds",
         
     | 
| 
       444 
     | 
    
         
            -
                          "name": "lifetime",
         
     | 
| 
       445 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       446 
     | 
    
         
            -
                        },
         
     | 
| 
       447 
     | 
    
         
            -
                        {
         
     | 
| 
       448 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       449 
     | 
    
         
            -
                          "name": "expiredAt",
         
     | 
| 
       450 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       451 
     | 
    
         
            -
                        },
         
     | 
| 
       452 
     | 
    
         
            -
                        {
         
     | 
| 
       453 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       454 
     | 
    
         
            -
                          "name": "closedAt",
         
     | 
| 
       455 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       456 
     | 
    
         
            -
                        }
         
     | 
| 
       457 
     | 
    
         
            -
                      ],
         
     | 
| 
       458 
     | 
    
         
            -
                      "internalType": "struct IBundle.BundleInfo",
         
     | 
| 
       459 
     | 
    
         
            -
                      "name": "bundleInfo",
         
     | 
| 
       460 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
      
 541 
     | 
    
         
            +
                      "internalType": "contract IInstance",
         
     | 
| 
      
 542 
     | 
    
         
            +
                      "name": "instance",
         
     | 
| 
      
 543 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 544 
     | 
    
         
            +
                    },
         
     | 
| 
      
 545 
     | 
    
         
            +
                    {
         
     | 
| 
      
 546 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 547 
     | 
    
         
            +
                      "name": "policyNftId",
         
     | 
| 
      
 548 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 549 
     | 
    
         
            +
                    },
         
     | 
| 
      
 550 
     | 
    
         
            +
                    {
         
     | 
| 
      
 551 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 552 
     | 
    
         
            +
                      "name": "bundleNftId",
         
     | 
| 
      
 553 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 554 
     | 
    
         
            +
                    },
         
     | 
| 
      
 555 
     | 
    
         
            +
                    {
         
     | 
| 
      
 556 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 557 
     | 
    
         
            +
                      "name": "collateralAmount",
         
     | 
| 
      
 558 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 559 
     | 
    
         
            +
                    }
         
     | 
| 
      
 560 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 561 
     | 
    
         
            +
                  "name": "releaseCollateral",
         
     | 
| 
      
 562 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 563 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 564 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 565 
     | 
    
         
            +
                },
         
     | 
| 
      
 566 
     | 
    
         
            +
                {
         
     | 
| 
      
 567 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 568 
     | 
    
         
            +
                    {
         
     | 
| 
      
 569 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 570 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 571 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       461 
572 
     | 
    
         
             
                    }
         
     | 
| 
       462 
573 
     | 
    
         
             
                  ],
         
     | 
| 
      
 574 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 575 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
       463 
576 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       464 
577 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       465 
578 
     | 
    
         
             
                },
         
     | 
| 
         @@ -488,7 +601,7 @@ 
     | 
|
| 
       488 
601 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
       489 
602 
     | 
    
         
             
                    }
         
     | 
| 
       490 
603 
     | 
    
         
             
                  ],
         
     | 
| 
       491 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 604 
     | 
    
         
            +
                  "name": "setFee",
         
     | 
| 
       492 
605 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       493 
606 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       494 
607 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
         @@ -520,94 +633,7 @@ 
     | 
|
| 
       520 
633 
     | 
    
         
             
                      "type": "uint96"
         
     | 
| 
       521 
634 
     | 
    
         
             
                    }
         
     | 
| 
       522 
635 
     | 
    
         
             
                  ],
         
     | 
| 
       523 
     | 
    
         
            -
                  "name": " 
     | 
| 
       524 
     | 
    
         
            -
                  "outputs": [],
         
     | 
| 
       525 
     | 
    
         
            -
                  "stateMutability": "nonpayable",
         
     | 
| 
       526 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       527 
     | 
    
         
            -
                },
         
     | 
| 
       528 
     | 
    
         
            -
                {
         
     | 
| 
       529 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       530 
     | 
    
         
            -
                    {
         
     | 
| 
       531 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       532 
     | 
    
         
            -
                      "name": "instanceNftId",
         
     | 
| 
       533 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       534 
     | 
    
         
            -
                    },
         
     | 
| 
       535 
     | 
    
         
            -
                    {
         
     | 
| 
       536 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       537 
     | 
    
         
            -
                      "name": "bundleNftId",
         
     | 
| 
       538 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       539 
     | 
    
         
            -
                    },
         
     | 
| 
       540 
     | 
    
         
            -
                    {
         
     | 
| 
       541 
     | 
    
         
            -
                      "components": [
         
     | 
| 
       542 
     | 
    
         
            -
                        {
         
     | 
| 
       543 
     | 
    
         
            -
                          "internalType": "NftId",
         
     | 
| 
       544 
     | 
    
         
            -
                          "name": "poolNftId",
         
     | 
| 
       545 
     | 
    
         
            -
                          "type": "uint96"
         
     | 
| 
       546 
     | 
    
         
            -
                        },
         
     | 
| 
       547 
     | 
    
         
            -
                        {
         
     | 
| 
       548 
     | 
    
         
            -
                          "components": [
         
     | 
| 
       549 
     | 
    
         
            -
                            {
         
     | 
| 
       550 
     | 
    
         
            -
                              "internalType": "UFixed",
         
     | 
| 
       551 
     | 
    
         
            -
                              "name": "fractionalFee",
         
     | 
| 
       552 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       553 
     | 
    
         
            -
                            },
         
     | 
| 
       554 
     | 
    
         
            -
                            {
         
     | 
| 
       555 
     | 
    
         
            -
                              "internalType": "uint256",
         
     | 
| 
       556 
     | 
    
         
            -
                              "name": "fixedFee",
         
     | 
| 
       557 
     | 
    
         
            -
                              "type": "uint256"
         
     | 
| 
       558 
     | 
    
         
            -
                            }
         
     | 
| 
       559 
     | 
    
         
            -
                          ],
         
     | 
| 
       560 
     | 
    
         
            -
                          "internalType": "struct Fee",
         
     | 
| 
       561 
     | 
    
         
            -
                          "name": "fee",
         
     | 
| 
       562 
     | 
    
         
            -
                          "type": "tuple"
         
     | 
| 
       563 
     | 
    
         
            -
                        },
         
     | 
| 
       564 
     | 
    
         
            -
                        {
         
     | 
| 
       565 
     | 
    
         
            -
                          "internalType": "bytes",
         
     | 
| 
       566 
     | 
    
         
            -
                          "name": "filter",
         
     | 
| 
       567 
     | 
    
         
            -
                          "type": "bytes"
         
     | 
| 
       568 
     | 
    
         
            -
                        },
         
     | 
| 
       569 
     | 
    
         
            -
                        {
         
     | 
| 
       570 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       571 
     | 
    
         
            -
                          "name": "capitalAmount",
         
     | 
| 
       572 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       573 
     | 
    
         
            -
                        },
         
     | 
| 
       574 
     | 
    
         
            -
                        {
         
     | 
| 
       575 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       576 
     | 
    
         
            -
                          "name": "lockedAmount",
         
     | 
| 
       577 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       578 
     | 
    
         
            -
                        },
         
     | 
| 
       579 
     | 
    
         
            -
                        {
         
     | 
| 
       580 
     | 
    
         
            -
                          "internalType": "uint256",
         
     | 
| 
       581 
     | 
    
         
            -
                          "name": "balanceAmount",
         
     | 
| 
       582 
     | 
    
         
            -
                          "type": "uint256"
         
     | 
| 
       583 
     | 
    
         
            -
                        },
         
     | 
| 
       584 
     | 
    
         
            -
                        {
         
     | 
| 
       585 
     | 
    
         
            -
                          "internalType": "Seconds",
         
     | 
| 
       586 
     | 
    
         
            -
                          "name": "lifetime",
         
     | 
| 
       587 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       588 
     | 
    
         
            -
                        },
         
     | 
| 
       589 
     | 
    
         
            -
                        {
         
     | 
| 
       590 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       591 
     | 
    
         
            -
                          "name": "expiredAt",
         
     | 
| 
       592 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       593 
     | 
    
         
            -
                        },
         
     | 
| 
       594 
     | 
    
         
            -
                        {
         
     | 
| 
       595 
     | 
    
         
            -
                          "internalType": "Timestamp",
         
     | 
| 
       596 
     | 
    
         
            -
                          "name": "closedAt",
         
     | 
| 
       597 
     | 
    
         
            -
                          "type": "uint40"
         
     | 
| 
       598 
     | 
    
         
            -
                        }
         
     | 
| 
       599 
     | 
    
         
            -
                      ],
         
     | 
| 
       600 
     | 
    
         
            -
                      "internalType": "struct IBundle.BundleInfo",
         
     | 
| 
       601 
     | 
    
         
            -
                      "name": "bundleInfo",
         
     | 
| 
       602 
     | 
    
         
            -
                      "type": "tuple"
         
     | 
| 
       603 
     | 
    
         
            -
                    },
         
     | 
| 
       604 
     | 
    
         
            -
                    {
         
     | 
| 
       605 
     | 
    
         
            -
                      "internalType": "StateId",
         
     | 
| 
       606 
     | 
    
         
            -
                      "name": "state",
         
     | 
| 
       607 
     | 
    
         
            -
                      "type": "uint8"
         
     | 
| 
       608 
     | 
    
         
            -
                    }
         
     | 
| 
       609 
     | 
    
         
            -
                  ],
         
     | 
| 
       610 
     | 
    
         
            -
                  "name": "updateBundle",
         
     | 
| 
      
 636 
     | 
    
         
            +
                  "name": "unlock",
         
     | 
| 
       611 
637 
     | 
    
         
             
                  "outputs": [],
         
     | 
| 
       612 
638 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       613 
639 
     | 
    
         
             
                  "type": "function"
         
     |