| 10 | |
| 11 | #[derive(Accounts)] |
| 12 | pub struct Initialize<'info> { |
| 13 | #[account(mut)] |
| 14 | pub payer: Signer<'info>, |
| 15 | pub system_program: Signer<'info>, |
| 16 | |
| 17 | #[account( |
| 18 | init, |
| 19 | payer=payer, |
| 20 | space=8+TSABConfig::get_max_size() as usize, |
| 21 | seeds=[ |
| 22 | b"tsab_signer" |
| 23 | ], |
| 24 | bump, |
| 25 | )] |
| 26 | pub tsab_config: Account<'info, TSABConfig>, |
| 27 | } |
| 28 | |
| 29 | #[derive(Accounts)] |
| 30 | pub struct MintMetdata<'info> { |
nothing calls this directly
no outgoing calls
no test coverage detected