UNPKG

@thorwallet/xchain-litecoin

Version:

Custom Litecoin client and utilities used by XChainJS clients

10 lines (9 loc) 305 B
import { BroadcastTxParams } from './types/common'; /** * Broadcast transaction. * * @see https://developer.bitcoin.org/reference/rpc/sendrawtransaction.html * * @returns {string} Transaction ID. */ export declare const broadcastTx: ({ txHex, auth, nodeUrl }: BroadcastTxParams) => Promise<string>;