Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
e5a1a17
feat: store token metadata (name, symbol, decimals) on first encounter
MartianGreed Feb 10, 2026
e03deae
refactor: use early returns instead of else branches
MartianGreed Feb 10, 2026
6ca1ac9
refactor: avoid intermediate String allocations in metadata decoding
MartianGreed Feb 11, 2026
64b61dd
refactor: use starknet crate for string decoding instead of custom fu…
MartianGreed Feb 11, 2026
592b0e7
feat: fetch and store totalSupply for ERC721/ERC1155
MartianGreed Feb 11, 2026
45f2998
chore: remove created_at/updated_at from token_metadata tables
MartianGreed Feb 11, 2026
af5b24d
feat: client fetches decimals from metadata to display correct amounts
MartianGreed Feb 11, 2026
0688f94
feat(client): add GetTokenMetadata for ERC721/ERC1155 in all clients
MartianGreed Feb 11, 2026
da89092
fix(client): fix base64 decoding for amounts and metadata messageType…
MartianGreed Feb 11, 2026
d71edea
fix(client): always fetch decimals for ERC20 transfer formatting
MartianGreed Feb 11, 2026
948dd1f
style: fix formatting (cargo fmt)
MartianGreed Feb 12, 2026
89ebfdd
fix: update generated proto files and fix clippy warnings
MartianGreed Feb 13, 2026
9e493af
fix abi extraction
glihm Feb 18, 2026
5ef544a
feat: async token URI fetching service with deduplication
MartianGreed Feb 11, 2026
2b8a3d0
improve: resolve_metadata aligned with dojoengine/torii patterns
MartianGreed Feb 11, 2026
ad6c5b6
fix: add missing serde_json dependency to torii-common
MartianGreed Feb 12, 2026
2444489
feat: add token_attributes table, generated protos, and clippy fixes
MartianGreed Feb 13, 2026
fae9009
fix: resolve CI failures on token-uri PR
MartianGreed Feb 12, 2026
fc8a745
Merge pull request #2 from MartianGreed/feat/token-uri
MartianGreed Feb 23, 2026
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 .github/workflows/claude-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ permissions:

jobs:
claude-code-review:
if: github.repository == 'dojoengine/torii-core'
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ flamegraph.svg
perf.data*

.claude-modified-files
.DS_Store
**/.DS_Store
205 changes: 205 additions & 0 deletions Cargo.lock

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

Loading
Loading