-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added SocialScan Explorer link #521
base: main
Are you sure you want to change the base?
Conversation
Added SocialScan Explorer to the Zetachain docs
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@thecoderpanda is attempting to deploy a commit to the Zeta Team on Vercel. A member of the Team first needs to authorize it. |
📝 WalkthroughWalkthroughThe changes involve the addition of a new entry in a markdown table within the Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (1)
src/pages/reference/apps/services.mdx (1)
22-22
: Consider maintaining alphabetical order within service types.For better organization and easier reference, consider reordering the Explorer services alphabetically. The current position of SocialScan between Blockscout and Explorer Guru breaks the alphabetical sequence.
| Explorer | Blockscout | https://zetachain-athens-3.blockscout.com/ | | Explorer | DexGuru | https://zeta-testnet.dex.guru/ | | Explorer | Explorer Guru | https://zetachain.explorers.guru/ | | Explorer | Exploreme | https://zetachain.exploreme.pro/ | | Explorer | Ping.Pub | https://ping.pub/zetachain | -| Explorer | SocialScan | https://zetachain.socialscan.io | +| Explorer | SocialScan | https://zetachain.socialscan.io | | Explorer | ZetaScan | https://explorer.zetachain.com/ |
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (1)
src/pages/reference/apps/services.mdx
(1 hunks)
🔇 Additional comments (1)
src/pages/reference/apps/services.mdx (1)
22-22
: Verify the SocialScan Explorer service.
Let's ensure the service is operational and officially supports ZetaChain.
✅ Verification successful
SocialScan Explorer service is operational and officially supports ZetaChain.
The service is accessible, returns a successful HTTP 200 status code, and actively tracks ZetaChain mainnet transactions, blocks, and network statistics. The explorer displays comprehensive blockchain data including:
- Latest block: 6,108,150
- Total transactions: 100,856,066
- Average block time: 6.121s
- Current ZETA price: $0.671028
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Description: Verify if the SocialScan Explorer service is accessible and returns valid content
# Check if the URL is accessible and returns a successful status code
curl -s -I "https://zetachain.socialscan.io" | head -n 1
# Verify if the page content mentions ZetaChain
curl -s "https://zetachain.socialscan.io" | grep -i "zetachain"
Length of output: 26725
@@ -19,6 +19,7 @@ developers. | |||
| Subgraph | Goldsky | https://goldsky.com/ | | |||
| Subgraph | Envio | https://envio.dev/ | | |||
| Explorer | Blockscout | https://zetachain-athens-3.blockscout.com/ | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just noticed some of these are for testnet, is that correct?
Added SocialScan Explorer to the Zetachain docs
Summary by CodeRabbit