@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.
18 lines (17 loc) • 571 B
TypeScript
/**
* Configuration management for the GorbchainSDK
*/
import type { GorbchainSDKConfig } from './types.js';
/**
* Get the default configuration for the GorbchainSDK
*
* @returns Default SDK configuration optimized for Gorbchain network
*/
export declare function getDefaultConfig(): GorbchainSDKConfig;
/**
* Validate a configuration object to ensure all required fields are present
*
* @param config - Configuration object to validate
* @throws {Error} If configuration is invalid
*/
export declare function validateConfig(config: GorbchainSDKConfig): void;