-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
514c1f9
commit 0554380
Showing
1 changed file
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,30 @@ | ||
# Solidity-Interview-Question(500+) | ||
|
||
# What is an Ethereum? | ||
> Ethereum is an open source, public, blockchain-based distributed computing platform. | ||
Ethereum is an open source, public, blockchain-based distributed computing platform. | ||
|
||
# What is Smart Contract? | ||
> Smart Contract is an small program that runs on ethereum blockchain. | ||
Smart Contract is an small program that runs on ethereum blockchain. | ||
|
||
# Describe Ethereum node? | ||
Node is copy of chain data. This means that you can participate in validating transactions and blocks on the Ethereum blockchain. The two most common clients for running nodes are Geth and Parity. | ||
|
||
# what is genesis.json? | ||
The genesis file is json structured file which describes among the other the initial settings needed to initialize the blockchain. It is the initial block for ethereum blockchain | ||
``` | ||
{ | ||
"config": { | ||
"chainId": 1907, | ||
"homesteadBlock": 0, | ||
"eip155Block": 0, | ||
"eip158Block": 0 | ||
}, | ||
"difficulty": "10", | ||
"gasLimit": "2100000", | ||
"alloc": {}, | ||
"coinbase": "c7c7d647cf3e4f1b072422c0ab5120fe810ee3b2" | ||
} | ||
``` | ||
|
||
|
||
|