lesson-9 Address could be found after deployment locally. #2330
-
Hi, I have deployed
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Quick Refresher: There are two types of accounts on ethereum. Contract accounts and EOA. EOAs are the normal accounts that me and you own when we connect to the blockchain. These accounts have public and private keys. Contract accounts are accounts owned by contracts. They are designated to contracts when contracts are deployed. These don't have the public/private key combinations. @MasterofBlockchain the accounts you see when you run |
Beta Was this translation helpful? Give feedback.
Quick Refresher: There are two types of accounts on ethereum. Contract accounts and EOA. EOAs are the normal accounts that me and you own when we connect to the blockchain. These accounts have public and private keys. Contract accounts are accounts owned by contracts. They are designated to contracts when contracts are deployed. These don't have the public/private key combinations.
@MasterofBlockchain the accounts you see when you run
npx hardhat node
are user accounts or Externally Owned Account (EOA). That's the list of accounts that you are given. You aren't shown/given contract accounts because, well, they don't have public/private keys and they are issued automatically to the contrac…