Perelyn aca7380e1b feat: remove steel examples (#420) 2 tuần trước cách đây
..
anchor 40aed81963 chore: bumped versions (#378) 4 tháng trước cách đây
native 4b8594ec04 chore: solana native and steel bump to v2.1 (#382) 4 tháng trước cách đây
README.md 007cedd188 Added a README for the checking accounts example 3 năm trước cách đây

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.