🔑 코인 투자 추천 링크 🔑
[NEW] 누구나 쉽게 따라하는 솔리디티 강의(솔리디티 버전 0.8.13)
5. 배열, 열거형(enum), 구조체(calldata,memory)
8. 이벤트(events), 생성자(constructor), 상속
10. 인터페이스(interface), payable, 이더전송,받기 관련
11. Fallback, Call, Delegate(솔리디티 업그레이드 기법)
12. 함수 선택자(function selector), 다른 컨트랙트 사용 및 생성기법
13. Try Catch, Import(임포트), Library(라이브러리)
14. ABI 디코드, hash 함수, 서명검증, 가스최적화
* 블록체인 전문가들도 놓치기 쉬운 비트코인, 이더리움의 핵심가치 강의
[솔리디티 강의1. Remix 사용법, Hellowrld 컨트랙트 만들어보기]
1. Hello World.
소스파일
// SPDX-License-Identifier: MIT
// compiler version must be greater than or equal to 0.8.13 and less than 0.9.0
pragma solidity ^0.8.13;
contract HelloWorld {
string public greet = "Hello World!";
}
1) 과제 ) 자신의 이름의 컨트랙트를 만들고, 자신에게 인사하는 문자를 출력해보세요!(블록체인에 기록해보세요!)
- 컨트랙트 이름 : 예) DannyWorld
- 메세지 : "안녕 Dannyworld! 이 기록은 지워지지 않는다고 하네! 만나서 반가워!!"
2. 카운터 컨트랙트
소스파일
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
contract Counter {
uint public count;
// Function to get the current count
function get() public view returns (uint) {
return count;
}
// Function to increment count by 1
function inc() public {
count += 1;
}
// Function to decrement count by 1
function dec() public {
// This function will fail if count = 0
count -= 1;
}
}
3. 솔리디티 기본(원시) 데이터 타입
- 솔리디티에서는 아래와 같은 기본(원시) 데이터 타입이 존재한다.
- Boolean, uint, int, address
3.1 uint형(unsigned integer) : 부호 없는 정수형
- 범위는 uint8~uint256까지.
- uint8의 경우는 0~2^8-1 범위, uint16은 2^16-1 범위...uint256은 2^256-1 범위임
3.2 int형(integer) : 부호 있는 정수형
- 범위는 uint형 참고
- 음수값을 표시할 수 있으므로, -2^255 ~ 2^255-1이 int256의 범위임.
- int128의 경우는 -2^127 ~ 2^127-1
- maxint, minint 값 참고
3.3 address 타입 : 계정의 주소.
3.4 bytes types : 정적, 동적 bytes 타입이 존재
소스파일.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
contract Primitives {
bool public boo = true;
/*
uint stands for unsigned integer, meaning non negative integers
different sizes are available
uint8 ranges from 0 to 2 ** 8 - 1
uint16 ranges from 0 to 2 ** 16 - 1
...
uint256 ranges from 0 to 2 ** 256 - 1
*/
uint8 public u8 = 1;
uint public u256 = 456;
uint public u = 123; // uint is an alias for uint256
/*
Negative numbers are allowed for int types.
Like uint, different ranges are available from int8 to int256
int256 ranges from -2 ** 255 to 2 ** 255 - 1
int128 ranges from -2 ** 127 to 2 ** 127 - 1
*/
int8 public i8 = -1;
int public i256 = 456;
int public i = -123; // int is same as int256
// minimum and maximum of int
int public minInt = type(int).min;
int public maxInt = type(int).max;
address public addr = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
/*
In Solidity, the data type byte represent a sequence of bytes.
Solidity presents two type of bytes types :
- fixed-sized byte arrays
- dynamically-sized byte arrays.
The term bytes in Solidity represents a dynamic array of bytes.
It’s a shorthand for byte[] .
*/
bytes1 a = 0xb5; // [10110101]
bytes1 b = 0x56; // [01010110]
// Default values
// Unassigned variables have a default value
bool public defaultBoo; // false
uint public defaultUint; // 0
int public defaultInt; // 0
address public defaultAddr; // 0x0000000000000000000000000000000000000000
}
소스 출처 : https://solidity-by-example.org/
블록체인 교육 문의는 아래 링크 참고 바랍니다.
댓글