mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
90 lines
2.5 KiB
Solidity
90 lines
2.5 KiB
Solidity
// SPDX-License-Identifier: agpl-3.0
|
|
pragma solidity ^0.6.8;
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
import {LendingPool} from '../lendingpool/LendingPool.sol';
|
|
import {LendingPoolAddressesProvider} from '../configuration/LendingPoolAddressesProvider.sol';
|
|
import {LendingPoolConfigurator} from '../lendingpool/LendingPoolConfigurator.sol';
|
|
import {AToken} from '../tokenization/AToken.sol';
|
|
import {
|
|
DefaultReserveInterestRateStrategy
|
|
} from '../lendingpool/DefaultReserveInterestRateStrategy.sol';
|
|
|
|
contract DeployATokensAndRates {
|
|
address payable private pool;
|
|
address private addressesProvider;
|
|
address private poolConfigurator;
|
|
event deployedContracts(address aToken, address strategy);
|
|
|
|
constructor(
|
|
address payable _pool,
|
|
address _addressesProvider,
|
|
address _poolConfigurator
|
|
) public {
|
|
pool = _pool;
|
|
addressesProvider = _addressesProvider;
|
|
poolConfigurator = _poolConfigurator;
|
|
}
|
|
|
|
function concat(string memory a, string memory b) internal pure returns (string memory) {
|
|
return string(abi.encodePacked(a, b));
|
|
}
|
|
|
|
function initDeployment(
|
|
address[] calldata tokens,
|
|
string[] calldata symbols,
|
|
uint256[5][] calldata rates,
|
|
address incentivesController
|
|
) external {
|
|
require(tokens.length == symbols.length, 't Arrays not same length');
|
|
require(rates.length == symbols.length, 'r Arrays not same length');
|
|
|
|
for (uint256 i = 0; i < tokens.length; i++) {
|
|
emit deployedContracts(
|
|
address(
|
|
new AToken(
|
|
LendingPool(pool),
|
|
tokens[i],
|
|
address(0),
|
|
concat('Aave interest bearing ', symbols[i]),
|
|
concat('a', symbols[i]),
|
|
incentivesController
|
|
)
|
|
),
|
|
address(
|
|
new DefaultReserveInterestRateStrategy(
|
|
LendingPoolAddressesProvider(addressesProvider),
|
|
rates[i][0],
|
|
rates[i][1],
|
|
rates[i][2],
|
|
rates[i][3],
|
|
rates[i][4]
|
|
)
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
function initReserve(
|
|
address[] calldata tokens,
|
|
address[] calldata stables,
|
|
address[] calldata variables,
|
|
address[] calldata aTokens,
|
|
address[] calldata strategies,
|
|
uint8[] calldata reserveDecimals
|
|
) external {
|
|
// TODO require(check lenghts)
|
|
|
|
for (uint256 i = 0; i < tokens.length; i++) {
|
|
LendingPoolConfigurator(poolConfigurator).initReserve(
|
|
tokens[i],
|
|
aTokens[i],
|
|
stables[i],
|
|
variables[i],
|
|
reserveDecimals[i],
|
|
strategies[i]
|
|
);
|
|
}
|
|
}
|
|
}
|