Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions lib/protocol/networks.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ main.pow = {
*/

chainwork: new BN(
'000000000000000000000000000000000000000000d4800adc35a2748a30dfcf',
'000000000000000000000000000000000000000000ddd4a527724e4a8e938b34',
'hex'
),

Expand Down Expand Up @@ -338,6 +338,12 @@ main.block = {
*/
greatWallActivationTime: 1557921600,

/**
* Friay, Nov 15, 2019 12:00:00 UTC hard fork
*/

gravitonActivationTime: 1573819200,

/**
* Safe height to start pruning.
*/
Expand Down Expand Up @@ -627,7 +633,7 @@ testnet.pow = {
),
bits: 486604799,
chainwork: new BN(
'00000000000000000000000000000000000000000000003e28ffb60a2b69f5f0',
'0000000000000000000000000000000000000000000000416ad051088ff75074',
'hex'
),
targetTimespan: 14 * 24 * 60 * 60,
Expand Down Expand Up @@ -658,6 +664,7 @@ testnet.block = {

magneticAnomalyActivationTime: 1542300000,
greatWallActivationTime: 1557921600,
gravitonActivationTime: 1573819200,

pruneAfterHeight: 1000,
keepBlocks: 10000,
Expand Down Expand Up @@ -805,6 +812,7 @@ regtest.block = {
daaHash: null,
magneticAnomalyActivationTime: 1542300000,
greatWallActivationTime: 1557921600,
gravitonActivationTime: 1573819200,
pruneAfterHeight: 1000,
keepBlocks: 10000,
maxTipAge: 0xffffffff,
Expand Down Expand Up @@ -957,6 +965,7 @@ simnet.block = {
daaHash: null,
magneticAnomalyActivationTime: 1542300000,
greatWallActivationTime: 1557921600,
gravitonActivationTime: 1573819200,
pruneAfterHeight: 1000,
keepBlocks: 10000,
maxTipAge: 0xffffffff,
Expand Down