@vegaprotocol/rest-clients

v0.77.1
Clients for interacting with VegaProtocol REST APIs

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-client

or

yarn add @vegaprotocol/rest-client

Then 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);
});
npm i @vegaprotocol/rest-clients

Metadata

  • MIT
  • Whatever
  • Dexter Edwards
  • released 8/14/2024

Downloads