UNPKG

airgap-coin-lib

Version:

The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.

10 lines (9 loc) 261 B
import { SignedTransaction } from './signed-transaction'; export interface SignedBitcoinTransaction extends SignedTransaction { from: string[]; to: string[]; amount: string; fee: string; accountIdentifier: string; transaction: string; }