Functions
Write and execute serverless JavaScript functions with Stratus
Overview
Stratus functions enable developers to write and execute JavaScript functions in a serverless environment. These functions:
- Scale horizontally
- Run in isolated VMs
- Have web access for external integrations
- Support complex logic combinations
Functions can interact with external services, allowing you to integrate with your own database, subgraphs, and other services.
Invocation Types
Schedule
Execute functions on a cron schedule with minimum 1-minute resolution
Webhook
Invoke functions via HTTP POST requests using API keys
Subscription
Trigger functions automatically when subscribed events occur
Schedule Invocation
While there’s no maximum schedule limit, the minimum resolution is 1 minute. Schedules with smaller intervals will fail.
Webhook Invocation
To invoke functions via webhook:
- Create a Stratus-scoped API key in the admin panel
- Use the unique webhook URL assigned to your function
Subscription Invocation
Functions linked to subscriptions execute automatically when subscription events fire. Unlike webhooks, subscription-based invocations receive a single payload per event.
Writing Functions
Basic Structure
All Stratus functions must follow these rules:
Export Single Handler
Only one handler function can be exported per file
Use Async Function
Handlers must be asynchronous
Include Required Parameters
Functions must accept input
and output
parameters
The Output Class
The output
parameter provides methods for managing function results and actions:
Sets the function result data (called once before buildOutput)
Logs a failure and stops future executions
Adds a transaction to the execution queue (requires relayer connection)
Finalizes and returns the function output (required)
Executing Transactions
To execute transactions, your function must be connected to a relayer in your account.
Transaction Rules
- Maximum 500 transactions per function run
- Transactions execute in the order they’re added
- All transactions use the connected relayer
Approved Modules
Only pre-approved npm modules can be used in Stratus functions. Contact Snag Solutions if you need additional modules.
Currently approved modules:
axios
lodash
viem
ioRedis
Example Function
Need Additional Modules?
Contact Snag Solutions if you need access to additional npm modules for your Stratus functions.
Was this page helpful?