Programming Model
invoke_signed()
📖O que é
The Solana SDK function for CPIs where a PDA must sign: `invoke_signed(instruction, account_infos, signer_seeds)`. The runtime verifies that the seeds + bump produce the expected PDA pubkey and grants signer privileges for that account. This is how programs authorize actions on behalf of PDAs they own.
Sua exploração
0 termos visitados no totalTermos relacionados explorados0/3
Termos Relacionados
Invocação Entre Programas (CPI)Programming Model
A mechanism for one program to call another program's instructions during execution. CPIs …
Ver termo →invoke()Programming Model
The Solana SDK function used to execute a CPI without PDA signing: `invoke(instruction, ac…
Ver termo →Endereço Derivado de Programa (PDA)Programming Model
An account address derived deterministically from a program ID and a set of seeds, with no…
Ver termo →