Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PLEASE ADD ETHMNY HERE IS LOGO #24

Open
wants to merge 19 commits into
base: aip/renfil
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .bond.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
INFURA_KEY=
ALCHEMY_KEY=
MNEMONIC=

# DEFAULT_GAS_PRICE= 50 GWEI by default

TOKEN=0x0391D2021f89DC339F60Fff84546EA23E337750f
ATOKEN=0x170375B4aD477133a36B4961D9bcA6D5BF9C8389
VARIABLE_DEBT_TOKEN=0x21D0366D1D678fCf276954b7D651B9dfeE104D82
STABLE_DEBT_TOKEN=0xb98EF546D1057f9750511FE16cBCC7Eb0FB6451F
INTEREST_STRATEGY=0x273358d06Ca3862bf3C0691d1C8B4B4d3E906458
LTV=2500
LIQUIDATION_THRESHOLD=3500
LIQUIDATION_BONUS=11500
RESERVE_FACTOR=3500
DECIMALS=18
ENABLE_BORROW=true
ENABLE_AS_COLLATERAL=true
ENABLE_STABLE_BORROW=true
IPFS_HASH=QmcznTifYPKHcna8o37MmTKMYhRzhXtVmJVjYEVGEq2gsC
CHAINLINK_ORACLE_PROXY=0xdd22A54e05410D8d1007c38b5c7A3eD74b855281

# By default executor and governance addresses set to mainnet addresses
# Uncomment the following for kovan
#AAVE_SHORT_EXECUTOR=0x2012b02574f32a96b9cfb8ba7fdfd589d5c70f50
#AAVE_GOVERNANCE_V2=0xc2ebab3bac8f2f5028f5c7317027a41ebfca31d2
22 changes: 22 additions & 0 deletions .rai.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# DEFAULT_GAS_PRICE= 50 GWEI by default

TOKEN=0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919
ATOKEN=0xe0065ea37791d336D78fcA0e870D04f700395B8d
STABLE_DEBT_TOKEN=0xf37E202E587c6f63FD70F35C24Eb7f818CC5d01A
VARIABLE_DEBT_TOKEN=0x2cDA07B4a6D9064292DD8d624883f07c27eE01B7
INTEREST_STRATEGY=0xA7d4df837926cD55036175AfeF38395d56A64c22
LTV=0
LIQUIDATION_THRESHOLD=0
LIQUIDATION_BONUS=0
RESERVE_FACTOR=2000
DECIMALS=18
ENABLE_BORROW=true
ENABLE_AS_COLLATERAL=false
ENABLE_STABLE_BORROW=false
IPFS_HASH=QmZmGy1Bm1v3pPdJdYCCe7EyujW2i169eNq6txpQg4NsSn
CHAINLINK_ORACLE_PROXY=0x4ad7B025127e89263242aB68F0f9c4E5C033B489

# By default executor and governance addresses set to mainnet addresses
# Uncomment the following for kovan
#AAVE_SHORT_EXECUTOR=0x2012b02574f32a96b9cfb8ba7fdfd589d5c70f50
#AAVE_GOVERNANCE_V2=0xc2ebab3bac8f2f5028f5c7317027a41ebfca31d2
2 changes: 2 additions & 0 deletions contracts/assetListing/interfaces/IERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ interface IERC20 {
uint256 amount
) external returns (bool);

function decimals() external view returns (uint8);

/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
Expand Down
37 changes: 21 additions & 16 deletions deployments/kovan/AssetListingProposalGenericExecutor.json

Large diffs are not rendered by default.

57 changes: 57 additions & 0 deletions deployments/kovan/solcInputs/1d6524fdfdc8f51e876d963d390e56b4.json

Large diffs are not rendered by default.

48 changes: 0 additions & 48 deletions deployments/kovan/solcInputs/60f7b1ef02a5e76f6d9a5b39c4a0b386.json

This file was deleted.

48 changes: 0 additions & 48 deletions deployments/kovan/solcInputs/e1ceab82017f97e6880e2c6694f30b60.json

This file was deleted.

2 changes: 2 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import '@nomiclabs/hardhat-waffle';
if (process.env.SKIP_LOAD !== 'true') {
// eslint-disable-next-line global-require
require('./tasks/list-new-asset.ts');
require('./tasks/list-rai.ts');
require('./tasks/list-bond.ts');
}

export const BUIDLEREVM_CHAIN_ID = 31337;
Expand Down
Loading