Solana Integral
SolIntegral is a simple Solana program that demonstrates storing and processing mathematical calculations on-chain. It simulates the computation of a discrete integral (sum) between two integer bounds
Videos
Tech Stack
Description
SolIntegral – On-Chain Integral Calculator
SolIntegral is a Solana smart contract that calculates the discrete integral (sum) between two integer bounds entirely on-chain. Users submit two integers as input, and the program computes the total sum between them, storing the result in a dedicated Solana account.
Designed as a learning project for HackQuest, SolIntegral demonstrates:
Low-level Solana program structure in Rust.
Handling of input data via instruction parameters.
On-chain computation and state storage.
Data (de)serialization using the Borsh format.
This project serves as an educational template for developers who want to explore blockchain-based mathematical operations and persistent state management on the Solana network.