Solana Programmingseeds
Seeds
Byte arrays used as inputs to derive a Program Derived Address. Seeds can be any combination of static strings, user pubkeys, mint addresses, or other identifiers (each seed max 32 bytes, up to 16 seeds). For example, seeds=[b'vault', user.key()] derives a unique vault PDA for each user.
Related terms
2Solana Programming
Program Derived Address (PDA)
An account address derived deterministically from a program ID and a set of seeds, with no corresponding private key. PD...
Solana Programming
Bump Seed
A single byte (255 down to 0) appended to PDA seeds to push the derived address off the Ed25519 curve. find_program_addr...