Skip to content

Commit

Permalink
Merge pull request #57 from starknet-id/feat/add_orbiter_quest
Browse files Browse the repository at this point in the history
fix: NFT uri index
  • Loading branch information
Th0rgal authored Aug 3, 2023
2 parents febc77c + dc2a69d commit 1764c41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/endpoints/quests/orbiter/claimable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use std::sync::Arc;
const QUEST_ID: u32 = 8;
const TASK_IDS: &[u32] = &[32, 33, 34, 35, 36];
const LAST_TASK: u32 = TASK_IDS[4];
const NFT_LEVEL: u32 = 10;
const NFT_LEVEL: u32 = 13;

#[derive(Deserialize)]
pub struct ClaimableQuery {
Expand Down
2 changes: 1 addition & 1 deletion src/endpoints/quests/uri.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ pub async fn handler(
(StatusCode::OK, Json(response)).into_response()
}

Some(10) => (
Some(13) => (
StatusCode::OK,
Json(TokenURI {
name: "StarkOrb".into(),
Expand Down

0 comments on commit 1764c41

Please sign in to comment.