PoolAddressesProvider

The PoolAddressesProvider contract is the main registry of addresses that are part of, or connected to the Protocol, including permissioned roles. It acts as a factory of proxies and is the admin of those, and therefore has the right to change its implementations.

The addresses provider manages various protocol modules and has the ability to update pointers (e.g. update the ACLManager contract) or update the implementation of proxy contracts (e.g. update the Pool implementation).

It specifies the initial holder of the DEFAULT_ADMIN_ROLE, it is immutable, and the address will never change.

Whenever the Pool contract is needed, we recommended you fetch the correct address from this PoolAddressesProvider smart contract.

The source code is available on GitHub.

This contract is owned by the Aave Governance.

Write Methods

setMarketId

function setMarketId(string memory newMarketId) external override onlyOwner

Updates the identifier of the Aave market by associating an id with a specific PoolAddressesProvider. This can be used to create an on-chain registry of pool addresses providers to identify and validate multiple Aave markets.

Input Parameters:

NameTypeDescription
newMarketIdstringThe new id of the market

setAddress

function setAddress(bytes32 id, address newAddress) external override onlyOwner

Sets the address of the protocol contract stored at the given id, replacing the address saved in the addresses map.

For example, utils.keccak256(utils.toUtf8Bytes("INCENTIVES_CONTROLLER")), is set to the address of INCENTIVES_CONTROLLER.

Use this function carefully, as it will do a hard replacement of the current address in the addresses map.

Input Parameters:

NameTypeDescription
idbytes32keccak256 hash of UTF8Bytes string representing contract
newAddressaddressThe new address to be set corresponding to the id

setAddressAsProxy

function setAddressAsProxy(bytes32 id, address newImplementationAddress) external override onlyOwner

Updates the implementation address of a proxy contract with a specified id.

If there is no proxy registered, it will instantiate one and set the implementation as the newImplementationAddress.

Use this function carefully, only for ids that do not have an explicit setter function in order to avoid unexpected consequences.

Input Parameters:

NameTypeDescription
idbytes32The id of the proxy contract
newImplementationAddressaddressThe address of new implementation contract corresponding to the proxy

setPoolImpl

function setPoolImpl(address newPoolImpl) external override onlyOwner

Updates the implementation of the Pool contract, or creates a proxy.

Input Parameters:

NameTypeDescription
newPoolImpladdressThe address of new Pool implementation contract

setPoolConfiguratorImpl

function setPoolConfiguratorImpl(address newPoolConfiguratorImpl) external override onlyOwner

Updates the implementation of the PoolConfigurator contract, or creates a proxy.

Input Parameters:

NameTypeDescription
newPoolConfiguratorImpladdressThe address of new PoolConfigurator implementation contract

setPriceOracle

function setPriceOracle(address newPriceOracle) external override onlyOwner

Updates the address of the price oracle.

Input Parameters:

NameTypeDescription
newPriceOracleaddressThe address of new price oracle

setACLManager

function setACLManager(address newAclManager) external override onlyOwner

Updates the address of the Access Control List Manager.

Input Parameters:

NameTypeDescription
newAclManageraddressThe address of the new ACLManager

setACLAdmin

function setACLAdmin(address newAclAdmin) external override onlyOwner

Updates the address of the Access Control List Admin.

Input Parameters:

NameTypeDescription
newAclAdminaddressThe address of new ACLAdmin

setPriceOracleSentinel

function setPriceOracleSentinel(address newPriceOracleSentinel) external override onlyOwner

Updates the address of the price oracle sentinel.

Input Parameters:

NameTypeDescription
newPriceOracleSentineladdressThe address of new PriceOracleSentinel

setPoolDataProvider

function setPoolDataProvider(address newDataProvider) external override onlyOwner

Updates the address of the data provider.

Input Parameters:

NameTypeDescription
newDataProvideraddressThe address of new DataProvider

View Methods

getMarketId

function getMarketId() external view override returns (string memory)

Returns the market id of the associated Aave market.

Return Values:

TypeDescription
stringA string representation of the market id

getAddress

function getAddress(bytes32 id) public view override returns (address)

Returns the address of protocol contract stored at the given id. The returned address might be an EOA or a contract, which may be proxied. It will return ZERO if there is no registered address with the given id.

Input Parameters:

NameTypeDescription
idbytes32The id. For example, the Protocol Data Provider uses id 0x1

Return Values:

TypeDescription
addressThe address associated with the id passed

Example:

// Get address of incentive controllerimport { utils } from "@ethers/lib/utils";
const id = utils.keccak256(utils.toUtf8Bytes("INCENTIVES_CONTROLLER"));const address = poolAddressProvider.getAddress(id);

getPool

function getPool() external view override returns (address)

Returns the address of the latest Pool proxy contract.

Return Values:

TypeDescription
addressThe address of the associated Pool proxy

getPoolConfigurator

function getPoolConfigurator() external view override returns (address)

Returns the address of the PoolConfigurator proxy. Used for configuration methods, like init reserves or update token implementation etc, of the market.

Return Values:

TypeDescription
addressThe PoolConfigurator proxy address

getPriceOracle

function getPriceOracle() external view override returns (address)

Returns the address of the Price Oracle used by the market.

Return Values:

TypeDescription
addressThe address of the price oracle used by the associated market

getACLManager

function getACLManager() external view override returns (address)

Returns the address of the Access Control List Manager (ACLManager) that manages the system role of the market.

Return Values:

TypeDescription
addressThe address of the ACLManger contract managing the system role of the associated market

getACLAdmin

function getACLAdmin() external view override returns (address)

Returns the address of the Access Control List Admin (ACLAdmin) of the market which holds the DEFAULT_ADMIN_ROLE in ACLManager.

Return Values:

TypeDescription
addressThe address of the Access Control List admin of the associated market

getPriceOracleSentinel

function getPriceOracleSentinel() external view override returns (address)

Returns the address of the price oracle sentinel.

Return Values:

TypeDescription
addressThe address of the PriceOracleSentinel of the associated market

getPoolDataProvider

function getPoolDataProvider() external view override returns (address)

Returns the address of latest pool data provider.

Return Values:

TypeDescription
addressThe address of the pool data provider of the associated market

Aave.com provides information and resources about the fundamentals of the decentralised non-custodial liquidity protocol called the Aave Protocol, comprised of open-source self-executing smart contracts that are deployed on various permissionless public blockchains, such as Ethereum (the "Aave Protocol" or the "Protocol"). Aave Labs does not control or operate any version of the Aave Protocol on any blockchain network.