Ayush 620b135af9 bumped steel versions in Cargo.toml 4 months ago
..
anchor 40aed81963 chore: bumped versions (#378) 5 months ago
native 6bb7ce6a41 check if pnpm solves issue 4 months ago
steel 620b135af9 bumped steel versions in Cargo.toml 4 months ago
README.md 007cedd188 Added a README for the checking accounts example 3 years ago

README.md

Checking Accounts

Solana Programs should perform checks on instructions to ensure security and that required invariants are not being violated.

These checks vary and depend on the exact task of the Solana Program.

In this example we see some of the common checks a Solana Program can perform:

  • checking the program ID from the instruction is the program ID of your program
  • checking that the order and number of accounts are correct
  • checking the initialization state of an account
  • etc.