From 0a0ff3d3bdeef4d8629c0a43024fb59ec0c07447 Mon Sep 17 00:00:00 2001 From: Neal O'Grady Date: Wed, 4 Mar 2026 13:51:45 -0800 Subject: [PATCH 1/3] Add Defined to Block Explorer.md Signed-off-by: Neal O'Grady --- docs/manta-pacific/Block Explorer.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/manta-pacific/Block Explorer.md b/docs/manta-pacific/Block Explorer.md index 93a21329..5d0f8811 100644 --- a/docs/manta-pacific/Block Explorer.md +++ b/docs/manta-pacific/Block Explorer.md @@ -33,6 +33,10 @@ Here are the 4 Explorers currently supporting Manta Pacific: - Link: [GeckoTerminal for Manta Pacific](https://www.geckoterminal.com/manta-pacific/pools) +**Defined:** + +- Link: [Manta on Defined](https://www.defined.fi/tokens/discover?network=manta) + **Dune Analytics:** - Link: [Dune Analytics for Manta Pacific](https://dune.com/hashed_official/manta-pacific) From 07bf8fc1c7e78c8b23c5899744cd041c31f97b11 Mon Sep 17 00:00:00 2001 From: Neal O'Grady Date: Wed, 4 Mar 2026 13:54:29 -0800 Subject: [PATCH 2/3] Add Defined to Block Explorers.md Signed-off-by: Neal O'Grady --- docs/manta-pacific/Tools/Block Explorers.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/manta-pacific/Tools/Block Explorers.md b/docs/manta-pacific/Tools/Block Explorers.md index 4eaf0df1..7e6556a4 100644 --- a/docs/manta-pacific/Tools/Block Explorers.md +++ b/docs/manta-pacific/Tools/Block Explorers.md @@ -36,8 +36,15 @@ It provides a valuable tool for anyone looking to better understand and interact - Mainnet: [https://www.geckoterminal.com/manta-pacific/pools](https://www.geckoterminal.com/manta-pacific/pools) +### Defined + +Defined is a token aggregator and trading terminal for 100+ networks and 70+ million tokens. + +- Mainnet: [https://www.defined.fi/tokens/discover?network=manta](https://www.defined.fi/tokens/discover?network=manta) + ### L2scan Explorer L2scan Explorer is a web-based tool that allows users to analyze and other layer 2 networks. It provides a user-friendly interface for viewing transaction history, checking account balances, and tracking the status of network activity. - Mainnet: [https://manta-pacific.l2scan.com](https://manta-pacific.l2scan.com) + From 25378d3680297faef044673a99a5addd7ec85f19 Mon Sep 17 00:00:00 2001 From: Neal O'Grady Date: Wed, 4 Mar 2026 14:03:07 -0800 Subject: [PATCH 3/3] Add Codex to Data Indexers.md Signed-off-by: Neal O'Grady --- docs/manta-pacific/Tools/Data Indexers.md | 38 +++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/docs/manta-pacific/Tools/Data Indexers.md b/docs/manta-pacific/Tools/Data Indexers.md index bcee794f..25eb59fb 100644 --- a/docs/manta-pacific/Tools/Data Indexers.md +++ b/docs/manta-pacific/Tools/Data Indexers.md @@ -42,3 +42,41 @@ Support for Goldsky Mirror for Manta is currently in progress. If you’d like t **Getting support** Can't find what you're looking for? Reach out to us at [support@goldsky.com](mailto:support@goldsky.com) for help. + +## Codex + +### Overview + +Codex is a blockchain data API providing real-time and historical DeFi data across 100+ networks via GraphQL, including Manta Pacific (chain ID `169`). With access to over 70 million tokens and 700 million wallets, Codex delivers sub-second data for building token explorers, trading bots, portfolio trackers, and DeFi dashboards. + +Codex offers: + +- **GraphQL API** — A single endpoint with 73 query operations covering token prices, OHLCV charts, DEX trades, liquidity pools, wallet activity, and aggregated analytics +- **Real-time subscriptions** — 25 WebSocket data streams for live token prices, trade events, new pairs, and wallet activity +- **Webhooks** — Push-based notifications for on-chain events without persistent connections +- **TypeScript/JavaScript SDK** — A thin wrapper around the GraphQL API with built-in subscription handling + +### Getting Started + +1. Sign up at [dashboard.codex.io](https://dashboard.codex.io/signup) +2. Copy your API key from the dashboard +3. Visit the [Docs](https://docs.codex.io) for a full API Reference +4. Make your first request — for example, fetch trending tokens on Manta Pacific: + +```bash +curl -X POST https://graph.codex.io/graphql \ + -H "Content-Type: application/json" \ + -H "Authorization: YOUR_API_KEY" \ + -d '{"query": "{ filterTokens(filters: { network: [169] }) { results { token { name symbol address } } } }"}' +``` + +Explore the API interactively with the [GraphQL Explorer](https://docs.codex.io/explore). + +### Resources + +- [Codex Documentation](https://docs.codex.io/) +- [Supported Networks](https://docs.codex.io/chains) +- [GraphQL API Reference](https://docs.codex.io/api-reference) +- [SDK](https://github.com/Codex-Data/sdk) +- [Discord](https://discord.com/invite/mFpUhT3vAq) +