블록체인 - 디지털 서명( 전자 서명 )
목차 1. 트랜잭션 2. 디지털 서명 만들기 이전 코드 https://github.com/100space/2304/tree/main/0427 GitHub - 100space/2304 Contribute to 100space/2304 development by creating an account on GitHub. github.com 1. 트랜잭션 const block1 = block.createBlock(GENESIS, "123123", GENESIS) 블록을 생성할 때 data를 string으로 강제로 넣은 상태로 블록을 생성했었지만, 원래 data는 트렌잭션들로 이루어져 있다. 트랜잭션을 간단히 설명하자면 블록체인에서 데이터를 처리하고 저장하는 기본 단위이다. 트랜잭션은 크게 input, output..