This is a simple token sale contract with fixed parameters. Contract will send tokens in exchange of BNB.
Buyers can purchase tokens by sending BNB to contract address or using user interface (you will be able to download a simple draft UI with main functions and QR code after creating a token sale contract).
Contract correctly processes changes and decimals and automatically stops selling tokens once required quantity has been sold out.
You can restart token sale with any selling price and quantity, and token sale will start again.
You can use it with any (BEP-20) token.
Once you have created token sale contract don't forget to Approve it for selling tokens from your wallet (you will be able to do it in the contract's admin panel). Do not send tokens to the contract, make sure you have enough balance of the tokens in your wallet (contract is selling tokens from your wallet by allowance way)!
(Mainnet and Testnet available)
Token address: Contract address of the token that you want to sell
[show my tokens]
Tokens quantity:
Maximum quantity of tokens for sale (you will be able to change it by restarting token sale). After selling this quantity contract will stop selling (until next restart).
Remember to approve sale contract for this quantity after it's creation / restart.
Price per token: BNB Selling price for 1 token (how much 1 token will cost - please make sure you input the right price). You will be able set another price by restarting token sale.
Only tokens created on this platform are shown here but you can use any valid (BEP-20) token
If you can't see your token here please input its contract address manually
#
Address
Name
Symbol
Choose
×
Token sale contract
View on blockchain explorer:
Current token sale
Total sale quantity:
Token price: BNB
Tokens sold:
Total raised: BNB
Unsold tokens:
Totals
Tokens sold:
Total raised: BNB
Token address:
View on blockchain explorer:
Token name:
Token symbol:
Token decimals:
Token sale status:
Restart token sale
Quantity: tokens
Token price: BNB
Balance: BNB
Withdraw: BNB
Token sale UI
You can download front-end HTML file and edit the file after downloading, or order some design on top of it.
Please keep the scripts, IDs and classes otherwise some important functions may not work properly.
Just upload index.html file to your website - and your very own token sale is live!
<div style="text-align: center">
<h2>Token info</h2>
<p><span id="tokenName"></span> (<span id="tokenSymbol"></span>)</p>
<p><a target="_blank" href="" id="tokenAddress"></a></p>
<!-- Reserved in case you want to show decimals and total supply: <span id="#tokenDecimalsUI"></span> <span id="#tokenSupplyUI"></span>-->
<p><button id="addToken" style="text-align: center">Add to wallet</button></p>
</div>
<p>Token sale status: <span id="status">--</span></p>
</div>
<hr>
<div style="text-align: center">
<p>Total sold in all rounds: <span id="allsold"></span></p>
<p>Total raised in all rounds: <span id="allraised"></span> <span class='eth'>BNB</span></p>
</div>
<div style="text-align: center">
<h2>Sale contract</h2>
<p>You can also buy tokens by sending BNB to this contract (please increase gas limit to 200,000 or more if transaction fails):</p>
<p><a href="" target="_blank" id="saleAddress"></a></p>
<div style="text-align: center" id="refqr"></div>
<p style="text-align: center"><a style="text-decoration: none" id="refd" href="" download>Download QR</a></p>
</div>