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