From c07b3580e0bd0a3564330694001e4c6399143b10 Mon Sep 17 00:00:00 2001 From: Kristofer Date: Fri, 25 Oct 2024 21:02:42 +0200 Subject: [PATCH] Update dependencies --- src/backend/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backend/src/lib.rs b/src/backend/src/lib.rs index 7bf0f80..2b3054e 100644 --- a/src/backend/src/lib.rs +++ b/src/backend/src/lib.rs @@ -14,7 +14,7 @@ use ic_cdk::export_candid; // latest block number, it is quite likely that a new block gets created during the // time it takes for the RPC procider to execute the requests. fn get_rpc_service_sepolia() -> RpcService { - // Uncomment to use EVM RPC Canister + // Uncomment to use EVM RPC Canister instead of RPC proxy // RpcService::EthSepolia(EthSepoliaService::Alchemy) // Below proxy is intended for limited use with this demo, DO NOT use in a @@ -27,11 +27,11 @@ fn get_rpc_service_sepolia() -> RpcService { } fn get_rpc_service_base() -> RpcService { - // Uncomment to use EVM RPC Canister + // Uncomment to use EVM RPC Canister instead of RPC proxy // RpcService::BaseMainnet(L2MainnetService::Alchemy) RpcService::Custom(RpcApi { - url: "https://ic-alloy-evm-rpc-proxy.kristofer-977.workers.dev/eth-sepolia".to_string(), + url: "https://ic-alloy-evm-rpc-proxy.kristofer-977.workers.dev/base-mainnet".to_string(), headers: None, }) }