Skip to content

Instantly share code, notes, and snippets.

@bluepnume
Last active May 17, 2021 04:26
Show Gist options
  • Save bluepnume/4123245dd4aff1799237cdce22444723 to your computer and use it in GitHub Desktop.
Save bluepnume/4123245dd4aff1799237cdce22444723 to your computer and use it in GitHub Desktop.
export type TransactionType = {|
sender : string,
receiver : string,
amount : number,
fee : number
|};
export type BlockType = {|
miner : string,
parentid : string,
id : string,
index : number,
time : number,
elapsed : number,
transactions : Array<TransactionType>,
difficulty : number,
reward : number
|};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment