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(torii): index whitelisted erc20/erc721 #2494

Merged
merged 23 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
474be1d
feat(torii): index whitelisted erc20/erc721
lambda-0x Sep 13, 2024
c7eb187
refactor(torii): abstract out how to format felts to avoid bugs
lambda-0x Sep 18, 2024
cf75a4d
feat(torii): implement graphql for erc
lambda-0x Sep 19, 2024
fded902
opt(torii): reuse token metadata from db for ERC721
lambda-0x Sep 19, 2024
1205a4b
opt(torii): fetch block timestamp in parallel
lambda-0x Sep 19, 2024
7757619
refactor(torii/processor): use contract type info to select processor
lambda-0x Sep 19, 2024
3cc4907
feat(torii): add a script to verify data
lambda-0x Sep 24, 2024
bdc0c3c
Merge branch 'main' into feat/torii/ercs
lambda-0x Sep 27, 2024
77fe36e
refactor(torii): inmemory cache for erc and handle contract type at r…
lambda-0x Sep 30, 2024
afcb5fe
adapt script to verify erc721 balances
lambda-0x Oct 1, 2024
de20ee6
refactor(torii): move cache into Sql struct
lambda-0x Oct 2, 2024
1f4f92c
improve compare script
lambda-0x Oct 2, 2024
03f94d8
refactor(torii): load token_id into cache on startup
lambda-0x Oct 2, 2024
dd49dfc
execute queue when new token is registered
lambda-0x Oct 2, 2024
0958c4d
Merge branch 'main' into feat/torii/ercs
lambda-0x Oct 2, 2024
2972ae3
Merge branch 'main' into feat/torii/ercs
lambda-0x Oct 3, 2024
21aeb01
Merge branch 'main' into feat/torii/ercs
lambda-0x Oct 3, 2024
7768422
move diff apply logic to executor
lambda-0x Oct 3, 2024
3721273
add more tests
lambda-0x Oct 7, 2024
20d1065
simplify implementation of i256 type
lambda-0x Oct 7, 2024
20d7edb
Merge branch 'main' into feat/torii/ercs
lambda-0x Oct 9, 2024
bb356e0
send query only when required
lambda-0x Oct 9, 2024
c12c279
update script to compare erc_transfers table properly
lambda-0x Oct 9, 2024
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ justfile
spawn-and-move-db
types-test-db
examples/spawn-and-move/manifests/saya/**
**/*.log

artifacts/
55 changes: 35 additions & 20 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ members = [
"crates/torii/server",
"crates/torii/types-test",
"examples/spawn-and-move",
"scripts/verify_db_balances",
"xtask/generate-test-db",
]

Expand Down
Loading
Loading