IPoolAddressesProvider
Last updated
Last updated
Defines the basic interface for a Pool Addresses Provider.
Retrieves the identifier of the Isle market associated with this contract.
Returns
Name | Type | Description |
---|---|---|
Links a new market identifier to this PoolAddressesProvider.
Useful for creating a registry of PoolAddressesProviders for multiple Isle markets.
Parameters
Name | Type | Description |
---|---|---|
Fetches an address associated with a given identifier.
Can return either a direct contract address or a proxy address.
Returns address(0) if no address is registered with the given identifier.
Parameters
Returns
Updates or initializes a proxy for a given identifier with a new implementation address.
Use with caution for identifiers without dedicated setter functions to prevent unintended effects.
Only use for identifiers POOL_CONFIGURATOR, LOAN_MANAGER, WITHDRAWAL_MANAGER, or ISLE_GLOBALS.
Parameters
Directly sets a new address for a given identifier, replacing the current address.
Use with caution as this will overwrite the existing address without any checks.
Only use for identifiers POOL_CONFIGURATOR, LOAN_MANAGER, WITHDRAWAL_MANAGER, or ISLE_GLOBALS.
Parameters
Retrieves the address of the PoolConfigurator proxy.
Returns
Sets or initializes the PoolConfigurator proxy with a new implementation.
Parameters
Retrieves the address of the LoanManager proxy.
Returns
Sets or initializes the LoanManager proxy with a new implementation.
Parameters
Retrieves the address of the WithdrawalManager proxy.
Returns
Sets or initializes the WithdrawalManager proxy with a new implementation.
Parameters
Retrieves the address of IsleGlobals.
Returns
Sets a new address for IsleGlobals, replacing the current address in the registry.
Parameters
Emitted when the market identifier is changed.
Parameters
Emitted when the address of the PoolConfigurator is updated.
Parameters
Emitted when the address of the LoanManager is updated.
Parameters
Emitted when the address of the WithdrawalManager is updated.
Parameters
Emitted when the address of IsleGlobals is updated.
Parameters
Emitted when a new proxy is created for a contract.
Parameters
Emitted when a new address is registered for a contract without a proxy.
Parameters
Emitted when the implementation of a registered proxy is updated.
Parameters
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
<none>
string
The identifier of the market.
newMarketId
string
The new market identifier.
id
bytes32
The identifier of the contract to retrieve.
<none>
address
The address associated with the specified identifier.
id
bytes32
The identifier of the contract to update.
newImplementationAddress
address
The address of the new implementation.
params
bytes
The initialization parameters for the proxy contract.
id
bytes32
The identifier for which to set the address.
newAddress
address
The new address to associate with the identifier.
<none>
address
The address of the PoolConfigurator proxy.
newPoolConfiguratorImpl
address
The address of the new PoolConfigurator implementation.
params
bytes
The initialization parameters for the PoolConfigurator.
<none>
address
The address of the LoanManager proxy.
newLoanManagerImpl
address
The address of the new LoanManager implementation.
params
bytes
The initialization parameters for the LoanManager.
<none>
address
The address of the WithdrawalManager proxy.
newWithdrawalManagerImpl
address
The address of the new WithdrawalManager implementation.
params
bytes
The initialization parameters for the WithdrawalManager.
<none>
address
The address of IsleGlobals.
newIsleGlobals
address
The new address for IsleGlobals.
oldMarketId
string
The previous identifier of the market.
newMarketId
string
The new identifier of the market.
oldAddress
address
The former address of the PoolConfigurator.
newAddress
address
The updated address of the PoolConfigurator.
oldAddress
address
The former address of the LoanManager.
newAddress
address
The updated address of the LoanManager.
oldAddress
address
The former address of the WithdrawalManager.
newAddress
address
The updated address of the WithdrawalManager.
oldAddress
address
The former address of IsleGlobals.
newAddress
address
The updated address of IsleGlobals.
id
bytes32
The identifier of the contract.
proxyAddress
address
The address of the newly created proxy contract.
implementationAddress
address
The address of the implementation contract linked to the proxy.
id
bytes32
The identifier of the contract.
oldAddress
address
The former address of the contract.
newAddress
address
The newly registered address of the contract.
id
bytes32
The identifier of the contract.
proxyAddress
address
The address of the proxy contract.
oldImplementationAddress
address
The former address of the implementation contract.
newImplementationAddress
address
The updated address of the implementation contract.