Skip to content

bitocredit/nodejs-gateway

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nodejs wrapper for Bitocredit API

usage

install package using npm

npm install @bitocredit/nodejs-gateway


and use package like this:

    const Bitocredit = require("@bitocredit/nodejs-gateway");
    
    const baseurl = "https://bitocredit.com/api/";
    const token = "TOKEN"; // fill your token
    
    const Gateway = new Bitocredit(baseurl , token);
    
    Gateway.createWallet("wallet_id" , "network") // replace wallet_id with your wallet id and network type
           .then((data) => {
            console.log(data);
           })
           .catch((err) => {
            console.log(err);
           });

methods

This method used for creating wallet for user

endpoint : https://bitocredit.com/api/create/wallet/{token}

    Gateway.createWallet("wallet_id" , "network") // replace wallet_id with your wallet id and network type
           .then((data) => {
            console.log(data);
           })
           .catch((err) => {
            console.log(err);
           });

This method used for check a transaction is confirmed or not

endpoint : https://bitocredit.com/api/transaction/check/{token}

    Gateway.transactionCheck("transaction_hash" , "wallet_address") // replace transaction_hash and wallet_address with your transaction hash and wallet address
           .then((data) => {
            console.log(data);
           })
           .catch((err) => {
            console.log(err);
           });

This method used for check a transaction that is lost in blockchain

endpoint : https://bitocredit.com/api/transaction/recovery/{token}

    Gateway.transactionRecovery("transaction_hash") // replace transaction_hash with your transaction hash
           .then((data) => {
            console.log(data);
           })
           .catch((err) => {
            console.log(err);
           });

This method used for check a transaction that is lost in blockchain

endpoint : https://bitocredit.com/api/transaction/fee/{token}

    Gateway.transactionFee()
           .then((data) => {
            console.log(data);
           })
           .catch((err) => {
            console.log(err);
           });

Please only use this api for test ! it's only an example to show how the server sends data to callback after payment confirmation

endpoint : https://bitocredit.com/api/transaction/example/callback

    Gateway.transactionExample("transaction_hash") // replace transaction_hash with your transaction hash
           .then((data) => {
            console.log(data);
           })
           .catch((err) => {
            console.log(err);
           });

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published