mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-01-24 03:59:06 +00:00
cf0713eda7
Co-authored-by: nabarun <nabarun@deepstacksoft.com>
20 lines
633 B
TypeScript
20 lines
633 B
TypeScript
//
|
|
// Copyright 2021 Vulcanize, Inc.
|
|
//
|
|
|
|
import { task, types } from 'hardhat/config';
|
|
import '@nomiclabs/hardhat-ethers';
|
|
|
|
const DEFAULT_INITIAL_SUPPLY = '1000000000000000000000';
|
|
|
|
task('token-deploy', 'Deploys GLD token')
|
|
.addOptionalParam('initialSupply', 'Set total supply', DEFAULT_INITIAL_SUPPLY, types.string)
|
|
.setAction(async (args, hre) => {
|
|
const { initialSupply } = args;
|
|
await hre.run('compile');
|
|
const Token = await hre.ethers.getContractFactory('GLDToken');
|
|
const token = await Token.deploy(hre.ethers.BigNumber.from(initialSupply));
|
|
|
|
console.log('GLD Token deployed to:', token.address);
|
|
});
|