keycard-redeem/migrations/01_initial_migration.js

15 lines
476 B
JavaScript
Raw Normal View History

2020-09-23 09:26:59 +00:00
const Migrations = artifacts.require("Migrations");
const NFTBucketFactory = artifacts.require("NFTBucketFactory");
const ERC20BucketFactory = artifacts.require("ERC20BucketFactory");
const TestToken = artifacts.require("TestToken");
module.exports = function(deployer, network) {
deployer.deploy(Migrations);
deployer.deploy(NFTBucketFactory);
deployer.deploy(ERC20BucketFactory);
if (network === "development") {
deployer.deploy(TestToken, "TEST", 18);
}
};