From 94bf95c8419bf2eaafb49f765c6c2960aa379719 Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Wed, 27 Mar 2024 08:10:34 +0000 Subject: [PATCH 1/2] fix broken rpc link --- examples/providers/examples/http.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/providers/examples/http.rs b/examples/providers/examples/http.rs index fcd42b2f..2d94ed57 100644 --- a/examples/providers/examples/http.rs +++ b/examples/providers/examples/http.rs @@ -10,7 +10,7 @@ use eyre::Result; #[tokio::main] async fn main() -> Result<()> { // Setup the HTTP transport which is consumed by the RPC client - let rpc_url = "https://eth.llamarpc.com".parse().unwrap(); + let rpc_url = "https://eth.merkle.io".parse()?; // Create the RPC client let rpc_client = RpcClient::new_http(rpc_url); From 1013a18bebabe2825312878cc110229b604bd4e9 Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Wed, 27 Mar 2024 08:11:33 +0000 Subject: [PATCH 2/2] update names --- .github/workflows/dependencies.yml | 2 +- .github/workflows/integration.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 08de92f3..faf4df77 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -1,6 +1,6 @@ # Runs weeky `cargo update` to keep dependencies current. -name: Update dependencies +name: Dependencies on: schedule: diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 542d9e88..f2c9881f 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -1,6 +1,6 @@ # Runs Alloy integration tests daily to ensure compatibility with the latest version of Alloy. -name: Alloy integration test +name: Integration on: schedule: