Getting Started
Installation
bash
npm install @offshore-ltd/sdkQuick 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);