UNPKG

@ledgerhq/coin-hedera

Version:
34 lines (26 loc) 682 B
import type { TransactionCommon, TransactionCommonRaw, TransactionStatusCommon, TransactionStatusCommonRaw, } from "@ledgerhq/types-live"; export type NetworkInfo = { family: "hedera"; }; export type NetworkInfoRaw = { family: "hedera"; }; export type Transaction = TransactionCommon & { family: "hedera"; memo?: string | undefined; }; export type TransactionRaw = TransactionCommonRaw & { family: "hedera"; memo?: string | undefined; }; export type TransactionStatus = TransactionStatusCommon; export type TransactionStatusRaw = TransactionStatusCommonRaw; export type HederaOperationExtra = { consensusTimestamp?: string; transactionId?: string; };