UNPKG

@airgap/etherlink

Version:

The @airgap/etherlink package is an implementation of the ICoinProtocol interface from @airgap/coinlib-core.

4 lines (3 loc) 299 B
import { SignedTransaction, UnsignedTransaction } from '../types/transaction'; export declare function newUnsignedTransaction<T extends UnsignedTransaction>(transaction: Omit<T, 'type'>): T; export declare function newSignedTransaction<T extends SignedTransaction>(transaction: Omit<T, 'type'>): T;