counterstake-sdk
Version:
Counterstake SDK for integrating cross-chain transactions in your dapps
12 lines (11 loc) • 372 B
TypeScript
export function getBridges(...args: any[]): Promise<any>;
/**
* Query the status of a transfer you previously sent
* @memberOf counterstake-sdk
* @param {string} txid
* @param {boolean} testnet
* @return {Promise<Object>}
* @example
* const transfer = await getTransfer(txid, testnet);
*/
export function getTransfer(txid: string, testnet: boolean): Promise<any>;