dsa-connectors-old/migrations/2_deploy_connector.js
Lecky Lao e76db40294 clean up truffle-config and enable optimiser;
update test to mock token
2020-07-09 21:33:21 +10:00

11 lines
452 B
JavaScript

// const CurveProtocol = artifacts.require("CurveProtocol");
// const ConnectSBTCCurve = artifacts.require("ConnectSBTCCurve");
const MockContract = artifacts.require("MockContract");
module.exports = async function(deployer) {
// deployer.deploy(CurveProtocol);
deployer.deploy(MockContract);
// let connectorLength = await connectorInstance.methods.connectorLength().call();
// deployer.deploy(ConnectSBTCCurve, 1, +connectorLength + 1);
};