airgap-coin-lib
Version:
The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.
16 lines (15 loc) • 425 B
TypeScript
import { HexString } from './hex-string';
import { UnsignedTransaction } from './unsigned-transaction';
interface RawEthereumTransaction {
nonce: HexString;
gasPrice: HexString;
gasLimit: HexString;
to: HexString;
value: HexString;
chainId: number;
data: HexString;
}
export interface UnsignedEthereumTransaction extends UnsignedTransaction {
transaction: RawEthereumTransaction;
}
export {};