truffle
Version:
Truffle - Simple development framework for Ethereum
12 lines (10 loc) • 371 B
JavaScript
var ConvertLib = artifacts.require("ConvertLib");
var MetaCoin = artifacts.require("MetaCoin");
var ExtraMetaCoin = artifacts.require("ExtraMetaCoin");
module.exports = function(deployer) {
deployer.deploy(ConvertLib);
deployer.link(ConvertLib, MetaCoin);
deployer.link(ConvertLib, ExtraMetaCoin);
deployer.deploy(MetaCoin);
deployer.deploy(ExtraMetaCoin);
};