This module is a library for working with the Cryptomus API in a Node.js, written in TypeScript. Please note that this module is under development and is subject to change.
[!WARNING]
This is a beta prerelease
- Full typing for request and response to ensure secure development.
- Web docs - click
npm i @qweme32/cryptomus
import { Cryptomus } from "@qweme32/cryptomus";
import { v4 as uuid } from "uuid";
async function main() {
const cryptomus = new Cryptomus("merchant", "payment-token", "payout-token");
return cryptomus.createPayment({
amount: "100",
order_id: uuid(),
currency: "USD"
})
}
main().then(console.log);
With < 3 by qweme