UNPKG

@bit-gpt/h402

Version:

BitGPT's 402 open protocol for blockchain-native payments

16 lines 563 B
import { type Chain } from "viem/chains"; type ChainConfig = { chain: Chain; rpcEnvVariable: string; nativeTokenDecimals: number; nativeTokenSymbol: string; }; type ChainRegistry = { readonly [chainId: string]: ChainConfig; }; declare const chains: ChainRegistry; declare function getChain(chainId: string): Chain; declare function getRPCEnvVariable(chainId: string): string; declare function isChainSupported(chainId: string): boolean; export { chains, getChain, getRPCEnvVariable, isChainSupported }; //# sourceMappingURL=chainUtils.d.ts.map