Tags
- LSL_Script
- 프런트엔드
- Android
- web developer
- Android/iOS Developer
- postman csv
- 좋은 개발자
- MFC
- Interaction developer
- postman collection
- emplace_back
- Intellij
- 우수한 프런트 개발자
- 다빈치 리졸브
- postman automations
- UI/UX Engineer
- oracle
- postman html parse
- c#
- postman excel
- solidity
- Unity
- postman pre-request
- postman
- postman session
- postman tests
- postman collection variables
- Java
- C++
- Front-end developer
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Archives
- Today
- Total
목록[Blockchain]/develop (5)
david's daily developer note
[Solidity] 1.Basics & Language description
1. 기본 솔리디티(Solidity)는 "계약 지향 프로그래밍 언어"로 스마트 컨트랙트(Smart Contract) 단위로 구성되며 실행된다. (EVM(Ethereum Virtual Machine)에서 동작하는 Curly-bracket languages) pragma solidity ^0.4.19; contract Example { } 예시는 하나의 컨트랙트가 작성된 기본 예제이다. 첫 번째 라인의 pragma solidity^는 솔리디티 컴파일러 버전을 의미하며, 레거시 코드가 새로운 컴파일러가 등장하더라도 정상 동작함을 보장한다. 솔리디티의 기본 구성 및 실행 요소는 컨트랙트이며, 모든 변수 및 함수가 컨트랙트안에서 동작한다. 선언된 변수와 값은 실제 블록체인에 영구적으로 기록된다. 2. 변수 및 구..
[Blockchain]/develop
2022. 8. 13. 02:45