gittoken-contracts
Version:
GitToken Solidity Smart Contracts
15 lines (12 loc) • 336 B
JavaScript
const Registry = artifacts.require('./Registry.sol');
const { registrationFee } = require('../gittoken.config.js')
module.exports = function(deployer) {
deployer.deploy(
Registry,
registrationFee
).then((contract) => {
console.log('contract', contract)
}).catch((error) => {
console.log('error', error)
});
};