mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
6 lines
212 B
JavaScript
6 lines
212 B
JavaScript
var ChildMintableERC20 = artifacts.require("ChildMintableERC20");
|
|
|
|
module.exports = function(deployer) {
|
|
deployer.deploy(ChildMintableERC20, 'BBGO', 'BBG', 18, '0xA6FA4fB5f76172d178d61B04b0ecd319C5d1C0aa');
|
|
};
|