@sei-js/cosmjs
Version:
TypeScript library for CosmJS interactions on the Sei blockchain
10 lines (9 loc) • 625 B
TypeScript
import type { ChainConfig, ChainInfo, Currency } from './types';
/**
* Returns a default chain configuration object with overrides from the supplied ChainInfo and any additional currencies.
* @param chainInfo A ChainInfo object. Fields from this object will override the default chain info.
* @param currencies A list of Currency objects to add to the created chain configuration.
* @returns A chain configuration object with overrides from ChainInfo and any additional currencies.
* @category Wallets (Advanced)
*/
export declare const getChainSuggest: (chainInfo?: ChainInfo, currencies?: Currency[]) => ChainConfig;