Tagged in

Smart Contracts

Tokamak Network
Tokamak Network
On-Demand Ethereum Layer 2 Platform, The easiest and trustless way to build blockchain applications.
More information
Followers
842
Elsewhere
More, on Medium

Solidity Assembly & ABI Encoding

Carl Park(4000D, github)

Solidity의 Assembly(이하 Assembly)는 Solidity에서 EVM의 low level 연산을 수행할 수 있도록 도와줍니다. msg.data 을 접근하거나, 특정 어카운트(컨트랙)의 code 를 복사하거나 MLOAD , MSTORE , SLOAD , SSTORE 를 통해 메모리 혹은 스토리지에 직접 값을 읽고 쓰는 것이 가능합니다. 이번 글에서는 Assembly 와 함수의…


TrueBit: scrypt-interactive implementation

Carl Park(4000D, github)

TrueBit은 EVM의 연산 성능의 한계를 극복하려는 스케일링 솔루션입니다. TrueBit에 대한 설명은 Decipher의 블록체인 확장성 솔루션 시리즈 5–1 :: Truebit A to Z를 참조하시면 좋을 것 같습니다. 이 글에서는 Doge-Ethereum bridge 를 구현한 scrypt-interactive 를 살펴보도록 하겠습니다. 해당 저장소는…