0.0.4 • Published 5 months ago
@koibanx/gasstation-sdk v0.0.4
Koibanx GasStation SDK
GasStation SDK based in module GasStation
Description
The Module GasStation handles:
SDK Documentation
Installation
npm install @koibanx/gasstation-sdkNOTE: you must have the npm token in your .npmrc file
Initialization
Node
Using ES6 import
import GasStationSdk from '@koibanx/gasstation-sdk';
const gasstation = GasStationSdk({
  baseURL: 'http://your-url',
});With require
exports.__esModule = true;
const GasStationSdk = require('@koibanx/gasstation-sdk')["default"];
const gasstation = GasStationSdk({
  baseURL: 'http://your-url',
});Types
- Typescript (@koibanx/gasstation-sdk/dist/index.d.ts)
Examples
Using ES6 import
import GasStationSdk from "@koibanx/gasstation-sdk";
const gasStationSDK = GasStationSdk({
    baseURL: 'http://your-url',
})
const catchError = (err, modulo) => {
  console.log('Modulo: ', modulo);
  console.log('details: ', err.details);
  console.log('shortMessage: ', err.message);
  console.log('errorCode: ', err.code);
}
gasStationSDK.fuelAddress({
  budgetAllowance: '632d473fd495d81a986aeb6b',
  amount: 1,
  callback: 'http://localhost:5000',
  address: 'T4BXW4H4Z6SVCCHDBQ7O3PUEYJYFQH4TXACJPJHCTSXKY2LJ6AFJ6UCKVU',
}).then((data) => {
  console.log('fuelAddress', JSON.stringify(data.status));
}).catch((e) => catchError(e, 'fuelAddress'));
gasStationSDK.getFuelReserve().then((data) => {
  console.log('getFuelReserve', JSON.stringify(data.balance));
}).catch((e) => catchError(e, 'getFuelReserve'));
gasStationSDK.fuelAddress({
  budgetAllowance: '632d473fd495d81a986aeb6b',
  amount: 1,
  callback: 'http://localhost:5000',
  address: 'T4BXW4H4Z6SVCCHDBQ7O3PUEYJYFQH4TXACJPJHCTSXKY2LJ6AFJ6UCKVU',
}).then((resFuel) => {
  gasStationSDK.getTransaction({ id: resFuel._id })
    .then((res) => console.log('getTransaction', JSON.stringify(res.status)))
    .catch((e) => catchError(e, 'getTransaction'));
}).catch((e) => catchError(e, 'fuelAddress'));