August 2018
Intermediate to advanced
404 pages
11h 19m
English
2_token_migration.js
// Import statementvar contract = artifacts.require("contract"); module.exports = function(deployer) { // Deployment statement deployer.deploy(contract); };
Reference the contract using artifacts.require(). It is similar to require and import in JavaScript, ...
Read now
Unlock full access