Verification
Last updated
Before your application becomes available on the Sparsity platform, it must undergo a review and approval process.
Submit a request via our Discord: Click here.
Wait for approval. You can track the status of your application through the Sparsity dashboard or other communication channels.
Once approved, you can initiate computation by interacting with your deployed contract.
For example, if you deployed the demo Fibonacci application:
Update [APP_CONTRACT] in your .env file.
Trigger the application by running:
make -f Makefile_sepolia request-fib NUM=10Once the computation is complete, retrieve and verify the result, which is settled back into your contract, using:
make -f Makefile_sepolia fib-result NUM=10Last updated