carbon_virtuals_decoder/
lib.rs

1#![no_std]
2
3extern crate alloc;
4
5use solana_pubkey::Pubkey;
6
7pub struct VirtualsDecoder;
8pub mod accounts;
9pub mod instructions;
10pub mod types;
11
12pub const PROGRAM_ID: Pubkey =
13    Pubkey::from_str_const("5U3EU2ubXtK84QcRjWVmYt9RaDyA8gKxdUrPFXmZyaki");