How to create your own BEP20

Button Money
3 min readApr 23, 2021

How to deploy your BEP20 Token in less than a minute

If you don’t want to learn solidity nor setup your own environment and code and deploy your Token using an Binance Smart Chain node, you can use
BEP20 Token Generator.

BEP20 Token Generator is a simple decentralized application (DApp) that allows you to easily deploy Smart Contract for a Standard, Capped, Mintable, Burnable BEP20 Token.

1. Install MetaMask: you need to have MetaMask installed with an amount of BNB to pay for contract deployment.

2. Enter Details: enter your preferred Token name and symbol. Choose your supply and Token type.

3. Deploy Token: confirm your transaction using MetaMask. Once deployed your Token is ready to use.

Your Token will be fully compliant with the BEP20 definition and compatible with any BEP20 wallet all around the world. It will have a Name, a Symbol and a Decimals amount.

You can deploy the basic BEP20 Token for FREE (excluding GAS) or you will be able to choose between the below advanced features and more:

Capped BEP20: you won’t be able to generate more tokens than the defined token cap. This ensure people that you will not generate more tokens than declared.

Mintable BEP20: you will be able to generate tokens by minting them. Only token owner will be able to mint. You can also disable minting if you don’t want to generate tokens anymore.

Burnable BEP20: your Token can be burnt. It means that you can choose to reduce the circulating supply by destroying some of your tokens.

Ownable Access: your Token will have an Owner. Token owner will be able to mint new tokens or to call the finish minting function.

Operable Token (ERC1363): the Operable Token is a BEP20 compatible Token that can make a callback on the receiver contract to notify token transfers or token approvals.

Your Token source code will be yet verified on BscScan because of it is similar to already verified contracts.

Note: if you don’t know how to connect MetaMask to BSC follow this guide.

TokenCreate a BEP20 Token in less than a minute with the new Smart Contract Generator for BEP20 Token

No login. No setup. No coding required. In less than minute.

Spoiler: use https://pressbutton.money/

What is a Token?

A Token is a Smart Contract representing digital assets that can have value and can be sent and received. Smart Contracts are applications that run exactly as programmed without any possibility of downtime, censorship, fraud or third-party interference. These apps run on a custom built Blockchain, an enormously powerful shared global infrastructure that can move value around and represent the ownership of property.

What is an BEP20 Token?

BEP20 defines the implementation of APIs for token smart contracts. It is proposed by deriving the ERC20 protocol of Ethereum and provides the basic functionality to transfer tokens, allow tokens to be approved so they can be spent by another on-chain third party, and transfer between Binance Chain and Binance Smart Chain.

https://github.com/Press-Button-Money

How to code a BEP20 Token Smart Contract?

Smart Contracts are mostly written in Solidity.
Solidity is an object-oriented, high-level language for implementing Smart Contracts. Solidity is statically typed, supports inheritance, libraries and complex user-defined types among other features. With Solidity you can create contracts for uses such as voting, crowdfunding, blind auctions, and multi-signature wallets.
There are many libraries and tools that provide implementations of standards like ERC20 and ERC721 which you can deploy as-is or extend to suit your needs, as well as Solidity components to build custom contracts and more complex decentralized systems.

--

--