Core Protocol
Call Depth Limit
📖O que é
The maximum depth of 4 nested cross-program invocations (CPIs) allowed within a single Solana transaction. Program A can call Program B, which can call Program C, which can call Program D, but no further nesting is permitted. This limit prevents unbounded recursion, stack overflows, and excessive compute consumption. The runtime enforces this limit and returns an error if exceeded.
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 →RuntimeCore Protocol
The component of the SVM responsible for loading programs, enforcing account access rules …
Ver termo →