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.

19 lines (18 loc) 595 B
/** * Account data decoding utilities for the GorbchainSDK * * This module contains functions for decoding various types of account data * from the blockchain, including token accounts, mint accounts, and metadata. */ /** * Decode token account data */ export declare function decodeTokenAccount(data: any): Promise<any>; /** * Decode mint account data */ export declare function decodeMintAccount(data: any): Promise<any>; /** * Decode account data based on account type */ export declare function decodeAccountData(account: string, accountInfo: any, isMint: boolean): Promise<any>;