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