mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
d4cbc759f8
* rename contract NativeCoin -> CosmosCoin * rename all entities NativeCoin -> CosmosCoin * update changelog * update protonet genesis.json
28 lines
616 B
TypeScript
28 lines
616 B
TypeScript
import { ethers } from "hardhat";
|
|
|
|
async function main() {
|
|
const tokenName = "Kava-wrapped ATOM";
|
|
const tokenSymbol = "kATOM";
|
|
const tokenDecimals = 6;
|
|
|
|
const ERC20KavaWrappedCosmosCoin = await ethers.getContractFactory(
|
|
"ERC20KavaWrappedCosmosCoin"
|
|
);
|
|
const token = await ERC20KavaWrappedCosmosCoin.deploy(
|
|
tokenName,
|
|
tokenSymbol,
|
|
tokenDecimals
|
|
);
|
|
|
|
await token.deployed();
|
|
|
|
console.log(
|
|
`Token "${tokenName}" (${tokenSymbol}) with ${tokenDecimals} decimals is deployed to ${token.address}!`
|
|
);
|
|
}
|
|
|
|
main().catch((error) => {
|
|
console.error(error);
|
|
process.exitCode = 1;
|
|
});
|