@vegaprotocol/rest-clients
v0.77.1
Published
Clients for interacting with VegaProtocol REST APIs
Downloads
354
Readme
Rest clients
WIP project that autogenerates types and clients for interacting with the Vega REST APIs
Usage
Install the client you wish to use:
npm i @vegaprotocol/rest-clientor
yarn add @vegaprotocol/rest-clientThen use it in your code:
// Choose API you wish to access; BlockExplorer, Core, CoreState or TradingData
import { BlockExplorer } from "@vegaprotocol/rest-clients";
// Set the base URL of for the client you are connecting to.
BlockExplorer.OpenAPI.BASE = "node-url-here";
const service = BlockExplorer.BlockExplorerService;
service.blockExplorerListTransactions().then((markets) => {
console.log(markets);
});