반응형 코인2 [솔리디티] 간단한 Smart Contract (코인 발행 예제) 코인 발행은 컨트랙트를 만든 사람만이 할 수 있다. 코인을 전송할 땐 아이디와 비밀번호 등이 필요하지 않다. 오직 필요한 것은 Ethereum 키 쌍 뿐이다. Smart Contract 예제 pragma solidity ^0.5.0; contract Coin { // The keyword "public" makes those variables // easily readable from outside. address public minter;// (1) address 변수 타입 mapping (address => uint) public balances; // Events allow light clients to react to // changes efficiently. event Sent(address f.. 2022. 5. 24. [Solidity] 솔리디티 쉽게 공부할만한 사이트 추천, 크립토 좀비 요즘 솔리디티 언어를 또 새롭게 공부중인데 코인이 많이 부흥한만큼 솔리디티에 대한 사람들의 관심이 크지 않은 것 같다. ㅠㅠ 공부하려고 책이나 유튜브 글같은걸 찾아도 레퍼런스가 확실히 적다. (물론 영어로 검색하면 항상 잘나온다 ^^) 그러던 와중 친한 선배가 추천해준 솔리디티를 쉽게 배우는 사이트가 있었다. 사이트는 바로 크립토 좀비! https://cryptozombies.io/ko/ #1 Solidity Tutorial & Ethereum Blockchain Programming Course | CryptoZombies CryptoZombies is The Most Popular, Interactive Solidity Tutorial That Will Help You Learn Blockchain .. 2021. 12. 1. 이전 1 다음