From 784368aae1201715c91e621584e92c22cd69dbe7 Mon Sep 17 00:00:00 2001 From: Julian Gruber Date: Fri, 5 Jan 2024 06:20:50 -0800 Subject: [PATCH] Switch to chain.love, since glif will require auth (#71) --- contract-utils/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contract-utils/src/main.rs b/contract-utils/src/main.rs index b9410ff..bf9a896 100644 --- a/contract-utils/src/main.rs +++ b/contract-utils/src/main.rs @@ -8,7 +8,7 @@ use std::sync::Arc; use std::{path::PathBuf, str::FromStr}; const DEPLOY_METHOD: DeployMethod = DeployMethod::Ledger; -const RPC_URL: &str = "https://api.node.glif.io/rpc/v1"; +const RPC_URL: &str = "https://api.chain.love/rpc/v1"; const SECRETS_PATH: &str = "../secrets/mnemonic"; const ABI_WRITE_PATH: &str = "../Abi.json";