carbon-claim-stake-decoder 0.12.1

Rust decoder for Star Atlas Claim Stake program on Solana
Documentation

Carbon Claim Stake Decoder

Rust decoder for the Star Atlas Claim Stake program on Solana, generated using Carbon CLI.

Program Information

  • Program ID: STAKEr4Bh8sbBMoAVmTDBRqouPzgdocVrvtjmhJhd65
  • Network: Solana Mainnet
  • Description: Star Atlas Claim Stake program for staking functionality.

Features

  • Decodes all Claim Stake account types
  • Full instruction parsing support
  • Integration with Carbon indexing framework

Usage

Add this crate to your Cargo.toml:

[dependencies]
carbon-claim-stake-decoder = "0.12.0"

Decoding Accounts

use carbon_claim_stake_decoder::{ClaimStakeDecoder, ClaimStakeAccount};
use carbon_core::account::AccountDecoder;

let decoder = ClaimStakeDecoder;
let decoded_account = decoder.decode_account(&account);

if let Some(decoded) = decoded_account {
    match decoded.data {
        // Handle account types
        _ => println!("Decoded account: {:?}", decoded.data),
    }
}

Documentation

Full documentation is available at docs.rs.

Repository

See the main repository for build instructions and contribution guidelines.

License

Licensed under the Apache-2.0 license.