UNPKG

@bridgesplit/rwa-token-sdk

Version:

RWA Token SDK for the development of permissioned tokens on SVM blockchains.

11 lines (10 loc) 307 B
/// <reference types="@coral-xyz/anchor/node_modules/@solana/web3.js" /> import { type ConfirmOptions, type Connection } from "@solana/web3.js"; export type Config = { connection: Connection; rpcUrl: string; confirmationOptions: ConfirmOptions; }; export type AssetInfo = { mint: string; };