Donation Button Examples
These button examples are preloaded with an example merchant ID, you should not actually send funds to them.
* Testing Note: The system will only let you have 3 transactions at a time in the 'Waiting for funds...' state (as a buyer, no limit for sellers) *

Minimal Button

<form action="https://www.coinpayments.net/index.php" method="post">
	<input type="hidden" name="cmd" value="_donate">
	<input type="hidden" name="reset" value="1">
	<input type="hidden" name="merchant" value="3bf9f9f8b9d9c74b387a3fa6339f5dd8">
	<input type="hidden" name="currency" value="LTC">
	<input type="hidden" name="amountf" value="10.00">
	<input type="hidden" name="item_name" value="Test Donation">		
	<input type="image" src="https://www.coinpayments.net/images/pub/donate-grey.png" alt="Donate with CoinPayments.net">
</form>


Button with Shipping

<form action="https://www.coinpayments.net/index.php" method="post">
	<input type="hidden" name="cmd" value="_donate">
	<input type="hidden" name="reset" value="1">
	<input type="hidden" name="merchant" value="3bf9f9f8b9d9c74b387a3fa6339f5dd8">
	<input type="hidden" name="currency" value="LTC">
	<input type="hidden" name="amountf" value="10.00">
	<input type="hidden" name="item_name" value="Test Item">		
	<input type="hidden" name="want_shipping" value="1">		
	<input type="hidden" name="shippingf" value="1.00">		
	<input type="image" src="https://www.coinpayments.net/images/pub/donate.png" alt="Donate with CoinPayments.net">
</form>


White Button with Shipping and Currency Selection

<form action="https://www.coinpayments.net/index.php" method="post">
	<input type="hidden" name="cmd" value="_donate">
	<input type="hidden" name="reset" value="1">
	<input type="hidden" name="merchant" value="3bf9f9f8b9d9c74b387a3fa6339f5dd8">
	<input type="hidden" name="allow_currency" value="1">
	<input type="hidden" name="currency" value="USD">
	<input type="hidden" name="amountf" value="10.00">
	<input type="hidden" name="item_name" value="Test Donation">		
	<input type="hidden" name="want_shipping" value="1">
	<input type="image" src="https://www.coinpayments.net/images/pub/donate-white.png" alt="Donate with CoinPayments.net">
</form>


Note: The background of this image is transparent, we just used a black background here for demonstration purposes.