From ff3ff5d72fbeb3dac488652dd96383d5f7e6aeef Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Fri, 20 Oct 2023 11:58:50 -0700 Subject: [PATCH] remove stub script --- web3_proxy_cli/src/bin/curve_api_checks.rs | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 web3_proxy_cli/src/bin/curve_api_checks.rs diff --git a/web3_proxy_cli/src/bin/curve_api_checks.rs b/web3_proxy_cli/src/bin/curve_api_checks.rs deleted file mode 100644 index 6d29d29e..00000000 --- a/web3_proxy_cli/src/bin/curve_api_checks.rs +++ /dev/null @@ -1,9 +0,0 @@ -use web3_proxy::prelude::anyhow; - -fn main() -> anyhow::Result<()> { - // get curve-api and rpc endpoints from cli flags - // do simple checks for proxy version, blockNum, a simple balance call - // in parallel check all the curve api endpoints that we expect to pass. many require multiple chains that we don't yet run locally - - Ok(()) -}