Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Installation

Install @left-curve/sdk from your package manager. Node 20 or later is required.

Install

npm install @left-curve/sdk

Sub-packages

@left-curve/sdk re-exports the most-used pieces of its sibling packages. Install a sub-package directly only when you want a smaller bundle or you need a symbol that the main entry does not re-export.

pnpm add @left-curve/crypto
pnpm add @left-curve/encoding
pnpm add @left-curve/types
pnpm add @left-curve/utils

See Concepts: Packages for the full split.

TypeScript

Strict mode must be on:

{
  "compilerOptions": {
    "strict": true,
    "target": "ES2022",
    "module": "ESNext",
    "moduleResolution": "Bundler"
  }
}

Next