| 5 | |
| 6 | #[derive(AnchorSerialize, AnchorDeserialize, Debug, Clone)] |
| 7 | pub struct ComponentMetadata{ |
| 8 | pub update_authority: Pubkey, |
| 9 | pub mint: Pubkey, |
| 10 | pub name: String, |
| 11 | pub symbol: String, |
| 12 | pub uri: String, |
| 13 | pub is_mutable: bool, |
| 14 | } |
| 15 | |
| 16 | impl MaxSize for ComponentMetadata { |
| 17 | fn get_max_size() -> u64 { |
nothing calls this directly
no outgoing calls
no test coverage detected