@myronkoch/andromeda-mcp-server
Version:
Production-ready MCP server for Andromeda blockchain - v2.0 with 98% functionality, fixed core bugs, and complete ADO ecosystem support
21 lines • 800 B
TypeScript
import { GasPrice } from '@cosmjs/stargate';
export interface NetworkConfig {
chainId: string;
rpcEndpoint: string;
restEndpoint: string;
graphqlEndpoint: string;
kernelAddress: string;
adodbAddress?: string;
defaultDenom: string;
gasPrice: string;
}
export declare const NETWORKS: Record<string, NetworkConfig>;
export declare const DEFAULT_ANDROMEDA_NETWORK = "testnet";
export declare const SELECTED_NETWORK: string;
export declare const NETWORK_CONFIG: NetworkConfig;
export declare const ANDROMEDA_RPC_ENDPOINT: string;
export declare const ANDROMEDA_REST_ENDPOINT: string;
export declare const ANDROMEDA_GRAPHQL_ENDPOINT: string;
export declare const KERNEL_ADDRESS: string;
export declare const DEFAULT_GAS_PRICE: GasPrice;
//# sourceMappingURL=network.d.ts.map