-
Notifications
You must be signed in to change notification settings - Fork 2
Feature/internal connect to archive node #13
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -30,4 +30,4 @@ | |
| "logo": "../assets/images/coins/om.jpg" | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| { | ||
| "chain_name": "MANTRA-1-Internal", | ||
| "coingecko": "om", | ||
| "type": "mainnet", | ||
| "api": [ | ||
| { | ||
| "provider": "MANTRA", | ||
| "address": "https://api.archive.mantrachain.io" | ||
| } | ||
| ], | ||
| "rpc": [ | ||
| { | ||
| "provider": "MANTRA", | ||
| "address": "https://rpc.archive.mantrachain.io" | ||
| } | ||
|
Comment on lines
+14
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainVerify the RPC endpoint is accessible Ensure the new RPC endpoint is accessible and properly configured. 🏁 Script executed: #!/bin/bash
# Check if the RPC endpoint responds with a 200 status code
curl -s -o /dev/null -w "%{http_code}" https://rpc.archive.mantrachain.io/statusLength of output: 86 RPC Endpoint Access Issue Detected The verification indicates that the RPC endpoint (
|
||
| ], | ||
| "snapshot_provider": "", | ||
| "sdk_version": "0.50.0", | ||
| "coin_type": "118", | ||
| "min_tx_fee": "100000", | ||
| "addr_prefix": "mantra", | ||
| "logo": "https://assets.mantra.finance/images/networks/dukong.svg", | ||
| "theme_color": "#FF97D6", | ||
| "assets": [ | ||
| { | ||
| "base": "uom", | ||
| "symbol": "OM", | ||
| "exponent": "6", | ||
| "coingecko_id": "mantra-dao", | ||
| "logo": "../assets/images/coins/om.jpg" | ||
| } | ||
| ] | ||
| } | ||
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.
💡 Verification agent
🧩 Analysis chain
Verify the archive node endpoints are accessible
Ensure the new API endpoint is accessible and properly configured.
🏁 Script executed:
Length of output: 89
Action Required: Archive Node Endpoint Misconfiguration
The verification script indicates that the API endpoint at
https://api.archive.mantrachain.io/node_inforeturns a 403 Forbidden status rather than the expected 200 response. This suggests that either additional authentication or configuration adjustments may be required for proper accessibility.