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.

16 lines (15 loc) 386 B
import type { DecodedInstruction } from './registry.js'; export declare enum ATAInstruction { Create = 0, CreateIdempotent = 1 } interface ATAInstructionData { programId: string; data: Uint8Array; accounts: string[]; } /** * Main ATA decoder function */ export declare function decodeATAInstruction(instruction: ATAInstructionData): DecodedInstruction; export {};