@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
30 lines (28 loc) • 685 B
text/typescript
import { ConfigInfo } from "@ledgerhq/live-config/LiveConfig";
import { getEnv } from "@ledgerhq/live-env";
export const suiConfig: Record<string, ConfigInfo> = {
config_currency_sui: {
type: "object",
default: {
status: {
type: "active",
features: [{ id: "blockchain_txs", status: "active" }],
},
node: {
url: getEnv("API_SUI_NODE_PROXY"),
},
},
},
config_currency_sui_testnet: {
type: "object",
default: {
status: {
type: "active",
features: [{ id: "blockchain_txs", status: "active" }],
},
node: {
url: getEnv("API_SUI_TESTNET_NODE_PROXY"),
},
},
},
};