@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
25 lines (22 loc) • 690 B
text/typescript
import { CurrencyLiveConfigDefinition } from "../../config";
const nearConfig: CurrencyLiveConfigDefinition = {
config_currency_near: {
type: "object",
default: {
status: {
type: "active",
features: [
{ id: "blockchain_txs", status: "active" },
{ id: "staking_txs", status: "active" },
],
},
infra: {
API_NEAR_PRIVATE_NODE: "https://near.coin.ledger.com/node",
API_NEAR_PUBLIC_NODE: "https://rpc.mainnet.near.org",
API_NEAR_INDEXER: "https://near.coin.ledger.com/indexer",
API_NEARBLOCKS_INDEXER: "https://near-indexer.coin.ledger.com",
},
},
},
};
export { nearConfig };