legacy/truffle/migrations/1_deploy_contracts.js

9 lines
233 B
JavaScript

const ConvertLib = artifacts.require("ConvertLib");
const Legacy = artifacts.require("Legacy");
module.exports = function(deployer) {
deployer.deploy(ConvertLib);
deployer.link(ConvertLib, Legacy);
deployer.deploy(Legacy);
};