@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/IDistributionService.sol/IDistributionService.json
    CHANGED
    
    | @@ -3,6 +3,55 @@ | |
| 3 3 | 
             
              "contractName": "IDistributionService",
         | 
| 4 4 | 
             
              "sourceName": "contracts/instance/service/IDistributionService.sol",
         | 
| 5 5 | 
             
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [
         | 
| 8 | 
            +
                    {
         | 
| 9 | 
            +
                      "internalType": "address",
         | 
| 10 | 
            +
                      "name": "authority",
         | 
| 11 | 
            +
                      "type": "address"
         | 
| 12 | 
            +
                    }
         | 
| 13 | 
            +
                  ],
         | 
| 14 | 
            +
                  "name": "AccessManagedInvalidAuthority",
         | 
| 15 | 
            +
                  "type": "error"
         | 
| 16 | 
            +
                },
         | 
| 17 | 
            +
                {
         | 
| 18 | 
            +
                  "inputs": [
         | 
| 19 | 
            +
                    {
         | 
| 20 | 
            +
                      "internalType": "address",
         | 
| 21 | 
            +
                      "name": "caller",
         | 
| 22 | 
            +
                      "type": "address"
         | 
| 23 | 
            +
                    },
         | 
| 24 | 
            +
                    {
         | 
| 25 | 
            +
                      "internalType": "uint32",
         | 
| 26 | 
            +
                      "name": "delay",
         | 
| 27 | 
            +
                      "type": "uint32"
         | 
| 28 | 
            +
                    }
         | 
| 29 | 
            +
                  ],
         | 
| 30 | 
            +
                  "name": "AccessManagedRequiredDelay",
         | 
| 31 | 
            +
                  "type": "error"
         | 
| 32 | 
            +
                },
         | 
| 33 | 
            +
                {
         | 
| 34 | 
            +
                  "inputs": [
         | 
| 35 | 
            +
                    {
         | 
| 36 | 
            +
                      "internalType": "address",
         | 
| 37 | 
            +
                      "name": "caller",
         | 
| 38 | 
            +
                      "type": "address"
         | 
| 39 | 
            +
                    }
         | 
| 40 | 
            +
                  ],
         | 
| 41 | 
            +
                  "name": "AccessManagedUnauthorized",
         | 
| 42 | 
            +
                  "type": "error"
         | 
| 43 | 
            +
                },
         | 
| 44 | 
            +
                {
         | 
| 45 | 
            +
                  "inputs": [
         | 
| 46 | 
            +
                    {
         | 
| 47 | 
            +
                      "internalType": "address",
         | 
| 48 | 
            +
                      "name": "caller",
         | 
| 49 | 
            +
                      "type": "address"
         | 
| 50 | 
            +
                    }
         | 
| 51 | 
            +
                  ],
         | 
| 52 | 
            +
                  "name": "ErrorDistributionServiceCallerNotRegistered",
         | 
| 53 | 
            +
                  "type": "error"
         | 
| 54 | 
            +
                },
         | 
| 6 55 | 
             
                {
         | 
| 7 56 | 
             
                  "inputs": [
         | 
| 8 57 | 
             
                    {
         | 
| @@ -238,17 +287,6 @@ | |
| 238 287 | 
             
                  "name": "ErrorIDistributionServiceReferralInvalid",
         | 
| 239 288 | 
             
                  "type": "error"
         | 
| 240 289 | 
             
                },
         | 
| 241 | 
            -
                {
         | 
| 242 | 
            -
                  "inputs": [
         | 
| 243 | 
            -
                    {
         | 
| 244 | 
            -
                      "internalType": "address",
         | 
| 245 | 
            -
                      "name": "caller",
         | 
| 246 | 
            -
                      "type": "address"
         | 
| 247 | 
            -
                    }
         | 
| 248 | 
            -
                  ],
         | 
| 249 | 
            -
                  "name": "ErrorIServiceCallerUnknown",
         | 
| 250 | 
            -
                  "type": "error"
         | 
| 251 | 
            -
                },
         | 
| 252 290 | 
             
                {
         | 
| 253 291 | 
             
                  "inputs": [
         | 
| 254 292 | 
             
                    {
         | 
| @@ -298,6 +336,32 @@ | |
| 298 336 | 
             
                  "name": "ErrorNotRegistry",
         | 
| 299 337 | 
             
                  "type": "error"
         | 
| 300 338 | 
             
                },
         | 
| 339 | 
            +
                {
         | 
| 340 | 
            +
                  "anonymous": false,
         | 
| 341 | 
            +
                  "inputs": [
         | 
| 342 | 
            +
                    {
         | 
| 343 | 
            +
                      "indexed": false,
         | 
| 344 | 
            +
                      "internalType": "address",
         | 
| 345 | 
            +
                      "name": "authority",
         | 
| 346 | 
            +
                      "type": "address"
         | 
| 347 | 
            +
                    }
         | 
| 348 | 
            +
                  ],
         | 
| 349 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 350 | 
            +
                  "type": "event"
         | 
| 351 | 
            +
                },
         | 
| 352 | 
            +
                {
         | 
| 353 | 
            +
                  "inputs": [],
         | 
| 354 | 
            +
                  "name": "authority",
         | 
| 355 | 
            +
                  "outputs": [
         | 
| 356 | 
            +
                    {
         | 
| 357 | 
            +
                      "internalType": "address",
         | 
| 358 | 
            +
                      "name": "",
         | 
| 359 | 
            +
                      "type": "address"
         | 
| 360 | 
            +
                    }
         | 
| 361 | 
            +
                  ],
         | 
| 362 | 
            +
                  "stateMutability": "view",
         | 
| 363 | 
            +
                  "type": "function"
         | 
| 364 | 
            +
                },
         | 
| 301 365 | 
             
                {
         | 
| 302 366 | 
             
                  "inputs": [
         | 
| 303 367 | 
             
                    {
         | 
| @@ -676,19 +740,6 @@ | |
| 676 740 | 
             
                  "stateMutability": "view",
         | 
| 677 741 | 
             
                  "type": "function"
         | 
| 678 742 | 
             
                },
         | 
| 679 | 
            -
                {
         | 
| 680 | 
            -
                  "inputs": [],
         | 
| 681 | 
            -
                  "name": "getMajorVersion",
         | 
| 682 | 
            -
                  "outputs": [
         | 
| 683 | 
            -
                    {
         | 
| 684 | 
            -
                      "internalType": "VersionPart",
         | 
| 685 | 
            -
                      "name": "majorVersion",
         | 
| 686 | 
            -
                      "type": "uint8"
         | 
| 687 | 
            -
                    }
         | 
| 688 | 
            -
                  ],
         | 
| 689 | 
            -
                  "stateMutability": "view",
         | 
| 690 | 
            -
                  "type": "function"
         | 
| 691 | 
            -
                },
         | 
| 692 743 | 
             
                {
         | 
| 693 744 | 
             
                  "inputs": [],
         | 
| 694 745 | 
             
                  "name": "getNftId",
         | 
| @@ -772,6 +823,19 @@ | |
| 772 823 | 
             
                  "stateMutability": "nonpayable",
         | 
| 773 824 | 
             
                  "type": "function"
         | 
| 774 825 | 
             
                },
         | 
| 826 | 
            +
                {
         | 
| 827 | 
            +
                  "inputs": [],
         | 
| 828 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 829 | 
            +
                  "outputs": [
         | 
| 830 | 
            +
                    {
         | 
| 831 | 
            +
                      "internalType": "bytes4",
         | 
| 832 | 
            +
                      "name": "",
         | 
| 833 | 
            +
                      "type": "bytes4"
         | 
| 834 | 
            +
                    }
         | 
| 835 | 
            +
                  ],
         | 
| 836 | 
            +
                  "stateMutability": "view",
         | 
| 837 | 
            +
                  "type": "function"
         | 
| 838 | 
            +
                },
         | 
| 775 839 | 
             
                {
         | 
| 776 840 | 
             
                  "inputs": [],
         | 
| 777 841 | 
             
                  "name": "linkToRegisteredNftId",
         | 
| @@ -908,6 +972,19 @@ | |
| 908 972 | 
             
                  "stateMutability": "view",
         | 
| 909 973 | 
             
                  "type": "function"
         | 
| 910 974 | 
             
                },
         | 
| 975 | 
            +
                {
         | 
| 976 | 
            +
                  "inputs": [
         | 
| 977 | 
            +
                    {
         | 
| 978 | 
            +
                      "internalType": "address",
         | 
| 979 | 
            +
                      "name": "",
         | 
| 980 | 
            +
                      "type": "address"
         | 
| 981 | 
            +
                    }
         | 
| 982 | 
            +
                  ],
         | 
| 983 | 
            +
                  "name": "setAuthority",
         | 
| 984 | 
            +
                  "outputs": [],
         | 
| 985 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 986 | 
            +
                  "type": "function"
         | 
| 987 | 
            +
                },
         | 
| 911 988 | 
             
                {
         | 
| 912 989 | 
             
                  "inputs": [
         | 
| 913 990 | 
             
                    {
         | 
| @@ -3,6 +3,44 @@ | |
| 3 3 | 
             
              "contractName": "IPolicyService",
         | 
| 4 4 | 
             
              "sourceName": "contracts/instance/service/IPolicyService.sol",
         | 
| 5 5 | 
             
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [
         | 
| 8 | 
            +
                    {
         | 
| 9 | 
            +
                      "internalType": "address",
         | 
| 10 | 
            +
                      "name": "authority",
         | 
| 11 | 
            +
                      "type": "address"
         | 
| 12 | 
            +
                    }
         | 
| 13 | 
            +
                  ],
         | 
| 14 | 
            +
                  "name": "AccessManagedInvalidAuthority",
         | 
| 15 | 
            +
                  "type": "error"
         | 
| 16 | 
            +
                },
         | 
| 17 | 
            +
                {
         | 
| 18 | 
            +
                  "inputs": [
         | 
| 19 | 
            +
                    {
         | 
| 20 | 
            +
                      "internalType": "address",
         | 
| 21 | 
            +
                      "name": "caller",
         | 
| 22 | 
            +
                      "type": "address"
         | 
| 23 | 
            +
                    },
         | 
| 24 | 
            +
                    {
         | 
| 25 | 
            +
                      "internalType": "uint32",
         | 
| 26 | 
            +
                      "name": "delay",
         | 
| 27 | 
            +
                      "type": "uint32"
         | 
| 28 | 
            +
                    }
         | 
| 29 | 
            +
                  ],
         | 
| 30 | 
            +
                  "name": "AccessManagedRequiredDelay",
         | 
| 31 | 
            +
                  "type": "error"
         | 
| 32 | 
            +
                },
         | 
| 33 | 
            +
                {
         | 
| 34 | 
            +
                  "inputs": [
         | 
| 35 | 
            +
                    {
         | 
| 36 | 
            +
                      "internalType": "address",
         | 
| 37 | 
            +
                      "name": "caller",
         | 
| 38 | 
            +
                      "type": "address"
         | 
| 39 | 
            +
                    }
         | 
| 40 | 
            +
                  ],
         | 
| 41 | 
            +
                  "name": "AccessManagedUnauthorized",
         | 
| 42 | 
            +
                  "type": "error"
         | 
| 43 | 
            +
                },
         | 
| 6 44 | 
             
                {
         | 
| 7 45 | 
             
                  "inputs": [
         | 
| 8 46 | 
             
                    {
         | 
| @@ -152,17 +190,6 @@ | |
| 152 190 | 
             
                  "name": "ErrorIPolicyServicePremiumNotFullyPaid",
         | 
| 153 191 | 
             
                  "type": "error"
         | 
| 154 192 | 
             
                },
         | 
| 155 | 
            -
                {
         | 
| 156 | 
            -
                  "inputs": [
         | 
| 157 | 
            -
                    {
         | 
| 158 | 
            -
                      "internalType": "address",
         | 
| 159 | 
            -
                      "name": "caller",
         | 
| 160 | 
            -
                      "type": "address"
         | 
| 161 | 
            -
                    }
         | 
| 162 | 
            -
                  ],
         | 
| 163 | 
            -
                  "name": "ErrorIServiceCallerUnknown",
         | 
| 164 | 
            -
                  "type": "error"
         | 
| 165 | 
            -
                },
         | 
| 166 193 | 
             
                {
         | 
| 167 194 | 
             
                  "inputs": [
         | 
| 168 195 | 
             
                    {
         | 
| @@ -212,6 +239,19 @@ | |
| 212 239 | 
             
                  "name": "ErrorNotRegistry",
         | 
| 213 240 | 
             
                  "type": "error"
         | 
| 214 241 | 
             
                },
         | 
| 242 | 
            +
                {
         | 
| 243 | 
            +
                  "anonymous": false,
         | 
| 244 | 
            +
                  "inputs": [
         | 
| 245 | 
            +
                    {
         | 
| 246 | 
            +
                      "indexed": false,
         | 
| 247 | 
            +
                      "internalType": "address",
         | 
| 248 | 
            +
                      "name": "authority",
         | 
| 249 | 
            +
                      "type": "address"
         | 
| 250 | 
            +
                    }
         | 
| 251 | 
            +
                  ],
         | 
| 252 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 253 | 
            +
                  "type": "event"
         | 
| 254 | 
            +
                },
         | 
| 215 255 | 
             
                {
         | 
| 216 256 | 
             
                  "inputs": [
         | 
| 217 257 | 
             
                    {
         | 
| @@ -230,6 +270,19 @@ | |
| 230 270 | 
             
                  "stateMutability": "nonpayable",
         | 
| 231 271 | 
             
                  "type": "function"
         | 
| 232 272 | 
             
                },
         | 
| 273 | 
            +
                {
         | 
| 274 | 
            +
                  "inputs": [],
         | 
| 275 | 
            +
                  "name": "authority",
         | 
| 276 | 
            +
                  "outputs": [
         | 
| 277 | 
            +
                    {
         | 
| 278 | 
            +
                      "internalType": "address",
         | 
| 279 | 
            +
                      "name": "",
         | 
| 280 | 
            +
                      "type": "address"
         | 
| 281 | 
            +
                    }
         | 
| 282 | 
            +
                  ],
         | 
| 283 | 
            +
                  "stateMutability": "view",
         | 
| 284 | 
            +
                  "type": "function"
         | 
| 285 | 
            +
                },
         | 
| 233 286 | 
             
                {
         | 
| 234 287 | 
             
                  "inputs": [
         | 
| 235 288 | 
             
                    {
         | 
| @@ -374,19 +427,6 @@ | |
| 374 427 | 
             
                  "stateMutability": "view",
         | 
| 375 428 | 
             
                  "type": "function"
         | 
| 376 429 | 
             
                },
         | 
| 377 | 
            -
                {
         | 
| 378 | 
            -
                  "inputs": [],
         | 
| 379 | 
            -
                  "name": "getMajorVersion",
         | 
| 380 | 
            -
                  "outputs": [
         | 
| 381 | 
            -
                    {
         | 
| 382 | 
            -
                      "internalType": "VersionPart",
         | 
| 383 | 
            -
                      "name": "majorVersion",
         | 
| 384 | 
            -
                      "type": "uint8"
         | 
| 385 | 
            -
                    }
         | 
| 386 | 
            -
                  ],
         | 
| 387 | 
            -
                  "stateMutability": "view",
         | 
| 388 | 
            -
                  "type": "function"
         | 
| 389 | 
            -
                },
         | 
| 390 430 | 
             
                {
         | 
| 391 431 | 
             
                  "inputs": [],
         | 
| 392 432 | 
             
                  "name": "getNftId",
         | 
| @@ -470,6 +510,19 @@ | |
| 470 510 | 
             
                  "stateMutability": "nonpayable",
         | 
| 471 511 | 
             
                  "type": "function"
         | 
| 472 512 | 
             
                },
         | 
| 513 | 
            +
                {
         | 
| 514 | 
            +
                  "inputs": [],
         | 
| 515 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 516 | 
            +
                  "outputs": [
         | 
| 517 | 
            +
                    {
         | 
| 518 | 
            +
                      "internalType": "bytes4",
         | 
| 519 | 
            +
                      "name": "",
         | 
| 520 | 
            +
                      "type": "bytes4"
         | 
| 521 | 
            +
                    }
         | 
| 522 | 
            +
                  ],
         | 
| 523 | 
            +
                  "stateMutability": "view",
         | 
| 524 | 
            +
                  "type": "function"
         | 
| 525 | 
            +
                },
         | 
| 473 526 | 
             
                {
         | 
| 474 527 | 
             
                  "inputs": [],
         | 
| 475 528 | 
             
                  "name": "linkToRegisteredNftId",
         | 
| @@ -477,6 +530,19 @@ | |
| 477 530 | 
             
                  "stateMutability": "nonpayable",
         | 
| 478 531 | 
             
                  "type": "function"
         | 
| 479 532 | 
             
                },
         | 
| 533 | 
            +
                {
         | 
| 534 | 
            +
                  "inputs": [
         | 
| 535 | 
            +
                    {
         | 
| 536 | 
            +
                      "internalType": "address",
         | 
| 537 | 
            +
                      "name": "",
         | 
| 538 | 
            +
                      "type": "address"
         | 
| 539 | 
            +
                    }
         | 
| 540 | 
            +
                  ],
         | 
| 541 | 
            +
                  "name": "setAuthority",
         | 
| 542 | 
            +
                  "outputs": [],
         | 
| 543 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 544 | 
            +
                  "type": "function"
         | 
| 545 | 
            +
                },
         | 
| 480 546 | 
             
                {
         | 
| 481 547 | 
             
                  "inputs": [
         | 
| 482 548 | 
             
                    {
         |