UNPKG

@bsv/wallet-toolbox

Version:

BRC100 conforming wallet, wallet storage and wallet signer components

14 lines 813 B
import { Beef, Transaction } from '@bsv/sdk'; import { TableTransaction } from '../storage/schema/tables'; import { StorageAdminStats, StorageProvider } from '../storage/StorageProvider'; export declare abstract class Format { static alignLeft(v: string | number, fixedWidth: number): string; static alignRight(v: string | number, fixedWidth: number): string; static alignMiddle(v: string | number, fixedWidth: number): string; static satoshis(s: number): string; static toLogStringTransaction(tx: Transaction): string; static toLogStringBeefTxid(beef: Beef, txid: string): string; static toLogStringTableTransaction(tx: TableTransaction, storage: StorageProvider): Promise<string>; static toLogStringAdminStats(s: StorageAdminStats): string; } //# sourceMappingURL=Format.d.ts.map