@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
21 lines (18 loc) • 493 B
text/typescript
import { KNOWN_JETTONS } from "@ton-community/ton-ledger";
import { CurrencyLiveConfigDefinition } from "../../config";
const tonConfig: CurrencyLiveConfigDefinition = {
config_currency_ton: {
type: "object",
default: {
status: {
type: "active",
features: [{ id: "blockchain_txs", status: "active" }],
},
infra: {
API_TON_ENDPOINT: "https://ton.coin.ledger.com/api/v3",
KNOWN_JETTONS,
},
},
},
};
export { tonConfig };