Multi-Coin Crypto-Payment Gateway
It supports multiple coin system, and you are able to accept payment on your website from users. We have successfully integrated with BitGo service and provided support for a few coins such as btc, bch, bsv, btg, dash, ltc, xrp, zec, xlm and ERC20 TOKENS
Bootstrap 4
Bootstrap Material
Bootstrap Modal
Multi-Color Background
Basic
Test out Multi-Coin Simple UI
Please test out functional and simple UI customizable and mobile friendly Multi-coin payment box and automatically displays successful payment message
Check Now!
Consume REST API
Available to integrate with other programmining language
API Link Example (Create New payment)
https://multicoin.maylancer.org/api.php?amount=50&coin=btc
Request samples (application/json)
{
"id": "5ec5ef865924a",
"user_id": "5ec5ef865924d",
"invoice": "f9UTEpRKeSKe",
"payment_id": "vReb4Wb0R2rfSeT",
"amount": "0.00527449",
"address": "3AWRiFuy7iWTPSaocWJ314jiTtkjQCuW4j",
"dollar": 50.5,
"expiring": 43200000,
"coin": "ZEC",
"coin_logo": "assets\/img\/zec.png",
"fees": "0.5",
"qrcode": "https:\/\/chart.googleapis.com\/chart?chs=500x500&cht=qr&chl=bitcoin:3AWRiFuy7iWTPSaocWJ314jiTtkjQCuW4j&choe=UTF-8",
"qramount": "https:\/\/chart.googleapis.com\/chart?chs=500x500&cht=qr&chl=amount=0.00527449&choe=UTF-8",
"created": "1 sec ago",
"status": 1
}
Get User Invoice
https://multicoin.maylancer.org/api.php?invoice=Pde00C23eCST
Request samples (application/json)
{
"id":"168",
"user_id":"2147483647",
"invoice":"9naRlgyKVmQN",
"payment_id":"8OYLEWGpmGJufaZ",
"amount":"0.00039289",
"dollar":"2",
"address":"2Mxvs5M6DaCswJkrFCz3pRxL5W23gNzQ2Vw",
"coin":"tbtc",
"payment_type":"product",
"txt":"c64aa36121e21e1b2a33059a75cf4a59294d2dc1dcb210c7b69f19325800b161",
"date_confirmed":"0000-00-00 00:00:00",
"invoice_time":"43200",
"paid":"0",
"created":"2020-03-18 17:13:41",
"status":1
}
Get listed supported coin with rates (Multi-coin payment only)
https://multicoin.maylancer.org/api.php?coins&amount=50
Request samples (application/json)
[
{
"coin": "btc",
"name": "Bitcoin",
"rate": 0.00527449,
"coin_logo": "assets\/img\/btc.png"
},
{
"coin": "bch",
"name": "Bitcoin Cash",
"rate": 0.20802564,
"coin_logo": "assets\/img\/bch.png"
},
{
"coin": "ltc",
"name": "Litecoin",
"rate": 1.1350312,
"coin_logo": "assets\/img\/ltc.png"
},
{
"coin": "dash",
"name": "Dash",
"rate": 0.64720408,
"coin_logo": "assets\/img\/dash.png"
},
{
"coin": "zec",
"name": "Zcash",
"rate": 1.04373189,
"coin_logo": "assets\/img\/zec.png"
}
]
Supported Coin
//PRODUCTION
const BITCOIN = 'btc';
const BITCOIN_CASH = 'bch';
const BITCOIN_SV = 'bsv';
const BITCOIN_GOLD = 'btg';
const DASH = 'dash';
const LITECOIN = 'ltc';
const RIPPLE = 'xrp';
const ZCASH = 'zec';
const STELLAR = 'xlm';
//ERC20 TOKENS
const ERC = 'erc'; //BitGo’s sample ERC20 token
const OMISE_GO = 'omg';
const ZRX = 'zrx'; //0x token
const FUNFAIR = 'fun';
const GOLEM = 'gnt';
const AUGUR_REP = 'rep';
const BASIC_ATTENTION_TOKEN = 'bat';
const KYBER_NETWORK = 'knc';
const CIVIC_REP = 'cvc';
const EOS = 'eos';
const QRL = 'qrl';
const NUMERAIRE = 'nmr';
const TENXPAY = 'pay';
const BREAD = 'brd';
//TESTNET
const BITCOIN_TESTNET = 'tbtc';
const BITCOIN_CASH_TESTNET = 'tbch';
const BITCOIN_SV_TESTNET = 'tbsv';
const DASH_TESTNET = 'tdash';
const LITECOIN_TESTNET = 'tltc';
const ZCASH_TESTNET = 'tzec';
const RIPPLE_TESTNET = 'txrp';
const ROYAL_MINT_GOLD_TESTNET = 'trmg';
const ERC_TESTNET = 'terc';
const STELLAR_TESTNET = 'txlm';