dsa-connectors-old/migrations/2_deploy_connector.js
Lecky Lao e5f418157f Updated math.sol to use SafeMath from OZ;
update migration to deploy CurveSBTCProtocol;
Added Curvesbtc.sol sell method and got it compiled;
2020-06-30 02:15:35 +10:00

8 lines
238 B
JavaScript

const CurveProtocol = artifacts.require("CurveProtocol");
const CurveSBTCProtocol = artifacts.require("CurveSBTCProtocol");
module.exports = function(deployer) {
deployer.deploy(CurveProtocol);
deployer.deploy(CurveSBTCProtocol);
};