Merged
Conversation
- Create OpenAPI spec with server options for evm-1, move-1, wasm-1 - Add introduction page with base URL table - Add Rollup Indexer API group to API Reference navigation - Remove Rollup Indexers from Developers/Tools/Indexers section - Deprecate hardcoded mini* URLs in favor of chain-specific endpoints Generated-By: mintlify-agent
Contributor
Author
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
Each chain will have its own unique indexer URL in production. Generated-By: mintlify-agent
Replace 'rollup(s)' with 'chain(s)' or 'Initia Stack chains' throughout. Generated-By: mintlify-agent
Maps all 8 old Developers/Tools/Indexers paths to their new OpenAPI-generated counterparts under API Reference. Generated-By: mintlify-agent
…ntro page - Added all endpoints from the rollytics implementation: Blocks (3), Transactions (4), EVM Transactions (4), EVM Internal Transactions (4), NFTs (7), Rich List (1) - Added pagination parameters, query filters, and proper descriptions matching the actual Go implementation - Created API Reference landing page with cards for Router API and Indexer API - Updated navigation with Blocks, EVM Transactions, EVM Internal Transactions, and Rich List groups Generated-By: mintlify-agent
Response fields now documented for all 23 endpoints based on the rollytics Go source types, including: - Block: chain_id, height, hash, block_time, gas, fees, proposer - Tx: txhash, height, code, gas, logs, events, timestamp - EvmTx: blockHash, from, to, gasUsed, logs, status, type - EvmInternalTx: height, hash, type, from, to, value, gas - NftCollection: object_addr, creator, name, nft count - NftToken: collection_addr, owner, token_id, uri - TokenHolder: account, amount - Pagination: previous_key, next_key, total Generated-By: mintlify-agent
Generated-By: mintlify-agent
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
api-reference/rollup-indexer/openapi.yaml) with server options for evm-1, move-1, and wasm-1 (sourced from initia-registry testnets)mini*base URLs — endpoints now use chain-specificrollytics-api-{chain}.anvil.asia-southeast.initia.xyzURLs selectable via server dropdownEndpoints
Transactions
GET /indexer/tx/v1/txs/by_account/{account}GET /indexer/tx/v1/txs/by_height/{height}GET /indexer/tx/v1/txs/{tx_hash}NFTs
GET /indexer/nft/v1/collections/by_account/{account}GET /indexer/nft/v1/collections/{collection_addr}GET /indexer/nft/v1/tokens/by_collection/{collection_addr}GET /indexer/nft/v1/tokens/by_account/{account}