1.0.4 • Published 2 years ago

x-some-client-sdk v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Xenon SDK

Javascript SDK for interacting with XENON programs

Installation

Yarn

yarn add @xenon/client-sdk

npm

npm install @xenon/client-sdk

Basic usage

Trader Deposit

import { XenonTraderClient } from '@xenon/client-sdk'

...
const xenonTraderClient = new XenonTraderClient(connection, publicKey)

await xenonTraderClient.load();

const transaction = new Transaction();

await client.traderDeposit(transaction, amount, mintAddress, selectedToken === 'SOL' ? true : false);

sendTransaction()...
...