You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 30, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: apps/nextra/pages/en/build/indexer/indexer-sdk/documentation/steps.mdx
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,9 +99,10 @@ To create a step with the SDK, follow these instructions:
99
99
100
100
## Common steps
101
101
102
-
The SDK provides several common steps that you can use in your processor.
102
+
The SDK implements [several common steps](https://github.com/aptos-labs/aptos-indexer-processor-sdk/tree/main/aptos-indexer-processors-sdk/sdk/src/common_steps) that you can use in your processors.
103
103
104
104
1.`TransactionStreamStep` provides a stream of Aptos transactions to the processor
105
105
2.`TimedBufferStep` buffers a batch of items and periodically polls to release the items to the next step
106
-
107
-
{/* <!-- Add the rest of the common SDK steps --> */}
106
+
3.`VersionTrackerStep` tracks the progress of the processor and checkpoints the processor's progress. Read more about it [here](./version-tracking.mdx).
107
+
4.`OrderByVersionStep` orders transaction contextx by their starting versions. It buffers ordered these contexts and releases them at every poll interval.
108
+
5.`WriteRateLimitStep` limits the number of bytes writtento the database per second.
0 commit comments