-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add contractAddress of cDAI (cToken)
- Loading branch information
Showing
2 changed files
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
var NewBancorPool = artifacts.require("NewBancorPool"); | ||
|
||
/*** | ||
* @notice - contract address of ContractRegistry on Ropsten | ||
* @notice - This is ContractAddress on Ropsten | ||
* @ref - https://support.bancor.network/hc/en-us/articles/360010410399-Ethereum-Ropsten-Network- | ||
* @ref - https://compound.finance/developers | ||
**/ | ||
const _contractRegistry = '0x8a69A7d7507F8c4a9dD5dEB9B687B30D2b30A011' | ||
const _BNTtoken = '0x9C7d1F4a027C64Af951858FD0F9CB3C91e008829' | ||
const _ERC20token = '' | ||
const _cDAI = '0x2b536482a01e620ee111747f8334b395a42a555e' | ||
|
||
|
||
module.exports = function(deployer) { | ||
deployer.deploy(NewBancorPool, _contractRegistry); | ||
deployer.deploy( | ||
NewBancorPool, | ||
_contractRegistry, | ||
_BNTtoken, | ||
_ERC20token, | ||
_cDAI | ||
); | ||
}; |
e91f1b0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ContractAddress of
cToken
on Ropsten from Compoundhttps://compound.finance/developers