How to Accept Crypto Tips

in LeoFinancelast month (edited)


bitcoin-ethereum.jpg
Photo by Thought Catalog on Unsplash

My interest in cryptocurrencies increased when I read "Start Accepting Bitcoin Cash Donations With Tipb.ch" by Pantera. It inspired me to create a Bitcoin.com wallet, set up crypto donations on my website and write this article.

Buying Cryptocurrencies

There are many ways to buy cryptocurrencies; the following are just two…

Bitcoin.com Wallet

The Bitcoin.com wallet is easy to use, and I have added crypto from another wallet using the crypto address provided by the Bitcoin.com wallet.

If you are buying crypto through Bitcoin.com Wallet, you might be interested in these tips:

  • Check the "minimum purchasable amount" for different currencies. For example, it’s $39 (£30) when buying with GBP and $30 with USD (another example of a 1:1 GBP to USD conversion).
  • Check the amount you will get using different currencies. For example, if I buy using USD instead of GBP, I get more for the same price.
  • Check the network fees you may need to pay.
  • Buying crypto with a credit card also involves transaction fees.
  • Be aware that trading cryptocurrencies can be subject to tax. (Trading ordinary currencies usually isn’t.)

Binance

Binance is easy to use and it is one of the cheapest ways to buy crypto. Two points to bear in mind:

  1. It is a centralised exchange.
  2. Its wallet is custodial.

Accepting Crypto Tips

Accepting Crypto Tips on a Third-Party Website

Pantera’s article describes how to create a page for accepting Bitcoin Cash payments on tipb.ch. The page has a short URL, rather than a long crypto address, that you can share.

When people visit your page, they can copy your BCH address which they can use to send you money from their wallets. My page is tipb.ch/mwls

These are the main steps for creating a tipb.ch page:

  1. Go to the tipb.ch website
  2. Click "Create a tipb.ch page"

3. Enter a name for your page.
  1. Enter your Bitcoin Cash address. You can ignore the SmartBCH address.

  2. Click ‘Create’.

Accepting Crypto Tips on Your Website

Although using a third-party website to accept crypto tips and payments is straightforward, payments are limited to using only one cryptocurrency. Also, I would prefer that visitors who visit my websites don’t have to leave to make payments.

So, I wrote a javascript program to accept crypto tips on my websites.

If you would like to accept crypto donations on your website:

  1. Add a hidden text field and a button for each cryptocurrency you want to accept.

<input type="hidden" value="yourBitcoinAddress" id="btc">  
<button onclick="crypto('btc', 'Bitcoin')" style="background-color:#3498CA;color:#FFF;padding:5px 12px;border:0;border-radius:4px;font-size:12pt">Bitcoin</button>  
  
<input type="hidden" value="yourBitcoinCashAddress" id="bch">  
<button onclick="crypto('bch', 'Bitcoin Cash')" style="background-color:#3498CA;color:#FFF;padding:5px 12px;border:0;border-radius:4px;font-size:12pt">Bitcoin Cash</button>  
  
<input type="hidden" value="yourEthereumAddress" id="eth">  
<button onclick="crypto('eth', 'Ethereum')" style="background-color:#3498CA;color:#FFF;padding:5px 12px;border:0;border-radius:4px;font-size:12pt">Ethereum</button>

The ‘value’ of the hidden text field is the address of your cryptocurrency, and the ‘id’ should represent the currency.


Clicking the button calls the crypto() function, which has two parameters: coin and coinName. The first parameter should have the same value as the hidden text field’s ‘id’. The second parameter should have the name of the cryptocurrency.

  1. Paste this code into the <head> area of your webpage
<script>
    function crypto(coin, coinName) {  
        var cryptoAddress = document.getElementById(coin);  
        navigator.clipboard.writeText(cryptoAddress.value);  
        alert(coinName + " address has been copied to clipboard");  
    }
</script>
  • The crypto address is obtained from the hidden text field.
  • The crypto address is then copied to the clipboard.
  • An alert displays which cryptocurrency has been copied to the clipboard.

If you would like to see how this works in practice, please have a look at ‘Support the Learning Pages Project’ on LearningPages.org


Originally published by LearningPages.org

My thanks to @revolverocelotyt, who asked to be notified when I publish new posts.
If you would like to receive notifications, please ask to be included.
You can request cancellation at any time.