Block Functions
What are block functions?
A Block Function in Project Zero is a customizable data operation executed on Project Zero's infrastructure for every new block. It allows users to filter, transform, and manipulate blockchain data directly at the source without managing their own infrastructure. This enables rapid and scalable data operations in real-time.
How to use Block Functions
- On the Dataset & Filter page, click on the "Block Functions" toggle on the right-hand side.
- Enter the code for your Block Function.
- Optionally, test your Block Function for a specific block or use the default setting to test on the latest block.
- You can also preview the data that will be passed into your Block Function by clicking the "Preview Block" button.
How does it work?
Block Functions run server-side for each new block that is processed on the blockchain.
Users can write custom logic in JavaScript to process blockchain data, allowing precise and tailored data extraction or manipulation for various use cases.
Each Block Function is triggered as blocks are generated and can interact with specific blockchain events, transactions, or contract data, transforming the data before it’s delivered to your preferred destination.
Available Libraries and Tools
-
Lodash Library
You can use Lodash, a utility library for working with arrays, objects, and other data structures. It is accessible via the global object
_
. -
Web3-eth-abi Library
You can interact with the Ethereum ABI (Application Binary Interface) using the Web3-eth-abi library, available via the ABI global object.
Features
-
Real-Time Data Transformation
Perform operations on each block’s data as it streams through, such as filtering or transforming specific contract events or transactions.
-
Server-Side Execution
Offload computational tasks to Project Zero's infrastructure, allowing you to focus on business logic rather than backend management.
-
Flexible Integration
Custom code written in JavaScript can be easily deployed and modified without downtime.
Limitations
-
Memory
Each Block Function execution is limited to 128 Mb RAM to ensure optimal performance and resource allocation.
-
Execution Time
Block Functions can run for a maximum of 30 seconds per block. This ensures that the system remains performant as new blocks are generated.
Code Sample: Extracting and Transforming Swap Events with Lodash
The function will return an array of swap transaction objects with sorted data. Each object will include:
- sender: Address of the sender.
- recipient: Address of the recipient.
- amount0: The first token amount swapped.
- amount1: The second token amount swapped.