Skip to content

Getting Started

Installation

bash
npm install @offshore-ltd/sdk

Quick Start

typescript
import { OffshoreCash } from '@offshore-ltd/sdk';

// Initialize
const offshore = new OffshoreCash({
  rpcUrl: 'https://eth.llamarpc.com',
  chainId: 1,
});

// Create a deposit
const { commitment, note } = await offshore.createDeposit({
  amount: '0.5',
  token: 'ETH',
});

// Save the note securely!
console.log('Your note:', note);

Open source privacy technology