erc20-generator

1.0.2 • Public • Published

Ethereum ERC-20 Token Generator

This packable allows you to either embed a custom token generator on your React web application or supply parameters to programmatically create a new token.

Installation

yarn add erc20-generator

Token Creator React Component

You can import the EmbeddedTokenGenerator from the erc20-generator package to embed a full page token generator in your page while supplying your own ethereum address for affiliate fees, if any.

import { EmbeddedTokenGenerator } from "erc20-generator";

const Example = () => {
  return (
    <EmbeddedTokenGenerator affiliate="0x002fd03eeC510cC10Df778ef87a8C6f51FfE3F02" />
  );
};

export default Example;

Programmatic Token Generation

import { createErc20Token } from "erc20-generator";

await createErc20Token({
  name: "MyToken",
  symbol: "MTK",
  supply: 1000000,
  web3: ethersInstance, // Must be an initialized ethers.js provider on chain 1
});

Credit

This tool utilizes libraries and toolkit from Create My Token and Metacrypt.

Package Sidebar

Install

npm i erc20-generator

Weekly Downloads

0

Version

1.0.2

License

MIT

Unpacked Size

435 kB

Total Files

8

Last publish

Collaborators

  • akshatmittal
  • createmytoken