UNPKG

ggez-banking-sdk

Version:

A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.

22 lines (21 loc) 1 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BlockchainRequestType = exports.Endpoints = exports.HTTPMethod = void 0; var HTTPMethod; (function (HTTPMethod) { HTTPMethod["POST"] = "POST"; HTTPMethod["GET"] = "GET"; HTTPMethod["PUT"] = "PUT"; HTTPMethod["DELETE"] = "DELETE"; })(HTTPMethod || (exports.HTTPMethod = HTTPMethod = {})); var Endpoints; (function (Endpoints) { Endpoints["Blockchain"] = "v1/blockchain"; })(Endpoints || (exports.Endpoints = Endpoints = {})); var BlockchainRequestType; (function (BlockchainRequestType) { BlockchainRequestType[BlockchainRequestType["Send"] = 1] = "Send"; BlockchainRequestType[BlockchainRequestType["Multi_Send"] = 2] = "Multi_Send"; BlockchainRequestType[BlockchainRequestType["Delegate"] = 3] = "Delegate"; BlockchainRequestType[BlockchainRequestType["Undelegate"] = 4] = "Undelegate"; })(BlockchainRequestType || (exports.BlockchainRequestType = BlockchainRequestType = {}));