Links
💵

Push Payment button

This button is used for show a push payment address for a client of your website.

Animated button

<div id="smartypay"></div>
<script src="https://checkout.smartypay.io/sdk/smartypay-client-sdk-v1.js"></script>
<script>
new SmartyPayPushPayment({
target: 'smartypay',
address: 'CLIENT_PUSH_PAYMENT_ADDRESS',
lang: 'en',
theme: 'dark',
})
</script>
Available parameters:
  • target - element id
  • address - push-payment address for client (see docs)
  • lang - en by default (also has es, ru)
  • theme - light (default) or dark

Sources

React component

import {SmartyPayPushPayment} from 'smartypay-client-react';
<SmartyPayPushPayment
address="CLIENT_PUSH_PAYMENT_ADDRESS"
theme="dark"
lang="en"
/>
  • address - push-payment address for client (see docs)
  • lang - en by default (also has es, ru)
  • theme - light (default) or dark

Sources