From 3badc3d27e5ccaac85ecfe0043e3dc011c5ff965 Mon Sep 17 00:00:00 2001 From: Thomas Marchand Date: Wed, 1 May 2024 16:01:03 +0100 Subject: [PATCH] fix: 1 letter domain name --- bot/src/starknetid_utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/src/starknetid_utils.rs b/bot/src/starknetid_utils.rs index 86ad4d5..67466d1 100644 --- a/bot/src/starknetid_utils.rs +++ b/bot/src/starknetid_utils.rs @@ -11,7 +11,7 @@ use std::str::FromStr; use crate::{config::Config, starknet_utils::create_jsonrpc_client}; lazy_static::lazy_static! { - static ref PRICE_DOMAIN_LEN_1: BigInt = BigInt::from_u128(534246575342466 * 365).unwrap(); + static ref PRICE_DOMAIN_LEN_1: BigInt = BigInt::from_u128(801369863013699 * 365).unwrap(); static ref PRICE_DOMAIN_LEN_2: BigInt = BigInt::from_u128(657534246575343 * 365).unwrap(); static ref PRICE_DOMAIN_LEN_3: BigInt = BigInt::from_u128(160000000000000 * 365).unwrap(); static ref PRICE_DOMAIN_LEN_4: BigInt = BigInt::from_u128(36986301369863 * 365).unwrap();