carbon-mpl-core-decoder 0.2.0

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

#[derive(CarbonDeserialize, Debug)]
#[carbon(discriminator = "0xe011749de6d41eda")]
pub struct AssetV1 {
    pub key: Key,
    pub owner: solana_sdk::pubkey::Pubkey,
    pub update_authority: UpdateAuthority,
    pub name: String,
    pub uri: String,
    pub seq: Option<u64>,
}