-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: text explorer show sha-3 correctly + minor fixes (#3779)
Description --- - change tari_explorer `.prettierrc` to match other packages in the repo, this meant a big formatting change, but it's a separate commit for ease of review - fix the display of SHA-3 blocks pow algo - some styling improvements + basic dark mode - adds the block header info to the block view - check for valid prev/next blocks to display navigation between blocks
- Loading branch information
Byron Hambly
authored
Jan 31, 2022
1 parent
f5b6ab6
commit a5dacf2
Showing
17 changed files
with
368 additions
and
281 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.DS_Store | ||
node_modules | ||
/dist | ||
dist/* | ||
!dist/.gitkeep | ||
|
||
|
||
# local env files | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{ | ||
"endOfLine": "auto", | ||
"semi": false | ||
"endOfLine": "auto" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
var { Client } = require("base-node-grpc-client") | ||
var { Client } = require("base-node-grpc-client"); | ||
|
||
function createClient() { | ||
return Client.connect("localhost:18142") | ||
return Client.connect("localhost:18142"); | ||
} | ||
|
||
module.exports = { | ||
createClient, | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.