[go: up one dir, main page]

0% found this document useful (0 votes)
63 views3 pages

Ethereum & IPFS for Developers

Geth allows users to interact with the Ethereum blockchain by joining the public network or creating a private network. It can transfer ether between accounts, mine ether to earn rewards, and deploy and interact with smart contracts. The document provides commands to initialize Geth, create a new Ethereum account, check the sync status, set the miner, and start mining ether. It also introduces IPFS as a system where nodes store and share files in a decentralized network.

Uploaded by

Simanta Hazra
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
63 views3 pages

Ethereum & IPFS for Developers

Geth allows users to interact with the Ethereum blockchain by joining the public network or creating a private network. It can transfer ether between accounts, mine ether to earn rewards, and deploy and interact with smart contracts. The document provides commands to initialize Geth, create a new Ethereum account, check the sync status, set the miner, and start mining ether. It also introduces IPFS as a system where nodes store and share files in a decentralized network.

Uploaded by

Simanta Hazra
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Geth (Go Ethereum)

Blockchain is a Distributed Immutable Lager. Ethereum Blockchain has Smart Contract.


Using Geth we can join Ethereum network or create our own private Ethereum network, transfer ether
between accounts or even mine ethers.

Vscode:
>geth init .\genesis.json –datadir Ethereum
>geth –datadir .\Ethereum\ --nodiscover

>geth attach ipc://./pipe/geth.ipc


Welcome to the Geth JavaScript console!
>personal.newAccount()
>eth.accounts
>eth.syncing
>miner.setEtherbase(eth.accounts[0])
>miner.start(1)
>eth.getBalance(eth.accounts[0])

IPFS
The machine that runs IPFS S/W to store and retrieve files from the IPFS network is called the IPFS node.

You might also like