Created
July 9, 2022 00:26
-
-
Save ademidun/83f478a3314d683790b20c88322ac392 to your computer and use it in GitHub Desktop.
Example of how to use the Depay Widget in a React App
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import DePayWidgets from '@depay/widgets';// https://github.com/DePayFi/widgets | |
import { Button } from 'antd'; | |
interface CryptoPaymentWidgetProps { | |
/** Amount that wallet will receive in USD */ | |
amount: number; | |
} | |
function CryptoPaymentWidget(props: CryptoPaymentWidgetProps) { | |
const ETH_BLOCKCHAIN_USDC_TOKEN_ADDRESS = '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'; | |
const ATILATECH_PAYMENTS_ADDRESS = '0x96a5e54a47521e76dd46b8ecf0fef2d23140fbf2'; | |
const BSC_BLOCKCHAIN_BUSD_TOKEN_ADDRESS = '0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56'; | |
const { amount } = props; | |
const startPayment = async () => { | |
await DePayWidgets.Payment({ | |
accept:[ | |
{ | |
blockchain: 'ethereum', | |
amount, | |
token: ETH_BLOCKCHAIN_USDC_TOKEN_ADDRESS, | |
receiver: ATILATECH_PAYMENTS_ADDRESS | |
}, | |
{ | |
blockchain: 'bsc', | |
amount, | |
token: BSC_BLOCKCHAIN_BUSD_TOKEN_ADDRESS, | |
receiver: ATILATECH_PAYMENTS_ADDRESS | |
} | |
], | |
critical: (criticalError: any)=> { | |
console.log({criticalError}); | |
}, | |
error: (error: any)=> { | |
console.log({error}); | |
} | |
}); | |
} | |
console.log({startPayment}); | |
return ( | |
<div> | |
<Button onClick={()=> {startPayment()}} size="large"> | |
Pay | |
</Button> | |
</div> | |
) | |
} | |
export default CryptoPaymentWidget |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment