UNPKG

@thorwallet/xchain-bitcoin

Version:

Custom Bitcoin client and utilities used by XChainJS clients

11 lines (10 loc) 339 B
import { BroadcastTxParams } from './types/common'; /** * Broadcast transaction. * * @see https://github.com/Blockstream/esplora/blob/master/API.md#post-tx * * @param {string} params * @returns {string} Transaction ID. */ export declare const broadcastTx: ({ network, txHex, blockstreamUrl }: BroadcastTxParams) => Promise<string>;