Aave FlashLoan.sol sample for Ropsten network truffle.js
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
var HDWalletProvider = require("truffle-hdwallet-provider"); | |
var mnemonic = "mnemonic" | |
var ropsten = "https://ropsten.infura.io/v3/xxxxxxxxxxxx" | |
module.exports = { | |
networks: { | |
ropsten: { | |
provider: function() { | |
return new HDWalletProvider( | |
mnemonic, | |
ropsten | |
); | |
}, | |
network_id: 3, | |
from: "0", | |
gas: 470000 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment