Bitcoin Forum
May 14, 2024, 12:19:42 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Service Discussion (Altcoins) / bep20 token web integration on: June 29, 2021, 08:19:02 AM
i want to deploy a simple token with buy function. function likes as follows;

function Buy()payable public returns(bool){
         
       
        uint256 amount = msg.value*2/100;             
           
        _mint(msg.sender,amount);       
        _deposits[msg.sender] = _deposits[msg.sender] + msg.value;
       
        return (true);
    }

is it possible to have a button on my website to call this function. user enters the msg.value and clicks button, it connects web3 wallet ( binance smart chain)  and make transfer. thank you in advance.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!