mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-01-27 21:33:37 +00:00
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);
|
||
|
});
|