Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add img_urls in fetch_buildings endpoint #82

Merged
merged 3 commits into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config.template.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ contract = "0x0541b5dd5fae206ceccaf4eeb0642e4c04d456c5bc296eab047c9414bdad4f09"

[quizzes.ekubo]
name = "Ekubo Quiz"
desc = "Challenge your knowledge of Ekubo with our quiz for a chance to secure an exclusive NFT as your reward."
desc = "Challenge your knowledge of Ekubo with our quiz for a chance to secure an exclusive NFT as your reward"
intro = "Welcome to the Ekubo quiz. Let's begin. We hope you're as concentrated as the concentrated liquidity that Ekubo provides. Good Luck!"

[[quizzes.ekubo.questions]]
Expand All @@ -82,7 +82,7 @@ correct_answers = [*]
[[quizzes.ekubo.questions]]
kind = "text_choice"
layout = "default"
question = "What is concentrated liquidity?"
question = "What benefits come with concentrated liquidity?"
options = [
"It limits liquidity provider choices",
"It increases transaction fees",
Expand Down
1 change: 1 addition & 0 deletions src/models.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,5 @@ pub_struct!(Debug, Deserialize, Serialize; BuildingDocument {
description: String,
entity: String,
level: u32,
img_url: String,
});