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(ark-metadata): refactor metadata crate #90

Merged
merged 48 commits into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
05cd921
feat: wip
remiroyc Sep 13, 2023
febb0a7
fix: parse long strings
remiroyc Sep 13, 2023
d8f065d
feat: remove ark db
remiroyc Sep 13, 2023
e2de57e
feat: test wip
remiroyc Sep 13, 2023
5f0d2b4
feat: metadata tests
remiroyc Sep 14, 2023
bcb1f54
feat: add tests
remiroyc Sep 15, 2023
e4073a9
ci: update workflow
remiroyc Sep 15, 2023
5b2dc7a
refactor(ark-metadata): move cairo string parser
remiroyc Sep 15, 2023
6c762e7
fix: starknet client
remiroyc Sep 15, 2023
02cfa7d
fix: remove ark-core lib
remiroyc Sep 15, 2023
14bab15
fix: tests
remiroyc Sep 15, 2023
898261e
feat(ark-metadata): use storage
remiroyc Sep 15, 2023
2bf7bec
feat: errors
remiroyc Sep 15, 2023
331e163
feat: errors
remiroyc Sep 15, 2023
ef725b7
feat(ark-metadata): fetch metadata
remiroyc Sep 18, 2023
393b7eb
feat: wip
remiroyc Sep 19, 2023
2250245
fix: token metadata
remiroyc Sep 19, 2023
b0dec73
feat: add test
remiroyc Sep 19, 2023
07359db
feat: remove main.rs
remiroyc Sep 19, 2023
25fa46e
feat: file_manager (wip)
remiroyc Sep 19, 2023
8804c54
fix: file manager
remiroyc Sep 19, 2023
821e746
feat: add test
remiroyc Sep 20, 2023
4d3ad9a
refactor: remove useless comments
remiroyc Sep 20, 2023
5a37aee
refactor: fmt
remiroyc Sep 20, 2023
5558066
fix: clippy issues
remiroyc Sep 20, 2023
11c0f36
fix: remove block_manager
remiroyc Sep 20, 2023
10a947a
refactor: remove main.rs
remiroyc Sep 20, 2023
5183138
chore: use fmt to format files
remiroyc Sep 20, 2023
523e478
fix: clippy warnings
remiroyc Sep 20, 2023
9ae3f49
fix: review fixes
remiroyc Sep 20, 2023
4e3f33b
fix(ark-metadata): remove force_refresh parameter
remiroyc Sep 20, 2023
5d52473
refactor: cargo fmt
remiroyc Sep 20, 2023
61cac46
feat(ark-metadata): add refresh_collection_token_metadata
remiroyc Sep 21, 2023
d452fba
feat(ark-metadata): add test_refresh_collection_token_metadata
remiroyc Sep 21, 2023
801bf71
feat: restore clippy.sh
remiroyc Sep 21, 2023
db13565
fix: cargo fmt
remiroyc Sep 21, 2023
312efe1
refactor: impl storage trait
remiroyc Sep 21, 2023
05074ae
fix: cargo fmt
remiroyc Sep 21, 2023
5e4ef38
fix: clippy issue
remiroyc Sep 21, 2023
84e0b00
doc(ark-metadata): add README
remiroyc Sep 22, 2023
877d065
Update README.md
remiroyc Sep 22, 2023
4862575
Update README.md
remiroyc Sep 22, 2023
ee4b441
Update README.md
remiroyc Sep 22, 2023
06dd8e9
Update README.md
remiroyc Sep 22, 2023
07112ca
Update README.md
remiroyc Sep 22, 2023
274bea1
Update README.md
remiroyc Sep 22, 2023
e814213
refactor: remove metadata types from storage
remiroyc Sep 22, 2023
7d52197
refactor: merge metadata and utils files
remiroyc Sep 22, 2023
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
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ ARK_COLLECTIONS_TABLE_NAME=
ARK_TOKENS_TABLE_NAME=
ARK_BLOCKS_TABLE_NAME=
ARK_TOKENS_OWNERS_TABLE_NAME=

IPFS_GATEWAY_URI=
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/target

crates/ark-metadata/**/tmp/
crates/ark-metadata/images/**/*

.env
.aws
.aws
4 changes: 1 addition & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
{
"rust-analyzer.linkedProjects": [
"./Cargo.toml",
]
"rust-analyzer.linkedProjects": ["./Cargo.toml"]
}
Loading
Loading