BT Resources

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

Mastering Ethereum text book

https://github.com/ethereumbook/ethereumbook/blob/develop/book.asciidoc#license

https://dl.ebooksworld.ir/motoman/Mastering_Ethereum_Andreas.M.Antonopoulos.www.EBooksWorld.ir.pdf

Blockchain Lab:

1- Cryptography in Blockchain, Merkle root tree hash.


https://blockchaindemo.io/
https://guggero.github.io/, https://guggero.github.io/blockchain-demo/#!/

2- Creating Smart Contract using Solidity and Remix IDE.


https://www.geeksforgeeks.org/introduction-to-solidity/?ref=lbp
https://medium.com/coinmonks/learn-solidity-01-writing-your-first-smart-contract-528cad29ba99
https://www.quicknode.com/guides/solidity/how-to-write-an-ethereum-smart-contract-using-solidity

3- Creating Transactions using Solidity and Remix IDE


https://www.loginradius.com/blog/engineering/guest-post/ethereum-smart-contract-tutorial/
https://betterprogramming.pub/developing-a-smart-contract-by-using-remix-ide-81ff6f44ba2f

4- Embedding wallet and transaction using Solidity


Creating a smart contract using Metamask or Mist wallet (any other also will do), and performing the
transactions.
https://auth0.com/blog/an-introduction-to-ethereum-and-smart-contracts-part-2/
https://auth0.com/blog/an-introduction-to-ethereum-and-smart-contracts-part-3/
https://medium.com/@kacharlabhargav21/using-ganache-with-remix-and-metamask-446fe5748ccf

5- Blockchain platform ethereum using Geth.


https://medium.com/coinmonks/how-to-create-your-own-private-ethereum-blockchain-137ab15989c6
geth --datadir "./db" --networkid 123456 --rpc --rpcport "8545" --rpccorsdomain "*" --nodiscover --
rpcapi=”admin,db,eth,debug,miner,net,shh,txpool,personal,web3”

For password unlock. Instead of rpc use http.

geth --datadir "./db" --networkid 123456 --http –http.port "8545" –http.corsdomain "*" --nodiscover –
http.api=”admin,db,eth,debug,miner,net,shh,txpool,personal,web3”, --allow-insecure-unlock

6- Blockchain platform Ganache


https://trufflesuite.com/docs/ganache/
https://www.c-sharpcorner.com/article/create-your-first-smart-contract-in-ethereum-with-ganache-remix-
ide/
https://www.tutorialspoint.com/ethereum/ethereum_deploying_contract.htm

7- Case Study on Hyperledger


https://101blockchains.com/hyperledger-use-cases/#:~:text=One%20of%20the%20famous%20use,to
%20the%20food%20supply%20chain.
https://hyperledger-fabric.readthedocs.io/en/release-2.2/whatis.html
https://readthedocs.org/projects/hlf/

8- Case Study on Other Blockchain platforms.


9- Creating a blockchain Application.

You might also like