Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
HardikKSavaliya authored Nov 6, 2019
1 parent 514c1f9 commit 0554380
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions README.md
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"
}
```



0 comments on commit 0554380

Please sign in to comment.