생각보다 강의가 길다? (1)Mappings and Addresses new data types: mapping and address. 이더주소 자체가 데이터타입이라니..! Address an address is owned by a specific user (or a smart contract). The Ethereum blockchain is made up of accounts, which you can think of like bank accounts. An account has a balance of Ether (the currency used on the Ethereum blockchain), and you can send and receive Ether payments to other accou..
(1) Lesson Overview DNA따라 캐릭터 조형이 바뀜을보여줌 nft는 실제로 이렇게 조형되서 예제를 이렇게 보여준듯 (2) Contracts Solidity's code is encapsulated in contracts. A contract is the fundamental building block of Ethereum applications 맞다 그래서 컨트랙만봐도 러그 50퍼는 피할수있다 이걸위해 나는 이 강의를 시작한것이다 -Version Pragma All solidity source code should start with a "version pragma" — a declaration of the version of the Solidity compiler this code sho..
요새 민팅을 많이하는데 러그도 몇번 당하고 민팅도 선착순에서 밀리고 개발자로서 부끄러운일이 한두개가아니다.. 그냥 그때그때 배우지말고 간단하게라도 공부해서 제대로 격파하기로 결정 모든 nft의 근본은 이더리움=솔리디티라 솔리디티로 결정 다행히 솔리디티 초급강의를 제공하는곳이 있다. https://cryptozombies.io/ #1 Solidity Tutorial & Ethereum Blockchain Programming Course | CryptoZombies CryptoZombies is The Most Popular, Interactive Solidity Tutorial That Will Help You Learn Blockchain Programming on Ethereum by Building..
컴퓨터는 1과 0으로 말하고(기계어, low level language), 인간은 컴퓨터와 대화하기 위해 코드(high level language)를 사용한다. 그래서 컴퓨터가 인간의 언어를 알아듣게 변환하는 과정이 필요한데, 그 방식은 컴파일과 인터프리터이다. 컴파일러언어의 예: C 인터프리터 언어의 예: javascript, python 이 방식에 따라 언어간 실행 속도의 차가 존재한다. 한번 컴파일되면 컴파일러 언어가 실행속도가 더 빠르다. 우리가 외국어 영상을 보는 상황이라고 하자. 컴파일언어는 자막을 달아+인코딩 되어 업로딩 된 영상을 보는것이다. 한번 업로드되면 멈추지않고 빠르게 영상을 볼수있다. 이 자막+인코딩+영상 세트를 목적파일이라고 한다(object file, .o파일형태이다) 반면 인..
mac, 리눅스 공통 npm global 설치한후 실행시 계속 command not found 가 뜰때 보통 경로문제다. 하지만 .bash 파일을 수정하다 잘돌아가던것까지 박살나기 쉽다. 우회하자. 터미널에서 경로 세팅을 다시해주자 npm config set prefix /usr/local npm 통해 설치되는 파일 경로가 로컬파일이된다. 숨김파일이다. 기존에 npm 글로벌로 깔았더라도 새로 받는다. 기존 npm 파일받은건 잊자.(저는 서버리스 받고있었음) npm i -g serverless 그다음 프로그램명을 치면 잘된다 기본 패스 설정이 이상했던것! 출처 https://stackoverflow.com/a/45132080