str4d / insight-ui-zcash

A bitcoin blockchain web browser user interface
https://bitcore.io/guides/full-node
30 stars 21 forks source link

Testnet blockexplorer sapling activation #15

Open Moschn opened 6 years ago

Moschn commented 6 years ago

AFAIK sapling has been activated on the zcash testnet with the "new" update on block 252500. The blockexplorer is still on the old chain. Compare the best current block on the explorer (263114) with the best block from the zcash node (268215).

$ zcash-cli -testnet getblockchaininfo
{
  "chain": "test",
  "blocks": 268215,
  "headers": 260385,
  "bestblockhash": "001083eef92b4100e9ed59a89db39afe7bb79cec75113b4935fe8e70dfffdb0b",
  "difficulty": 108.6044222624648,
  "verificationprogress": 0.9999905756249263,
  "chainwork": "00000000000000000000000000000000000000000000000000000001dac07c6c",
  "pruned": false,
  "commitments": 72812,
  "valuePools": [
    {
      "id": "sprout",
      "monitored": true,
      "chainValue": 420568.02939523,
      "chainValueZat": 42056802939523
    },
    {
      "id": "sapling",
      "monitored": true,
      "chainValue": 0.00000000,
      "chainValueZat": 0
    }
  ],
  "softforks": [
    {
      "id": "bip34",
      "version": 2,
      "enforce": {
        "status": true,
        "found": 400,
        "required": 51,
        "window": 400
      },
      "reject": {
        "status": true,
        "found": 400,
        "required": 75,
        "window": 400
      }
    },
    {
      "id": "bip66",
      "version": 3,
      "enforce": {
        "status": true,
        "found": 400,
        "required": 51,
        "window": 400
      },
      "reject": {
        "status": true,
        "found": 400,
        "required": 75,
        "window": 400
      }
    },
    {
      "id": "bip65",
      "version": 4,
      "enforce": {
        "status": true,
        "found": 400,
        "required": 51,
        "window": 400
      },
      "reject": {
        "status": true,
        "found": 400,
        "required": 75,
        "window": 400
      }
    }
  ],
  "upgrades": {
    "5ba81b19": {
      "name": "Overwinter",
      "activationheight": 207500,
      "status": "active",
      "info": "See https://z.cash/upgrade/overwinter.html for details."
    },
    "76b809bb": {
      "name": "Sapling",
      "activationheight": 252500,
      "status": "active",
      "info": "See https://z.cash/upgrade/sapling.html for details."
    }
  },
  "consensus": {
    "chaintip": "76b809bb",
    "nextblock": "76b809bb"
  }
}