Create a Module
Modules are smart contracts that are registered in the "Module Registry" and that perform specific validation logic on attestations before they are issued into the registry.
The Module mechanism may change in the future, following Verax Improvement Proposal #5 and what we call "Modules V2".
Using a custom Module
A Module must implement the AbstractModule
contract to be considered as valid by Verax. Hopefully, we provide all the core contracts of the Verax platform as an npm package to help developers create their own custom implementations.
Install the dependency:
npm i @verax-attestation-registry/verax-contracts
Import the
AbstractModule
contract:Define your custom Module:
And now ... the floor is yours! You can add your custom functions, of course, but mostly you need to implement the run
function that is called in the validation process, before registering the attestation payload.
Example
This ExampleModule
implements the AbstractModule
contract.
In this example, we are checking that the paid value for this attestation is at least 0.001 ETH. If it is the case, the process goes onto the next module check, and if not, the process stops there and the transaction reverts.
Last updated