To install SDX Utils, you need to have Node.js and yarn installed on your system. If you have those, you can install the package via yarn:
yarn add dsov-utils
Here is a basic example of how to use SDX Utils:
import * as anchor from "@project-serum/anchor";
import { PublicKey } from "@solana/web3.js";
import { client, programTypes } from "dsov-utils";
const sdxClient = new client.SdxClient({
clusterUrl: "https://api.devnet.solana.com",
sdxProgramId: new PublicKey(...),
euroPrimitiveProgramId: new PublicKey(...),
wallet: new anchor.Wallet(...),
idl: programTypes.IDL,
});
// Add Asset Details
const btcAssetDetails = {...};
sdxClient.addAsset(client.AssetType.BTC, btcAssetDetails);
// Deposit as Liquidity Provider
await sdxClient.depositToVault(
client.AssetType.BTC,
new BN(...),
new BN(...)
);
We use TypeDoc for generating API documentation. To generate docs, follow these steps:
yarn install
yarn build:docs
The documentation will be generated in the docs
directory in the project root.
Our docs are hosted with Netlify as Github Pages doesn't work with private repos. You can use Netlify's Command Line Interface (CLI) to deploy the documentation site. Here's how to do it:
npm install netlify-cli -g # install Netlify CLI
netlify deploy # create a draft deployment
netlify deploy --prod # create a production deployment
The netlify deploy command will prompt you to provide a publish directory. This should be the docs directory where your built documentation resides.
The first netlify deploy command creates a draft version of your site and provides a draft URL for you to check. If everything looks good on your draft URL, deploy it to your main site URL with the --prod flag using netlify deploy --prod.
To build and publish the package, run:
yarn publish
We welcome contributions! Please see our Contributing Guide for more details.
Generated using TypeDoc