@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
33 lines • 972 B
JavaScript
import { getEnv } from "@ledgerhq/live-env";
export const tezosConfig = {
config_currency_tezos: {
type: "object",
default: {
status: {
type: "active",
features: [
{ id: "blockchain_txs", status: "active" },
{ id: "staking_txs", status: "active" },
],
},
baker: {
url: getEnv("API_TEZOS_BAKER"),
},
explorer: {
url: getEnv("API_TEZOS_TZKT_API"),
maxTxQuery: getEnv("TEZOS_MAX_TX_QUERIES"),
},
node: {
url: getEnv("API_TEZOS_NODE"),
},
fees: {
minGasLimit: 600,
minRevealGasLimit: 300,
minStorageLimit: 0,
minFees: 300,
minEstimatedFees: 300,
},
},
},
};
//# sourceMappingURL=config.js.map