@ledgerhq/coin-hedera
Version:
Ledger Hedera Coin integration
16 lines • 629 B
TypeScript
import { type CoinConfig, type CurrencyConfig } from "@ledgerhq/coin-module-framework/config";
export type HederaConfig = {
useHgraphForErc20: boolean;
/**
* When true, the transaction valid-start time is sourced from the latest
* network block instead of the local machine clock.
*/
useNetworkTimestamp: boolean;
};
export type HederaCoinConfig = CurrencyConfig & HederaConfig;
declare const coinConfig: {
setCoinConfig: (config: CoinConfig<HederaCoinConfig>) => void;
getCoinConfig: (currencyId?: string) => HederaCoinConfig;
};
export default coinConfig;
//# sourceMappingURL=config.d.ts.map