我想在我的网站上启用加密支付
I want to enable crypto payment on my site
我想通过给客户一个钱包地址来启用加密货币支付,并将加密货币的数量发送到我的钱包可以说是 10USDT,但我想自动知道我何时收到交易而无需我手动确认,所以我可以自动将产品交付给我正在使用 React 的客户,所以如果有人能告诉我如何做到这一点,我会很高兴,因为我到处搜索,但我找不到任何东西
请知道怎么做的人与我分享你的想法谢谢
const[paymentConfirmed,setPaymentConfirmed] = useState(false)
//i want somthing to fetch that the crypto payment received successful
//then i will setPaymentConfirmed to true
if(paymentConfirmed){
//will deliver the order to the customer
}
你需要从你使用的区块链得到响应,我认为你可以使用任何区块链浏览器,但如果你想要简单的方法,你可以使用一些加密货币网关,如 coinbase 或 coingate,它们工作正常
我想通过给客户一个钱包地址来启用加密货币支付,并将加密货币的数量发送到我的钱包可以说是 10USDT,但我想自动知道我何时收到交易而无需我手动确认,所以我可以自动将产品交付给我正在使用 React 的客户,所以如果有人能告诉我如何做到这一点,我会很高兴,因为我到处搜索,但我找不到任何东西
请知道怎么做的人与我分享你的想法谢谢
const[paymentConfirmed,setPaymentConfirmed] = useState(false)
//i want somthing to fetch that the crypto payment received successful
//then i will setPaymentConfirmed to true
if(paymentConfirmed){
//will deliver the order to the customer
}
你需要从你使用的区块链得到响应,我认为你可以使用任何区块链浏览器,但如果你想要简单的方法,你可以使用一些加密货币网关,如 coinbase 或 coingate,它们工作正常