diff --git a/bots/.envrc_sample b/bots/.envrc_sample index e6608428..1ee2372d 100644 --- a/bots/.envrc_sample +++ b/bots/.envrc_sample @@ -9,8 +9,8 @@ export TYPEORM_LOGGING=false export TYPEORM_ENTITIES=src/orm/*Entity.ts export USE_LOG_FILE=false -export EXECUTOR_PORT=3000 -export BATCH_PORT=3001 +export EXECUTOR_PORT=5000 +export BATCH_PORT=5001 export L1_LCD_URI=http://localhost:1317 export L1_RPC_URI=http://localhost:26657 diff --git a/bots/src/config.ts b/bots/src/config.ts index 96992230..ae6e697d 100644 --- a/bots/src/config.ts +++ b/bots/src/config.ts @@ -21,8 +21,8 @@ interface ConfigInterface { } const defaultConfig = { - EXECUTOR_PORT: '3000', - BATCH_PORT: '3001', + EXECUTOR_PORT: '5000', + BATCH_PORT: '5001', L1_LCD_URI: 'https://stone-rest.initia.tech', L1_RPC_URI: 'https://stone-rpc.initia.tech', L2_LCD_URI: 'https://minitia-rest.initia.tech',