Extensions
Beginning in Allo v2.1, strategies make use of modular components. This composability rapidly speeds up dev time and enhances security for many common design patterns.
Some of the provided extensions are good examples of how extensions can be useful:
- Gating (opens in a new tab): Provides gating mechanisms to restrict access to certain actions or features based on various conditions, such as token holdings or NFT ownership.
- Register (opens in a new tab): Adds recipient registration mechanisms that can be customized according to the specific strategy.
- Allocate (opens in a new tab): Contains the option to add an allocation time window and manage whitelisted allocators.
- Milestones (opens in a new tab): Enables milestone-based distribution or allocation, where funds are released upon completion of predefined goals.
Approach
Extensions are generalized to be inherited by Strategies for implementation. There are more complete guides on extension use in the repository readme (opens in a new tab) and Wonderland Allo v2.1 Explainer (opens in a new tab).
Libraries
To compliment extensions, which are typically stateful reusable components, Libraries (opens in a new tab) are also employed to represent reusable helper logic, such as math operations.