--- eip: 2330 title: EXTSLOAD opcode author: Dominic Letz (@dominicletz) discussions-to: https://ethereum-magicians.org/t/eip-2330-extsload-and-abi-for-lower-gas-cost-and-off-chain-apps/3733 status: Draft type: Standards Track category: Core created: 2019-10-29 --- ## Simple Summary A new `EXTSLOAD ` EVM opcode to read external contract storage data and corresponding allowing to build registry and token contracts that use less gas. ## Abstract While any off-chain application can read all contract storage data of all contracts, this is not possible for deployed smart contracts themselves. These are bound to use contract calls for any interaction including reading data from other contracts. This EIP adds an EVM opcode to directly read external contract storage. ## Motivation The gas cost when reading from registry style contract such as ERC-20s, ENS and other data contracts is very high, because they incur cross contract call cost, cost for ABI encoding, decoding and dispatching and finally loading the data. In many cases the underlying storage that is being queried is though just a simple mapping. In these cases a new `EXTSLOAD` call directly accessing the mapping in storage could not only **reduce the gas cost** of the interaction more than 10x, but also it would make the gas cost **predictable** for the reading contract. ## Specification **Proposal** A new EVM instruction `EXTSLOAD (0x5c)` that works like `SLOAD (0x54)` but an additional parameter representing the contract that is to be read from. The gas cost of `EXTSLOAD` would be the sum of the [fee schedule G](https://ethereum.github.io/yellowpaper/paper.pdf) for G\[EXTCODE\](700) + G\[SLOAD\](800) = 1500 gas ``` EXTSLOAD (0x5c) ``` The `EXTSLOAD` instruction pops 2 values from the stack, first `contract` a contract address and then second `slot` a storage address within `contract`. As result `EXTSLOAD` pushes on the stack the value from the contract storage of `contract` at the storage `slot` address or `0` in case the account `contract` does not exist. **Example** An example assuming [further Solidity changes](https://github.com/ethereum/solidity/issues/7593) for illustration: ```solidity interface MemberList { public fixed(@5) mapping(address => bool) members; } ``` And a corresponding contract function that uses this member list. Similarly tokens or other registries could be implemented. ```solidity function membersOnly(address list, address member) { MemberList ml = MemberList(list); if (ml.members[client] == false) revert("Nonmember!"); } ``` The call `ml.members[client]` here could let the Solidity compiler generate the normal map access logic but using the new `EXTSLOAD ` instructions to read from the `ml` contract storage instead of the local contract storage. ## Backwards Compatibility This change is fully backwards compatible since it adds a new instruction. ## Test Cases Not started yet. ## Implementation [Aleth Pull Request](https://github.com/ethereum/aleth/pull/5805) ## Copyright Copyright and related rights waived via [CC0](https://creativecommons.org/publicdomain/zero/1.0/).