navi-sdk
Version:
The NAVI SDK Client provides tools for interacting with the Sui blockchain networks, designed for handling transactions, accounts, and smart contracts efficiently. This documentation covers the setup, account management, and transaction handling within th
9 lines (8 loc) • 348 B
TypeScript
import { type SuiTransport, type SuiTransportRequestOptions } from "@mysten/sui/client";
export declare class NAVIHttpTransport implements SuiTransport {
requestId: number;
rpcUrl: string;
constructor(rpcUrl: string);
request<T>(input: SuiTransportRequestOptions): Promise<T>;
subscribe<T>(): Promise<() => Promise<boolean>>;
}