eth.syncing { currentBlock: 745600, highestBlock: 889152, startingBlock: 745553 } You can then see where you are (currentBlock), and the block you still have to reach (highestBlock).(The difference between them is the number of blocks you have left remaining.)"> Ethereum Total Blocks

ethereum total blocks

Ethereum Sign up or log in to customize your list._ Here's how it works: Anybody can ask a question Anybody can answer The best answers are voted up and rise to the top up vote down vote favorite 5 I'm syncing up a new node.How can I find out what the latest block is so that I know how far I've got to go?nodes synchronization up vote down vote For Geth, in another terminal, attach to the Geth console, such as geth attach.This will allow you to keep your syncing node running, without restarting, and you will not see the noisy logs as you would if you simply ran "geth console" without other parameters.In the console, run eth.syncing > eth.syncing { currentBlock: 745600, highestBlock: 889152, startingBlock: 745553 } You can then see where you are (currentBlock), and the block you still have to reach (highestBlock).(The difference between them is the number of blocks you have left remaining.)
You can run eth.syncing a few times to check your progress, and it will return false when done.You can then use eth.blockNumber and also compare with a blockchain explorer, as other answers here mention.up vote 8 down vote If you are using Geth: stop your current instance of geth, then re-run it with the console argument: geth console then enter: web3.eth.blockNumber It will give you the block number as integer, here's the function documentation.If you are looking for the block hash instead you can use: web3.eth.getBlock(BLOCK_NUMBER).hash so for the current block (atm) it will be: web3.eth.getBlock(887893).hash and for the latest block: web3.eth.getBlock(web3.eth.blockNumber).hash up vote 6 down vote You could use a block explorer, such as Etherchain.up vote 5 down vote The Ethereum wallet will display the latest block number.The official Ethereum stats website also displays it.(Note: this doesn't represent all peers on the network.)
up vote 3 down vote web3.eth.blockNumber gets you the latest block height on your node.Note that you have to have a synced node for that.When you are still downloading the blockchain this number will be smaller.up vote 2 down vote If you are still syncing you can type eth.syncing and it will report currentBlock highestBlock startingBlock If eth.syncing is false then use the eth.blockNumber command sebastian mentioned and compare it to the reported block height from your favorite online block explorer up vote 2 down vote /lyricalpolymath/Ethereum-Scripts 1) show simple progress % with geth running, copy and paste this code in a terminal window to have a simple feedback of the blockchain syncing progress geth --exec 'var s = eth.syncing; console.log(" ------------ GETH SYNCING PROGRESS progress: " + (s.currentBlock/s.highestBlock*100)+ " % blocks left to parse: "+ (s.highestBlock-s.currentBlock) + " current Block: " + s.currentBlock + " of " + s.highestBlock)' attach you will get an output like this ------------ GETH SYNCING PROGRESS progress: 81.9161292631709 % blocks left to parse: 368837 current Block: 1670754 of 2039591 2) advance progress with Time Estimate download the script and with geth running, copy and paste this code in a terminal window to have a simple feedback of the blockchain syncing progress geth --exec "loadScript('GethSyncingProgress_2TimeEstimate.js')" attach will give you an output like ------------ GETH SYNCING PROGRESS - Time estimate progress: 83.83513931320763 Estimated Time left*: 7d :11h :4m :4s.3 Time it took to parse 10 blocks: 0d :0h :0m :19s.5 blocks left to parse: 330536 Your Answer Sign up or log in Sign up using Google Sign up using Email and Password Post as a guest Name Email discard By posting your answer, you agree to the privacy policy and terms of service.
Browse other questions tagged nodes synchronization or ask your own question.It looks like you're new here.If you want to get involved, click one of these buttons!Sign In Register Categories Recent Discussions Activity Unanswered Best Of... Categories All Categories Mining Pool Discussion General Project Discussion (non-technical) Education Protocol and Client discussion web3-js Whisper Swarm 2 RLP IoT & Hardware Smart Contracts and Dapps Serpent Solidity Projects Reference clients code and builds Eth & AlethZero- Cpp Implementation Geth - Go Implementation Mist Node.js Implementation Python Implementation Mix Other Implementations Meetups Other Events Jobs & Skills Press and Articles Audio/Video Ether Sale Other Languages Chinese German Italian French 2 Hebrew 6 Japanese Portugese Romanian Russian Spanish Turkish Watercoolerbitcoin iran sanctions
_ Here's how it works: Anybody can ask a question Anybody can answer The best answers are voted up and rise to the top up vote 5 down vote favorite This is the info of one of the blocks in my private blockchain: { difficulty: 759585, extraData: "0xd783010409844765746887676f312e362e32856c696e7578", gasLimit: 4712388, gasUsed: 0, hash: "0xcf3366fbf4b6c9adf63386b1cc1ed03957df28c57f576a5a4ceef4041011d0c0", logsBloom: "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", miner: "0x37e5a459dbd48d4d9874e13cc334dab30373cece", nonce: "0x40f805725d02472c", number: 17000, parentHash: "0xaeb4da768e9e9cb4838e37128ffe895a2f8a684bf2a66339659bbb25a6e44a69", receiptRoot: "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", sha3Uncles: "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", size: 537, stateRoot: "0x8e61e87fbe4df30634472018ffb7c3f7a8315901ace91f9244958e067bf84a6b", timestamp: 1467943085, totalDifficulty: 10000790891, transactions: [], transactionsRoot: "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", uncles: [] } In this, what does the difficulty and the totalDifficulty parameters mean?etherium black
blocks difficulty up vote 5 down vote These are explained on the wiki in the JSON RPC README, under the entry for eth_getBlockByHash().difficulty: QUANTITY - integer of the difficulty for this block.bitcoin bowl 2014 tvtotalDifficulty: QUANTITY - integer of the total difficulty of the chain until this block.bitcoin usd bloomberg[ Where the difficulty itself is a measure of how difficult it is for a miner to mine a new block by finding a hash below a given target.bitcoin dropping like a rockAn explanation of the calculations used to set Ethereum's difficulty can be found in this previous thread.bitcoin dw] up vote 1 down vote As Richard already pointed out, the difficulty is the current quantitative measure how hard it is to brute force ('mine') a block.