@etherisc/gif-next 0.0.2-f30e0eb-805 → 0.0.2-f4f2d93-430
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -83
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +10 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +10 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +100 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +100 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +110 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +100 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +20 -0
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +10 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +2 -2
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +34 -14
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +80 -14
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +90 -70
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +76 -57
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +21 -11
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +208 -62
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +62 -22
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +2 -2
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +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 +2 -2
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +6 -6
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +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 +298 -160
- 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 +189 -123
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +48 -48
- 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 +142 -113
- 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 +430 -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 +468 -55
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +18 -14
- 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/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +0 -24
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +2 -2
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +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/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/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- 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/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- 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/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +161 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- 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/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- 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/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- 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/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/contracts/components/Component.sol +4 -2
- package/contracts/components/IComponent.sol +3 -1
- package/contracts/components/Pool.sol +8 -4
- package/contracts/instance/Instance.sol +1 -0
- package/contracts/instance/InstanceAccessManager.sol +16 -11
- package/contracts/instance/InstanceReader.sol +1 -0
- package/contracts/instance/InstanceService.sol +19 -19
- package/contracts/instance/base/ComponentService.sol +17 -30
- package/contracts/instance/base/KeyValueStore.sol +8 -3
- package/contracts/instance/module/IAccess.sol +2 -2
- package/contracts/instance/module/IBundle.sol +6 -4
- package/contracts/instance/module/IComponents.sol +6 -0
- package/contracts/instance/service/ApplicationService.sol +9 -9
- package/contracts/instance/service/BundleService.sol +155 -60
- package/contracts/instance/service/ClaimService.sol +3 -3
- package/contracts/instance/service/DistributionService.sol +24 -56
- package/contracts/instance/service/IBundleService.sol +53 -22
- package/contracts/instance/service/IDistributionService.sol +1 -0
- package/contracts/instance/service/IPoolService.sol +65 -1
- package/contracts/instance/service/PolicyService.sol +60 -101
- package/contracts/instance/service/PoolService.sol +132 -49
- package/contracts/instance/service/ProductService.sol +20 -51
- package/contracts/registry/IRegistryService.sol +4 -3
- 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/test/TestService.sol +1 -1
- package/contracts/types/Amount.sol +60 -0
- package/contracts/types/Fee.sol +12 -5
- 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 | 
             
                    {
         | 
| @@ -3,6 +3,44 @@ | |
| 3 3 | 
             
              "contractName": "IBundleService",
         | 
| 4 4 | 
             
              "sourceName": "contracts/instance/service/IBundleService.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 | 
             
                    {
         | 
| @@ -14,6 +52,11 @@ | |
| 14 52 | 
             
                      "internalType": "StateId",
         | 
| 15 53 | 
             
                      "name": "state",
         | 
| 16 54 | 
             
                      "type": "uint8"
         | 
| 55 | 
            +
                    },
         | 
| 56 | 
            +
                    {
         | 
| 57 | 
            +
                      "internalType": "Timestamp",
         | 
| 58 | 
            +
                      "name": "expiredAt",
         | 
| 59 | 
            +
                      "type": "uint40"
         | 
| 17 60 | 
             
                    }
         | 
| 18 61 | 
             
                  ],
         | 
| 19 62 | 
             
                  "name": "ErrorBundleServiceBundleNotOpen",
         | 
| @@ -38,33 +81,43 @@ | |
| 38 81 | 
             
                {
         | 
| 39 82 | 
             
                  "inputs": [
         | 
| 40 83 | 
             
                    {
         | 
| 41 | 
            -
                      "internalType": " | 
| 42 | 
            -
                      "name": " | 
| 43 | 
            -
                      "type": " | 
| 84 | 
            +
                      "internalType": "NftId",
         | 
| 85 | 
            +
                      "name": "bundleNftId",
         | 
| 86 | 
            +
                      "type": "uint96"
         | 
| 44 87 | 
             
                    },
         | 
| 45 88 | 
             
                    {
         | 
| 46 | 
            -
                      "internalType": " | 
| 47 | 
            -
                      "name": " | 
| 48 | 
            -
                      "type": " | 
| 89 | 
            +
                      "internalType": "uint256",
         | 
| 90 | 
            +
                      "name": "capacityAmount",
         | 
| 91 | 
            +
                      "type": "uint256"
         | 
| 49 92 | 
             
                    },
         | 
| 50 93 | 
             
                    {
         | 
| 51 94 | 
             
                      "internalType": "uint256",
         | 
| 52 | 
            -
                      "name": " | 
| 95 | 
            +
                      "name": "collateralAmount",
         | 
| 53 96 | 
             
                      "type": "uint256"
         | 
| 54 97 | 
             
                    }
         | 
| 55 98 | 
             
                  ],
         | 
| 56 | 
            -
                  "name": " | 
| 99 | 
            +
                  "name": "ErrorBundleServiceCapacityInsufficient",
         | 
| 57 100 | 
             
                  "type": "error"
         | 
| 58 101 | 
             
                },
         | 
| 59 102 | 
             
                {
         | 
| 60 103 | 
             
                  "inputs": [
         | 
| 61 104 | 
             
                    {
         | 
| 62 105 | 
             
                      "internalType": "address",
         | 
| 63 | 
            -
                      "name": " | 
| 106 | 
            +
                      "name": "bundleOwner",
         | 
| 64 107 | 
             
                      "type": "address"
         | 
| 108 | 
            +
                    },
         | 
| 109 | 
            +
                    {
         | 
| 110 | 
            +
                      "internalType": "address",
         | 
| 111 | 
            +
                      "name": "tokenHandlerAddress",
         | 
| 112 | 
            +
                      "type": "address"
         | 
| 113 | 
            +
                    },
         | 
| 114 | 
            +
                    {
         | 
| 115 | 
            +
                      "internalType": "uint256",
         | 
| 116 | 
            +
                      "name": "amount",
         | 
| 117 | 
            +
                      "type": "uint256"
         | 
| 65 118 | 
             
                    }
         | 
| 66 119 | 
             
                  ],
         | 
| 67 | 
            -
                  "name": " | 
| 120 | 
            +
                  "name": "ErrorBundleServiceInsufficientAllowance",
         | 
| 68 121 | 
             
                  "type": "error"
         | 
| 69 122 | 
             
                },
         | 
| 70 123 | 
             
                {
         | 
| @@ -121,12 +174,12 @@ | |
| 121 174 | 
             
                  "inputs": [
         | 
| 122 175 | 
             
                    {
         | 
| 123 176 | 
             
                      "indexed": false,
         | 
| 124 | 
            -
                      "internalType": " | 
| 125 | 
            -
                      "name": " | 
| 126 | 
            -
                      "type": " | 
| 177 | 
            +
                      "internalType": "address",
         | 
| 178 | 
            +
                      "name": "authority",
         | 
| 179 | 
            +
                      "type": "address"
         | 
| 127 180 | 
             
                    }
         | 
| 128 181 | 
             
                  ],
         | 
| 129 | 
            -
                  "name": " | 
| 182 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 130 183 | 
             
                  "type": "event"
         | 
| 131 184 | 
             
                },
         | 
| 132 185 | 
             
                {
         | 
| @@ -139,7 +192,7 @@ | |
| 139 192 | 
             
                      "type": "uint96"
         | 
| 140 193 | 
             
                    }
         | 
| 141 194 | 
             
                  ],
         | 
| 142 | 
            -
                  "name": " | 
| 195 | 
            +
                  "name": "LogBundleServiceBundleActivated",
         | 
| 143 196 | 
             
                  "type": "event"
         | 
| 144 197 | 
             
                },
         | 
| 145 198 | 
             
                {
         | 
| @@ -156,16 +209,16 @@ | |
| 156 209 | 
             
                  "type": "event"
         | 
| 157 210 | 
             
                },
         | 
| 158 211 | 
             
                {
         | 
| 159 | 
            -
                  "inputs": [
         | 
| 212 | 
            +
                  "inputs": [],
         | 
| 213 | 
            +
                  "name": "authority",
         | 
| 214 | 
            +
                  "outputs": [
         | 
| 160 215 | 
             
                    {
         | 
| 161 | 
            -
                      "internalType": " | 
| 162 | 
            -
                      "name": " | 
| 163 | 
            -
                      "type": " | 
| 216 | 
            +
                      "internalType": "address",
         | 
| 217 | 
            +
                      "name": "",
         | 
| 218 | 
            +
                      "type": "address"
         | 
| 164 219 | 
             
                    }
         | 
| 165 220 | 
             
                  ],
         | 
| 166 | 
            -
                  " | 
| 167 | 
            -
                  "outputs": [],
         | 
| 168 | 
            -
                  "stateMutability": "nonpayable",
         | 
| 221 | 
            +
                  "stateMutability": "view",
         | 
| 169 222 | 
             
                  "type": "function"
         | 
| 170 223 | 
             
                },
         | 
| 171 224 | 
             
                {
         | 
| @@ -175,29 +228,29 @@ | |
| 175 228 | 
             
                      "name": "instance",
         | 
| 176 229 | 
             
                      "type": "address"
         | 
| 177 230 | 
             
                    },
         | 
| 178 | 
            -
                    {
         | 
| 179 | 
            -
                      "internalType": "NftId",
         | 
| 180 | 
            -
                      "name": "policyNftId",
         | 
| 181 | 
            -
                      "type": "uint96"
         | 
| 182 | 
            -
                    },
         | 
| 183 231 | 
             
                    {
         | 
| 184 232 | 
             
                      "internalType": "NftId",
         | 
| 185 233 | 
             
                      "name": "bundleNftId",
         | 
| 186 234 | 
             
                      "type": "uint96"
         | 
| 187 | 
            -
                    },
         | 
| 188 | 
            -
                    {
         | 
| 189 | 
            -
                      "internalType": "uint256",
         | 
| 190 | 
            -
                      "name": "collateralAmount",
         | 
| 191 | 
            -
                      "type": "uint256"
         | 
| 192 235 | 
             
                    }
         | 
| 193 236 | 
             
                  ],
         | 
| 194 | 
            -
                  "name": " | 
| 237 | 
            +
                  "name": "close",
         | 
| 195 238 | 
             
                  "outputs": [],
         | 
| 196 239 | 
             
                  "stateMutability": "nonpayable",
         | 
| 197 240 | 
             
                  "type": "function"
         | 
| 198 241 | 
             
                },
         | 
| 199 242 | 
             
                {
         | 
| 200 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 | 
            +
                    },
         | 
| 201 254 | 
             
                    {
         | 
| 202 255 | 
             
                      "internalType": "address",
         | 
| 203 256 | 
             
                      "name": "owner",
         | 
| @@ -221,9 +274,9 @@ | |
| 221 274 | 
             
                      "type": "tuple"
         | 
| 222 275 | 
             
                    },
         | 
| 223 276 | 
             
                    {
         | 
| 224 | 
            -
                      "internalType": " | 
| 225 | 
            -
                      "name": " | 
| 226 | 
            -
                      "type": " | 
| 277 | 
            +
                      "internalType": "Amount",
         | 
| 278 | 
            +
                      "name": "stakingAmount",
         | 
| 279 | 
            +
                      "type": "uint96"
         | 
| 227 280 | 
             
                    },
         | 
| 228 281 | 
             
                    {
         | 
| 229 282 | 
             
                      "internalType": "Seconds",
         | 
| @@ -310,19 +363,6 @@ | |
| 310 363 | 
             
                  "stateMutability": "view",
         | 
| 311 364 | 
             
                  "type": "function"
         | 
| 312 365 | 
             
                },
         | 
| 313 | 
            -
                {
         | 
| 314 | 
            -
                  "inputs": [],
         | 
| 315 | 
            -
                  "name": "getMajorVersion",
         | 
| 316 | 
            -
                  "outputs": [
         | 
| 317 | 
            -
                    {
         | 
| 318 | 
            -
                      "internalType": "VersionPart",
         | 
| 319 | 
            -
                      "name": "majorVersion",
         | 
| 320 | 
            -
                      "type": "uint8"
         | 
| 321 | 
            -
                    }
         | 
| 322 | 
            -
                  ],
         | 
| 323 | 
            -
                  "stateMutability": "view",
         | 
| 324 | 
            -
                  "type": "function"
         | 
| 325 | 
            -
                },
         | 
| 326 366 | 
             
                {
         | 
| 327 367 | 
             
                  "inputs": [],
         | 
| 328 368 | 
             
                  "name": "getNftId",
         | 
| @@ -429,6 +469,19 @@ | |
| 429 469 | 
             
                  "stateMutability": "nonpayable",
         | 
| 430 470 | 
             
                  "type": "function"
         | 
| 431 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 | 
            +
                },
         | 
| 432 485 | 
             
                {
         | 
| 433 486 | 
             
                  "inputs": [],
         | 
| 434 487 | 
             
                  "name": "linkToRegisteredNftId",
         | 
| @@ -473,77 +526,53 @@ | |
| 473 526 | 
             
                    },
         | 
| 474 527 | 
             
                    {
         | 
| 475 528 | 
             
                      "internalType": "uint256",
         | 
| 476 | 
            -
                      "name": " | 
| 529 | 
            +
                      "name": "premium",
         | 
| 477 530 | 
             
                      "type": "uint256"
         | 
| 478 531 | 
             
                    }
         | 
| 479 532 | 
             
                  ],
         | 
| 480 533 | 
             
                  "name": "lockCollateral",
         | 
| 481 | 
            -
                  "outputs": [
         | 
| 534 | 
            +
                  "outputs": [],
         | 
| 535 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 536 | 
            +
                  "type": "function"
         | 
| 537 | 
            +
                },
         | 
| 538 | 
            +
                {
         | 
| 539 | 
            +
                  "inputs": [
         | 
| 482 540 | 
             
                    {
         | 
| 483 | 
            -
                      " | 
| 484 | 
            -
             | 
| 485 | 
            -
             | 
| 486 | 
            -
             | 
| 487 | 
            -
             | 
| 488 | 
            -
             | 
| 489 | 
            -
             | 
| 490 | 
            -
             | 
| 491 | 
            -
             | 
| 492 | 
            -
             | 
| 493 | 
            -
             | 
| 494 | 
            -
             | 
| 495 | 
            -
             | 
| 496 | 
            -
             | 
| 497 | 
            -
             | 
| 498 | 
            -
             | 
| 499 | 
            -
             | 
| 500 | 
            -
             | 
| 501 | 
            -
             | 
| 502 | 
            -
             | 
| 503 | 
            -
             | 
| 504 | 
            -
             | 
| 505 | 
            -
             | 
| 506 | 
            -
             | 
| 507 | 
            -
             | 
| 508 | 
            -
             | 
| 509 | 
            -
             | 
| 510 | 
            -
             | 
| 511 | 
            -
             | 
| 512 | 
            -
             | 
| 513 | 
            -
             | 
| 514 | 
            -
                          "type": "uint256"
         | 
| 515 | 
            -
                        },
         | 
| 516 | 
            -
                        {
         | 
| 517 | 
            -
                          "internalType": "uint256",
         | 
| 518 | 
            -
                          "name": "lockedAmount",
         | 
| 519 | 
            -
                          "type": "uint256"
         | 
| 520 | 
            -
                        },
         | 
| 521 | 
            -
                        {
         | 
| 522 | 
            -
                          "internalType": "uint256",
         | 
| 523 | 
            -
                          "name": "balanceAmount",
         | 
| 524 | 
            -
                          "type": "uint256"
         | 
| 525 | 
            -
                        },
         | 
| 526 | 
            -
                        {
         | 
| 527 | 
            -
                          "internalType": "Seconds",
         | 
| 528 | 
            -
                          "name": "lifetime",
         | 
| 529 | 
            -
                          "type": "uint40"
         | 
| 530 | 
            -
                        },
         | 
| 531 | 
            -
                        {
         | 
| 532 | 
            -
                          "internalType": "Timestamp",
         | 
| 533 | 
            -
                          "name": "expiredAt",
         | 
| 534 | 
            -
                          "type": "uint40"
         | 
| 535 | 
            -
                        },
         | 
| 536 | 
            -
                        {
         | 
| 537 | 
            -
                          "internalType": "Timestamp",
         | 
| 538 | 
            -
                          "name": "closedAt",
         | 
| 539 | 
            -
                          "type": "uint40"
         | 
| 540 | 
            -
                        }
         | 
| 541 | 
            -
                      ],
         | 
| 542 | 
            -
                      "internalType": "struct IBundle.BundleInfo",
         | 
| 543 | 
            -
                      "name": "bundleInfo",
         | 
| 544 | 
            -
                      "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"
         | 
| 545 572 | 
             
                    }
         | 
| 546 573 | 
             
                  ],
         | 
| 574 | 
            +
                  "name": "setAuthority",
         | 
| 575 | 
            +
                  "outputs": [],
         | 
| 547 576 | 
             
                  "stateMutability": "nonpayable",
         | 
| 548 577 | 
             
                  "type": "function"
         | 
| 549 578 | 
             
                },
         | 
| @@ -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 | 
             
                    {
         |