handcash dark logo

Welcome to HandCash Connect

Run this code

Connect your HandCash account to this app to run the code below

1 2 3 4 5 6 7 8 9 10 11 // Pay 0.05 USD to yourself const {HandCashConnect} = require('@handcash/handcash-connect'); const handCashConnect = new HandCashConnect({ appId: '<app-id>', appSecret: '<secret>', }); const paymentParameters = { payments: [{ destination: 'your-handle', currencyCode: 'USD', sendAmount: 0.05 }] }; await account.wallet.pay(paymentParameters);