15c3012199
* explorer-api: add nym node endpoints + UI to show nym-nodes and account balances * explorer-api: add endpoints to get operator rewards explorer-ui: show delegations on nym-nodes, show operator rewards, bug fixes * explorer-ui: change summary screen to only show nym-node stats * explorer-api: add unstable routes to get legacy mixnodes and gateways from the contract instead of the Nym API explorer-ui: adapt front-end to show less information in legacy nodes with plain bond types * explorer-ui: fix up source of legacy mixnode data * explorer-ui: add more account page null and undefined checks * explorer-ui: filter out null gateway versions * explorer-ui: sanitise gateway versions * explorer-ui: add more guards on the balance parts to check that greater than 0 * explorer-api: make /tmp/unstable/gateways endpoint compatible with the current Harbour Master API * explorer-ui: fix typo * cargo fmt * Add node-id, total stake and links to nodes list --------- Co-authored-by: Mark Sinclair <mmsinclair@users.noreply.github.com> Co-authored-by: Jędrzej Stuczyński <jedrzej.stuczynski@gmail.com>
32 lines
788 B
JSON
32 lines
788 B
JSON
{
|
|
"name": "@nymproject/network-explorer",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"build:prod": "yarn --cwd .. build && next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@nymproject/react": "^1.0.0",
|
|
"@nymproject/nym-validator-client": "0.18.0",
|
|
"next": "14.1.4",
|
|
"react": "^18",
|
|
"react-dom": "^18",
|
|
"react-error-boundary": "^4.0.13",
|
|
"material-react-table": "^2.12.1",
|
|
"@mui/x-date-pickers": "7.1.1",
|
|
"@mui/x-data-grid": "7.1.1",
|
|
"@mui/x-charts": "^7.22.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"eslint": "^8",
|
|
"eslint-config-next": "14.1.4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|