@togtokh.dev/xpay
v0.1.3
Published
xpay togtokh-dev
Downloads
65
Maintainers
Readme
X-PAY
Example
import XPAY from "../src";
const run = async () => {
console.log((await XPAY.wallet.balance()).data.wallet_balance);
};
XPAY.auth
.USER("staging", {
phone_number: 1,
password: "",
})
.then((result) => {
console.log(result);
run();
})
.catch((err) => {
console.log(err);
});