From f7a23e6acdd0df20d07fb7b792d83577956203d2 Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Wed, 14 Aug 2024 17:48:21 +0530 Subject: [PATCH] Add default endpoints --- cli/map-subscribers-to-participants.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/map-subscribers-to-participants.ts b/cli/map-subscribers-to-participants.ts index f8fb30c..44f2708 100644 --- a/cli/map-subscribers-to-participants.ts +++ b/cli/map-subscribers-to-participants.ts @@ -12,6 +12,8 @@ import { Registry } from '@cerc-io/registry-sdk'; dotenv.config(); +const LACONICD_GQL_ENDPOINT = process.env.LACONICD_GQL_ENDPOINT || 'https://laconicd.laconic.com/api'; +const LACONICD_RPC_ENDPOINT = process.env.LACONICD_RPC_ENDPOINT || 'https://laconicd.laconic.com'; const LACONICD_CHAIN_ID = process.env.LACONICD_CHAIN_ID || 'laconic_9000-1'; async function main(): Promise {