Last active
May 12, 2022 14:47
-
-
Save bluepnume/ca5a53b497528d620c1cc1aecacd2363 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const BLOCK_TIME = 1000; | |
export const INITIAL_REWARD = 1024; | |
export const REWARD_HALVING_SCHEDULE = 20; | |
export const BLOCK_SIZE_LIMIT = 10; | |
export const GENESIS_BLOCK : BlockType = { | |
id: 'GENESIS', | |
parentid: 'GENESIS', | |
miner: 'SATOSHI', | |
index: 1, | |
time: now(), | |
elapsed: 0, | |
transactions: [], | |
difficulty: 1, | |
reward: INITIAL_REWARD | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment