Typescript로 블록체인 만들기 4) Block 만들기
기본적인 Block의 구조를 갖출 수 있도록 class를 만들어준다. index.ts class Block { public index: number; public hash: string; public previousHash: string; public data: string; public timestamp: number; constructor( index: number, hash: string, previousHash: string, data: string, timestamp: number ) { this.index = index; this.hash = hash; this.previousHash = previousHash; this.data = data; this.timestamp = timestamp;..
Programming/Typescript
2019. 4. 28. 18:37