UNPKG

@ledgerhq/coin-hedera

Version:
15 lines (12 loc) 327 B
import type { StringMemo, TxDataNotSupported } from "@ledgerhq/coin-module-framework/api/types"; export type HederaMemo = StringMemo; export type HederaTxData = | TxDataNotSupported | { type: "erc20"; gasLimit: bigint; } | { type: "staking"; stakingNodeId: number | null | undefined; };