@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
 
| 
         @@ -197,11 +197,6 @@ 
     | 
|
| 
       197 
197 
     | 
    
         
             
                  "name": "ErrorPoolApplicationBundleMismatch",
         
     | 
| 
       198 
198 
     | 
    
         
             
                  "type": "error"
         
     | 
| 
       199 
199 
     | 
    
         
             
                },
         
     | 
| 
       200 
     | 
    
         
            -
                {
         
     | 
| 
       201 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       202 
     | 
    
         
            -
                  "name": "ErrorPoolBundleOwnerRoleAlreadySet",
         
     | 
| 
       203 
     | 
    
         
            -
                  "type": "error"
         
     | 
| 
       204 
     | 
    
         
            -
                },
         
     | 
| 
       205 
200 
     | 
    
         
             
                {
         
     | 
| 
       206 
201 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       207 
202 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -325,38 +320,6 @@ 
     | 
|
| 
       325 
320 
     | 
    
         
             
                  "name": "LogComponentWalletTokensTransferred",
         
     | 
| 
       326 
321 
     | 
    
         
             
                  "type": "event"
         
     | 
| 
       327 
322 
     | 
    
         
             
                },
         
     | 
| 
       328 
     | 
    
         
            -
                {
         
     | 
| 
       329 
     | 
    
         
            -
                  "anonymous": false,
         
     | 
| 
       330 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       331 
     | 
    
         
            -
                    {
         
     | 
| 
       332 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       333 
     | 
    
         
            -
                      "internalType": "uint256",
         
     | 
| 
       334 
     | 
    
         
            -
                      "name": "previousMaxCapitalAmount",
         
     | 
| 
       335 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       336 
     | 
    
         
            -
                    },
         
     | 
| 
       337 
     | 
    
         
            -
                    {
         
     | 
| 
       338 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       339 
     | 
    
         
            -
                      "internalType": "uint256",
         
     | 
| 
       340 
     | 
    
         
            -
                      "name": "currentMaxCapitalAmount",
         
     | 
| 
       341 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       342 
     | 
    
         
            -
                    }
         
     | 
| 
       343 
     | 
    
         
            -
                  ],
         
     | 
| 
       344 
     | 
    
         
            -
                  "name": "LogPoolBundleMaxCapitalAmountUpdated",
         
     | 
| 
       345 
     | 
    
         
            -
                  "type": "event"
         
     | 
| 
       346 
     | 
    
         
            -
                },
         
     | 
| 
       347 
     | 
    
         
            -
                {
         
     | 
| 
       348 
     | 
    
         
            -
                  "anonymous": false,
         
     | 
| 
       349 
     | 
    
         
            -
                  "inputs": [
         
     | 
| 
       350 
     | 
    
         
            -
                    {
         
     | 
| 
       351 
     | 
    
         
            -
                      "indexed": false,
         
     | 
| 
       352 
     | 
    
         
            -
                      "internalType": "RoleId",
         
     | 
| 
       353 
     | 
    
         
            -
                      "name": "bundleOwnerRole",
         
     | 
| 
       354 
     | 
    
         
            -
                      "type": "uint64"
         
     | 
| 
       355 
     | 
    
         
            -
                    }
         
     | 
| 
       356 
     | 
    
         
            -
                  ],
         
     | 
| 
       357 
     | 
    
         
            -
                  "name": "LogPoolBundleOwnerRoleSet",
         
     | 
| 
       358 
     | 
    
         
            -
                  "type": "event"
         
     | 
| 
       359 
     | 
    
         
            -
                },
         
     | 
| 
       360 
323 
     | 
    
         
             
                {
         
     | 
| 
       361 
324 
     | 
    
         
             
                  "anonymous": false,
         
     | 
| 
       362 
325 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
         @@ -519,25 +482,49 @@ 
     | 
|
| 
       519 
482 
     | 
    
         
             
                },
         
     | 
| 
       520 
483 
     | 
    
         
             
                {
         
     | 
| 
       521 
484 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       522 
     | 
    
         
            -
                  "name": " 
     | 
| 
      
 485 
     | 
    
         
            +
                  "name": "getComponentInfo",
         
     | 
| 
       523 
486 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       524 
487 
     | 
    
         
             
                    {
         
     | 
| 
       525 
     | 
    
         
            -
                      " 
     | 
| 
       526 
     | 
    
         
            -
             
     | 
| 
       527 
     | 
    
         
            -
             
     | 
| 
       528 
     | 
    
         
            -
             
     | 
| 
       529 
     | 
    
         
            -
             
     | 
| 
       530 
     | 
    
         
            -
             
     | 
| 
       531 
     | 
    
         
            -
             
     | 
| 
       532 
     | 
    
         
            -
             
     | 
| 
       533 
     | 
    
         
            -
             
     | 
| 
       534 
     | 
    
         
            -
             
     | 
| 
       535 
     | 
    
         
            -
             
     | 
| 
       536 
     | 
    
         
            -
             
     | 
| 
       537 
     | 
    
         
            -
             
     | 
| 
       538 
     | 
    
         
            -
             
     | 
| 
       539 
     | 
    
         
            -
             
     | 
| 
       540 
     | 
    
         
            -
             
     | 
| 
      
 488 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 489 
     | 
    
         
            +
                        {
         
     | 
| 
      
 490 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 491 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 492 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
      
 493 
     | 
    
         
            +
                        },
         
     | 
| 
      
 494 
     | 
    
         
            +
                        {
         
     | 
| 
      
 495 
     | 
    
         
            +
                          "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 496 
     | 
    
         
            +
                          "name": "token",
         
     | 
| 
      
 497 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 498 
     | 
    
         
            +
                        },
         
     | 
| 
      
 499 
     | 
    
         
            +
                        {
         
     | 
| 
      
 500 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 501 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 502 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 503 
     | 
    
         
            +
                        },
         
     | 
| 
      
 504 
     | 
    
         
            +
                        {
         
     | 
| 
      
 505 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 506 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 507 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 508 
     | 
    
         
            +
                        },
         
     | 
| 
      
 509 
     | 
    
         
            +
                        {
         
     | 
| 
      
 510 
     | 
    
         
            +
                          "internalType": "Amount",
         
     | 
| 
      
 511 
     | 
    
         
            +
                          "name": "balanceAmount",
         
     | 
| 
      
 512 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 513 
     | 
    
         
            +
                        },
         
     | 
| 
      
 514 
     | 
    
         
            +
                        {
         
     | 
| 
      
 515 
     | 
    
         
            +
                          "internalType": "Amount",
         
     | 
| 
      
 516 
     | 
    
         
            +
                          "name": "feeAmount",
         
     | 
| 
      
 517 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 518 
     | 
    
         
            +
                        },
         
     | 
| 
      
 519 
     | 
    
         
            +
                        {
         
     | 
| 
      
 520 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 521 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 522 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 523 
     | 
    
         
            +
                        }
         
     | 
| 
      
 524 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 525 
     | 
    
         
            +
                      "internalType": "struct IComponents.ComponentInfo",
         
     | 
| 
      
 526 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 527 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
       541 
528 
     | 
    
         
             
                    }
         
     | 
| 
       542 
529 
     | 
    
         
             
                  ],
         
     | 
| 
       543 
530 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
         @@ -625,19 +612,6 @@ 
     | 
|
| 
       625 
612 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       626 
613 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       627 
614 
     | 
    
         
             
                },
         
     | 
| 
       628 
     | 
    
         
            -
                {
         
     | 
| 
       629 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       630 
     | 
    
         
            -
                  "name": "getMaxCapitalAmount",
         
     | 
| 
       631 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       632 
     | 
    
         
            -
                    {
         
     | 
| 
       633 
     | 
    
         
            -
                      "internalType": "uint256",
         
     | 
| 
       634 
     | 
    
         
            -
                      "name": "maxCapitalAmount",
         
     | 
| 
       635 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       636 
     | 
    
         
            -
                    }
         
     | 
| 
       637 
     | 
    
         
            -
                  ],
         
     | 
| 
       638 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       639 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       640 
     | 
    
         
            -
                },
         
     | 
| 
       641 
615 
     | 
    
         
             
                {
         
     | 
| 
       642 
616 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       643 
617 
     | 
    
         
             
                  "name": "getName",
         
     | 
| 
         @@ -679,59 +653,7 @@ 
     | 
|
| 
       679 
653 
     | 
    
         
             
                },
         
     | 
| 
       680 
654 
     | 
    
         
             
                {
         
     | 
| 
       681 
655 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       682 
     | 
    
         
            -
                  "name": " 
     | 
| 
       683 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       684 
     | 
    
         
            -
                    {
         
     | 
| 
       685 
     | 
    
         
            -
                      "internalType": "NftId",
         
     | 
| 
       686 
     | 
    
         
            -
                      "name": "productNftId",
         
     | 
| 
       687 
     | 
    
         
            -
                      "type": "uint96"
         
     | 
| 
       688 
     | 
    
         
            -
                    }
         
     | 
| 
       689 
     | 
    
         
            -
                  ],
         
     | 
| 
       690 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       691 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       692 
     | 
    
         
            -
                },
         
     | 
| 
       693 
     | 
    
         
            -
                {
         
     | 
| 
       694 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       695 
     | 
    
         
            -
                  "name": "getRegistry",
         
     | 
| 
       696 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       697 
     | 
    
         
            -
                    {
         
     | 
| 
       698 
     | 
    
         
            -
                      "internalType": "contract IRegistry",
         
     | 
| 
       699 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       700 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       701 
     | 
    
         
            -
                    }
         
     | 
| 
       702 
     | 
    
         
            -
                  ],
         
     | 
| 
       703 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       704 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       705 
     | 
    
         
            -
                },
         
     | 
| 
       706 
     | 
    
         
            -
                {
         
     | 
| 
       707 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       708 
     | 
    
         
            -
                  "name": "getRegistryAddress",
         
     | 
| 
       709 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       710 
     | 
    
         
            -
                    {
         
     | 
| 
       711 
     | 
    
         
            -
                      "internalType": "address",
         
     | 
| 
       712 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       713 
     | 
    
         
            -
                      "type": "address"
         
     | 
| 
       714 
     | 
    
         
            -
                    }
         
     | 
| 
       715 
     | 
    
         
            -
                  ],
         
     | 
| 
       716 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       717 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       718 
     | 
    
         
            -
                },
         
     | 
| 
       719 
     | 
    
         
            -
                {
         
     | 
| 
       720 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       721 
     | 
    
         
            -
                  "name": "getRetentionLevel",
         
     | 
| 
       722 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       723 
     | 
    
         
            -
                    {
         
     | 
| 
       724 
     | 
    
         
            -
                      "internalType": "UFixed",
         
     | 
| 
       725 
     | 
    
         
            -
                      "name": "retentionLevel",
         
     | 
| 
       726 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       727 
     | 
    
         
            -
                    }
         
     | 
| 
       728 
     | 
    
         
            -
                  ],
         
     | 
| 
       729 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       730 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       731 
     | 
    
         
            -
                },
         
     | 
| 
       732 
     | 
    
         
            -
                {
         
     | 
| 
       733 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       734 
     | 
    
         
            -
                  "name": "getSetupInfo",
         
     | 
| 
      
 656 
     | 
    
         
            +
                  "name": "getPoolInfo",
         
     | 
| 
       735 
657 
     | 
    
         
             
                  "outputs": [
         
     | 
| 
       736 
658 
     | 
    
         
             
                    {
         
     | 
| 
       737 
659 
     | 
    
         
             
                      "components": [
         
     | 
| 
         @@ -741,15 +663,25 @@ 
     | 
|
| 
       741 
663 
     | 
    
         
             
                          "type": "uint96"
         
     | 
| 
       742 
664 
     | 
    
         
             
                        },
         
     | 
| 
       743 
665 
     | 
    
         
             
                        {
         
     | 
| 
       744 
     | 
    
         
            -
                          "internalType": " 
     | 
| 
       745 
     | 
    
         
            -
                          "name": " 
     | 
| 
       746 
     | 
    
         
            -
                          "type": " 
     | 
| 
      
 666 
     | 
    
         
            +
                          "internalType": "RoleId",
         
     | 
| 
      
 667 
     | 
    
         
            +
                          "name": "bundleOwnerRole",
         
     | 
| 
      
 668 
     | 
    
         
            +
                          "type": "uint64"
         
     | 
| 
       747 
669 
     | 
    
         
             
                        },
         
     | 
| 
       748 
670 
     | 
    
         
             
                        {
         
     | 
| 
       749 
671 
     | 
    
         
             
                          "internalType": "uint256",
         
     | 
| 
       750 
672 
     | 
    
         
             
                          "name": "maxCapitalAmount",
         
     | 
| 
       751 
673 
     | 
    
         
             
                          "type": "uint256"
         
     | 
| 
       752 
674 
     | 
    
         
             
                        },
         
     | 
| 
      
 675 
     | 
    
         
            +
                        {
         
     | 
| 
      
 676 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 677 
     | 
    
         
            +
                          "name": "balanceAmount",
         
     | 
| 
      
 678 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 679 
     | 
    
         
            +
                        },
         
     | 
| 
      
 680 
     | 
    
         
            +
                        {
         
     | 
| 
      
 681 
     | 
    
         
            +
                          "internalType": "uint256",
         
     | 
| 
      
 682 
     | 
    
         
            +
                          "name": "feeAmount",
         
     | 
| 
      
 683 
     | 
    
         
            +
                          "type": "uint256"
         
     | 
| 
      
 684 
     | 
    
         
            +
                        },
         
     | 
| 
       753 
685 
     | 
    
         
             
                        {
         
     | 
| 
       754 
686 
     | 
    
         
             
                          "internalType": "bool",
         
     | 
| 
       755 
687 
     | 
    
         
             
                          "name": "isInterceptingBundleTransfers",
         
     | 
| 
         @@ -825,21 +757,55 @@ 
     | 
|
| 
       825 
757 
     | 
    
         
             
                          "internalType": "struct Fee",
         
     | 
| 
       826 
758 
     | 
    
         
             
                          "name": "performanceFee",
         
     | 
| 
       827 
759 
     | 
    
         
             
                          "type": "tuple"
         
     | 
| 
       828 
     | 
    
         
            -
                        },
         
     | 
| 
       829 
     | 
    
         
            -
                        {
         
     | 
| 
       830 
     | 
    
         
            -
                          "internalType": "address",
         
     | 
| 
       831 
     | 
    
         
            -
                          "name": "wallet",
         
     | 
| 
       832 
     | 
    
         
            -
                          "type": "address"
         
     | 
| 
       833 
760 
     | 
    
         
             
                        }
         
     | 
| 
       834 
761 
     | 
    
         
             
                      ],
         
     | 
| 
       835 
     | 
    
         
            -
                      "internalType": "struct  
     | 
| 
       836 
     | 
    
         
            -
                      "name": " 
     | 
| 
      
 762 
     | 
    
         
            +
                      "internalType": "struct IComponents.PoolInfo",
         
     | 
| 
      
 763 
     | 
    
         
            +
                      "name": "poolInfo",
         
     | 
| 
       837 
764 
     | 
    
         
             
                      "type": "tuple"
         
     | 
| 
       838 
765 
     | 
    
         
             
                    }
         
     | 
| 
       839 
766 
     | 
    
         
             
                  ],
         
     | 
| 
       840 
767 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       841 
768 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       842 
769 
     | 
    
         
             
                },
         
     | 
| 
      
 770 
     | 
    
         
            +
                {
         
     | 
| 
      
 771 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 772 
     | 
    
         
            +
                  "name": "getProductNftId",
         
     | 
| 
      
 773 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 774 
     | 
    
         
            +
                    {
         
     | 
| 
      
 775 
     | 
    
         
            +
                      "internalType": "NftId",
         
     | 
| 
      
 776 
     | 
    
         
            +
                      "name": "productNftId",
         
     | 
| 
      
 777 
     | 
    
         
            +
                      "type": "uint96"
         
     | 
| 
      
 778 
     | 
    
         
            +
                    }
         
     | 
| 
      
 779 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 780 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 781 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 782 
     | 
    
         
            +
                },
         
     | 
| 
      
 783 
     | 
    
         
            +
                {
         
     | 
| 
      
 784 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 785 
     | 
    
         
            +
                  "name": "getRegistry",
         
     | 
| 
      
 786 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 787 
     | 
    
         
            +
                    {
         
     | 
| 
      
 788 
     | 
    
         
            +
                      "internalType": "contract IRegistry",
         
     | 
| 
      
 789 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 790 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 791 
     | 
    
         
            +
                    }
         
     | 
| 
      
 792 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 793 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 794 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 795 
     | 
    
         
            +
                },
         
     | 
| 
      
 796 
     | 
    
         
            +
                {
         
     | 
| 
      
 797 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 798 
     | 
    
         
            +
                  "name": "getRegistryAddress",
         
     | 
| 
      
 799 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 800 
     | 
    
         
            +
                    {
         
     | 
| 
      
 801 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 802 
     | 
    
         
            +
                      "name": "",
         
     | 
| 
      
 803 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 804 
     | 
    
         
            +
                    }
         
     | 
| 
      
 805 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 806 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 807 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 808 
     | 
    
         
            +
                },
         
     | 
| 
       843 
809 
     | 
    
         
             
                {
         
     | 
| 
       844 
810 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       845 
811 
     | 
    
         
             
                  "name": "getToken",
         
     | 
| 
         @@ -966,26 +932,6 @@ 
     | 
|
| 
       966 
932 
     | 
    
         
             
                      "name": "isInterceptingNftTransfers",
         
     | 
| 
       967 
933 
     | 
    
         
             
                      "type": "bool"
         
     | 
| 
       968 
934 
     | 
    
         
             
                    },
         
     | 
| 
       969 
     | 
    
         
            -
                    {
         
     | 
| 
       970 
     | 
    
         
            -
                      "internalType": "bool",
         
     | 
| 
       971 
     | 
    
         
            -
                      "name": "isExternallyManaging",
         
     | 
| 
       972 
     | 
    
         
            -
                      "type": "bool"
         
     | 
| 
       973 
     | 
    
         
            -
                    },
         
     | 
| 
       974 
     | 
    
         
            -
                    {
         
     | 
| 
       975 
     | 
    
         
            -
                      "internalType": "bool",
         
     | 
| 
       976 
     | 
    
         
            -
                      "name": "isVerifying",
         
     | 
| 
       977 
     | 
    
         
            -
                      "type": "bool"
         
     | 
| 
       978 
     | 
    
         
            -
                    },
         
     | 
| 
       979 
     | 
    
         
            -
                    {
         
     | 
| 
       980 
     | 
    
         
            -
                      "internalType": "UFixed",
         
     | 
| 
       981 
     | 
    
         
            -
                      "name": "collateralizationLevel",
         
     | 
| 
       982 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       983 
     | 
    
         
            -
                    },
         
     | 
| 
       984 
     | 
    
         
            -
                    {
         
     | 
| 
       985 
     | 
    
         
            -
                      "internalType": "UFixed",
         
     | 
| 
       986 
     | 
    
         
            -
                      "name": "retentionLevel",
         
     | 
| 
       987 
     | 
    
         
            -
                      "type": "uint256"
         
     | 
| 
       988 
     | 
    
         
            -
                    },
         
     | 
| 
       989 
935 
     | 
    
         
             
                    {
         
     | 
| 
       990 
936 
     | 
    
         
             
                      "internalType": "address",
         
     | 
| 
       991 
937 
     | 
    
         
             
                      "name": "initialOwner",
         
     | 
| 
         @@ -1066,32 +1012,6 @@ 
     | 
|
| 
       1066 
1012 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       1067 
1013 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       1068 
1014 
     | 
    
         
             
                },
         
     | 
| 
       1069 
     | 
    
         
            -
                {
         
     | 
| 
       1070 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1071 
     | 
    
         
            -
                  "name": "isExternallyManaged",
         
     | 
| 
       1072 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1073 
     | 
    
         
            -
                    {
         
     | 
| 
       1074 
     | 
    
         
            -
                      "internalType": "bool",
         
     | 
| 
       1075 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1076 
     | 
    
         
            -
                      "type": "bool"
         
     | 
| 
       1077 
     | 
    
         
            -
                    }
         
     | 
| 
       1078 
     | 
    
         
            -
                  ],
         
     | 
| 
       1079 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1080 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1081 
     | 
    
         
            -
                },
         
     | 
| 
       1082 
     | 
    
         
            -
                {
         
     | 
| 
       1083 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1084 
     | 
    
         
            -
                  "name": "isInterceptingBundleTransfers",
         
     | 
| 
       1085 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1086 
     | 
    
         
            -
                    {
         
     | 
| 
       1087 
     | 
    
         
            -
                      "internalType": "bool",
         
     | 
| 
       1088 
     | 
    
         
            -
                      "name": "",
         
     | 
| 
       1089 
     | 
    
         
            -
                      "type": "bool"
         
     | 
| 
       1090 
     | 
    
         
            -
                    }
         
     | 
| 
       1091 
     | 
    
         
            -
                  ],
         
     | 
| 
       1092 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1093 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1094 
     | 
    
         
            -
                },
         
     | 
| 
       1095 
1015 
     | 
    
         
             
                {
         
     | 
| 
       1096 
1016 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       1097 
1017 
     | 
    
         
             
                  "name": "isNftInterceptor",
         
     | 
| 
         @@ -1105,19 +1025,6 @@ 
     | 
|
| 
       1105 
1025 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       1106 
1026 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       1107 
1027 
     | 
    
         
             
                },
         
     | 
| 
       1108 
     | 
    
         
            -
                {
         
     | 
| 
       1109 
     | 
    
         
            -
                  "inputs": [],
         
     | 
| 
       1110 
     | 
    
         
            -
                  "name": "isVerifyingApplications",
         
     | 
| 
       1111 
     | 
    
         
            -
                  "outputs": [
         
     | 
| 
       1112 
     | 
    
         
            -
                    {
         
     | 
| 
       1113 
     | 
    
         
            -
                      "internalType": "bool",
         
     | 
| 
       1114 
     | 
    
         
            -
                      "name": "isConfirmingApplication",
         
     | 
| 
       1115 
     | 
    
         
            -
                      "type": "bool"
         
     | 
| 
       1116 
     | 
    
         
            -
                    }
         
     | 
| 
       1117 
     | 
    
         
            -
                  ],
         
     | 
| 
       1118 
     | 
    
         
            -
                  "stateMutability": "view",
         
     | 
| 
       1119 
     | 
    
         
            -
                  "type": "function"
         
     | 
| 
       1120 
     | 
    
         
            -
                },
         
     | 
| 
       1121 
1028 
     | 
    
         
             
                {
         
     | 
| 
       1122 
1029 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       1123 
1030 
     | 
    
         
             
                  "name": "linkToRegisteredNftId",
         
     | 
| 
         @@ -1145,6 +1052,24 @@ 
     | 
|
| 
       1145 
1052 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       1146 
1053 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       1147 
1054 
     | 
    
         
             
                },
         
     | 
| 
      
 1055 
     | 
    
         
            +
                {
         
     | 
| 
      
 1056 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1057 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1058 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1059 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 1060 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1061 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1062 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1063 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 1064 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 1065 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 1066 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1067 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1068 
     | 
    
         
            +
                  "name": "nftMint",
         
     | 
| 
      
 1069 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1070 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1071 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1072 
     | 
    
         
            +
                },
         
     | 
| 
       1148 
1073 
     | 
    
         
             
                {
         
     | 
| 
       1149 
1074 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       1150 
1075 
     | 
    
         
             
                    {
         
     | 
| 
         @@ -425,6 +425,56 @@ 
     | 
|
| 
       425 
425 
     | 
    
         
             
                  "stateMutability": "view",
         
     | 
| 
       426 
426 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       427 
427 
     | 
    
         
             
                },
         
     | 
| 
      
 428 
     | 
    
         
            +
                {
         
     | 
| 
      
 429 
     | 
    
         
            +
                  "inputs": [],
         
     | 
| 
      
 430 
     | 
    
         
            +
                  "name": "getComponentInfo",
         
     | 
| 
      
 431 
     | 
    
         
            +
                  "outputs": [
         
     | 
| 
      
 432 
     | 
    
         
            +
                    {
         
     | 
| 
      
 433 
     | 
    
         
            +
                      "components": [
         
     | 
| 
      
 434 
     | 
    
         
            +
                        {
         
     | 
| 
      
 435 
     | 
    
         
            +
                          "internalType": "string",
         
     | 
| 
      
 436 
     | 
    
         
            +
                          "name": "name",
         
     | 
| 
      
 437 
     | 
    
         
            +
                          "type": "string"
         
     | 
| 
      
 438 
     | 
    
         
            +
                        },
         
     | 
| 
      
 439 
     | 
    
         
            +
                        {
         
     | 
| 
      
 440 
     | 
    
         
            +
                          "internalType": "contract IERC20Metadata",
         
     | 
| 
      
 441 
     | 
    
         
            +
                          "name": "token",
         
     | 
| 
      
 442 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 443 
     | 
    
         
            +
                        },
         
     | 
| 
      
 444 
     | 
    
         
            +
                        {
         
     | 
| 
      
 445 
     | 
    
         
            +
                          "internalType": "contract TokenHandler",
         
     | 
| 
      
 446 
     | 
    
         
            +
                          "name": "tokenHandler",
         
     | 
| 
      
 447 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 448 
     | 
    
         
            +
                        },
         
     | 
| 
      
 449 
     | 
    
         
            +
                        {
         
     | 
| 
      
 450 
     | 
    
         
            +
                          "internalType": "address",
         
     | 
| 
      
 451 
     | 
    
         
            +
                          "name": "wallet",
         
     | 
| 
      
 452 
     | 
    
         
            +
                          "type": "address"
         
     | 
| 
      
 453 
     | 
    
         
            +
                        },
         
     | 
| 
      
 454 
     | 
    
         
            +
                        {
         
     | 
| 
      
 455 
     | 
    
         
            +
                          "internalType": "Amount",
         
     | 
| 
      
 456 
     | 
    
         
            +
                          "name": "balanceAmount",
         
     | 
| 
      
 457 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 458 
     | 
    
         
            +
                        },
         
     | 
| 
      
 459 
     | 
    
         
            +
                        {
         
     | 
| 
      
 460 
     | 
    
         
            +
                          "internalType": "Amount",
         
     | 
| 
      
 461 
     | 
    
         
            +
                          "name": "feeAmount",
         
     | 
| 
      
 462 
     | 
    
         
            +
                          "type": "uint96"
         
     | 
| 
      
 463 
     | 
    
         
            +
                        },
         
     | 
| 
      
 464 
     | 
    
         
            +
                        {
         
     | 
| 
      
 465 
     | 
    
         
            +
                          "internalType": "bytes",
         
     | 
| 
      
 466 
     | 
    
         
            +
                          "name": "data",
         
     | 
| 
      
 467 
     | 
    
         
            +
                          "type": "bytes"
         
     | 
| 
      
 468 
     | 
    
         
            +
                        }
         
     | 
| 
      
 469 
     | 
    
         
            +
                      ],
         
     | 
| 
      
 470 
     | 
    
         
            +
                      "internalType": "struct IComponents.ComponentInfo",
         
     | 
| 
      
 471 
     | 
    
         
            +
                      "name": "info",
         
     | 
| 
      
 472 
     | 
    
         
            +
                      "type": "tuple"
         
     | 
| 
      
 473 
     | 
    
         
            +
                    }
         
     | 
| 
      
 474 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 475 
     | 
    
         
            +
                  "stateMutability": "view",
         
     | 
| 
      
 476 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 477 
     | 
    
         
            +
                },
         
     | 
| 
       428 
478 
     | 
    
         
             
                {
         
     | 
| 
       429 
479 
     | 
    
         
             
                  "inputs": [],
         
     | 
| 
       430 
480 
     | 
    
         
             
                  "name": "getDistributionNftId",
         
     | 
| 
         @@ -948,6 +998,24 @@ 
     | 
|
| 
       948 
998 
     | 
    
         
             
                  "stateMutability": "nonpayable",
         
     | 
| 
       949 
999 
     | 
    
         
             
                  "type": "function"
         
     | 
| 
       950 
1000 
     | 
    
         
             
                },
         
     | 
| 
      
 1001 
     | 
    
         
            +
                {
         
     | 
| 
      
 1002 
     | 
    
         
            +
                  "inputs": [
         
     | 
| 
      
 1003 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1004 
     | 
    
         
            +
                      "internalType": "address",
         
     | 
| 
      
 1005 
     | 
    
         
            +
                      "name": "to",
         
     | 
| 
      
 1006 
     | 
    
         
            +
                      "type": "address"
         
     | 
| 
      
 1007 
     | 
    
         
            +
                    },
         
     | 
| 
      
 1008 
     | 
    
         
            +
                    {
         
     | 
| 
      
 1009 
     | 
    
         
            +
                      "internalType": "uint256",
         
     | 
| 
      
 1010 
     | 
    
         
            +
                      "name": "tokenId",
         
     | 
| 
      
 1011 
     | 
    
         
            +
                      "type": "uint256"
         
     | 
| 
      
 1012 
     | 
    
         
            +
                    }
         
     | 
| 
      
 1013 
     | 
    
         
            +
                  ],
         
     | 
| 
      
 1014 
     | 
    
         
            +
                  "name": "nftMint",
         
     | 
| 
      
 1015 
     | 
    
         
            +
                  "outputs": [],
         
     | 
| 
      
 1016 
     | 
    
         
            +
                  "stateMutability": "nonpayable",
         
     | 
| 
      
 1017 
     | 
    
         
            +
                  "type": "function"
         
     | 
| 
      
 1018 
     | 
    
         
            +
                },
         
     | 
| 
       951 
1019 
     | 
    
         
             
                {
         
     | 
| 
       952 
1020 
     | 
    
         
             
                  "inputs": [
         
     | 
| 
       953 
1021 
     | 
    
         
             
                    {
         
     |