Solana basics - Test
01.
In Anchor, what is the primary purpose of the IDL
02.
You write #[account(init, payer = user, space = 8 + MyAccount::INIT_SPACE)]. What does the 8 + part represent?
03.
Why might a Solana program store each item in a list as its own account instead of growing one big account?
04.
Two different developers derive an address for their programs using the same seed bytes [b"vault", user_pubkey]What happens?
05.
A client builds a transaction where the fee payer is a PDA derived from your program. Will Solana accept it?
06.
You create an account at a PDA address derived from your program’s ID. Which statement is correct?