Tagged in

Solidity

Tokamak Network
Tokamak Network
On-Demand Ethereum Layer 2 Platform, The easiest and trustless way to build blockchain applications.
More information
Followers
839
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 와 함수의…