@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.
10 lines (9 loc) • 322 B
TypeScript
import type { DecoderRegistry, DecodedInstruction } from '../decoders/registry.js';
export declare function getAndDecodeTransaction({ signature, registry, connection }: {
signature: string;
registry: DecoderRegistry;
connection: unknown;
}): Promise<{
decoded: DecodedInstruction[];
meta: unknown;
}>;