Caldera Network Coin-Service Node SDK


The Caldera Network Coin-Service Node SDK provides your JavaScript & TypeScript applications access to the Coin-Service API.
This library can be used by NodeJS applications, tools, and other automations to access and manage cryptocurrency coins, tokens, and wallets.
Installation
You can install the SDK using npm or yarn
npm install @caldera-network/cs-sdk
yarn add @caldera-network/cs-sdk
Usage
Creating an API client
import { CoinServiceV1 } from "@caldera-network/cs-sdk";
const coinService = new CoinServiceV1({
CALDERA_ACCESS_KEY: '<my-public-key>',
CALDERA_ACCESS_SECRET: '<my-private-key>',
});