🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@left-curve/sdk

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@left-curve/sdk

The SDK package for interacting with the [Dango](https://dango.exchange) execution environment.

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
2
Created
Source

@left-curve/sdk

The SDK package for interacting with the Dango execution environment.

Installation

npm install @left-curve/sdk

For lighter installs, use the individual packages:

npm install @left-curve/types     # type definitions only
npm install @left-curve/encoding  # encoding utilities only
npm install @left-curve/utils     # general utilities only
npm install @left-curve/crypto    # cryptographic primitives only

Usage

import { createPublicClient, createSignerClient, testnet } from "@left-curve/sdk";
import { getBalance } from "@left-curve/sdk/actions";

const client = createPublicClient({ chain: testnet });
const balance = await getBalance(client, { address, denom: "dango" });

Package Structure

The SDK is split into independent packages for lighter dependency trees:

PackageDescription
@left-curve/typesTypeScript type definitions
@left-curve/encodingHex, base64, binary, JSON encoding
@left-curve/utilsDecimal math, formatting, assertions
@left-curve/cryptoHash functions, key pairs, WebAuthn
@left-curve/sdkClients, actions, chains, transports

The root @left-curve/sdk import re-exports common items from all sub-packages for convenience.

Exports

// Root - clients, chains, and common re-exports from all sub-packages
import { createPublicClient, testnet, Decimal, sha256 } from "@left-curve/sdk";

// Actions - query and mutation actions
import { getBalance, swap, transfer } from "@left-curve/sdk/actions";

License

TBD

Keywords

grug

FAQs

Package last updated on 14 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts