Dev Tools
UncheckedAccount (Anchor)
Também chamado de:AccountInfo wrapper
📖O que é
An Anchor account type (UncheckedAccount<'info>) that performs no automatic validation — no owner check, no discriminator check, no deserialization. It is an alias for AccountInfo and should only be used when the program manually validates the account or when the account belongs to an external program. Requires a /// CHECK: doc comment explaining why it is safe. Misuse is a common audit finding.
Sua exploração
0 termos visitados no totalTermos relacionados explorados0/3
Termos Relacionados
#[derive(Accounts)] (Anchor)Dev Tools
The Anchor macro that defines the accounts struct for an instruction. Each field specifies…
Ver termo →Missing Owner CheckSecurity
A vulnerability where a program deserializes and trusts account data without first confirm…
Ver termo →AccountInfoProgramming Model
The runtime struct passed to programs for each account in an instruction: `AccountInfo { k…
Ver termo →