UNPKG

@dojima-wallet/connection

Version:

Initialise and connection for layer 1&2 blockchain

15 lines (14 loc) 414 B
import { Network } from "../../client"; export type ClientUrls = Record<Network, string>; export type ExplorerUrl = Record<Network, string>; export type ExplorerUrls = { root: ExplorerUrl; tx: ExplorerUrl; address: ExplorerUrl; }; export type ChainId = string; export type ChainIds = Record<Network, ChainId>; export type CosmosClientParams = { clientUrls?: ClientUrls; chainIds?: ChainIds; };