Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
5c28006
[info] Bump version to 2.0.0
drcpu-github Mar 11, 2025
623c64c
[package] Update fortawesome versions
drcpu-github Mar 11, 2025
4a66eeb
[block] Update fields for showing the mint transaction
drcpu-github Mar 11, 2025
e926629
[search] Only show RAD script field if there is one
drcpu-github Mar 11, 2025
269fdb0
[search] Fix issue with forever-spinner on search page
drcpu-github Mar 11, 2025
674870e
[services] Update time converter to not use the deprecated substr fun…
drcpu-github Mar 12, 2025
eb4c89e
[home] Update home page to show staking data and be more responsive
drcpu-github Mar 12, 2025
4a02c10
[search] Update block panel to remove the mint tab post-wit/2
drcpu-github Mar 13, 2025
ef48f77
[search] Add stake and unstake pages
drcpu-github Mar 13, 2025
e2224be
[search] Show validator and withdrawer balance on address page
drcpu-github Mar 13, 2025
e323c72
[search] Distinguish between mainnet and testnet based on an env vari…
drcpu-github Mar 14, 2025
c2d06b8
[search] Adapt layout of a value transfer to be more responsive to sc…
drcpu-github Mar 14, 2025
6d9c1bb
[address] Add a stake and unstake tab
drcpu-github Mar 16, 2025
5e5fb9e
[network] Remove staking tab from network page
drcpu-github Mar 20, 2025
702e8e8
[package] Update caniuse-lite version
drcpu-github Mar 20, 2025
9c75fca
[info] Update links on the info page
drcpu-github Mar 25, 2025
f68df4a
[staking] Add staking page showing validator performance and rewards
drcpu-github Mar 27, 2025
721606a
[formatter] Format WIT value with a suffix based on its absolute value
drcpu-github Jun 6, 2025
c7ed5d4
[home] Add some margin to the lower Y-axis value of the total staked …
drcpu-github Jun 6, 2025
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
REACT_APP_NETWORK=MAINNET
# REACT_APP_NETWORK=TESTNET
105 changes: 50 additions & 55 deletions package-lock.json

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

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "witnet-explorer-frontend",
"version": "1.5.0",
"version": "2.0.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.1.16",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
Expand Down
6 changes: 3 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Search from './Pages/Search';
import Blockchain from './Pages/Blockchain';
import Mempool from './Pages/Mempool';
import Network from './Pages/Network';
import Reputation from './Pages/Reputation';
import Staking from './Pages/Staking';
import Balances from './Pages/Balances';
import TAPI from './Pages/TAPI';
import Info from './Pages/Info';
Expand All @@ -31,7 +31,7 @@ class WitnetExplorer extends React.Component{
<Nav.Link href="/blockchain">Blockchain</Nav.Link>
<Nav.Link href="/mempool">Mempool</Nav.Link>
<Nav.Link href="/network">Network</Nav.Link>
<Nav.Link href="/reputation">Reputation</Nav.Link>
<Nav.Link href="/staking">Staking</Nav.Link>
<Nav.Link href="/balances">Balances</Nav.Link>
<Nav.Link href="/tapi">TAPI</Nav.Link>
<Nav.Link href="/info">Info</Nav.Link>
Expand All @@ -46,7 +46,7 @@ class WitnetExplorer extends React.Component{
<Route path="/blockchain" component={Blockchain}/>
<Route path="/mempool" component={Mempool}/>
<Route path="/network" component={Network}/>
<Route path="/reputation" component={Reputation}/>
<Route path="/staking" component={Staking}/>
<Route path="/balances" component={Balances}/>
<Route path="/tapi" component={TAPI}/>
<Route path="/info" component={Info}/>
Expand Down
5 changes: 4 additions & 1 deletion src/Components/HistoryTypeahead.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ class HistoryTypeahead extends Component {
render() {
const { search_value } = this.state;

var lPad = Object.hasOwn(this.props, "lPad") ? this.props.lPad : "0px";
var rPad = Object.hasOwn(this.props, "rPad") ? this.props.rPad : "0px";

return (
<div className="input-group mb-3">
<div className="input-group mb-3" style={{ "padding-left": lPad, "padding-right": rPad }}>
<Typeahead
className="form-control"
style={{ "padding": 0 }}
Expand Down
Loading