@etherisc/gif-next 0.0.2-f30e0eb-805 → 0.0.2-f398177-971
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 +47 -6
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +70 -13
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +137 -6
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +144 -13
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +161 -20
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +151 -20
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +71 -20
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +62 -21
- 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 +310 -2004
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +101 -52
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +425 -2757
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +95 -58
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +124 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +348 -58
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +153 -207
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +38 -83
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2788 -0
- 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 +113 -34
- 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 +8 -8
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +6 -6
- 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 +186 -236
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +38 -55
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +377 -182
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +74 -39
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +713 -83
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +147 -32
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +266 -442
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +82 -107
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +111 -174
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +233 -128
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +385 -51
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +109 -282
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +210 -99
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +682 -33
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.json +510 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +85 -27
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +420 -160
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +104 -53
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +880 -82
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +90 -39
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +1004 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +688 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +144 -57
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +28 -37
- 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 +5 -37
- 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 +22 -49
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +21 -34
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +23 -11
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +10 -23
- package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/{instance → shared}/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +3 -3
- 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/INftOwnable.sol/INftOwnable.json +0 -13
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +69 -9
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +0 -13
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +85 -27
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +6 -19
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +80 -26
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +14 -27
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +6 -19
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +91 -28
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +24 -6
- 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/TestRegisterable.sol/TestRegisterable.json +6 -19
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +106 -39
- 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 +281 -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/ClaimId.sol/ClaimIdLib.json +83 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +74 -19
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +116 -7
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +2 -2
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +17 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/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 +25 -4
- package/contracts/components/Distribution.sol +11 -6
- package/contracts/components/IComponent.sol +19 -3
- package/contracts/components/IPoolComponent.sol +8 -7
- package/contracts/components/IProductComponent.sol +5 -4
- package/contracts/components/Pool.sol +17 -14
- package/contracts/components/Product.sol +144 -62
- package/contracts/instance/BundleManager.sol +3 -4
- package/contracts/instance/IInstance.sol +32 -53
- package/contracts/instance/IInstanceService.sol +15 -14
- package/contracts/instance/Instance.sol +107 -205
- package/contracts/instance/InstanceAccessManager.sol +44 -25
- package/contracts/instance/InstanceAuthorizationsLib.sol +308 -0
- package/contracts/instance/InstanceReader.sol +85 -7
- package/contracts/instance/InstanceService.sol +102 -289
- package/contracts/instance/InstanceStore.sol +212 -0
- package/contracts/instance/ObjectManager.sol +1 -1
- package/contracts/instance/base/ComponentService.sol +53 -39
- package/contracts/instance/base/KeyValueStore.sol +8 -34
- package/contracts/instance/base/Lifecycle.sol +15 -4
- package/contracts/instance/module/IAccess.sol +2 -2
- package/contracts/instance/module/IBundle.sol +6 -4
- package/contracts/instance/module/IComponents.sol +7 -1
- package/contracts/instance/module/IDistribution.sol +3 -2
- package/contracts/instance/module/IPolicy.sol +13 -8
- package/contracts/instance/service/ApplicationService.sol +62 -226
- package/contracts/instance/service/BundleService.sol +172 -126
- package/contracts/instance/service/ClaimService.sol +318 -32
- package/contracts/instance/service/DistributionService.sol +71 -190
- package/contracts/instance/service/IApplicationService.sol +8 -28
- package/contracts/instance/service/IBundleService.sol +82 -26
- package/contracts/instance/service/IClaimService.sol +52 -23
- package/contracts/instance/service/IDistributionService.sol +11 -22
- package/contracts/instance/service/IPolicyService.sol +24 -16
- package/contracts/instance/service/IPoolService.sol +82 -3
- package/contracts/instance/service/IPricingService.sol +37 -0
- package/contracts/instance/service/PolicyService.sol +152 -179
- package/contracts/instance/service/PoolService.sol +239 -56
- package/contracts/instance/service/PricingService.sol +275 -0
- package/contracts/instance/service/PricingServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +27 -58
- package/contracts/registry/IRegistryService.sol +2 -3
- package/contracts/registry/RegistryService.sol +24 -21
- package/contracts/registry/ReleaseManager.sol +20 -18
- package/contracts/shared/IPolicyHolder.sol +23 -9
- package/contracts/shared/IRegistryLinked.sol +0 -1
- package/contracts/shared/IService.sol +6 -6
- package/contracts/shared/NftOwnable.sol +0 -2
- package/contracts/shared/PolicyHolder.sol +30 -17
- package/contracts/shared/Registerable.sol +10 -9
- package/contracts/shared/RegistryLinked.sol +0 -5
- package/contracts/shared/Service.sol +21 -7
- package/contracts/shared/TokenHandler.sol +4 -2
- package/contracts/test/TestService.sol +1 -1
- package/contracts/types/Amount.sol +109 -0
- package/contracts/types/ClaimId.sol +25 -2
- package/contracts/types/Fee.sol +16 -8
- package/contracts/types/ObjectType.sol +9 -5
- package/contracts/types/PayoutId.sol +33 -5
- package/contracts/types/StateId.sol +6 -2
- package/contracts/types/Timestamp.sol +5 -0
- package/package.json +1 -1
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
- /package/contracts/{instance → shared}/AccessManagerUpgradeableInitializeable.sol +0 -0
    
        package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json
    CHANGED
    
    | @@ -3,6 +3,44 @@ | |
| 3 3 | 
             
              "contractName": "IDistributionComponent",
         | 
| 4 4 | 
             
              "sourceName": "contracts/components/IDistributionComponent.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 | 
             
                    {
         | 
| @@ -77,6 +115,11 @@ | |
| 77 115 | 
             
                  "name": "ErrorComponentWalletAllowanceTooSmall",
         | 
| 78 116 | 
             
                  "type": "error"
         | 
| 79 117 | 
             
                },
         | 
| 118 | 
            +
                {
         | 
| 119 | 
            +
                  "inputs": [],
         | 
| 120 | 
            +
                  "name": "ErrorComponentWalletNotComponent",
         | 
| 121 | 
            +
                  "type": "error"
         | 
| 122 | 
            +
                },
         | 
| 80 123 | 
             
                {
         | 
| 81 124 | 
             
                  "inputs": [
         | 
| 82 125 | 
             
                    {
         | 
| @@ -126,6 +169,32 @@ | |
| 126 169 | 
             
                  "name": "ErrorNotRegistry",
         | 
| 127 170 | 
             
                  "type": "error"
         | 
| 128 171 | 
             
                },
         | 
| 172 | 
            +
                {
         | 
| 173 | 
            +
                  "anonymous": false,
         | 
| 174 | 
            +
                  "inputs": [
         | 
| 175 | 
            +
                    {
         | 
| 176 | 
            +
                      "indexed": false,
         | 
| 177 | 
            +
                      "internalType": "address",
         | 
| 178 | 
            +
                      "name": "authority",
         | 
| 179 | 
            +
                      "type": "address"
         | 
| 180 | 
            +
                    }
         | 
| 181 | 
            +
                  ],
         | 
| 182 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 183 | 
            +
                  "type": "event"
         | 
| 184 | 
            +
                },
         | 
| 185 | 
            +
                {
         | 
| 186 | 
            +
                  "anonymous": false,
         | 
| 187 | 
            +
                  "inputs": [
         | 
| 188 | 
            +
                    {
         | 
| 189 | 
            +
                      "indexed": false,
         | 
| 190 | 
            +
                      "internalType": "uint256",
         | 
| 191 | 
            +
                      "name": "limit",
         | 
| 192 | 
            +
                      "type": "uint256"
         | 
| 193 | 
            +
                    }
         | 
| 194 | 
            +
                  ],
         | 
| 195 | 
            +
                  "name": "LogComponentTokenHandlerApproved",
         | 
| 196 | 
            +
                  "type": "event"
         | 
| 197 | 
            +
                },
         | 
| 129 198 | 
             
                {
         | 
| 130 199 | 
             
                  "anonymous": false,
         | 
| 131 200 | 
             
                  "inputs": [
         | 
| @@ -189,6 +258,32 @@ | |
| 189 258 | 
             
                  "name": "LogDistributorUpdated",
         | 
| 190 259 | 
             
                  "type": "event"
         | 
| 191 260 | 
             
                },
         | 
| 261 | 
            +
                {
         | 
| 262 | 
            +
                  "inputs": [
         | 
| 263 | 
            +
                    {
         | 
| 264 | 
            +
                      "internalType": "uint256",
         | 
| 265 | 
            +
                      "name": "spendingLimitAmount",
         | 
| 266 | 
            +
                      "type": "uint256"
         | 
| 267 | 
            +
                    }
         | 
| 268 | 
            +
                  ],
         | 
| 269 | 
            +
                  "name": "approveTokenHandler",
         | 
| 270 | 
            +
                  "outputs": [],
         | 
| 271 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 272 | 
            +
                  "type": "function"
         | 
| 273 | 
            +
                },
         | 
| 274 | 
            +
                {
         | 
| 275 | 
            +
                  "inputs": [],
         | 
| 276 | 
            +
                  "name": "authority",
         | 
| 277 | 
            +
                  "outputs": [
         | 
| 278 | 
            +
                    {
         | 
| 279 | 
            +
                      "internalType": "address",
         | 
| 280 | 
            +
                      "name": "",
         | 
| 281 | 
            +
                      "type": "address"
         | 
| 282 | 
            +
                    }
         | 
| 283 | 
            +
                  ],
         | 
| 284 | 
            +
                  "stateMutability": "view",
         | 
| 285 | 
            +
                  "type": "function"
         | 
| 286 | 
            +
                },
         | 
| 192 287 | 
             
                {
         | 
| 193 288 | 
             
                  "inputs": [
         | 
| 194 289 | 
             
                    {
         | 
| @@ -327,6 +422,16 @@ | |
| 327 422 | 
             
                          "name": "wallet",
         | 
| 328 423 | 
             
                          "type": "address"
         | 
| 329 424 | 
             
                        },
         | 
| 425 | 
            +
                        {
         | 
| 426 | 
            +
                          "internalType": "Amount",
         | 
| 427 | 
            +
                          "name": "balanceAmount",
         | 
| 428 | 
            +
                          "type": "uint96"
         | 
| 429 | 
            +
                        },
         | 
| 430 | 
            +
                        {
         | 
| 431 | 
            +
                          "internalType": "Amount",
         | 
| 432 | 
            +
                          "name": "feeAmount",
         | 
| 433 | 
            +
                          "type": "uint96"
         | 
| 434 | 
            +
                        },
         | 
| 330 435 | 
             
                        {
         | 
| 331 436 | 
             
                          "internalType": "bytes",
         | 
| 332 437 | 
             
                          "name": "data",
         | 
| @@ -537,19 +642,6 @@ | |
| 537 642 | 
             
                  "stateMutability": "view",
         | 
| 538 643 | 
             
                  "type": "function"
         | 
| 539 644 | 
             
                },
         | 
| 540 | 
            -
                {
         | 
| 541 | 
            -
                  "inputs": [],
         | 
| 542 | 
            -
                  "name": "getRegistryAddress",
         | 
| 543 | 
            -
                  "outputs": [
         | 
| 544 | 
            -
                    {
         | 
| 545 | 
            -
                      "internalType": "address",
         | 
| 546 | 
            -
                      "name": "",
         | 
| 547 | 
            -
                      "type": "address"
         | 
| 548 | 
            -
                    }
         | 
| 549 | 
            -
                  ],
         | 
| 550 | 
            -
                  "stateMutability": "view",
         | 
| 551 | 
            -
                  "type": "function"
         | 
| 552 | 
            -
                },
         | 
| 553 645 | 
             
                {
         | 
| 554 646 | 
             
                  "inputs": [],
         | 
| 555 647 | 
             
                  "name": "getSetupInfo",
         | 
| @@ -632,6 +724,19 @@ | |
| 632 724 | 
             
                  "stateMutability": "view",
         | 
| 633 725 | 
             
                  "type": "function"
         | 
| 634 726 | 
             
                },
         | 
| 727 | 
            +
                {
         | 
| 728 | 
            +
                  "inputs": [],
         | 
| 729 | 
            +
                  "name": "getTokenHandler",
         | 
| 730 | 
            +
                  "outputs": [
         | 
| 731 | 
            +
                    {
         | 
| 732 | 
            +
                      "internalType": "contract TokenHandler",
         | 
| 733 | 
            +
                      "name": "tokenHandler",
         | 
| 734 | 
            +
                      "type": "address"
         | 
| 735 | 
            +
                    }
         | 
| 736 | 
            +
                  ],
         | 
| 737 | 
            +
                  "stateMutability": "view",
         | 
| 738 | 
            +
                  "type": "function"
         | 
| 739 | 
            +
                },
         | 
| 635 740 | 
             
                {
         | 
| 636 741 | 
             
                  "inputs": [],
         | 
| 637 742 | 
             
                  "name": "getWallet",
         | 
| @@ -645,6 +750,19 @@ | |
| 645 750 | 
             
                  "stateMutability": "view",
         | 
| 646 751 | 
             
                  "type": "function"
         | 
| 647 752 | 
             
                },
         | 
| 753 | 
            +
                {
         | 
| 754 | 
            +
                  "inputs": [],
         | 
| 755 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 756 | 
            +
                  "outputs": [
         | 
| 757 | 
            +
                    {
         | 
| 758 | 
            +
                      "internalType": "bytes4",
         | 
| 759 | 
            +
                      "name": "",
         | 
| 760 | 
            +
                      "type": "bytes4"
         | 
| 761 | 
            +
                    }
         | 
| 762 | 
            +
                  ],
         | 
| 763 | 
            +
                  "stateMutability": "view",
         | 
| 764 | 
            +
                  "type": "function"
         | 
| 765 | 
            +
                },
         | 
| 648 766 | 
             
                {
         | 
| 649 767 | 
             
                  "inputs": [],
         | 
| 650 768 | 
             
                  "name": "isNftInterceptor",
         | 
| @@ -744,6 +862,19 @@ | |
| 744 862 | 
             
                  "stateMutability": "nonpayable",
         | 
| 745 863 | 
             
                  "type": "function"
         | 
| 746 864 | 
             
                },
         | 
| 865 | 
            +
                {
         | 
| 866 | 
            +
                  "inputs": [
         | 
| 867 | 
            +
                    {
         | 
| 868 | 
            +
                      "internalType": "address",
         | 
| 869 | 
            +
                      "name": "",
         | 
| 870 | 
            +
                      "type": "address"
         | 
| 871 | 
            +
                    }
         | 
| 872 | 
            +
                  ],
         | 
| 873 | 
            +
                  "name": "setAuthority",
         | 
| 874 | 
            +
                  "outputs": [],
         | 
| 875 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 876 | 
            +
                  "type": "function"
         | 
| 877 | 
            +
                },
         | 
| 747 878 | 
             
                {
         | 
| 748 879 | 
             
                  "inputs": [
         | 
| 749 880 | 
             
                    {
         | 
| @@ -3,6 +3,44 @@ | |
| 3 3 | 
             
              "contractName": "IPoolComponent",
         | 
| 4 4 | 
             
              "sourceName": "contracts/components/IPoolComponent.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 | 
             
                    {
         | 
| @@ -77,6 +115,11 @@ | |
| 77 115 | 
             
                  "name": "ErrorComponentWalletAllowanceTooSmall",
         | 
| 78 116 | 
             
                  "type": "error"
         | 
| 79 117 | 
             
                },
         | 
| 118 | 
            +
                {
         | 
| 119 | 
            +
                  "inputs": [],
         | 
| 120 | 
            +
                  "name": "ErrorComponentWalletNotComponent",
         | 
| 121 | 
            +
                  "type": "error"
         | 
| 122 | 
            +
                },
         | 
| 80 123 | 
             
                {
         | 
| 81 124 | 
             
                  "inputs": [
         | 
| 82 125 | 
             
                    {
         | 
| @@ -164,6 +207,32 @@ | |
| 164 207 | 
             
                  "name": "ErrorPoolNotPoolService",
         | 
| 165 208 | 
             
                  "type": "error"
         | 
| 166 209 | 
             
                },
         | 
| 210 | 
            +
                {
         | 
| 211 | 
            +
                  "anonymous": false,
         | 
| 212 | 
            +
                  "inputs": [
         | 
| 213 | 
            +
                    {
         | 
| 214 | 
            +
                      "indexed": false,
         | 
| 215 | 
            +
                      "internalType": "address",
         | 
| 216 | 
            +
                      "name": "authority",
         | 
| 217 | 
            +
                      "type": "address"
         | 
| 218 | 
            +
                    }
         | 
| 219 | 
            +
                  ],
         | 
| 220 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 221 | 
            +
                  "type": "event"
         | 
| 222 | 
            +
                },
         | 
| 223 | 
            +
                {
         | 
| 224 | 
            +
                  "anonymous": false,
         | 
| 225 | 
            +
                  "inputs": [
         | 
| 226 | 
            +
                    {
         | 
| 227 | 
            +
                      "indexed": false,
         | 
| 228 | 
            +
                      "internalType": "uint256",
         | 
| 229 | 
            +
                      "name": "limit",
         | 
| 230 | 
            +
                      "type": "uint256"
         | 
| 231 | 
            +
                    }
         | 
| 232 | 
            +
                  ],
         | 
| 233 | 
            +
                  "name": "LogComponentTokenHandlerApproved",
         | 
| 234 | 
            +
                  "type": "event"
         | 
| 235 | 
            +
                },
         | 
| 167 236 | 
             
                {
         | 
| 168 237 | 
             
                  "anonymous": false,
         | 
| 169 238 | 
             
                  "inputs": [
         | 
| @@ -225,9 +294,9 @@ | |
| 225 294 | 
             
                    },
         | 
| 226 295 | 
             
                    {
         | 
| 227 296 | 
             
                      "indexed": false,
         | 
| 228 | 
            -
                      "internalType": " | 
| 297 | 
            +
                      "internalType": "Amount",
         | 
| 229 298 | 
             
                      "name": "collateralizationAmount",
         | 
| 230 | 
            -
                      "type": " | 
| 299 | 
            +
                      "type": "uint96"
         | 
| 231 300 | 
             
                    }
         | 
| 232 301 | 
             
                  ],
         | 
| 233 302 | 
             
                  "name": "LogPoolVerifiedByPool",
         | 
| @@ -256,9 +325,9 @@ | |
| 256 325 | 
             
                      "type": "bytes"
         | 
| 257 326 | 
             
                    },
         | 
| 258 327 | 
             
                    {
         | 
| 259 | 
            -
                      "internalType": " | 
| 328 | 
            +
                      "internalType": "Amount",
         | 
| 260 329 | 
             
                      "name": "collateralizationAmount",
         | 
| 261 | 
            -
                      "type": " | 
| 330 | 
            +
                      "type": "uint96"
         | 
| 262 331 | 
             
                    }
         | 
| 263 332 | 
             
                  ],
         | 
| 264 333 | 
             
                  "name": "applicationMatchesBundle",
         | 
| @@ -272,6 +341,32 @@ | |
| 272 341 | 
             
                  "stateMutability": "view",
         | 
| 273 342 | 
             
                  "type": "function"
         | 
| 274 343 | 
             
                },
         | 
| 344 | 
            +
                {
         | 
| 345 | 
            +
                  "inputs": [
         | 
| 346 | 
            +
                    {
         | 
| 347 | 
            +
                      "internalType": "uint256",
         | 
| 348 | 
            +
                      "name": "spendingLimitAmount",
         | 
| 349 | 
            +
                      "type": "uint256"
         | 
| 350 | 
            +
                    }
         | 
| 351 | 
            +
                  ],
         | 
| 352 | 
            +
                  "name": "approveTokenHandler",
         | 
| 353 | 
            +
                  "outputs": [],
         | 
| 354 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 355 | 
            +
                  "type": "function"
         | 
| 356 | 
            +
                },
         | 
| 357 | 
            +
                {
         | 
| 358 | 
            +
                  "inputs": [],
         | 
| 359 | 
            +
                  "name": "authority",
         | 
| 360 | 
            +
                  "outputs": [
         | 
| 361 | 
            +
                    {
         | 
| 362 | 
            +
                      "internalType": "address",
         | 
| 363 | 
            +
                      "name": "",
         | 
| 364 | 
            +
                      "type": "address"
         | 
| 365 | 
            +
                    }
         | 
| 366 | 
            +
                  ],
         | 
| 367 | 
            +
                  "stateMutability": "view",
         | 
| 368 | 
            +
                  "type": "function"
         | 
| 369 | 
            +
                },
         | 
| 275 370 | 
             
                {
         | 
| 276 371 | 
             
                  "inputs": [
         | 
| 277 372 | 
             
                    {
         | 
| @@ -329,6 +424,16 @@ | |
| 329 424 | 
             
                          "name": "wallet",
         | 
| 330 425 | 
             
                          "type": "address"
         | 
| 331 426 | 
             
                        },
         | 
| 427 | 
            +
                        {
         | 
| 428 | 
            +
                          "internalType": "Amount",
         | 
| 429 | 
            +
                          "name": "balanceAmount",
         | 
| 430 | 
            +
                          "type": "uint96"
         | 
| 431 | 
            +
                        },
         | 
| 432 | 
            +
                        {
         | 
| 433 | 
            +
                          "internalType": "Amount",
         | 
| 434 | 
            +
                          "name": "feeAmount",
         | 
| 435 | 
            +
                          "type": "uint96"
         | 
| 436 | 
            +
                        },
         | 
| 332 437 | 
             
                        {
         | 
| 333 438 | 
             
                          "internalType": "bytes",
         | 
| 334 439 | 
             
                          "name": "data",
         | 
| @@ -462,9 +567,19 @@ | |
| 462 567 | 
             
                          "type": "uint64"
         | 
| 463 568 | 
             
                        },
         | 
| 464 569 | 
             
                        {
         | 
| 465 | 
            -
                          "internalType": " | 
| 570 | 
            +
                          "internalType": "Amount",
         | 
| 466 571 | 
             
                          "name": "maxCapitalAmount",
         | 
| 467 | 
            -
                          "type": " | 
| 572 | 
            +
                          "type": "uint96"
         | 
| 573 | 
            +
                        },
         | 
| 574 | 
            +
                        {
         | 
| 575 | 
            +
                          "internalType": "Amount",
         | 
| 576 | 
            +
                          "name": "balanceAmount",
         | 
| 577 | 
            +
                          "type": "uint96"
         | 
| 578 | 
            +
                        },
         | 
| 579 | 
            +
                        {
         | 
| 580 | 
            +
                          "internalType": "Amount",
         | 
| 581 | 
            +
                          "name": "feeAmount",
         | 
| 582 | 
            +
                          "type": "uint96"
         | 
| 468 583 | 
             
                        },
         | 
| 469 584 | 
             
                        {
         | 
| 470 585 | 
             
                          "internalType": "bool",
         | 
| @@ -579,11 +694,11 @@ | |
| 579 694 | 
             
                },
         | 
| 580 695 | 
             
                {
         | 
| 581 696 | 
             
                  "inputs": [],
         | 
| 582 | 
            -
                  "name": " | 
| 697 | 
            +
                  "name": "getToken",
         | 
| 583 698 | 
             
                  "outputs": [
         | 
| 584 699 | 
             
                    {
         | 
| 585 | 
            -
                      "internalType": " | 
| 586 | 
            -
                      "name": "",
         | 
| 700 | 
            +
                      "internalType": "contract IERC20Metadata",
         | 
| 701 | 
            +
                      "name": "token",
         | 
| 587 702 | 
             
                      "type": "address"
         | 
| 588 703 | 
             
                    }
         | 
| 589 704 | 
             
                  ],
         | 
| @@ -592,11 +707,11 @@ | |
| 592 707 | 
             
                },
         | 
| 593 708 | 
             
                {
         | 
| 594 709 | 
             
                  "inputs": [],
         | 
| 595 | 
            -
                  "name": " | 
| 710 | 
            +
                  "name": "getTokenHandler",
         | 
| 596 711 | 
             
                  "outputs": [
         | 
| 597 712 | 
             
                    {
         | 
| 598 | 
            -
                      "internalType": "contract  | 
| 599 | 
            -
                      "name": " | 
| 713 | 
            +
                      "internalType": "contract TokenHandler",
         | 
| 714 | 
            +
                      "name": "tokenHandler",
         | 
| 600 715 | 
             
                      "type": "address"
         | 
| 601 716 | 
             
                    }
         | 
| 602 717 | 
             
                  ],
         | 
| @@ -616,6 +731,19 @@ | |
| 616 731 | 
             
                  "stateMutability": "view",
         | 
| 617 732 | 
             
                  "type": "function"
         | 
| 618 733 | 
             
                },
         | 
| 734 | 
            +
                {
         | 
| 735 | 
            +
                  "inputs": [],
         | 
| 736 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 737 | 
            +
                  "outputs": [
         | 
| 738 | 
            +
                    {
         | 
| 739 | 
            +
                      "internalType": "bytes4",
         | 
| 740 | 
            +
                      "name": "",
         | 
| 741 | 
            +
                      "type": "bytes4"
         | 
| 742 | 
            +
                    }
         | 
| 743 | 
            +
                  ],
         | 
| 744 | 
            +
                  "stateMutability": "view",
         | 
| 745 | 
            +
                  "type": "function"
         | 
| 746 | 
            +
                },
         | 
| 619 747 | 
             
                {
         | 
| 620 748 | 
             
                  "inputs": [],
         | 
| 621 749 | 
             
                  "name": "isNftInterceptor",
         | 
| @@ -697,6 +825,19 @@ | |
| 697 825 | 
             
                  "stateMutability": "nonpayable",
         | 
| 698 826 | 
             
                  "type": "function"
         | 
| 699 827 | 
             
                },
         | 
| 828 | 
            +
                {
         | 
| 829 | 
            +
                  "inputs": [
         | 
| 830 | 
            +
                    {
         | 
| 831 | 
            +
                      "internalType": "address",
         | 
| 832 | 
            +
                      "name": "",
         | 
| 833 | 
            +
                      "type": "address"
         | 
| 834 | 
            +
                    }
         | 
| 835 | 
            +
                  ],
         | 
| 836 | 
            +
                  "name": "setAuthority",
         | 
| 837 | 
            +
                  "outputs": [],
         | 
| 838 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 839 | 
            +
                  "type": "function"
         | 
| 840 | 
            +
                },
         | 
| 700 841 | 
             
                {
         | 
| 701 842 | 
             
                  "inputs": [
         | 
| 702 843 | 
             
                    {
         | 
| @@ -802,9 +943,9 @@ | |
| 802 943 | 
             
                {
         | 
| 803 944 | 
             
                  "inputs": [
         | 
| 804 945 | 
             
                    {
         | 
| 805 | 
            -
                      "internalType": " | 
| 946 | 
            +
                      "internalType": "Amount",
         | 
| 806 947 | 
             
                      "name": "maxCapitalAmount",
         | 
| 807 | 
            -
                      "type": " | 
| 948 | 
            +
                      "type": "uint96"
         | 
| 808 949 | 
             
                    }
         | 
| 809 950 | 
             
                  ],
         | 
| 810 951 | 
             
                  "name": "setMaxCapitalAmount",
         | 
| @@ -846,9 +987,9 @@ | |
| 846 987 | 
             
                      "type": "uint96"
         | 
| 847 988 | 
             
                    },
         | 
| 848 989 | 
             
                    {
         | 
| 849 | 
            -
                      "internalType": " | 
| 990 | 
            +
                      "internalType": "Amount",
         | 
| 850 991 | 
             
                      "name": "amount",
         | 
| 851 | 
            -
                      "type": " | 
| 992 | 
            +
                      "type": "uint96"
         | 
| 852 993 | 
             
                    }
         | 
| 853 994 | 
             
                  ],
         | 
| 854 995 | 
             
                  "name": "stake",
         | 
| @@ -903,9 +1044,9 @@ | |
| 903 1044 | 
             
                      "type": "uint96"
         | 
| 904 1045 | 
             
                    },
         | 
| 905 1046 | 
             
                    {
         | 
| 906 | 
            -
                      "internalType": " | 
| 1047 | 
            +
                      "internalType": "Amount",
         | 
| 907 1048 | 
             
                      "name": "amount",
         | 
| 908 | 
            -
                      "type": " | 
| 1049 | 
            +
                      "type": "uint96"
         | 
| 909 1050 | 
             
                    }
         | 
| 910 1051 | 
             
                  ],
         | 
| 911 1052 | 
             
                  "name": "unstake",
         | 
| @@ -936,9 +1077,9 @@ | |
| 936 1077 | 
             
                      "type": "bytes"
         | 
| 937 1078 | 
             
                    },
         | 
| 938 1079 | 
             
                    {
         | 
| 939 | 
            -
                      "internalType": " | 
| 1080 | 
            +
                      "internalType": "Amount",
         | 
| 940 1081 | 
             
                      "name": "collateralizationAmount",
         | 
| 941 | 
            -
                      "type": " | 
| 1082 | 
            +
                      "type": "uint96"
         | 
| 942 1083 | 
             
                    }
         | 
| 943 1084 | 
             
                  ],
         | 
| 944 1085 | 
             
                  "name": "verifyApplication",
         |