Documentation Index
Fetch the complete documentation index at: https://docs.pulsy.app/llms.txt
Use this file to discover all available pages before exploring further.
Cursors and Block Delay
Atria uses cursors and block delay to process chain data in order. These two concepts are central to running feeds reliably. The cursor answers “where should this feed continue from?” Block delay answers “how far behind the chain head should this feed process?”Cursor
The cursor records the next block a feed should process. When a running feed restarts, the runtime resumes from the saved cursor.Start Block
If a feed definesstartBlock, Atria begins from that block. If no start block is provided, the feed begins from the current chain head.
End Block
If a feed definesendBlock, processing completes once the feed reaches that block.