UNPKG

@dstoken-solana/rwa-token-sdk

Version:

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

19 lines 648 B
import { AnchorProvider } from "@coral-xyz/anchor"; import { type Keypair, type TransactionInstruction } from "@solana/web3.js"; /** Retrieves the provider used for interacting with the Solana blockchain. * @returns The initialized provider for interacting with the Solana blockchain. */ export declare const getProvider: () => AnchorProvider; export type IxReturn = { ixs: TransactionInstruction[]; signers: Keypair[]; }; /** Common args for all RWA instructions */ export type CommonArgs = { assetMint: string; payer: string; signer?: string; owner?: string; authority?: string; }; //# sourceMappingURL=index.d.ts.map