Sui Explorer is a network explorer for the Sui network, similar in functionality to Etherscan or Solana Explorer. Use Sui Explorer to see the latest transactions and objects.
Requirements: Node 14.0.0 or later.
Currently the Explorer depends on an unreleased version of sui.js
, the TypeScript SDK for Sui. Therefore, you need to build the SDK first:
$ cd <Your Sui Repository>/sdk/typescript
$ yarn && yarn build
Then, in the project directory, run:
$ yarn
Note: If you are updating the SDK and Explorer at the same time, you need to run the following commands to make sure the Explorer depends on the updated SDK.
$ cd <Your Sui Repository>/sdk/typescript
$ yarn build
$ cd ../../explorer/client
$ rm -rf node_modules/ && yarn
Before running any of the following scripts yarn
must run in order to install the necessary dependencies.
The Sui Explorer frontend will use the DevNet Gateway server by default: https://gateway.devnet.sui.io:443
yarn start
Refer to Local RPC Server & JSON-RPC API Quick Start on setting up a Local RPC Server. If we wish to locally run the website using a Local RPC Server, then run the following:
yarn start:local
Alternatively, having run yarn start
, click the green button at the top of the page and select the option 'Local'.
First run the following:
yarn start
Then, click the green button at the top and select the option 'Custom RPC URL'. Type the Custom RPC URL into the input box that emerges.
The Sui Explorer can also connect to a local, static JSON dataset that can be found at ./src/utils/static/mock_data.json
and ./src/utils/static/owned_object.json
.
For example, suppose we wish to locally run the website using the static JSON dataset and not the API, then we could run the following:
yarn start:static
This runs a series of end-to-end browser tests using the website as connected to the static JSON dataset. This command is run by the GitHub checks. The tests must pass before merging a branch into main.
Builds the app for production to the build
folder.
It bundles React in production mode and optimizes the build for the best performance.
Run linting check (prettier/eslint/stylelint).
Run linting check but also try to fix any issues.
Currently the Explorer supports
- Landing page with latest transactions
- Transaction details page
- Object details page
- Address page with owned objects
- Search for transactions, addresses, and Objects by ID
See Experiment with Sui DevNet for use.