@ledgerhq/coin-hedera
Version:
Ledger Hedera Coin integration
37 lines (28 loc) • 731 B
text/typescript
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;
};
export type HederaOperationExtraRaw = {
consensusTimestamp?: string;
};