Skip to content

Instantly share code, notes, and snippets.

@bluepnume
Last active May 12, 2022 14:47
Show Gist options
  • Save bluepnume/ca5a53b497528d620c1cc1aecacd2363 to your computer and use it in GitHub Desktop.
Save bluepnume/ca5a53b497528d620c1cc1aecacd2363 to your computer and use it in GitHub Desktop.
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