MCPcopy Create free account
hub / github.com/JumpCrypto/sol-arc / Initialize

Class Initialize

programs/tsab/src/context.rs:12–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10
11#[derive(Accounts)]
12pub 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)]
30pub struct MintMetdata<'info> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected