From f12d8564fa6a16b405cec454c14a63a6d694afdc Mon Sep 17 00:00:00 2001 From: Artem Date: Sun, 24 Mar 2024 13:20:09 +0100 Subject: [PATCH] Remove dailynet --- build/api/entrypoint.sh | 3 +-- build/indexer/entrypoint.sh | 3 +-- configs/testnets.yml | 12 ------------ 3 files changed, 2 insertions(+), 16 deletions(-) diff --git a/build/api/entrypoint.sh b/build/api/entrypoint.sh index aabeee5e1..afa568477 100644 --- a/build/api/entrypoint.sh +++ b/build/api/entrypoint.sh @@ -2,6 +2,5 @@ curl https://teztnets.xyz/teztnets.json > /teztnets.json mondaynet_rpc=$(cat /teztnets.json | jq '. | to_entries | map(select(.key | startswith("monday"))) | map(.value.rpc_url)[0]') -dailynet_rpc=$(cat /teztnets.json | jq '. | to_entries | map(select(.key | startswith("daily"))) | map(.value.rpc_url)[0]') -DAILYNET_RPC=$dailynet_rpc MONDAYNET_RPC=$mondaynet_rpc /go/bin/api \ No newline at end of file +MONDAYNET_RPC=$mondaynet_rpc /go/bin/api \ No newline at end of file diff --git a/build/indexer/entrypoint.sh b/build/indexer/entrypoint.sh index 01766da1b..31a6bd108 100644 --- a/build/indexer/entrypoint.sh +++ b/build/indexer/entrypoint.sh @@ -2,6 +2,5 @@ curl https://teztnets.xyz/teztnets.json > /teztnets.json mondaynet_rpc=$(cat /teztnets.json | jq '. | to_entries | map(select(.key | startswith("monday"))) | map(.value.rpc_url)[0]') -dailynet_rpc=$(cat /teztnets.json | jq '. | to_entries | map(select(.key | startswith("daily"))) | map(.value.rpc_url)[0]') -DAILYNET_RPC=$dailynet_rpc MONDAYNET_RPC=$mondaynet_rpc /go/bin/indexer \ No newline at end of file +MONDAYNET_RPC=$mondaynet_rpc /go/bin/indexer \ No newline at end of file diff --git a/configs/testnets.yml b/configs/testnets.yml index 92a4848eb..ce61c8013 100644 --- a/configs/testnets.yml +++ b/configs/testnets.yml @@ -1,8 +1,4 @@ rpc: - dailynet: - uri: ${DAILYNET_RPC} - timeout: 20 - requests_per_second: 15 weeklynet: uri: ${WEEKLYNET_RPC} timeout: 20 @@ -47,21 +43,14 @@ api: mempool_enabled: false sandbox_mode: false rpc: - dailynet: ${DAILYNET_RPC} weeklynet: ${WEEKLYNET_RPC} networks: - - dailynet - weeklynet indexer: project_name: indexer sentry_enabled: false networks: - dailynet: - receiver_threads: 5 - periodic: - info_base_url: https://teztnets.xyz - schedule: "0 5 0 * * *" # at 00:05:00 every day weeklynet: receiver_threads: 10 periodic: @@ -70,5 +59,4 @@ indexer: scripts: networks: - - dailynet - weeklynet