UNPKG

@gorbchain-xyz/chaindecode

Version:

GorbchainSDK V1.3+ - Complete Solana development toolkit with advanced cryptography, messaging, and collaboration features. Build secure applications with blockchain, DeFi, and end-to-end encryption.

13 lines (12 loc) 452 B
import type { DecodedMintAccount } from './decodeMintAccount.js'; export interface ProgramAccountInfo { pubkey: string; owner: string; lamports: number; executable: boolean; rentEpoch: number; data: string; raw?: Uint8Array; } export declare function fetchProgramAccount(address: string): Promise<ProgramAccountInfo | null>; export declare function fetchMintAccountFromRpc(mint: string): Promise<DecodedMintAccount | null>;