Преглед на файлове

Added a README for the checking accounts example

Dadepo Aderemi преди 3 години
родител
ревизия
007cedd188
променени са 1 файла, в които са добавени 13 реда и са изтрити 0 реда
  1. 13 0
      basics/checking-accounts/README.md

+ 13 - 0
basics/checking-accounts/README.md

@@ -0,0 +1,13 @@
+# 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.