@etherisc/gif-next 0.0.2-e922e07-736 → 0.0.2-e9a637d-547
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -71
 - package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
 - package/artifacts/contracts/components/Component.sol/Component.json +68 -0
 - package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
 - package/artifacts/contracts/components/Distribution.sol/Distribution.json +68 -0
 - package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IComponent.sol/IComponent.json +158 -0
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +158 -0
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +184 -149
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
 - package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +158 -0
 - package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
 - package/artifacts/contracts/components/Pool.sol/Pool.json +114 -189
 - package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
 - package/artifacts/contracts/components/Product.sol/Product.json +68 -0
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
 - package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +64 -50
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
 - package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +5 -0
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstance.sol/IInstance.json +214 -2063
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +196 -51
 - package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
 - package/artifacts/contracts/instance/Instance.sol/Instance.json +363 -2832
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +491 -127
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +101 -167
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +333 -171
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +75 -23
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
 - package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2677 -0
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +8 -13
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +85 -30
 - package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +40 -10
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
 - package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +56 -73
 - package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
 - package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
 - package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
 - package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +124 -53
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +21 -13
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +384 -249
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +74 -14
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +104 -41
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +11 -7
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +195 -121
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +51 -47
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +80 -14
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +212 -186
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +80 -14
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +101 -24
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +90 -24
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +511 -14
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +80 -14
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +136 -65
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +27 -19
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +561 -51
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +24 -12
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +114 -51
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +16 -12
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
 - package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +19 -0
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +0 -24
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
 - package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
 - package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
 - package/artifacts/contracts/registry/Registry.sol/Registry.json +31 -12
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +17 -36
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +7 -7
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
 - package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +23 -11
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
 - package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +2 -2
 - package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
 - package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
 - package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
 - package/artifacts/contracts/shared/IService.sol/IService.json +80 -14
 - package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
 - package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +2 -2
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
 - package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -2
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
 - package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +2 -2
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
 - package/artifacts/contracts/shared/Registerable.sol/Registerable.json +2 -2
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
 - package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
 - package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
 - package/artifacts/contracts/shared/Service.sol/Service.json +86 -15
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
 - package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
 - package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
 - package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
 - package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +2 -2
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
 - package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
 - package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
 - package/artifacts/contracts/test/TestService.sol/TestService.json +101 -26
 - package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
 - package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +2 -2
 - package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
 - package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
 - package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
 - package/artifacts/contracts/types/Amount.sol/AmountLib.json +161 -0
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
 - package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
 - package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Fee.sol/FeeLib.json +40 -9
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
 - package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/NftId.sol/NftIdLib.json +17 -4
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
 - package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
 - package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
 - package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
 - package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Referral.sol/ReferralLib.json +2 -2
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
 - package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +1 -1
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
 - package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +2 -2
 - package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
 - package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
 - package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
 - package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
 - package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
 - package/contracts/components/Component.sol +42 -10
 - package/contracts/components/IComponent.sol +9 -1
 - package/contracts/components/IPoolComponent.sol +5 -43
 - package/contracts/components/Pool.sol +47 -122
 - package/contracts/components/Product.sol +4 -0
 - package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
 - package/contracts/instance/BundleManager.sol +6 -4
 - package/contracts/instance/Cloneable.sol +7 -2
 - package/contracts/instance/IInstance.sol +23 -55
 - package/contracts/instance/IInstanceService.sol +31 -6
 - package/contracts/instance/Instance.sol +90 -182
 - package/contracts/instance/InstanceAccessManager.sol +402 -159
 - package/contracts/instance/InstanceReader.sol +12 -12
 - package/contracts/instance/InstanceService.sol +287 -246
 - package/contracts/instance/InstanceStore.sol +219 -0
 - package/contracts/instance/ObjectManager.sol +6 -8
 - package/contracts/instance/base/ComponentService.sol +17 -30
 - package/contracts/instance/base/KeyValueStore.sol +13 -5
 - package/contracts/instance/base/Lifecycle.sol +11 -2
 - package/contracts/instance/module/IAccess.sol +21 -14
 - package/contracts/instance/module/IBundle.sol +6 -4
 - package/contracts/instance/module/IComponents.sol +41 -0
 - package/contracts/instance/module/ISetup.sol +3 -16
 - package/contracts/instance/service/ApplicationService.sol +18 -16
 - package/contracts/instance/service/BundleService.sol +213 -81
 - package/contracts/instance/service/ClaimService.sol +3 -3
 - package/contracts/instance/service/DistributionService.sol +57 -70
 - package/contracts/instance/service/IBundleService.sol +63 -25
 - package/contracts/instance/service/IDistributionService.sol +1 -0
 - package/contracts/instance/service/IPoolService.sol +82 -3
 - package/contracts/instance/service/PolicyService.sol +68 -100
 - package/contracts/instance/service/PoolService.sol +214 -20
 - package/contracts/instance/service/ProductService.sol +34 -58
 - package/contracts/registry/ChainNft.sol +8 -0
 - package/contracts/registry/IRegistry.sol +2 -0
 - package/contracts/registry/IRegistryService.sol +4 -3
 - package/contracts/registry/ITransferInterceptor.sol +1 -0
 - package/contracts/registry/Registry.sol +23 -20
 - package/contracts/registry/RegistryService.sol +10 -11
 - package/contracts/registry/ReleaseManager.sol +20 -18
 - package/contracts/shared/IService.sol +4 -6
 - package/contracts/shared/Service.sol +21 -7
 - package/contracts/shared/TokenHandler.sol +11 -5
 - package/contracts/test/TestService.sol +1 -1
 - package/contracts/types/Amount.sol +60 -0
 - package/contracts/types/Blocknumber.sol +1 -0
 - package/contracts/types/Fee.sol +13 -5
 - package/contracts/types/NftId.sol +8 -0
 - package/contracts/types/ObjectType.sol +1 -0
 - package/contracts/types/RoleId.sol +6 -4
 - package/contracts/types/StateId.sol +1 -0
 - package/contracts/types/Timestamp.sol +1 -0
 - package/contracts/types/UFixed.sol +1 -0
 - package/contracts/types/Version.sol +1 -0
 - package/package.json +1 -1
 
| 
         @@ -3,6 +3,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 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -137,11 +175,6 @@ 
     | 
|
| 
       137 
175 
     | 
    
         
             
                  "name": "ErrorPoolApplicationBundleMismatch",
         
     | 
| 
       138 
176 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       139 
177 
     | 
    
         
             
                },
         
     | 
| 
       140 
     | 
    
         
            -
                {
         
     | 
| 
       141 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       142 
     | 
    
         
            -
                  "name": "ErrorPoolBundleOwnerRoleAlreadySet",
         
     | 
| 
       143 
     | 
    
         
            -
                  "type": "error"
         
     | 
| 
       144 
     | 
    
         
            -
                },
         
     | 
| 
       145 
178 
     | 
    
         
             
                {
         
     | 
| 
       146 
179 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       147 
180 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -169,6 +202,19 @@ 
     | 
|
| 
       169 
202 
     | 
    
         
             
                  "name": "ErrorPoolNotPoolService",
         
     | 
| 
       170 
203 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       171 
204 
     | 
    
         
             
                },
         
     | 
| 
      
 205 
     | 
    
         
            +
                {
         
     | 
| 
      
 206 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 207 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 208 
     | 
    
         
            +
                    {
         
     | 
| 
      
 209 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 210 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 211 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 212 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 213 
     | 
    
         
            +
                    }
         
     | 
| 
      
 214 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 215 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 216 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 217 
     | 
    
         
            +
                },
         
     | 
| 
       172 
218 
     | 
    
         
             
                {
         
     | 
| 
       173 
219 
     | 
    
         
             
                  "anonymous": false,
         
     | 
| 
       174 
220 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
         @@ -213,38 +259,6 @@ 
     | 
|
| 
       213 
259 
     | 
    
         
             
                  "name": "LogComponentWalletTokensTransferred",
         
     | 
| 
       214 
260 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       215 
261 
     | 
    
         
             
                },
         
     | 
| 
       216 
     | 
    
         
            -
                {
         
     | 
| 
       217 
     | 
    
         
            -
                  "anonymous": false,
         
     | 
| 
       218 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       219 
     | 
    
         
            -
                    {
         
     | 
| 
       220 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       221 
     | 
    
         
            -
                      "internalType": "uint256",
         
     | 
| 
       222 
     | 
    
         
            -
                      "name": "previousMaxCapitalAmount",
         
     | 
| 
       223 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       224 
     | 
    
         
            -
                    },
         
     | 
| 
       225 
     | 
    
         
            -
                    {
         
     | 
| 
       226 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       227 
     | 
    
         
            -
                      "internalType": "uint256",
         
     | 
| 
       228 
     | 
    
         
            -
                      "name": "currentMaxCapitalAmount",
         
     | 
| 
       229 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       230 
     | 
    
         
            -
                    }
         
     | 
| 
       231 
     | 
    
         
            -
                  ],
         
     | 
| 
       232 
     | 
    
         
            -
                  "name": "LogPoolBundleMaxCapitalAmountUpdated",
         
     | 
| 
       233 
     | 
    
         
            -
                  "type": "event"
         
     | 
| 
       234 
     | 
    
         
            -
                },
         
     | 
| 
       235 
     | 
    
         
            -
                {
         
     | 
| 
       236 
     | 
    
         
            -
                  "anonymous": false,
         
     | 
| 
       237 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       238 
     | 
    
         
            -
                    {
         
     | 
| 
       239 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       240 
     | 
    
         
            -
                      "internalType": "RoleId",
         
     | 
| 
       241 
     | 
    
         
            -
                      "name": "bundleOwnerRole",
         
     | 
| 
       242 
     | 
    
         
            -
                      "type": "uint64"
         
     | 
| 
       243 
     | 
    
         
            -
                    }
         
     | 
| 
       244 
     | 
    
         
            -
                  ],
         
     | 
| 
       245 
     | 
    
         
            -
                  "name": "LogPoolBundleOwnerRoleSet",
         
     | 
| 
       246 
     | 
    
         
            -
                  "type": "event"
         
     | 
| 
       247 
     | 
    
         
            -
                },
         
     | 
| 
       248 
262 
     | 
    
         
             
                {
         
     | 
| 
       249 
263 
     | 
    
         
             
                  "anonymous": false,
         
     | 
| 
       250 
264 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
         @@ -309,6 +323,19 @@ 
     | 
|
| 
       309 
323 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       310 
324 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       311 
325 
     | 
    
         
             
                },
         
     | 
| 
      
 326 
     | 
    
         
            +
                {
         
     | 
| 
      
 327 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 328 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 329 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 330 
     | 
    
         
            +
                    {
         
     | 
| 
      
 331 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 332 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 333 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 334 
     | 
    
         
            +
                    }
         
     | 
| 
      
 335 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 336 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 337 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 338 
     | 
    
         
            +
                },
         
     | 
| 
       312 
339 
     | 
    
         
             
                {
         
     | 
| 
       313 
340 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       314 
341 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -342,25 +369,49 @@ 
     | 
|
| 
       342 
369 
     | 
    
         
             
                },
         
     | 
| 
       343 
370 
     | 
    
         
             
                {
         
     | 
| 
       344 
371 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       345 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 372 
     | 
    
         
            +
                  "name": "getComponentInfo",
         
     | 
| 
       346 
373 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       347 
374 
     | 
    
         
             
                    {
         
     | 
| 
       348 
     | 
    
         
            -
                      " 
     | 
| 
       349 
     | 
    
         
            -
             
     | 
| 
       350 
     | 
    
         
            -
             
     | 
| 
       351 
     | 
    
         
            -
             
     | 
| 
       352 
     | 
    
         
            -
             
     | 
| 
       353 
     | 
    
         
            -
             
     | 
| 
       354 
     | 
    
         
            -
             
     | 
| 
       355 
     | 
    
         
            -
             
     | 
| 
       356 
     | 
    
         
            -
             
     | 
| 
       357 
     | 
    
         
            -
             
     | 
| 
       358 
     | 
    
         
            -
             
     | 
| 
       359 
     | 
    
         
            -
             
     | 
| 
       360 
     | 
    
         
            -
             
     | 
| 
       361 
     | 
    
         
            -
             
     | 
| 
       362 
     | 
    
         
            -
             
     | 
| 
       363 
     | 
    
         
            -
             
     | 
| 
      
 375 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 376 
     | 
    
         
            +
                        {
         
     | 
| 
      
 377 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 378 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 379 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
      
 380 
     | 
    
         
            +
                        },
         
     | 
| 
      
 381 
     | 
    
         
            +
                        {
         
     | 
| 
      
 382 
     | 
    
         
            +
                          "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 383 
     | 
    
         
            +
                          "name": "token",
         
     | 
| 
      
 384 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 385 
     | 
    
         
            +
                        },
         
     | 
| 
      
 386 
     | 
    
         
            +
                        {
         
     | 
| 
      
 387 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 388 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 389 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 390 
     | 
    
         
            +
                        },
         
     | 
| 
      
 391 
     | 
    
         
            +
                        {
         
     | 
| 
      
 392 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 393 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 394 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 395 
     | 
    
         
            +
                        },
         
     | 
| 
      
 396 
     | 
    
         
            +
                        {
         
     | 
| 
      
 397 
     | 
    
         
            +
                          "internalType": "Amount",
         
     | 
| 
      
 398 
     | 
    
         
            +
                          "name": "balanceAmount",
         
     | 
| 
      
 399 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 400 
     | 
    
         
            +
                        },
         
     | 
| 
      
 401 
     | 
    
         
            +
                        {
         
     | 
| 
      
 402 
     | 
    
         
            +
                          "internalType": "Amount",
         
     | 
| 
      
 403 
     | 
    
         
            +
                          "name": "feeAmount",
         
     | 
| 
      
 404 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 405 
     | 
    
         
            +
                        },
         
     | 
| 
      
 406 
     | 
    
         
            +
                        {
         
     | 
| 
      
 407 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 408 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 409 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 410 
     | 
    
         
            +
                        }
         
     | 
| 
      
 411 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 412 
     | 
    
         
            +
                      "internalType": "struct IComponents.ComponentInfo",
         
     | 
| 
      
 413 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 414 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
       364 
415 
     | 
    
         
             
                    }
         
     | 
| 
       365 
416 
     | 
    
         
             
                  ],
         
     | 
| 
       366 
417 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -429,19 +480,6 @@ 
     | 
|
| 
       429 
480 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       430 
481 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       431 
482 
     | 
    
         
             
                },
         
     | 
| 
       432 
     | 
    
         
            -
                {
         
     | 
| 
       433 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       434 
     | 
    
         
            -
                  "name": "getMaxCapitalAmount",
         
     | 
| 
       435 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       436 
     | 
    
         
            -
                    {
         
     | 
| 
       437 
     | 
    
         
            -
                      "internalType": "uint256",
         
     | 
| 
       438 
     | 
    
         
            -
                      "name": "maxCapitalAmount",
         
     | 
| 
       439 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       440 
     | 
    
         
            -
                    }
         
     | 
| 
       441 
     | 
    
         
            -
                  ],
         
     | 
| 
       442 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       443 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       444 
     | 
    
         
            -
                },
         
     | 
| 
       445 
483 
     | 
    
         
             
                {
         
     | 
| 
       446 
484 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       447 
485 
     | 
    
         
             
                  "name": "getName",
         
     | 
| 
         @@ -483,59 +521,7 @@ 
     | 
|
| 
       483 
521 
     | 
    
         
             
                },
         
     | 
| 
       484 
522 
     | 
    
         
             
                {
         
     | 
| 
       485 
523 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       486 
     | 
    
         
            -
                  "name": " 
     | 
| 
       487 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       488 
     | 
    
         
            -
                    {
         
     | 
| 
       489 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       490 
     | 
    
         
            -
                      "name": "productNftId",
         
     | 
| 
       491 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       492 
     | 
    
         
            -
                    }
         
     | 
| 
       493 
     | 
    
         
            -
                  ],
         
     | 
| 
       494 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       495 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       496 
     | 
    
         
            -
                },
         
     | 
| 
       497 
     | 
    
         
            -
                {
         
     | 
| 
       498 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       499 
     | 
    
         
            -
                  "name": "getRegistry",
         
     | 
| 
       500 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       501 
     | 
    
         
            -
                    {
         
     | 
| 
       502 
     | 
    
         
            -
                      "internalType": "contract IRegistry",
         
     | 
| 
       503 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       504 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       505 
     | 
    
         
            -
                    }
         
     | 
| 
       506 
     | 
    
         
            -
                  ],
         
     | 
| 
       507 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       508 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       509 
     | 
    
         
            -
                },
         
     | 
| 
       510 
     | 
    
         
            -
                {
         
     | 
| 
       511 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       512 
     | 
    
         
            -
                  "name": "getRegistryAddress",
         
     | 
| 
       513 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       514 
     | 
    
         
            -
                    {
         
     | 
| 
       515 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       516 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       517 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       518 
     | 
    
         
            -
                    }
         
     | 
| 
       519 
     | 
    
         
            -
                  ],
         
     | 
| 
       520 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       521 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       522 
     | 
    
         
            -
                },
         
     | 
| 
       523 
     | 
    
         
            -
                {
         
     | 
| 
       524 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       525 
     | 
    
         
            -
                  "name": "getRetentionLevel",
         
     | 
| 
       526 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       527 
     | 
    
         
            -
                    {
         
     | 
| 
       528 
     | 
    
         
            -
                      "internalType": "UFixed",
         
     | 
| 
       529 
     | 
    
         
            -
                      "name": "retentionLevel",
         
     | 
| 
       530 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       531 
     | 
    
         
            -
                    }
         
     | 
| 
       532 
     | 
    
         
            -
                  ],
         
     | 
| 
       533 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       534 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       535 
     | 
    
         
            -
                },
         
     | 
| 
       536 
     | 
    
         
            -
                {
         
     | 
| 
       537 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       538 
     | 
    
         
            -
                  "name": "getSetupInfo",
         
     | 
| 
      
 524 
     | 
    
         
            +
                  "name": "getPoolInfo",
         
     | 
| 
       539 
525 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       540 
526 
     | 
    
         
             
                    {
         
     | 
| 
       541 
527 
     | 
    
         
             
                      "components": [
         
     | 
| 
         @@ -545,15 +531,25 @@ 
     | 
|
| 
       545 
531 
     | 
    
         
             
                          "type": "uint96"
         
     | 
| 
       546 
532 
     | 
    
         
             
                        },
         
     | 
| 
       547 
533 
     | 
    
         
             
                        {
         
     | 
| 
       548 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       549 
     | 
    
         
            -
                          "name": " 
     | 
| 
       550 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 534 
     | 
    
         
            +
                          "internalType": "RoleId",
         
     | 
| 
      
 535 
     | 
    
         
            +
                          "name": "bundleOwnerRole",
         
     | 
| 
      
 536 
     | 
    
         
            +
                          "type": "uint64"
         
     | 
| 
       551 
537 
     | 
    
         
             
                        },
         
     | 
| 
       552 
538 
     | 
    
         
             
                        {
         
     | 
| 
       553 
539 
     | 
    
         
             
                          "internalType": "uint256",
         
     | 
| 
       554 
540 
     | 
    
         
             
                          "name": "maxCapitalAmount",
         
     | 
| 
       555 
541 
     | 
    
         
             
                          "type": "uint256"
         
     | 
| 
       556 
542 
     | 
    
         
             
                        },
         
     | 
| 
      
 543 
     | 
    
         
            +
                        {
         
     | 
| 
      
 544 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 545 
     | 
    
         
            +
                          "name": "balanceAmount",
         
     | 
| 
      
 546 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 547 
     | 
    
         
            +
                        },
         
     | 
| 
      
 548 
     | 
    
         
            +
                        {
         
     | 
| 
      
 549 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 550 
     | 
    
         
            +
                          "name": "feeAmount",
         
     | 
| 
      
 551 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 552 
     | 
    
         
            +
                        },
         
     | 
| 
       557 
553 
     | 
    
         
             
                        {
         
     | 
| 
       558 
554 
     | 
    
         
             
                          "internalType": "bool",
         
     | 
| 
       559 
555 
     | 
    
         
             
                          "name": "isInterceptingBundleTransfers",
         
     | 
| 
         @@ -629,15 +625,10 @@ 
     | 
|
| 
       629 
625 
     | 
    
         
             
                          "internalType": "struct Fee",
         
     | 
| 
       630 
626 
     | 
    
         
             
                          "name": "performanceFee",
         
     | 
| 
       631 
627 
     | 
    
         
             
                          "type": "tuple"
         
     | 
| 
       632 
     | 
    
         
            -
                        },
         
     | 
| 
       633 
     | 
    
         
            -
                        {
         
     | 
| 
       634 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       635 
     | 
    
         
            -
                          "name": "wallet",
         
     | 
| 
       636 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       637 
628 
     | 
    
         
             
                        }
         
     | 
| 
       638 
629 
     | 
    
         
             
                      ],
         
     | 
| 
       639 
     | 
    
         
            -
                      "internalType": "struct  
     | 
| 
       640 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 630 
     | 
    
         
            +
                      "internalType": "struct IComponents.PoolInfo",
         
     | 
| 
      
 631 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
       641 
632 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
       642 
633 
     | 
    
         
             
                    }
         
     | 
| 
       643 
634 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -646,11 +637,24 @@ 
     | 
|
| 
       646 
637 
     | 
    
         
             
                },
         
     | 
| 
       647 
638 
     | 
    
         
             
                {
         
     | 
| 
       648 
639 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       649 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 640 
     | 
    
         
            +
                  "name": "getProductNftId",
         
     | 
| 
       650 
641 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       651 
642 
     | 
    
         
             
                    {
         
     | 
| 
       652 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       653 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 643 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 644 
     | 
    
         
            +
                      "name": "productNftId",
         
     | 
| 
      
 645 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 646 
     | 
    
         
            +
                    }
         
     | 
| 
      
 647 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 648 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 649 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 650 
     | 
    
         
            +
                },
         
     | 
| 
      
 651 
     | 
    
         
            +
                {
         
     | 
| 
      
 652 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 653 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 654 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 655 
     | 
    
         
            +
                    {
         
     | 
| 
      
 656 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 657 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       654 
658 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       655 
659 
     | 
    
         
             
                    }
         
     | 
| 
       656 
660 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -659,11 +663,11 @@ 
     | 
|
| 
       659 
663 
     | 
    
         
             
                },
         
     | 
| 
       660 
664 
     | 
    
         
             
                {
         
     | 
| 
       661 
665 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       662 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 666 
     | 
    
         
            +
                  "name": "getRegistryAddress",
         
     | 
| 
       663 
667 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       664 
668 
     | 
    
         
             
                    {
         
     | 
| 
       665 
669 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       666 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 670 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
       667 
671 
     | 
    
         
             
                      "type": "address"
         
     | 
| 
       668 
672 
     | 
    
         
             
                    }
         
     | 
| 
       669 
673 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -672,12 +676,12 @@ 
     | 
|
| 
       672 
676 
     | 
    
         
             
                },
         
     | 
| 
       673 
677 
     | 
    
         
             
                {
         
     | 
| 
       674 
678 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       675 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 679 
     | 
    
         
            +
                  "name": "getToken",
         
     | 
| 
       676 
680 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       677 
681 
     | 
    
         
             
                    {
         
     | 
| 
       678 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       679 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       680 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 682 
     | 
    
         
            +
                      "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 683 
     | 
    
         
            +
                      "name": "token",
         
     | 
| 
      
 684 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       681 
685 
     | 
    
         
             
                    }
         
     | 
| 
       682 
686 
     | 
    
         
             
                  ],
         
     | 
| 
       683 
687 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -685,12 +689,12 @@ 
     | 
|
| 
       685 
689 
     | 
    
         
             
                },
         
     | 
| 
       686 
690 
     | 
    
         
             
                {
         
     | 
| 
       687 
691 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       688 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 692 
     | 
    
         
            +
                  "name": "getWallet",
         
     | 
| 
       689 
693 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       690 
694 
     | 
    
         
             
                    {
         
     | 
| 
       691 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       692 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       693 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 695 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 696 
     | 
    
         
            +
                      "name": "walletAddress",
         
     | 
| 
      
 697 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
       694 
698 
     | 
    
         
             
                    }
         
     | 
| 
       695 
699 
     | 
    
         
             
                  ],
         
     | 
| 
       696 
700 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -698,12 +702,12 @@ 
     | 
|
| 
       698 
702 
     | 
    
         
             
                },
         
     | 
| 
       699 
703 
     | 
    
         
             
                {
         
     | 
| 
       700 
704 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       701 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 705 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
       702 
706 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       703 
707 
     | 
    
         
             
                    {
         
     | 
| 
       704 
     | 
    
         
            -
                      "internalType": " 
     | 
| 
       705 
     | 
    
         
            -
                      "name": " 
     | 
| 
       706 
     | 
    
         
            -
                      "type": " 
     | 
| 
      
 708 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 709 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 710 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
       707 
711 
     | 
    
         
             
                    }
         
     | 
| 
       708 
712 
     | 
    
         
             
                  ],
         
     | 
| 
       709 
713 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -711,11 +715,11 @@ 
     | 
|
| 
       711 
715 
     | 
    
         
             
                },
         
     | 
| 
       712 
716 
     | 
    
         
             
                {
         
     | 
| 
       713 
717 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       714 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 718 
     | 
    
         
            +
                  "name": "isNftInterceptor",
         
     | 
| 
       715 
719 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       716 
720 
     | 
    
         
             
                    {
         
     | 
| 
       717 
721 
     | 
    
         
             
                      "internalType": "bool",
         
     | 
| 
       718 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
      
 722 
     | 
    
         
            +
                      "name": "isInterceptor",
         
     | 
| 
       719 
723 
     | 
    
         
             
                      "type": "bool"
         
     | 
| 
       720 
724 
     | 
    
         
             
                    }
         
     | 
| 
       721 
725 
     | 
    
         
             
                  ],
         
     | 
| 
         @@ -749,6 +753,24 @@ 
     | 
|
| 
       749 
753 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       750 
754 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       751 
755 
     | 
    
         
             
                },
         
     | 
| 
      
 756 
     | 
    
         
            +
                {
         
     | 
| 
      
 757 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 758 
     | 
    
         
            +
                    {
         
     | 
| 
      
 759 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 760 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 761 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 762 
     | 
    
         
            +
                    },
         
     | 
| 
      
 763 
     | 
    
         
            +
                    {
         
     | 
| 
      
 764 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 765 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 766 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 767 
     | 
    
         
            +
                    }
         
     | 
| 
      
 768 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 769 
     | 
    
         
            +
                  "name": "nftMint",
         
     | 
| 
      
 770 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 771 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 772 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 773 
     | 
    
         
            +
                },
         
     | 
| 
       752 
774 
     | 
    
         
             
                {
         
     | 
| 
       753 
775 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       754 
776 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -772,6 +794,19 @@ 
     | 
|
| 
       772 
794 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       773 
795 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       774 
796 
     | 
    
         
             
                },
         
     | 
| 
      
 797 
     | 
    
         
            +
                {
         
     | 
| 
      
 798 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 799 
     | 
    
         
            +
                    {
         
     | 
| 
      
 800 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 801 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 802 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 803 
     | 
    
         
            +
                    }
         
     | 
| 
      
 804 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 805 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 806 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 807 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 808 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 809 
     | 
    
         
            +
                },
         
     | 
| 
       775 
810 
     | 
    
         
             
                {
         
     | 
| 
       776 
811 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       777 
812 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -3,6 +3,44 @@ 
     | 
|
| 
       3 
3 
     | 
    
         
             
              "contractName": "IProductComponent",
         
     | 
| 
       4 
4 
     | 
    
         
             
              "sourceName": "contracts/components/IProductComponent.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 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -126,6 +164,19 @@ 
     | 
|
| 
       126 
164 
     | 
    
         
             
                  "name": "ErrorNotRegistry",
         
     | 
| 
       127 
165 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       128 
166 
     | 
    
         
             
                },
         
     | 
| 
      
 167 
     | 
    
         
            +
                {
         
     | 
| 
      
 168 
     | 
    
         
            +
                  "anonymous": false,
         
     | 
| 
      
 169 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 170 
     | 
    
         
            +
                    {
         
     | 
| 
      
 171 
     | 
    
         
            +
                      "indexed": false,
         
     | 
| 
      
 172 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 173 
     | 
    
         
            +
                      "name": "authority",
         
     | 
| 
      
 174 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 175 
     | 
    
         
            +
                    }
         
     | 
| 
      
 176 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 177 
     | 
    
         
            +
                  "name": "AuthorityUpdated",
         
     | 
| 
      
 178 
     | 
    
         
            +
                  "type": "event"
         
     | 
| 
      
 179 
     | 
    
         
            +
                },
         
     | 
| 
       129 
180 
     | 
    
         
             
                {
         
     | 
| 
       130 
181 
     | 
    
         
             
                  "anonymous": false,
         
     | 
| 
       131 
182 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
         @@ -170,6 +221,19 @@ 
     | 
|
| 
       170 
221 
     | 
    
         
             
                  "name": "LogComponentWalletTokensTransferred",
         
     | 
| 
       171 
222 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       172 
223 
     | 
    
         
             
                },
         
     | 
| 
      
 224 
     | 
    
         
            +
                {
         
     | 
| 
      
 225 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 226 
     | 
    
         
            +
                  "name": "authority",
         
     | 
| 
      
 227 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 228 
     | 
    
         
            +
                    {
         
     | 
| 
      
 229 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 230 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 231 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 232 
     | 
    
         
            +
                    }
         
     | 
| 
      
 233 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 234 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 235 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 236 
     | 
    
         
            +
                },
         
     | 
| 
       173 
237 
     | 
    
         
             
                {
         
     | 
| 
       174 
238 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       175 
239 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -248,6 +312,56 @@ 
     | 
|
| 
       248 
312 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       249 
313 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       250 
314 
     | 
    
         
             
                },
         
     | 
| 
      
 315 
     | 
    
         
            +
                {
         
     | 
| 
      
 316 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 317 
     | 
    
         
            +
                  "name": "getComponentInfo",
         
     | 
| 
      
 318 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 319 
     | 
    
         
            +
                    {
         
     | 
| 
      
 320 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 321 
     | 
    
         
            +
                        {
         
     | 
| 
      
 322 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 323 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 324 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
      
 325 
     | 
    
         
            +
                        },
         
     | 
| 
      
 326 
     | 
    
         
            +
                        {
         
     | 
| 
      
 327 
     | 
    
         
            +
                          "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 328 
     | 
    
         
            +
                          "name": "token",
         
     | 
| 
      
 329 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 330 
     | 
    
         
            +
                        },
         
     | 
| 
      
 331 
     | 
    
         
            +
                        {
         
     | 
| 
      
 332 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 333 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 334 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 335 
     | 
    
         
            +
                        },
         
     | 
| 
      
 336 
     | 
    
         
            +
                        {
         
     | 
| 
      
 337 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 338 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 339 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 340 
     | 
    
         
            +
                        },
         
     | 
| 
      
 341 
     | 
    
         
            +
                        {
         
     | 
| 
      
 342 
     | 
    
         
            +
                          "internalType": "Amount",
         
     | 
| 
      
 343 
     | 
    
         
            +
                          "name": "balanceAmount",
         
     | 
| 
      
 344 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 345 
     | 
    
         
            +
                        },
         
     | 
| 
      
 346 
     | 
    
         
            +
                        {
         
     | 
| 
      
 347 
     | 
    
         
            +
                          "internalType": "Amount",
         
     | 
| 
      
 348 
     | 
    
         
            +
                          "name": "feeAmount",
         
     | 
| 
      
 349 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 350 
     | 
    
         
            +
                        },
         
     | 
| 
      
 351 
     | 
    
         
            +
                        {
         
     | 
| 
      
 352 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 353 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 354 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 355 
     | 
    
         
            +
                        }
         
     | 
| 
      
 356 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 357 
     | 
    
         
            +
                      "internalType": "struct IComponents.ComponentInfo",
         
     | 
| 
      
 358 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 359 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 360 
     | 
    
         
            +
                    }
         
     | 
| 
      
 361 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 362 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 363 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 364 
     | 
    
         
            +
                },
         
     | 
| 
       251 
365 
     | 
    
         
             
                {
         
     | 
| 
       252 
366 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       253 
367 
     | 
    
         
             
                  "name": "getDistributionNftId",
         
     | 
| 
         @@ -520,6 +634,19 @@ 
     | 
|
| 
       520 
634 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       521 
635 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       522 
636 
     | 
    
         
             
                },
         
     | 
| 
      
 637 
     | 
    
         
            +
                {
         
     | 
| 
      
 638 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 639 
     | 
    
         
            +
                  "name": "isConsumingScheduledOp",
         
     | 
| 
      
 640 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 641 
     | 
    
         
            +
                    {
         
     | 
| 
      
 642 
     | 
    
         
            +
                      "internalType": "bytes4",
         
     | 
| 
      
 643 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 644 
     | 
    
         
            +
                      "type": "bytes4"
         
     | 
| 
      
 645 
     | 
    
         
            +
                    }
         
     | 
| 
      
 646 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 647 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 648 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 649 
     | 
    
         
            +
                },
         
     | 
| 
       523 
650 
     | 
    
         
             
                {
         
     | 
| 
       524 
651 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       525 
652 
     | 
    
         
             
                  "name": "isNftInterceptor",
         
     | 
| 
         @@ -547,6 +674,24 @@ 
     | 
|
| 
       547 
674 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       548 
675 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       549 
676 
     | 
    
         
             
                },
         
     | 
| 
      
 677 
     | 
    
         
            +
                {
         
     | 
| 
      
 678 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 679 
     | 
    
         
            +
                    {
         
     | 
| 
      
 680 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 681 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 682 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 683 
     | 
    
         
            +
                    },
         
     | 
| 
      
 684 
     | 
    
         
            +
                    {
         
     | 
| 
      
 685 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 686 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 687 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 688 
     | 
    
         
            +
                    }
         
     | 
| 
      
 689 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 690 
     | 
    
         
            +
                  "name": "nftMint",
         
     | 
| 
      
 691 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 692 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 693 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 694 
     | 
    
         
            +
                },
         
     | 
| 
       550 
695 
     | 
    
         
             
                {
         
     | 
| 
       551 
696 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       552 
697 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -570,6 +715,19 @@ 
     | 
|
| 
       570 
715 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       571 
716 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       572 
717 
     | 
    
         
             
                },
         
     | 
| 
      
 718 
     | 
    
         
            +
                {
         
     | 
| 
      
 719 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 720 
     | 
    
         
            +
                    {
         
     | 
| 
      
 721 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 722 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 723 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 724 
     | 
    
         
            +
                    }
         
     | 
| 
      
 725 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 726 
     | 
    
         
            +
                  "name": "setAuthority",
         
     | 
| 
      
 727 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 728 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 729 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 730 
     | 
    
         
            +
                },
         
     | 
| 
       573 
731 
     | 
    
         
             
                {
         
     | 
| 
       574 
732 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       575 
733 
     | 
    
         
             
                    {
         
     |