UNPKG

@okxweb3/coin-bitcoin

Version:

@okxweb3/coin-bitcoin is a Bitcoin SDK for building Web3 wallets and applications. It supports BTC, BSV, DOGE, LTC, and TBTC, enabling private key management, transaction signing, address generation, and inscriptions like BRC-20, Runes, CAT, and Atomicals

11 lines (10 loc) 552 B
import { GetDerivedPathParam, MpcTransactionParam, SignTxParams } from "@okxweb3/coin-base"; import { BtcWallet } from "./BtcWallet"; export declare class BsvWallet extends BtcWallet { getDerivedPath(param: GetDerivedPathParam): Promise<any>; signTransaction(param: SignTxParams): Promise<any>; estimateFee(param: SignTxParams): Promise<number>; getMPCRawTransaction(param: SignTxParams): Promise<any>; getMPCTransaction(param: MpcTransactionParam): Promise<any>; getHardWareRawTransaction(param: SignTxParams): Promise<any>; }