mirror of
https://github.com/Instadapp/dsa-connectors-old.git
synced 2024-07-29 22:47:46 +00:00
becd0135aa
fixing import for SafeERC20 and IERC20; set up constructor for synthetix connector to set address for staking contract; created MockSynthetix.sol for test; added nomiclabs/buidler; fixed test for SynthetixProtocol.js; adding .gitatributes to highlight solidity on GitHub; adding buidler artefacts and cache to git ignore; adding buidler.config.js;
12 lines
393 B
JavaScript
12 lines
393 B
JavaScript
usePlugin("@nomiclabs/buidler-truffle5");
|
|
// You have to export an object to set up your config
|
|
// This object can have the following optional entries:
|
|
// defaultNetwork, networks, solc, and paths.
|
|
// Go to https://buidler.dev/config/ to learn more
|
|
module.exports = {
|
|
// This is a sample solc configuration that specifies which version of solc to use
|
|
solc: {
|
|
version: "0.6.2",
|
|
},
|
|
};
|