Skip to main content

Lesson's Progress0 / 6

0%

A Friendly Model Account

Let's compare NEAR accounts to most other blockchains to see why NEAR is more user-friendly:

FeatureMost Other BlockchainsNEAR Account
Account IDComplex public key (0x123..., bc1..., etc.)Named accounts (alice.near), Implicit accounts, Eth-like accounts
Secret KeysSingle private keyMultiple key-pairs with different permissions
Smart ContractsSynchronous executionAsynchronous execution

Best Practices

  1. Use named accounts for main activities - they're easier to manage
  2. Create sub-accounts for different purposes (trading, gaming, business)
  3. Use function call keys when integrating with third-party applications
  4. Keep full access keys secure - they have complete control over your account
  5. Regularly review permissions and remove unused access keys

Key Takeaways

  • NEAR accounts are your digital identity on the blockchain, supporting both human-readable names and traditional addresses
  • Named accounts (like alice.near) are easy to remember and share, while implicit accounts use traditional cryptographic addresses
  • Hierarchical structure allows creating organized sub-accounts, similar to domain names on the internet
  • Access keys provide flexible security with different permission levels for different use cases

Understanding NEAR's account system is fundamental to using the platform effectively, whether you're a developer building applications or a user managing your digital assets!


Quiz

What are the two main types of NEAR accounts?

A. Public accounts and private accounts.

B. Named accounts (like alice.near) and implicit accounts (like 0x123...).

C. Personal accounts and business accounts.

D. Main accounts and backup accounts.