hopper-runtime 0.1.0

Canonical low-level runtime surface for Hopper. Hopper Native is the primary backend; legacy Pinocchio and solana-program compatibility are explicit opt-ins.
Documentation
1
2
3
4
5
6
//! Canonical result type for Hopper programs.

use crate::ProgramError;

/// Result type returned by all Hopper instruction handlers.
pub type ProgramResult = Result<(), ProgramError>;