@dojima-wallet/connection
Version:
Initialise and connection for layer 1&2 blockchain
7 lines (6 loc) • 624 B
TypeScript
import { PoolData } from "./types";
import { StagenetInboundAddressResult, SwapAssetList, TestnetInboundAddressResult } from "@dojima-wallet/utils";
export declare function getTestnetTokenPoolData(hermesApiUrl: string, token: SwapAssetList): Promise<PoolData>;
export declare function getStagenetTokenPoolData(hermesApiUrl: string, token: SwapAssetList): Promise<PoolData>;
export declare function getTestnetInboundObject(hermesApiUrl: string, chain: string): Promise<TestnetInboundAddressResult>;
export declare function getStagenetInboundObject(hermesApiUrl: string, chain: string): Promise<StagenetInboundAddressResult>;