UNPKG

truffle

Version:

Truffle - Simple development framework for Ethereum

9 lines (7 loc) 241 B
const ConvertLib = artifacts.require("ConvertLib"); const MetaCoin = artifacts.require("MetaCoin"); module.exports = function(deployer) { deployer.deploy(ConvertLib); deployer.link(ConvertLib, MetaCoin); deployer.deploy(MetaCoin); };