@btc-vision/transaction
Version:
OPNet transaction library allows you to create and sign transactions for the OPNet network.
37 lines (35 loc) • 877 B
text/typescript
/**
* @description Target consensus updates.
*
* @description For one year, there will be a new consensus update every 3 months.
* @description After one year, there will be a new consensus update every 6 months.
* @description After two years, there will be a new consensus update every year.
*/
export enum Consensus {
Roswell = 0, // Start of the network.
Rachel = 1,
Kecksburg = 2,
Phoenix = 3,
Aurora = 4, // End of first year.
Rendlesham = 5,
Lazar = 6, // End of second year.
ShagHarbor = 7,
Exeter = 8,
Stephenville = 9,
Valensole = 10,
Socorro = 11,
Pascagoula = 12,
Tehran = 13,
Westall = 14,
Hopkinsville = 15,
Belgium = 16,
Breeze = 17,
Flatwoods = 18,
Maury = 20,
Varginha = 21,
Trindade = 22,
Levelland = 23,
Wanaque = 24,
Coyame = 25,
Delphos = 26,
}