@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.
17 lines (16 loc) • 607 B
TypeScript
/**
* Decoder registry setup utilities for the GorbchainSDK
*
* This module contains functions for setting up and configuring
* the decoder registry with various blockchain program decoders.
*/
import { DecoderRegistry } from '../decoders/registry.js';
import type { GorbchainSDKConfig } from '../sdk/types.js';
/**
* Create and configure a decoder registry with all supported program decoders
*/
export declare function createDecoderRegistry(config: GorbchainSDKConfig): DecoderRegistry;
/**
* Get program name from program ID
*/
export declare function getProgramName(programId: string): string;