â¸PDA CALCULATOR
Calculate Program Derived Addresses (PDAs) for Solana programs
đ§Ž PDA CALCULATOR
đ COMMON EXAMPLES
âšī¸ ABOUT PDAs
â¸PDAs are addresses derived from program ID and seeds
â¸They don't have private keys (program controlled)
â¸Bump ensures address is off the Ed25519 curve
â¸Used for storing program state and data
đĄ TIP:
Seeds can be strings (UTF-8) or hex bytes (0x...). Mix and match based on your program's requirements.
đą SEED TYPES
STRING SEEDS:
"metadata", "vault", "user_account"
HEX SEEDS:
0x6d657461646174610a (for specific byte sequences)
PUBKEY SEEDS:
Use public key strings as seeds for user-specific PDAs
đ COMING SOON
âŗPDA validation and existence check
âŗBatch PDA calculation
âŗCommon program PDA templates
âŗPDA reverse lookup