Skip to content

Suggestions for the app #1

@pouyiouk

Description

@pouyiouk

Suggestions:
-Information regarding the node software

  • Client Type(Geth/Parity), (admin.nodeInfo)
  • API vesion,
  • Number of connected Peers (admin.peers)
  • IP Address

-Information for the chain: apart from the syncing status, include:

  • Network GAS,
  • Estimated status to sync with percentage - try this on the geth attach console to see what I mean
var lastPercentage = 0;var lastBlocksToGo = 0;var timeInterval = 1000;
setInterval(function(){
    var percentage = eth.syncing.currentBlock/eth.syncing.highestBlock*100;
    var percentagePerTime = percentage - lastPercentage;
    var blocksToGo = eth.syncing.highestBlock - eth.syncing.currentBlock;
    var bps = (lastBlocksToGo - blocksToGo) / (timeInterval / 1000)
    var etas = 100 / percentagePerTime * (timeInterval / 1000)

    var etaM = parseInt(etas/60,10);
    console.log(parseInt(percentage,10)+'% ETA: '+etaM+' minutes @ '+bps+'bps');

    lastPercentage = percentage;lastBlocksToGo = blocksToGo;
},timeInterval);
  • Network Hashrate,
  • Current Size on Disk

Let me know if I can help in any way.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions