Last active
April 2, 2024 12:28
-
-
Save juzybits/8506a878a2ddf7a99f6fc4f2373acdac to your computer and use it in GitHub Desktop.
Sui Explorer - Custom Search engines
This file contains hidden or 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
| Instead of going to the explorer's website and entering the address/transaction/object | |
| in the search bar, you can simply type the following in your browser address bar: | |
| "suia" + [address] | |
| "suio" + [object] | |
| "suit" + [transaction] | |
| (Bonus tip: use "Ctrl + L" or "⌘ + L" to jump to the browser address bar) | |
| To add custom search engines to your Chromium browser, go to "Settings > Search engine > | |
| Manage search engines and site search", or access the menu directly from: | |
| chrome://settings/searchEngines | |
| brave://settings/searchEngines | |
| Then add the search engines you want. Use "%s" where the query should go. | |
| Here is my full config: | |
| - Mainnet: | |
| suia: https://explorer.polymedia.app/address/%s | |
| suio: https://explorer.polymedia.app/object/%s | |
| suit: https://explorer.polymedia.app/txblock/%s | |
| - Testnet: | |
| suiat: https://explorer.polymedia.app/address/%s?network=testnet | |
| suiot: https://explorer.polymedia.app/object/%s?network=testnet | |
| suitt: https://explorer.polymedia.app/txblock/%s?network=testnet | |
| - Devnet: | |
| suiad: https://explorer.polymedia.app/address/%s?network=devnet | |
| suiod: https://explorer.polymedia.app/object/%s?network=devnet | |
| suitd: https://explorer.polymedia.app/txblock/%s?network=devnet | |
| - Localnet: | |
| suial: http://localhost:3000/address/%s | |
| suiol: http://localhost:3000/object/%s | |
| suitl: http://localhost:3000/txblock/%s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment