Blog Content

  • 졸업증명 DID를 백신시스템으로 변경해 보자

    Category BlockChain on 2022. 2. 9. 12:23

    백신 인증서로 변경하기 깃허브 : https://github.com/DobbyIsSlave/ha4-VCSystem.git 컨트랙트 주소 : 0x9fb3F9c2714B506509139dB63B72807E068B2Adc GitHub - DobbyIsSlave/ha4-VCSystem Contribute to DobbyIsSlave/ha4-VCSystem development by creating an account on GitHub. github.com struct Credential { uint256 id; string value; mapping(uint8 => address) vaccineIssuers; mapping(uint8 => uint8) vaccineType; mapping(uint8 => uin..

    Read more
  • 가위바위보 게임 개선하기

    Category BlockChain on 2022. 2. 8. 15:26

    트랜잭션 input 값 숨기기 깃헙 주소 : https://github.com/DobbyIsSlave/ha4-RSPGame.git 컨트랙트 주소 : 0xfbe5695E9104F6a13d0ac9A818194CE5A697D9cC GitHub - DobbyIsSlave/ha4-RSPGame Contribute to DobbyIsSlave/ha4-RSPGame development by creating an account on GitHub. github.com 기존 가위바위보의 경우 이더스캔에서 검색하면 방장이 무엇을 냈는지 미리 알 수가 있었다. 그래서 생각했던 방법은 변수 자체를 private으로 하거나 가위바위보의 값을 해싱하여 넣는 방법 두가지였다. 이후 검색해본 바로는 private으로 할 경우 추적이..

    Read more