add migration script for deploying polygon BBG

This commit is contained in:
c9s 2021-11-20 23:08:02 +08:00
parent 147f9f1e09
commit 6e90cc7519

View File

@ -0,0 +1,5 @@
var ChildMintableERC20 = artifacts.require("./ChildMintableERC20.sol");
module.exports = function(deployer) {
deployer.deploy(ChildMintableERC20, 'BBGO', 'BBG', 18, '0xA6FA4fB5f76172d178d61B04b0ecd319C5d1C0aa');
};