-1

I'm beginner of solana programming using anchor. Now I have no clear understanding about these items.

 **Program, Account, PublicKey, Keypair**

Appreciate any help to understand what these are and relationship between each other.

2 Answers2

2

All of these terms can be found in the terminology section of the Solana docs at https://docs.solana.com/terminology

  • Program: The code that interprets instructions.
  • Account: A record in the Solana ledger that either holds data or is an executable program.
  • PublicKey: The public key of a keypair.
  • Keypair: A public key and corresponding private key for accessing an account.
Jon C
  • 7,019
  • 10
  • 17
0

Check out https://solanacookbook.com/ and the Core Concepts Section

DaveTheAl
  • 1,995
  • 4
  • 35
  • 65