Skip to content

Commit

Permalink
fix: briq api url
Browse files Browse the repository at this point in the history
  • Loading branch information
irisdv committed Jan 24, 2024
1 parent 7c4765a commit 9ab0500
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/endpoints/quests/element/briq/verify_own_briq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub async fn handler(
}

let url = format!(
"https://api.briq.construction/v1/user/data/starknet-mainnet/{}",
"https://api.briq.construction/v1/user/data/starknet-mainnet-dojo/{}",
to_hex(query.addr)
);
match fetch_json_from_url(url).await {
Expand All @@ -41,7 +41,7 @@ pub async fn handler(
for set in sets_array.iter() {
if let serde_json::Value::String(set_str) = set {
let url = format!(
"https://api.briq.construction/v1/metadata/starknet-mainnet/{}",
"https://api.briq.construction/v1/metadata/starknet-mainnet-dojo/{}",
set_str
);
match fetch_json_from_url(url).await {
Expand Down

0 comments on commit 9ab0500

Please sign in to comment.