carbon-mpl-core-decoder 0.5.0

MPL Core Decoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use {
    super::super::types::*,
    carbon_core::{borsh, CarbonDeserialize},
};

#[derive(CarbonDeserialize, Debug)]
#[carbon(discriminator = "0xa916f6dce5e5a4cc")]
pub struct PluginRegistryV1 {
    pub key: Key,
    pub registry: Vec<RegistryRecord>,
    pub external_registry: Vec<ExternalRegistryRecord>,
}