Javascript SDK that can help developer easy to integrate web application with Libra payment in minutes.
<script src="https://cdn.jsdelivr.net/npm/@atscaletech/libra-sdk@1.0.0/dist/libra-sdk.cjs.production.min.js"></script>
nmp install @atscaletech/libra-sdk
or
yarn add @atscaletech/libra-sdk
import { Libra } from 'libra-js';
const libra = new Libra({
appName: 'Libra Example',
rpc: 'wss://rpc.libra.atscale.xyz',
});
async function main() {
const ALICE_ADDRESS = '5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY';
const BOB_ADDRESS = '5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty';
const account = await libra.walletConnection.getAccount(ALICE_ADDRESS);
const { hash, status } = await libra.lrp.createPayment({
payee: BOB_ADDRESS,
amount: 1000,
currencyId: 'Native',
description: 'payment description',
receipt: 'payment receipt'
}, account);
}