Simple library for show a custom payment button in any website
<script src="https://checkout.smartypay.io/sdk/smartypay-client-sdk-v1.js"></script>
<div id="smartypay"></div>
<script src="https://checkout.smartypay.io/sdk/smartypay-client-sdk-v1.js"></script>
<script>
new SmartyPayDonation({
target: 'smartypay',
donationId: 'YOUR_DONATION_ID',
lang: 'en',
theme: 'dark',
})
</script>
- target - element id
- donationId - you can get it here: https://dashboard.smartypay.io/
- lang -
en
by default (also hases
,ru
) - theme -
light
(default) ordark
<div id="smartypay"></div>
<script src="https://checkout.smartypay.io/sdk/smartypay-client-sdk-v1.js"></script>
<script>
new SmartyPayButton({
target: 'smartypay',
apiKey: 'YOUR_API_KEY',
amount: '1.99',
token: 'bUSDT',
lang: 'en',
theme: 'dark',
})
</script>
- target - element id
- apiKey - you can get it here: https://dashboard.smartypay.io/
- token - see valid tokens here: https://docs.smartypay.io/general/supported-tokens
- amount - amount for payment (example 0.99)
- lang -
en
by default (also hases
,ru
) - theme -
light
(default) ordark
<div id="smartypay"></div>
<script src="https://checkout.smartypay.io/sdk/smartypay-client-sdk-v1.js"></script>
<script>
new SmartyPayRechargePayment({
target: 'smartypay',
address: 'CLIENT_RECHARGE_PAYMENT_ADDRESS',
lang: 'en',
theme: 'dark',
})
</script>
- target - element id
- address - recharge payment address for client (see docs)
- lang -
en
by default (also hases
,ru
) - theme -
light
(default) ordark
See React Client
cd your_dir
git clone https://github.com/smarty-pay/smartypay-client-sdk
npm install
npm run build
Checkout our TypeDocs