Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
High-performance on-chain data indexer for Monad
import { Rampart } from 'rampart-monad' const sdk = new Rampart() const status = await sdk.getEnvioIndexerStatus() // → { latestBlock: 8540000, syncedBlock: 8539998, lag: 2, healthy: true }
query
string
const data = await sdk.queryEnvio(` query { Transfer(limit: 10, order_by: { block_number: desc }) { from to value block_number } } `)