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) 469 B
import * as bitcoin from "../index"; import { SignTxParams, VerifyMessageParams } from "@okxweb3/coin-base"; import { BtcWallet } from "./BtcWallet"; export declare const dogeCoin: bitcoin.Network; export declare class DogeWallet extends BtcWallet { network(): bitcoin.networks.Network; signTransaction(param: SignTxParams): Promise<any>; signMessage(param: SignTxParams): Promise<string>; verifyMessage(param: VerifyMessageParams): Promise<boolean>; }