@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
29 lines • 800 B
JavaScript
import { getEnv } from "@ledgerhq/live-env";
export const tezosConfig = {
config_currency_tezos: {
type: "object",
default: {
status: {
type: "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