antegen-fiber-program 5.0.7

Solana program for Antegen - fiber (instruction) account management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use anchor_lang::prelude::*;

#[error_code]
pub enum AntegenFiberError {
    #[msg("Invalid compiled instruction data")]
    InvalidCompiledInstruction,

    #[msg("Fiber account is already initialized")]
    AlreadyInitialized,

    #[msg("Derived PDA does not match the provided fiber account")]
    InvalidFiberPDA,

    #[msg("Fiber account has insufficient lamports for rent")]
    InsufficientRent,
}