@signet-trade/escrow-service-sdk
v1.0.23
Published
Node SDK for Signet Trade's Escrow Service
Downloads
26
Readme
Signet Trade escrow-service Node SDK
The Signet Trade escrow-service Node SDK provides your JavaScript & TypeScript applications access to the escrow-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/yarn/pnpm
npm install @signet-trade/escrow-service-sdk
pnpm install @signet-trade/escrow-service-sdk
yarn add @signet-trade/escrow-service-sdk
Usage
Creating an API client
import { EscrowServiceV1 } from '@signet-trade/escrow-service-sdk';
// Create new client with your private access tokens
const escrowService = new EscrowServiceV1({
SIGNET_ACCESS_KEY: '<my-public-key>',
SIGNET_ACCESS_SECRET: '<my-private-key>',
});