From a33477382004e0f2553ebec5f3968d83565c33a5 Mon Sep 17 00:00:00 2001 From: Srdjan S Date: Mon, 13 Mar 2023 17:45:29 +0100 Subject: [PATCH] Fix lotus config --- src/api/ctx/lotus/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/ctx/lotus/index.ts b/src/api/ctx/lotus/index.ts index 0ccd4edd..6e906643 100644 --- a/src/api/ctx/lotus/index.ts +++ b/src/api/ctx/lotus/index.ts @@ -8,7 +8,7 @@ export type Lotus = Record; export const initLotus = (config: APIConfig["lotus"]): Lotus => { return { - [Network.Mainnet]: getLotusClient(config.wallaby), + [Network.Mainnet]: getLotusClient(config.mainnet), [Network.HyperSpace]: getLotusClient(config.hyperspace), }; };