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

ELEN6883 Topic 2 Project #22

Open
wants to merge 44 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
2796c7b
basic local opeasea + NFT setup
rz2526 May 4, 2023
4d66633
Initialize Python Project
Zero-Tang May 4, 2023
976cd37
proxy works
rz2526 May 5, 2023
fca35c5
Merge branch 'master' of https://github.com/rz2526/NFT_data_warehouse
rz2526 May 5, 2023
9e1f81a
Connect server to the blockchain network
Zero-Tang May 5, 2023
e368084
Add subgraph repo
Zero-Tang May 5, 2023
e2e6b24
Add OpenSea
Zero-Tang May 5, 2023
eb60caa
Update OpenSea
Zero-Tang May 5, 2023
dcec9ad
Submodule removal
Zero-Tang May 5, 2023
acb940e
Initialize GraphQL Server Codebase
Zero-Tang May 5, 2023
4e49e17
better integration testing env
rz2526 May 6, 2023
e869822
Adding integration test instructions
rz2526 May 6, 2023
12e8fec
minor
rz2526 May 6, 2023
1210499
added Sample order 2 with Merkle validator
rz2526 May 7, 2023
a6c48cb
minor
rz2526 May 7, 2023
8d334e7
subgraph pruned
rz2526 May 7, 2023
59d3fab
Add a script to fix metadata
Zero-Tang May 7, 2023
8bfc438
3rd NFT
Zero-Tang May 7, 2023
b324b7f
more examples & fix a minor issue
rz2526 May 7, 2023
6cd7c65
more structural subgraph changes
rz2526 May 7, 2023
602944b
minor bug
rz2526 May 7, 2023
253ce02
fix bug
rz2526 May 7, 2023
fd296ba
fix
rz2526 May 7, 2023
8eaa153
another round of pruning & enriched user model
rz2526 May 8, 2023
4521fef
cleanup
rz2526 May 8, 2023
342f9ec
cleanup
rz2526 May 8, 2023
395d038
atomic match deep dive
rz2526 May 8, 2023
669f3f0
Create README.md
js6104 May 8, 2023
ac87d2b
fix more
rz2526 May 8, 2023
ff2a2b5
use latest version
rz2526 May 8, 2023
83df538
more schema
rz2526 May 8, 2023
2344a90
Unit testing folder
Abdulaziz-Almeseri May 8, 2023
20befd1
Optimization
Zero-Tang May 8, 2023
1bd7b0a
Update README.md
js6104 May 9, 2023
6c4f89d
Update README.md
js6104 May 9, 2023
7b8a23c
more optimizations
rz2526 May 9, 2023
2c535b0
more optimiztion
rz2526 May 9, 2023
d665076
Resolve package issues
Zero-Tang May 9, 2023
4fd4a8a
ERC1155 Unit Test Framework
Zero-Tang May 9, 2023
d8ea5ad
Update README.md
js6104 May 9, 2023
7617d16
some unit tests
rz2526 May 9, 2023
03c0485
ERC1155 Auction Unit Test Case
Zero-Tang May 9, 2023
163d81a
more unit test
rz2526 May 9, 2023
f9c5a55
minor
rz2526 May 9, 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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.ds_store
Empty file added .gitmodules
Empty file.
622 changes: 598 additions & 24 deletions README.md

Large diffs are not rendered by default.

189 changes: 189 additions & 0 deletions openethereum-dev/private_chain.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions openethereum-dev/run_openeth.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

openethereum --chain ./private_chain.json --jsonrpc-apis=all --jsonrpc-cors=all --jsonrpc-hosts=all --tracing=on --pruning archive --base-path ~/openethereum
2 changes: 2 additions & 0 deletions opensea-dev/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build/
node_modules/
Empty file added opensea-dev/contracts/.gitkeep
Empty file.
Loading