carbon_wavebreak_decoder/instructions/
reserved_mint_config_c.rs

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