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

Base data display #13

Open
wants to merge 41 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
a857bf4
wip: add code for blocks info display
abhijeetbhagat Mar 17, 2023
ae51c4d
wip: modify the block types
abhijeetbhagat Mar 18, 2023
f6fbc6f
wip: use List directly instead of ListQuery for now
abhijeetbhagat Mar 20, 2023
897dd7c
wip: fix some compilation/runtime problems related to crypto module
abhijeetbhagat Mar 20, 2023
86879f5
wip: show block details, add route for block id
abhijeetbhagat Mar 20, 2023
01524af
wip: show dummy extrinsics, events data on the block page
abhijeetbhagat Mar 22, 2023
6c98368
Merge branch 'main' into base-data-display
abhijeetbhagat Mar 23, 2023
d04fd84
wip: connect to squid archive to fetch blocks list
abhijeetbhagat Mar 27, 2023
8f9df6e
wip: fetch and display info about a block
abhijeetbhagat Mar 29, 2023
63f8afc
wip: display all extrinsics for a block on the extrinsics tab
abhijeetbhagat Mar 31, 2023
06a5bf8
wip: fetch and display events for a block
abhijeetbhagat Apr 3, 2023
54c92c5
Merge branch 'main' into base-data-display
abhijeetbhagat Apr 19, 2023
c16f07b
fix: bring the providers together to remove the empty space on the bl…
abhijeetbhagat Apr 21, 2023
4730687
display extrinsic data in a row
abhijeetbhagat Apr 24, 2023
359389d
display extrinsic ids as navigatable links
abhijeetbhagat Apr 24, 2023
451b511
display real extrinsic info
abhijeetbhagat Apr 25, 2023
af5f406
display icons where status is expected
abhijeetbhagat Apr 25, 2023
582bae9
add blocks menuitem on the top menu, shorten date displayed in block row
abhijeetbhagat Apr 26, 2023
58a36b1
display proper icon in blocks list
abhijeetbhagat Apr 26, 2023
1ac91e3
display events data for an extrinsic
abhijeetbhagat Apr 26, 2023
04c69b0
display call args on the extrinsic page
abhijeetbhagat Apr 27, 2023
e63ac8f
format json string
abhijeetbhagat Apr 27, 2023
6750507
syntax highlight the params data on the extrinsic page
abhijeetbhagat Apr 27, 2023
182257a
display clickable block height instead of block id on the extrinsic page
abhijeetbhagat May 1, 2023
78f1b10
fix navigation problem
abhijeetbhagat May 3, 2023
7999b81
remove logs tab and add even filtering
abhijeetbhagat May 18, 2023
2eabe7f
move events ui into its own folder
abhijeetbhagat May 22, 2023
b4bf1a9
display block id in the list
abhijeetbhagat May 23, 2023
d5a2099
display events, extrinsics counts in a block row
abhijeetbhagat May 25, 2023
ddc3287
add sidenavbar along with icons for items
abhijeetbhagat May 29, 2023
31e373a
add sidebar nav on all pages
abhijeetbhagat May 31, 2023
8296dac
use tailwindui styling for sidenav
abhijeetbhagat May 31, 2023
d75ed13
fix navbar issues & display hash on block row
abhijeetbhagat Jun 5, 2023
431445d
make parent hash navigable
abhijeetbhagat Jun 6, 2023
4b82876
remove commented imports, add tst case for side navbar
abhijeetbhagat Jun 8, 2023
e5aad60
add tests for new components
abhijeetbhagat Jun 14, 2023
01c52aa
Merge branch 'main' into base-data-display
abhijeetbhagat Jun 16, 2023
ad2699b
dont read config from runtime-env.js file
abhijeetbhagat Jun 16, 2023
f1f82b8
add .env file with config
abhijeetbhagat Jun 16, 2023
3cbe989
set config in runtime-env.js, read config from it
abhijeetbhagat Jun 16, 2023
d6f3cae
set config in .env.example
abhijeetbhagat Jun 16, 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
7 changes: 7 additions & 0 deletions explorer-ui/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#REACT_APP_SQUID_ENDPOINT=https://suba.epirus.io/squid/graphql
REACT_APP_SQUID_ENDPOINT=https://substrate.sirato.xyz/squid/graphql
REACT_APP_SQUID_ARCHIVE_ENDPOINT=https://substrate.sirato.xyz:4445/graphql
# REACT_APP_SQUID_ARCHIVE_ENDPOINT=http://localhost:4444/graphql
REACT_APP_SOURCE_CODE_ENABLED=true
REACT_APP_VERIFIER_ENDPOINT=https://ink-verifier.sirato.xyz/api
REACT_APP_VERIFIER_WS_ENDPOINT=wss://ink-verifier.sirato.xyz/api
9 changes: 5 additions & 4 deletions explorer-ui/.env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
REACT_APP_SQUID_ENDPOINT=http://localhost:4350/graphql
REACT_APP_SOURCE_CODE_ENABLED=false
REACT_APP_VERIFIER_ENDPOINT=http://127.0.0.1:3001
REACT_APP_VERIFIER_WS_ENDPOINT=ws://127.0.0.1:3001
REACT_APP_SQUID_ENDPOINT=https://substrate.sirato.xyz/squid/graphql
REACT_APP_SQUID_ARCHIVE_ENDPOINT=https://substrate.sirato.xyz:4445/graphql
REACT_APP_SOURCE_CODE_ENABLED=true
REACT_APP_VERIFIER_ENDPOINT=https://ink-verifier.sirato.xyz/api
REACT_APP_VERIFIER_WS_ENDPOINT=wss://ink-verifier.sirato.xyz/api
3 changes: 1 addition & 2 deletions explorer-ui/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@

# misc
.DS_Store
.env

npm-debug.log*
yarn-debug.log*
yarn-error.log*

.analysis/

/public/runtime-env.js
/public/runtime-env.js
2 changes: 1 addition & 1 deletion explorer-ui/public/runtime-env.js

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