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

BACK2689 Implement remaining queries from tdd #45

Merged
merged 5 commits into from
Apr 22, 2024
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
58 changes: 58 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ sqlx = { version = "0.7.4", features = [
"sqlite",
"postgres",
"any",
"chrono",
] }
once_cell = "1.19.0"
rand = "0.8.5"
Expand Down Expand Up @@ -76,6 +77,8 @@ alloy-core = { git = "https://github.com/alloy-rs/core", rev = "7574bfc" }
alloy-sol-types = { git = "https://github.com/alloy-rs/core", rev = "7574bfc", features = ["eip712-serde"] }
alloy-primitives = { git = "https://github.com/alloy-rs/core", rev = "7574bfc", features = ["serde"] }
alloy-sol-macro = { git = "https://github.com/alloy-rs/core", rev = "7574bfc", features = ["json"] }
chrono = { version = "0.4.38", features = ["serde"] }



[patch.crates-io]
Expand Down
1 change: 1 addition & 0 deletions migrations/20240313181116_premints.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ CREATE TABLE IF NOT EXISTS premints
token_uri TEXT,
json JSONB NOT NULL,
seen_on_chain BOOLEAN NOT NULL DEFAULT false,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (kind, id)
)
Loading
Loading