carbon_wavebreak_decoder/instructions/
reserved_create_b.rs

1use carbon_core::{borsh, CarbonDeserialize};
2
3#[derive(
4    CarbonDeserialize, Debug, serde::Serialize, serde::Deserialize, PartialEq, Eq, Clone, Hash,
5)]
6#[carbon(discriminator = "0x2e")]
7pub struct ReservedCreateB {}
8
9#[derive(Debug, PartialEq, Eq, Clone, Hash, serde::Serialize, serde::Deserialize)]
10pub struct ReservedCreateBInstructionAccounts {}
11
12impl carbon_core::deserialize::ArrangeAccounts for ReservedCreateB {
13    type ArrangedAccounts = ReservedCreateBInstructionAccounts;
14
15    fn arrange_accounts(_: &[solana_instruction::AccountMeta]) -> Option<Self::ArrangedAccounts> {
16        Some(ReservedCreateBInstructionAccounts {})
17    }
18}