9 lines
167 B
Rust
9 lines
167 B
Rust
use anchor_lang::prelude::*;
|
|
|
|
#[account]
|
|
#[derive(InitSpace)]
|
|
pub struct DataRegistry{
|
|
#[max_len(100)]
|
|
pub sales_pdas: Vec<Pubkey>,
|
|
pub authority: Pubkey
|
|
} |