From 9d7d6c2b22a2bb8cf1ec46dd6d38b7793aaa231e Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Mon, 28 Nov 2022 16:37:15 +0000 Subject: [PATCH] fix sign in url --- web3_proxy/src/frontend/users.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web3_proxy/src/frontend/users.rs b/web3_proxy/src/frontend/users.rs index 1099c3b0..4cd4ab1f 100644 --- a/web3_proxy/src/frontend/users.rs +++ b/web3_proxy/src/frontend/users.rs @@ -87,11 +87,11 @@ pub async fn user_login_get( // TODO: get most of these from the app config let message = Message { - // TODO: should domain be llamanodes, or llamarpc, or the subdomain of llamarpc? - domain: "staging.llamanodes.com".parse().unwrap(), + // TODO: get this from app config + domain: "llamanodes.com".parse().unwrap(), address: user_address.to_fixed_bytes(), statement: Some("🦙🦙🦙🦙🦙".to_string()), - uri: "https://staging.llamanodes.com/".parse().unwrap(), + uri: "https://llamanodes.com/".parse().unwrap(), version: siwe::Version::V1, chain_id: 1, expiration_time: Some(expiration_time.into()),