You can access the TESTNET explorer it at https://texplorer.phantom.org.
git clone https://github.com/Big-Silver/PHANTOM-Explorer
yarn install
yarn build:mainnet
yarn build:devnet
yarn build --network my-custom-network
You can run the explorer as an express server. This makes it a little more light-weight but not needing to have services such as apache or nginx.
EXPLORER_HOST="127.0.0.1" EXPLORER_PORT="4200" node express-server.js
Keep in mind that this requires you to run your own server and a running instance of nginx.
yarn dev # or yarn dev:mainnet
yarn dev:devnet
yarn dev --env.network=custom
If you wish to remove the /#/
from your URLs you can follow those steps https://router.vuejs.org/en/essentials/history-mode.html.
yarn build:mainnet --history
yarn dev --env.routerMode=history
$ yarn test
If you discover a security vulnerability within this package, please send an e-mail to [email protected]. All security vulnerabilities will be promptly addressed.
- If you find any bugs, submit an issue or open a pull-request, helping us catch and fix them.