@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
20 lines (18 loc) • 528 B
text/typescript
import { CardanoCoinConfig } from "@ledgerhq/coin-cardano/config";
import { CurrencyLiveConfigDefinition } from "../../config";
export const cardanoConfig: CurrencyLiveConfigDefinition = {
config_currency_cardano: {
type: "object",
default: {
status: {
type: "active",
features: [
{ id: "blockchain_txs", status: "active" },
{ id: "staking_txs", status: "active" },
],
},
maxFeesWarning: 5e6,
maxFeesError: 10e6,
} as CardanoCoinConfig,
},
};