22 lines
503 B
JavaScript
22 lines
503 B
JavaScript
/*
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/javascript.js to edit this template
|
|
*/
|
|
|
|
|
|
const GENESIS_DATA = {
|
|
blockHeaders : {
|
|
parentHash : "--genesis-parent-hash--",
|
|
beneficiary: "--genesis-beneficiary--",
|
|
difficulty: 1,
|
|
number: 0,
|
|
timestamp: "--genesis-timestamp--",
|
|
nonce: 0
|
|
}
|
|
};
|
|
|
|
module.exports = {
|
|
GENESIS_DATA
|
|
};
|
|
|
|
|