NODE
- CESS 스토리지 노드 마지막 테스트넷 구동하기 more
- Masa Bittensor Incentivized Testnet 가이드 more
- Rivalz incentivized Testnet 가이드 more
- Taiko Node 구동 및 Proposer, Prover 활성화 more
- Taiko Prover 노드 구동 more
- Aethir Checker Node 구동하기 for Linux more
- Aethir Checker Node 구동하기 for Windows more
- 0G Labs Storage 노드 구동하기 more
- Run a 0G Validator Node more
- 0G Labs Validator 노드 구동하기 more
- Avail Light Client Node 구동하기 more
- CESS Consensus 노드 구동하기 more
- DATS Project 구동하기 more
- [기초] VPS ssh 접속하기 with Termius more
- Kuzco Worker 구동 가이드 more
- CESS 스토리지 노드 지갑 주소 변경 more
- Dusk 노드 업그레이드 가이드 more
- Polymer 테스트넷 가이드 2편 more
- Polymer 테스트넷 가이드 1편 more
- AO 테스트넷 퀘스트 가이드 more
Crypto Zombies
- Making the Zombie Factory - Chapter 5: Structs Chapter 5: Structs structs allow you to create more complicated data types that have multiple properties Put it to the test pragma solidity >=0.5.0 2024.02.06
- Making the Zombie Factory - Chapter 4: Math Operations Chapter 4: Math Operations Solidity's operations are the same as in most programming languages Addition: x + y Subtraction: x - y Multiplication: x * y Division: x / y Modulus / remainder: x % y exponential operator uint x = 5 ** 2; // equal to 5^2 = 25 Put it to the test pragma solidity >=0.5.0 2024.02.06
- Making the Zombie Factory - Chapter 3: State Variables & Integers Chapter 3: State Variables & Integers State variables are permanently stored in contract storage This means they're written to the Ethereum blockchain Put it to the test pragma solidity >=0.5.0 2024.02.06
- Making the Zombie Factory - Chapter 2: Contracts Chapter 1은 Next만 해도 넘어감 Chapter 2: Contracts Solidity's code is encapsulated in contracts A contract is the fundamental building block of Ethereum applications All variables and functions belong to a contract, and this will be the starting point of all projects Put it to the test pragma solidity >=0.5.0 =version =0.4.0 2024.02.06