Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/manta-pacific/Block Explorer.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
7 changes: 7 additions & 0 deletions docs/manta-pacific/Tools/Block Explorers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

38 changes: 38 additions & 0 deletions docs/manta-pacific/Tools/Data Indexers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)