Repository files navigation

SLOAD2 & SLOAD2-Map

License: MITtests

SLOAD2 is a set of Solidity libraries for writing and reading contract storage paying a fraction of the cost, it uses contract code as storage, writing data takes the form of contract creations and reading data uses EXTCODECOPY.

The library is not audited, it's recommended to perform a full audit of SSTORE2 and CREATE3 before using this code on a production envirovment.

Features

  • All SLOAD2 storages are write-once only
  • Key Value storage (custom key and auto-gen key)
  • Cheaper storage reads (vs SLOAD) after 32 bytes
  • Cheaper storage writes (vs SSTORE) after 32 bytes (auto-gen key)
  • Cheaper storage writes (vs SSTORE) after 96 bytes (custom key)
  • Use strings as keys
  • Use bytes32 as keys
  • Use address as keys (auto-gen)

Gas savings

Gas costs are overall lower compared with traditional SSTORED and SLOAD operations, SLOAD2 (auto-generated key) and SLOAD2-Map (custom key) have different costs associated with using them.

The root cause is that custom-key SLOAD2 needs to use CREATE3 to deploy the data contract, and CREATE3 needs to deploy an aditional proxy contract for each deployed contract.

SLOAD Cost (data read)

Reading data is a lot cheaper compared to native SLOAD operations (native solidity storage).

After reading 32 bytes SSTORE2.read becomes the cheaper option, and SSTORE2Map.read becomes cheaper when reading 33 bytes or more.

Size (bytes)SLOADSLOAD2SLOAD2 - MapSavingsSavings (map)
02.6793.1025.2580,86x0,51x
22.8523.1085.2610,92x0,54x
324.9143.1085.2641,58x0,93x
337.0673.1145.2672,27x1,34x
647.0673.1145.2702,27x1,34x
969.2203.1205.2762,96x1,75x
12811.3733.1265.2823,64x2,15x
25619.9853.1505.3066,34x3,77x
51237.2093.1985.35511,64x6,95x
102471.6593.2965.45421,74x13,14x
245761.349.1617.6279.805176,89x137,60x

SSTORE Cost

SSTORE Cost (data writes)

Writing data is also cheaper than native SSTORE operations (native solidity storage), but gains become apparent after higher data sizes.

After writing 32 bytes SSTORE2.write becomes the cheaper option, and SSTORE2Map.write becomes cheaper only when writing 128 bytes or more.

Size (bytes)SSTORESSTORE2SSTORE2 - MapSavingsSavings (map)
02.66035.32373.5650,08x0,04x
222.60735.81974.0610,63x0,31x
3244.81041.89180.2181,07x0,56x
3366.98042.18780.5141,59x0,83x
6466.98048.45986.8701,38x0,77x
9689.15055.02793.5231,62x0,95x
128111.32061.595100.1751,81x1,11x
256200.00087.869126.7862,28x1,58x
512377.360140.417180.0102,69x2,10x
1024732.080245.522286.4752,98x2,56x
2457613.878.8904.148.0204.244.9983,35x3,27x

SSTORE Cost

Notice: gas savings may change in future Ethereum hard-forks.

Notice x2: due to contract code limits 24576 bytes is the maximum amount of data that can be written in a single pointer / key. Attempting to write more will result in failure.

Installation

yarn add https://github.com/0xsequence/sstore2

or

npm install --save https://github.com/0xsequence/sstore2

Usage

SSTORE2 comes in two flavors, SSTORE2 and SSTORE2Map. The main difference is that SSTORE2 auto-generates a key or "pointer" for later data reads, and SSTORE2Map let's you use a custom pointer in the form of a bytes32 key.

SSTORE2 is cheaper because it only needs to use CREATE. SSTORE2Map is a little more expensive (~ +50k gas) because it makes use of CREATE3, which requires using both CREATE2 + CREATE at the same time.

SSTORE2

Calling SSTORE2.write with some data returns an address pointer; this pointer address can later be feed into SSTORE2.read to retrieve the same data. Every time write is called it generates a new pointer, pointers can't be deleted.

Notice: reading a never an invalid pointer may return an empty bytes array or contract bytecode.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivate pointer;
function setText(stringcalldata_text) external {
pointer = SSTORE2.write(bytes(_text));
}
function getText() externalviewreturns (stringmemory) {
returnstring(SSTORE2.read(pointer));
}
}

Arbitrary size immutables

Solidity 0.8.9 doesn't support variable size immutable variables; these can be emulated using SSTORE2 and immutable pointers.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivateimmutable dataPointer;
constructor(bytesmemory_data) {
dataPointer = SSTORE2.write(_data);
}
function getData() externalviewreturns (bytesmemory) {
return SSTORE2.read(dataPointer);
}
}
contractBroken {
// Fails to build, non-primite types// can't be used as immutable variablesbytesprivateimmutable data;
constructor(bytesmemory_data) {
data = _data;
}
}

SSTORE2Map

SSTORE2Map behaves similarly to SSTORE2, but instead of auto-generating a pointer on each SSTORE2Map.write call it takes an arbitrary key in the form of a bytes32 variable; this key must later be provided to SSTORE2Map.read to retrieve the written value.

The map store is also write-once, meaning that calling SSTORE2Map.write TWICE with the same key will fail. There is no mechanism for deleting or removing the value of a given key.

Notice: reading a never written key will always return an empty array of bytes.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
bytes32private constant KEY =0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3;
function setHashes(bytes32[] calldata_hashes) external {
SSTORE2Map.write(KEY, abi.encode(_hashes));
}
function getHashes() externalviewreturns (bytes32[] memory) {
returnabi.decode(SSTORE2Map.read(KEY), (bytes32[]));
}
}

Using multiple keys

SSTORE2Map supports using multiple keys at the same time, but re-using a key will result in failure.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
// This worksfunction good() external {
SSTORE2Map.write(string("@key-1"), bytes("hola"));
SSTORE2Map.write(string("@key-2"), bytes("mundo"));
}
// This revertsfunction bad() external {
SSTORE2Map.write(string("@key-3"), bytes("adios"));
SSTORE2Map.write(string("@key-3"), bytes("mundo"));
}
}

Notice: strings can be used as SSTORE2Map; they get internally mapped as keccak256(bytes(<string>).

Reading slices

Both SSTORE2 and SSTORE2Map support reading data slices; their behaviors mirror javascript's .slice(start, end).

The functionality can be used for future-proofing a contract in the case that code merkelization is ever implemented.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
event Sliced(bytes_data);
function goodSlices() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// 0x223344emitSliced(
SSTORE2.read(pointer, 1)
);
// 0x2233emitSliced(
SSTORE2.read(pointer, 1, 3)
);
// 0xemitSliced(
SSTORE2.read(pointer, 3, 3)
);
// 0x3344emitSliced(
SSTORE2.read(pointer, 2, 42000)
);
// 0xemitSliced(
SSTORE2.read(pointer, 41000, 42000)
);
}
function badSlies() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// This reverts// start must be equal or lower than endemitSliced(
SSTORE2.read(pointer, 3, 2)
);
}
}

License

MIT License
Copyright (c) [2018] [Ismael Ramos Silvan]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

Faster & cheaper contract key-value storage for Ethereum Contracts

Resources

Stars

447 stars

Watchers

20 watching

Forks

Releases

Packages

Used by

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all
 blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks");
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
Skip to content

Repository files navigation

SLOAD2 & SLOAD2-Map

License: MITtests

SLOAD2 is a set of Solidity libraries for writing and reading contract storage paying a fraction of the cost, it uses contract code as storage, writing data takes the form of contract creations and reading data uses EXTCODECOPY.

The library is not audited, it's recommended to perform a full audit of SSTORE2 and CREATE3 before using this code on a production envirovment.

Features

  • All SLOAD2 storages are write-once only
  • Key Value storage (custom key and auto-gen key)
  • Cheaper storage reads (vs SLOAD) after 32 bytes
  • Cheaper storage writes (vs SSTORE) after 32 bytes (auto-gen key)
  • Cheaper storage writes (vs SSTORE) after 96 bytes (custom key)
  • Use strings as keys
  • Use bytes32 as keys
  • Use address as keys (auto-gen)

Gas savings

Gas costs are overall lower compared with traditional SSTORED and SLOAD operations, SLOAD2 (auto-generated key) and SLOAD2-Map (custom key) have different costs associated with using them.

The root cause is that custom-key SLOAD2 needs to use CREATE3 to deploy the data contract, and CREATE3 needs to deploy an aditional proxy contract for each deployed contract.

SLOAD Cost (data read)

Reading data is a lot cheaper compared to native SLOAD operations (native solidity storage).

After reading 32 bytes SSTORE2.read becomes the cheaper option, and SSTORE2Map.read becomes cheaper when reading 33 bytes or more.

Size (bytes)SLOADSLOAD2SLOAD2 - MapSavingsSavings (map)
02.6793.1025.2580,86x0,51x
22.8523.1085.2610,92x0,54x
324.9143.1085.2641,58x0,93x
337.0673.1145.2672,27x1,34x
647.0673.1145.2702,27x1,34x
969.2203.1205.2762,96x1,75x
12811.3733.1265.2823,64x2,15x
25619.9853.1505.3066,34x3,77x
51237.2093.1985.35511,64x6,95x
102471.6593.2965.45421,74x13,14x
245761.349.1617.6279.805176,89x137,60x

SSTORE Cost

SSTORE Cost (data writes)

Writing data is also cheaper than native SSTORE operations (native solidity storage), but gains become apparent after higher data sizes.

After writing 32 bytes SSTORE2.write becomes the cheaper option, and SSTORE2Map.write becomes cheaper only when writing 128 bytes or more.

Size (bytes)SSTORESSTORE2SSTORE2 - MapSavingsSavings (map)
02.66035.32373.5650,08x0,04x
222.60735.81974.0610,63x0,31x
3244.81041.89180.2181,07x0,56x
3366.98042.18780.5141,59x0,83x
6466.98048.45986.8701,38x0,77x
9689.15055.02793.5231,62x0,95x
128111.32061.595100.1751,81x1,11x
256200.00087.869126.7862,28x1,58x
512377.360140.417180.0102,69x2,10x
1024732.080245.522286.4752,98x2,56x
2457613.878.8904.148.0204.244.9983,35x3,27x

SSTORE Cost

Notice: gas savings may change in future Ethereum hard-forks.

Notice x2: due to contract code limits 24576 bytes is the maximum amount of data that can be written in a single pointer / key. Attempting to write more will result in failure.

Installation

yarn add https://github.com/0xsequence/sstore2

or

npm install --save https://github.com/0xsequence/sstore2

Usage

SSTORE2 comes in two flavors, SSTORE2 and SSTORE2Map. The main difference is that SSTORE2 auto-generates a key or "pointer" for later data reads, and SSTORE2Map let's you use a custom pointer in the form of a bytes32 key.

SSTORE2 is cheaper because it only needs to use CREATE. SSTORE2Map is a little more expensive (~ +50k gas) because it makes use of CREATE3, which requires using both CREATE2 + CREATE at the same time.

SSTORE2

Calling SSTORE2.write with some data returns an address pointer; this pointer address can later be feed into SSTORE2.read to retrieve the same data. Every time write is called it generates a new pointer, pointers can't be deleted.

Notice: reading a never an invalid pointer may return an empty bytes array or contract bytecode.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivate pointer;
function setText(stringcalldata_text) external {
pointer = SSTORE2.write(bytes(_text));
}
function getText() externalviewreturns (stringmemory) {
returnstring(SSTORE2.read(pointer));
}
}

Arbitrary size immutables

Solidity 0.8.9 doesn't support variable size immutable variables; these can be emulated using SSTORE2 and immutable pointers.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivateimmutable dataPointer;
constructor(bytesmemory_data) {
dataPointer = SSTORE2.write(_data);
}
function getData() externalviewreturns (bytesmemory) {
return SSTORE2.read(dataPointer);
}
}
contractBroken {
// Fails to build, non-primite types// can't be used as immutable variablesbytesprivateimmutable data;
constructor(bytesmemory_data) {
data = _data;
}
}

SSTORE2Map

SSTORE2Map behaves similarly to SSTORE2, but instead of auto-generating a pointer on each SSTORE2Map.write call it takes an arbitrary key in the form of a bytes32 variable; this key must later be provided to SSTORE2Map.read to retrieve the written value.

The map store is also write-once, meaning that calling SSTORE2Map.write TWICE with the same key will fail. There is no mechanism for deleting or removing the value of a given key.

Notice: reading a never written key will always return an empty array of bytes.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
bytes32private constant KEY =0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3;
function setHashes(bytes32[] calldata_hashes) external {
SSTORE2Map.write(KEY, abi.encode(_hashes));
}
function getHashes() externalviewreturns (bytes32[] memory) {
returnabi.decode(SSTORE2Map.read(KEY), (bytes32[]));
}
}

Using multiple keys

SSTORE2Map supports using multiple keys at the same time, but re-using a key will result in failure.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
// This worksfunction good() external {
SSTORE2Map.write(string("@key-1"), bytes("hola"));
SSTORE2Map.write(string("@key-2"), bytes("mundo"));
}
// This revertsfunction bad() external {
SSTORE2Map.write(string("@key-3"), bytes("adios"));
SSTORE2Map.write(string("@key-3"), bytes("mundo"));
}
}

Notice: strings can be used as SSTORE2Map; they get internally mapped as keccak256(bytes(<string>).

Reading slices

Both SSTORE2 and SSTORE2Map support reading data slices; their behaviors mirror javascript's .slice(start, end).

The functionality can be used for future-proofing a contract in the case that code merkelization is ever implemented.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
event Sliced(bytes_data);
function goodSlices() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// 0x223344emitSliced(
SSTORE2.read(pointer, 1)
);
// 0x2233emitSliced(
SSTORE2.read(pointer, 1, 3)
);
// 0xemitSliced(
SSTORE2.read(pointer, 3, 3)
);
// 0x3344emitSliced(
SSTORE2.read(pointer, 2, 42000)
);
// 0xemitSliced(
SSTORE2.read(pointer, 41000, 42000)
);
}
function badSlies() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// This reverts// start must be equal or lower than endemitSliced(
SSTORE2.read(pointer, 3, 2)
);
}
}

License

MIT License
Copyright (c) [2018] [Ismael Ramos Silvan]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

Faster & cheaper contract key-value storage for Ethereum Contracts

Resources

Stars

447 stars

Watchers

20 watching

Forks

Releases

Packages

Used by

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Repository files navigation

SLOAD2 & SLOAD2-Map

License: MITtests

SLOAD2 is a set of Solidity libraries for writing and reading contract storage paying a fraction of the cost, it uses contract code as storage, writing data takes the form of contract creations and reading data uses EXTCODECOPY.

The library is not audited, it's recommended to perform a full audit of SSTORE2 and CREATE3 before using this code on a production envirovment.

Features

  • All SLOAD2 storages are write-once only
  • Key Value storage (custom key and auto-gen key)
  • Cheaper storage reads (vs SLOAD) after 32 bytes
  • Cheaper storage writes (vs SSTORE) after 32 bytes (auto-gen key)
  • Cheaper storage writes (vs SSTORE) after 96 bytes (custom key)
  • Use strings as keys
  • Use bytes32 as keys
  • Use address as keys (auto-gen)

Gas savings

Gas costs are overall lower compared with traditional SSTORED and SLOAD operations, SLOAD2 (auto-generated key) and SLOAD2-Map (custom key) have different costs associated with using them.

The root cause is that custom-key SLOAD2 needs to use CREATE3 to deploy the data contract, and CREATE3 needs to deploy an aditional proxy contract for each deployed contract.

SLOAD Cost (data read)

Reading data is a lot cheaper compared to native SLOAD operations (native solidity storage).

After reading 32 bytes SSTORE2.read becomes the cheaper option, and SSTORE2Map.read becomes cheaper when reading 33 bytes or more.

Size (bytes)SLOADSLOAD2SLOAD2 - MapSavingsSavings (map)
02.6793.1025.2580,86x0,51x
22.8523.1085.2610,92x0,54x
324.9143.1085.2641,58x0,93x
337.0673.1145.2672,27x1,34x
647.0673.1145.2702,27x1,34x
969.2203.1205.2762,96x1,75x
12811.3733.1265.2823,64x2,15x
25619.9853.1505.3066,34x3,77x
51237.2093.1985.35511,64x6,95x
102471.6593.2965.45421,74x13,14x
245761.349.1617.6279.805176,89x137,60x

SSTORE Cost

SSTORE Cost (data writes)

Writing data is also cheaper than native SSTORE operations (native solidity storage), but gains become apparent after higher data sizes.

After writing 32 bytes SSTORE2.write becomes the cheaper option, and SSTORE2Map.write becomes cheaper only when writing 128 bytes or more.

Size (bytes)SSTORESSTORE2SSTORE2 - MapSavingsSavings (map)
02.66035.32373.5650,08x0,04x
222.60735.81974.0610,63x0,31x
3244.81041.89180.2181,07x0,56x
3366.98042.18780.5141,59x0,83x
6466.98048.45986.8701,38x0,77x
9689.15055.02793.5231,62x0,95x
128111.32061.595100.1751,81x1,11x
256200.00087.869126.7862,28x1,58x
512377.360140.417180.0102,69x2,10x
1024732.080245.522286.4752,98x2,56x
2457613.878.8904.148.0204.244.9983,35x3,27x

SSTORE Cost

Notice: gas savings may change in future Ethereum hard-forks.

Notice x2: due to contract code limits 24576 bytes is the maximum amount of data that can be written in a single pointer / key. Attempting to write more will result in failure.

Installation

yarn add https://github.com/0xsequence/sstore2

or

npm install --save https://github.com/0xsequence/sstore2

Usage

SSTORE2 comes in two flavors, SSTORE2 and SSTORE2Map. The main difference is that SSTORE2 auto-generates a key or "pointer" for later data reads, and SSTORE2Map let's you use a custom pointer in the form of a bytes32 key.

SSTORE2 is cheaper because it only needs to use CREATE. SSTORE2Map is a little more expensive (~ +50k gas) because it makes use of CREATE3, which requires using both CREATE2 + CREATE at the same time.

SSTORE2

Calling SSTORE2.write with some data returns an address pointer; this pointer address can later be feed into SSTORE2.read to retrieve the same data. Every time write is called it generates a new pointer, pointers can't be deleted.

Notice: reading a never an invalid pointer may return an empty bytes array or contract bytecode.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivate pointer;
function setText(stringcalldata_text) external {
pointer = SSTORE2.write(bytes(_text));
}
function getText() externalviewreturns (stringmemory) {
returnstring(SSTORE2.read(pointer));
}
}

Arbitrary size immutables

Solidity 0.8.9 doesn't support variable size immutable variables; these can be emulated using SSTORE2 and immutable pointers.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivateimmutable dataPointer;
constructor(bytesmemory_data) {
dataPointer = SSTORE2.write(_data);
}
function getData() externalviewreturns (bytesmemory) {
return SSTORE2.read(dataPointer);
}
}
contractBroken {
// Fails to build, non-primite types// can't be used as immutable variablesbytesprivateimmutable data;
constructor(bytesmemory_data) {
data = _data;
}
}

SSTORE2Map

SSTORE2Map behaves similarly to SSTORE2, but instead of auto-generating a pointer on each SSTORE2Map.write call it takes an arbitrary key in the form of a bytes32 variable; this key must later be provided to SSTORE2Map.read to retrieve the written value.

The map store is also write-once, meaning that calling SSTORE2Map.write TWICE with the same key will fail. There is no mechanism for deleting or removing the value of a given key.

Notice: reading a never written key will always return an empty array of bytes.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
bytes32private constant KEY =0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3;
function setHashes(bytes32[] calldata_hashes) external {
SSTORE2Map.write(KEY, abi.encode(_hashes));
}
function getHashes() externalviewreturns (bytes32[] memory) {
returnabi.decode(SSTORE2Map.read(KEY), (bytes32[]));
}
}

Using multiple keys

SSTORE2Map supports using multiple keys at the same time, but re-using a key will result in failure.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
// This worksfunction good() external {
SSTORE2Map.write(string("@key-1"), bytes("hola"));
SSTORE2Map.write(string("@key-2"), bytes("mundo"));
}
// This revertsfunction bad() external {
SSTORE2Map.write(string("@key-3"), bytes("adios"));
SSTORE2Map.write(string("@key-3"), bytes("mundo"));
}
}

Notice: strings can be used as SSTORE2Map; they get internally mapped as keccak256(bytes(<string>).

Reading slices

Both SSTORE2 and SSTORE2Map support reading data slices; their behaviors mirror javascript's .slice(start, end).

The functionality can be used for future-proofing a contract in the case that code merkelization is ever implemented.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
event Sliced(bytes_data);
function goodSlices() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// 0x223344emitSliced(
SSTORE2.read(pointer, 1)
);
// 0x2233emitSliced(
SSTORE2.read(pointer, 1, 3)
);
// 0xemitSliced(
SSTORE2.read(pointer, 3, 3)
);
// 0x3344emitSliced(
SSTORE2.read(pointer, 2, 42000)
);
// 0xemitSliced(
SSTORE2.read(pointer, 41000, 42000)
);
}
function badSlies() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// This reverts// start must be equal or lower than endemitSliced(
SSTORE2.read(pointer, 3, 2)
);
}
}

License

MIT License
Copyright (c) [2018] [Ismael Ramos Silvan]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

Faster & cheaper contract key-value storage for Ethereum Contracts

Resources

Stars

447 stars

Watchers

20 watching

Forks

Releases

Packages

Used by

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length > 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Repository files navigation

SLOAD2 & SLOAD2-Map

License: MITtests

SLOAD2 is a set of Solidity libraries for writing and reading contract storage paying a fraction of the cost, it uses contract code as storage, writing data takes the form of contract creations and reading data uses EXTCODECOPY.

The library is not audited, it's recommended to perform a full audit of SSTORE2 and CREATE3 before using this code on a production envirovment.

Features

  • All SLOAD2 storages are write-once only
  • Key Value storage (custom key and auto-gen key)
  • Cheaper storage reads (vs SLOAD) after 32 bytes
  • Cheaper storage writes (vs SSTORE) after 32 bytes (auto-gen key)
  • Cheaper storage writes (vs SSTORE) after 96 bytes (custom key)
  • Use strings as keys
  • Use bytes32 as keys
  • Use address as keys (auto-gen)

Gas savings

Gas costs are overall lower compared with traditional SSTORED and SLOAD operations, SLOAD2 (auto-generated key) and SLOAD2-Map (custom key) have different costs associated with using them.

The root cause is that custom-key SLOAD2 needs to use CREATE3 to deploy the data contract, and CREATE3 needs to deploy an aditional proxy contract for each deployed contract.

SLOAD Cost (data read)

Reading data is a lot cheaper compared to native SLOAD operations (native solidity storage).

After reading 32 bytes SSTORE2.read becomes the cheaper option, and SSTORE2Map.read becomes cheaper when reading 33 bytes or more.

Size (bytes)SLOADSLOAD2SLOAD2 - MapSavingsSavings (map)
02.6793.1025.2580,86x0,51x
22.8523.1085.2610,92x0,54x
324.9143.1085.2641,58x0,93x
337.0673.1145.2672,27x1,34x
647.0673.1145.2702,27x1,34x
969.2203.1205.2762,96x1,75x
12811.3733.1265.2823,64x2,15x
25619.9853.1505.3066,34x3,77x
51237.2093.1985.35511,64x6,95x
102471.6593.2965.45421,74x13,14x
245761.349.1617.6279.805176,89x137,60x

SSTORE Cost

SSTORE Cost (data writes)

Writing data is also cheaper than native SSTORE operations (native solidity storage), but gains become apparent after higher data sizes.

After writing 32 bytes SSTORE2.write becomes the cheaper option, and SSTORE2Map.write becomes cheaper only when writing 128 bytes or more.

Size (bytes)SSTORESSTORE2SSTORE2 - MapSavingsSavings (map)
02.66035.32373.5650,08x0,04x
222.60735.81974.0610,63x0,31x
3244.81041.89180.2181,07x0,56x
3366.98042.18780.5141,59x0,83x
6466.98048.45986.8701,38x0,77x
9689.15055.02793.5231,62x0,95x
128111.32061.595100.1751,81x1,11x
256200.00087.869126.7862,28x1,58x
512377.360140.417180.0102,69x2,10x
1024732.080245.522286.4752,98x2,56x
2457613.878.8904.148.0204.244.9983,35x3,27x

SSTORE Cost

Notice: gas savings may change in future Ethereum hard-forks.

Notice x2: due to contract code limits 24576 bytes is the maximum amount of data that can be written in a single pointer / key. Attempting to write more will result in failure.

Installation

yarn add https://github.com/0xsequence/sstore2

or

npm install --save https://github.com/0xsequence/sstore2

Usage

SSTORE2 comes in two flavors, SSTORE2 and SSTORE2Map. The main difference is that SSTORE2 auto-generates a key or "pointer" for later data reads, and SSTORE2Map let's you use a custom pointer in the form of a bytes32 key.

SSTORE2 is cheaper because it only needs to use CREATE. SSTORE2Map is a little more expensive (~ +50k gas) because it makes use of CREATE3, which requires using both CREATE2 + CREATE at the same time.

SSTORE2

Calling SSTORE2.write with some data returns an address pointer; this pointer address can later be feed into SSTORE2.read to retrieve the same data. Every time write is called it generates a new pointer, pointers can't be deleted.

Notice: reading a never an invalid pointer may return an empty bytes array or contract bytecode.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivate pointer;
function setText(stringcalldata_text) external {
pointer = SSTORE2.write(bytes(_text));
}
function getText() externalviewreturns (stringmemory) {
returnstring(SSTORE2.read(pointer));
}
}

Arbitrary size immutables

Solidity 0.8.9 doesn't support variable size immutable variables; these can be emulated using SSTORE2 and immutable pointers.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivateimmutable dataPointer;
constructor(bytesmemory_data) {
dataPointer = SSTORE2.write(_data);
}
function getData() externalviewreturns (bytesmemory) {
return SSTORE2.read(dataPointer);
}
}
contractBroken {
// Fails to build, non-primite types// can't be used as immutable variablesbytesprivateimmutable data;
constructor(bytesmemory_data) {
data = _data;
}
}

SSTORE2Map

SSTORE2Map behaves similarly to SSTORE2, but instead of auto-generating a pointer on each SSTORE2Map.write call it takes an arbitrary key in the form of a bytes32 variable; this key must later be provided to SSTORE2Map.read to retrieve the written value.

The map store is also write-once, meaning that calling SSTORE2Map.write TWICE with the same key will fail. There is no mechanism for deleting or removing the value of a given key.

Notice: reading a never written key will always return an empty array of bytes.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
bytes32private constant KEY =0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3;
function setHashes(bytes32[] calldata_hashes) external {
SSTORE2Map.write(KEY, abi.encode(_hashes));
}
function getHashes() externalviewreturns (bytes32[] memory) {
returnabi.decode(SSTORE2Map.read(KEY), (bytes32[]));
}
}

Using multiple keys

SSTORE2Map supports using multiple keys at the same time, but re-using a key will result in failure.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
// This worksfunction good() external {
SSTORE2Map.write(string("@key-1"), bytes("hola"));
SSTORE2Map.write(string("@key-2"), bytes("mundo"));
}
// This revertsfunction bad() external {
SSTORE2Map.write(string("@key-3"), bytes("adios"));
SSTORE2Map.write(string("@key-3"), bytes("mundo"));
}
}

Notice: strings can be used as SSTORE2Map; they get internally mapped as keccak256(bytes(<string>).

Reading slices

Both SSTORE2 and SSTORE2Map support reading data slices; their behaviors mirror javascript's .slice(start, end).

The functionality can be used for future-proofing a contract in the case that code merkelization is ever implemented.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
event Sliced(bytes_data);
function goodSlices() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// 0x223344emitSliced(
SSTORE2.read(pointer, 1)
);
// 0x2233emitSliced(
SSTORE2.read(pointer, 1, 3)
);
// 0xemitSliced(
SSTORE2.read(pointer, 3, 3)
);
// 0x3344emitSliced(
SSTORE2.read(pointer, 2, 42000)
);
// 0xemitSliced(
SSTORE2.read(pointer, 41000, 42000)
);
}
function badSlies() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// This reverts// start must be equal or lower than endemitSliced(
SSTORE2.read(pointer, 3, 2)
);
}
}

License

MIT License
Copyright (c) [2018] [Ismael Ramos Silvan]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

Faster & cheaper contract key-value storage for Ethereum Contracts

Resources

Stars

447 stars

Watchers

20 watching

Forks

Releases

Packages

Used by

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content

Repository files navigation

SLOAD2 & SLOAD2-Map

License: MITtests

SLOAD2 is a set of Solidity libraries for writing and reading contract storage paying a fraction of the cost, it uses contract code as storage, writing data takes the form of contract creations and reading data uses EXTCODECOPY.

The library is not audited, it's recommended to perform a full audit of SSTORE2 and CREATE3 before using this code on a production envirovment.

Features

  • All SLOAD2 storages are write-once only
  • Key Value storage (custom key and auto-gen key)
  • Cheaper storage reads (vs SLOAD) after 32 bytes
  • Cheaper storage writes (vs SSTORE) after 32 bytes (auto-gen key)
  • Cheaper storage writes (vs SSTORE) after 96 bytes (custom key)
  • Use strings as keys
  • Use bytes32 as keys
  • Use address as keys (auto-gen)

Gas savings

Gas costs are overall lower compared with traditional SSTORED and SLOAD operations, SLOAD2 (auto-generated key) and SLOAD2-Map (custom key) have different costs associated with using them.

The root cause is that custom-key SLOAD2 needs to use CREATE3 to deploy the data contract, and CREATE3 needs to deploy an aditional proxy contract for each deployed contract.

SLOAD Cost (data read)

Reading data is a lot cheaper compared to native SLOAD operations (native solidity storage).

After reading 32 bytes SSTORE2.read becomes the cheaper option, and SSTORE2Map.read becomes cheaper when reading 33 bytes or more.

Size (bytes)SLOADSLOAD2SLOAD2 - MapSavingsSavings (map)
02.6793.1025.2580,86x0,51x
22.8523.1085.2610,92x0,54x
324.9143.1085.2641,58x0,93x
337.0673.1145.2672,27x1,34x
647.0673.1145.2702,27x1,34x
969.2203.1205.2762,96x1,75x
12811.3733.1265.2823,64x2,15x
25619.9853.1505.3066,34x3,77x
51237.2093.1985.35511,64x6,95x
102471.6593.2965.45421,74x13,14x
245761.349.1617.6279.805176,89x137,60x

SSTORE Cost

SSTORE Cost (data writes)

Writing data is also cheaper than native SSTORE operations (native solidity storage), but gains become apparent after higher data sizes.

After writing 32 bytes SSTORE2.write becomes the cheaper option, and SSTORE2Map.write becomes cheaper only when writing 128 bytes or more.

Size (bytes)SSTORESSTORE2SSTORE2 - MapSavingsSavings (map)
02.66035.32373.5650,08x0,04x
222.60735.81974.0610,63x0,31x
3244.81041.89180.2181,07x0,56x
3366.98042.18780.5141,59x0,83x
6466.98048.45986.8701,38x0,77x
9689.15055.02793.5231,62x0,95x
128111.32061.595100.1751,81x1,11x
256200.00087.869126.7862,28x1,58x
512377.360140.417180.0102,69x2,10x
1024732.080245.522286.4752,98x2,56x
2457613.878.8904.148.0204.244.9983,35x3,27x

SSTORE Cost

Notice: gas savings may change in future Ethereum hard-forks.

Notice x2: due to contract code limits 24576 bytes is the maximum amount of data that can be written in a single pointer / key. Attempting to write more will result in failure.

Installation

yarn add https://github.com/0xsequence/sstore2

or

npm install --save https://github.com/0xsequence/sstore2

Usage

SSTORE2 comes in two flavors, SSTORE2 and SSTORE2Map. The main difference is that SSTORE2 auto-generates a key or "pointer" for later data reads, and SSTORE2Map let's you use a custom pointer in the form of a bytes32 key.

SSTORE2 is cheaper because it only needs to use CREATE. SSTORE2Map is a little more expensive (~ +50k gas) because it makes use of CREATE3, which requires using both CREATE2 + CREATE at the same time.

SSTORE2

Calling SSTORE2.write with some data returns an address pointer; this pointer address can later be feed into SSTORE2.read to retrieve the same data. Every time write is called it generates a new pointer, pointers can't be deleted.

Notice: reading a never an invalid pointer may return an empty bytes array or contract bytecode.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivate pointer;
function setText(stringcalldata_text) external {
pointer = SSTORE2.write(bytes(_text));
}
function getText() externalviewreturns (stringmemory) {
returnstring(SSTORE2.read(pointer));
}
}

Arbitrary size immutables

Solidity 0.8.9 doesn't support variable size immutable variables; these can be emulated using SSTORE2 and immutable pointers.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivateimmutable dataPointer;
constructor(bytesmemory_data) {
dataPointer = SSTORE2.write(_data);
}
function getData() externalviewreturns (bytesmemory) {
return SSTORE2.read(dataPointer);
}
}
contractBroken {
// Fails to build, non-primite types// can't be used as immutable variablesbytesprivateimmutable data;
constructor(bytesmemory_data) {
data = _data;
}
}

SSTORE2Map

SSTORE2Map behaves similarly to SSTORE2, but instead of auto-generating a pointer on each SSTORE2Map.write call it takes an arbitrary key in the form of a bytes32 variable; this key must later be provided to SSTORE2Map.read to retrieve the written value.

The map store is also write-once, meaning that calling SSTORE2Map.write TWICE with the same key will fail. There is no mechanism for deleting or removing the value of a given key.

Notice: reading a never written key will always return an empty array of bytes.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
bytes32private constant KEY =0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3;
function setHashes(bytes32[] calldata_hashes) external {
SSTORE2Map.write(KEY, abi.encode(_hashes));
}
function getHashes() externalviewreturns (bytes32[] memory) {
returnabi.decode(SSTORE2Map.read(KEY), (bytes32[]));
}
}

Using multiple keys

SSTORE2Map supports using multiple keys at the same time, but re-using a key will result in failure.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
// This worksfunction good() external {
SSTORE2Map.write(string("@key-1"), bytes("hola"));
SSTORE2Map.write(string("@key-2"), bytes("mundo"));
}
// This revertsfunction bad() external {
SSTORE2Map.write(string("@key-3"), bytes("adios"));
SSTORE2Map.write(string("@key-3"), bytes("mundo"));
}
}

Notice: strings can be used as SSTORE2Map; they get internally mapped as keccak256(bytes(<string>).

Reading slices

Both SSTORE2 and SSTORE2Map support reading data slices; their behaviors mirror javascript's .slice(start, end).

The functionality can be used for future-proofing a contract in the case that code merkelization is ever implemented.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
event Sliced(bytes_data);
function goodSlices() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// 0x223344emitSliced(
SSTORE2.read(pointer, 1)
);
// 0x2233emitSliced(
SSTORE2.read(pointer, 1, 3)
);
// 0xemitSliced(
SSTORE2.read(pointer, 3, 3)
);
// 0x3344emitSliced(
SSTORE2.read(pointer, 2, 42000)
);
// 0xemitSliced(
SSTORE2.read(pointer, 41000, 42000)
);
}
function badSlies() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// This reverts// start must be equal or lower than endemitSliced(
SSTORE2.read(pointer, 3, 2)
);
}
}

License

MIT License
Copyright (c) [2018] [Ismael Ramos Silvan]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

Faster & cheaper contract key-value storage for Ethereum Contracts

Resources

Stars

447 stars

Watchers

20 watching

Forks

Releases

Packages

Used by

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Repository files navigation

SLOAD2 & SLOAD2-Map

License: MITtests

SLOAD2 is a set of Solidity libraries for writing and reading contract storage paying a fraction of the cost, it uses contract code as storage, writing data takes the form of contract creations and reading data uses EXTCODECOPY.

The library is not audited, it's recommended to perform a full audit of SSTORE2 and CREATE3 before using this code on a production envirovment.

Features

  • All SLOAD2 storages are write-once only
  • Key Value storage (custom key and auto-gen key)
  • Cheaper storage reads (vs SLOAD) after 32 bytes
  • Cheaper storage writes (vs SSTORE) after 32 bytes (auto-gen key)
  • Cheaper storage writes (vs SSTORE) after 96 bytes (custom key)
  • Use strings as keys
  • Use bytes32 as keys
  • Use address as keys (auto-gen)

Gas savings

Gas costs are overall lower compared with traditional SSTORED and SLOAD operations, SLOAD2 (auto-generated key) and SLOAD2-Map (custom key) have different costs associated with using them.

The root cause is that custom-key SLOAD2 needs to use CREATE3 to deploy the data contract, and CREATE3 needs to deploy an aditional proxy contract for each deployed contract.

SLOAD Cost (data read)

Reading data is a lot cheaper compared to native SLOAD operations (native solidity storage).

After reading 32 bytes SSTORE2.read becomes the cheaper option, and SSTORE2Map.read becomes cheaper when reading 33 bytes or more.

Size (bytes)SLOADSLOAD2SLOAD2 - MapSavingsSavings (map)
02.6793.1025.2580,86x0,51x
22.8523.1085.2610,92x0,54x
324.9143.1085.2641,58x0,93x
337.0673.1145.2672,27x1,34x
647.0673.1145.2702,27x1,34x
969.2203.1205.2762,96x1,75x
12811.3733.1265.2823,64x2,15x
25619.9853.1505.3066,34x3,77x
51237.2093.1985.35511,64x6,95x
102471.6593.2965.45421,74x13,14x
245761.349.1617.6279.805176,89x137,60x

SSTORE Cost

SSTORE Cost (data writes)

Writing data is also cheaper than native SSTORE operations (native solidity storage), but gains become apparent after higher data sizes.

After writing 32 bytes SSTORE2.write becomes the cheaper option, and SSTORE2Map.write becomes cheaper only when writing 128 bytes or more.

Size (bytes)SSTORESSTORE2SSTORE2 - MapSavingsSavings (map)
02.66035.32373.5650,08x0,04x
222.60735.81974.0610,63x0,31x
3244.81041.89180.2181,07x0,56x
3366.98042.18780.5141,59x0,83x
6466.98048.45986.8701,38x0,77x
9689.15055.02793.5231,62x0,95x
128111.32061.595100.1751,81x1,11x
256200.00087.869126.7862,28x1,58x
512377.360140.417180.0102,69x2,10x
1024732.080245.522286.4752,98x2,56x
2457613.878.8904.148.0204.244.9983,35x3,27x

SSTORE Cost

Notice: gas savings may change in future Ethereum hard-forks.

Notice x2: due to contract code limits 24576 bytes is the maximum amount of data that can be written in a single pointer / key. Attempting to write more will result in failure.

Installation

yarn add https://github.com/0xsequence/sstore2

or

npm install --save https://github.com/0xsequence/sstore2

Usage

SSTORE2 comes in two flavors, SSTORE2 and SSTORE2Map. The main difference is that SSTORE2 auto-generates a key or "pointer" for later data reads, and SSTORE2Map let's you use a custom pointer in the form of a bytes32 key.

SSTORE2 is cheaper because it only needs to use CREATE. SSTORE2Map is a little more expensive (~ +50k gas) because it makes use of CREATE3, which requires using both CREATE2 + CREATE at the same time.

SSTORE2

Calling SSTORE2.write with some data returns an address pointer; this pointer address can later be feed into SSTORE2.read to retrieve the same data. Every time write is called it generates a new pointer, pointers can't be deleted.

Notice: reading a never an invalid pointer may return an empty bytes array or contract bytecode.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivate pointer;
function setText(stringcalldata_text) external {
pointer = SSTORE2.write(bytes(_text));
}
function getText() externalviewreturns (stringmemory) {
returnstring(SSTORE2.read(pointer));
}
}

Arbitrary size immutables

Solidity 0.8.9 doesn't support variable size immutable variables; these can be emulated using SSTORE2 and immutable pointers.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivateimmutable dataPointer;
constructor(bytesmemory_data) {
dataPointer = SSTORE2.write(_data);
}
function getData() externalviewreturns (bytesmemory) {
return SSTORE2.read(dataPointer);
}
}
contractBroken {
// Fails to build, non-primite types// can't be used as immutable variablesbytesprivateimmutable data;
constructor(bytesmemory_data) {
data = _data;
}
}

SSTORE2Map

SSTORE2Map behaves similarly to SSTORE2, but instead of auto-generating a pointer on each SSTORE2Map.write call it takes an arbitrary key in the form of a bytes32 variable; this key must later be provided to SSTORE2Map.read to retrieve the written value.

The map store is also write-once, meaning that calling SSTORE2Map.write TWICE with the same key will fail. There is no mechanism for deleting or removing the value of a given key.

Notice: reading a never written key will always return an empty array of bytes.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
bytes32private constant KEY =0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3;
function setHashes(bytes32[] calldata_hashes) external {
SSTORE2Map.write(KEY, abi.encode(_hashes));
}
function getHashes() externalviewreturns (bytes32[] memory) {
returnabi.decode(SSTORE2Map.read(KEY), (bytes32[]));
}
}

Using multiple keys

SSTORE2Map supports using multiple keys at the same time, but re-using a key will result in failure.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
// This worksfunction good() external {
SSTORE2Map.write(string("@key-1"), bytes("hola"));
SSTORE2Map.write(string("@key-2"), bytes("mundo"));
}
// This revertsfunction bad() external {
SSTORE2Map.write(string("@key-3"), bytes("adios"));
SSTORE2Map.write(string("@key-3"), bytes("mundo"));
}
}

Notice: strings can be used as SSTORE2Map; they get internally mapped as keccak256(bytes(<string>).

Reading slices

Both SSTORE2 and SSTORE2Map support reading data slices; their behaviors mirror javascript's .slice(start, end).

The functionality can be used for future-proofing a contract in the case that code merkelization is ever implemented.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
event Sliced(bytes_data);
function goodSlices() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// 0x223344emitSliced(
SSTORE2.read(pointer, 1)
);
// 0x2233emitSliced(
SSTORE2.read(pointer, 1, 3)
);
// 0xemitSliced(
SSTORE2.read(pointer, 3, 3)
);
// 0x3344emitSliced(
SSTORE2.read(pointer, 2, 42000)
);
// 0xemitSliced(
SSTORE2.read(pointer, 41000, 42000)
);
}
function badSlies() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// This reverts// start must be equal or lower than endemitSliced(
SSTORE2.read(pointer, 3, 2)
);
}
}

License

MIT License
Copyright (c) [2018] [Ismael Ramos Silvan]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

Faster & cheaper contract key-value storage for Ethereum Contracts

Resources

Stars

447 stars

Watchers

20 watching

Forks

Releases

Packages

Used by

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Repository files navigation

SLOAD2 & SLOAD2-Map

License: MITtests

SLOAD2 is a set of Solidity libraries for writing and reading contract storage paying a fraction of the cost, it uses contract code as storage, writing data takes the form of contract creations and reading data uses EXTCODECOPY.

The library is not audited, it's recommended to perform a full audit of SSTORE2 and CREATE3 before using this code on a production envirovment.

Features

  • All SLOAD2 storages are write-once only
  • Key Value storage (custom key and auto-gen key)
  • Cheaper storage reads (vs SLOAD) after 32 bytes
  • Cheaper storage writes (vs SSTORE) after 32 bytes (auto-gen key)
  • Cheaper storage writes (vs SSTORE) after 96 bytes (custom key)
  • Use strings as keys
  • Use bytes32 as keys
  • Use address as keys (auto-gen)

Gas savings

Gas costs are overall lower compared with traditional SSTORED and SLOAD operations, SLOAD2 (auto-generated key) and SLOAD2-Map (custom key) have different costs associated with using them.

The root cause is that custom-key SLOAD2 needs to use CREATE3 to deploy the data contract, and CREATE3 needs to deploy an aditional proxy contract for each deployed contract.

SLOAD Cost (data read)

Reading data is a lot cheaper compared to native SLOAD operations (native solidity storage).

After reading 32 bytes SSTORE2.read becomes the cheaper option, and SSTORE2Map.read becomes cheaper when reading 33 bytes or more.

Size (bytes)SLOADSLOAD2SLOAD2 - MapSavingsSavings (map)
02.6793.1025.2580,86x0,51x
22.8523.1085.2610,92x0,54x
324.9143.1085.2641,58x0,93x
337.0673.1145.2672,27x1,34x
647.0673.1145.2702,27x1,34x
969.2203.1205.2762,96x1,75x
12811.3733.1265.2823,64x2,15x
25619.9853.1505.3066,34x3,77x
51237.2093.1985.35511,64x6,95x
102471.6593.2965.45421,74x13,14x
245761.349.1617.6279.805176,89x137,60x

SSTORE Cost

SSTORE Cost (data writes)

Writing data is also cheaper than native SSTORE operations (native solidity storage), but gains become apparent after higher data sizes.

After writing 32 bytes SSTORE2.write becomes the cheaper option, and SSTORE2Map.write becomes cheaper only when writing 128 bytes or more.

Size (bytes)SSTORESSTORE2SSTORE2 - MapSavingsSavings (map)
02.66035.32373.5650,08x0,04x
222.60735.81974.0610,63x0,31x
3244.81041.89180.2181,07x0,56x
3366.98042.18780.5141,59x0,83x
6466.98048.45986.8701,38x0,77x
9689.15055.02793.5231,62x0,95x
128111.32061.595100.1751,81x1,11x
256200.00087.869126.7862,28x1,58x
512377.360140.417180.0102,69x2,10x
1024732.080245.522286.4752,98x2,56x
2457613.878.8904.148.0204.244.9983,35x3,27x

SSTORE Cost

Notice: gas savings may change in future Ethereum hard-forks.

Notice x2: due to contract code limits 24576 bytes is the maximum amount of data that can be written in a single pointer / key. Attempting to write more will result in failure.

Installation

yarn add https://github.com/0xsequence/sstore2

or

npm install --save https://github.com/0xsequence/sstore2

Usage

SSTORE2 comes in two flavors, SSTORE2 and SSTORE2Map. The main difference is that SSTORE2 auto-generates a key or "pointer" for later data reads, and SSTORE2Map let's you use a custom pointer in the form of a bytes32 key.

SSTORE2 is cheaper because it only needs to use CREATE. SSTORE2Map is a little more expensive (~ +50k gas) because it makes use of CREATE3, which requires using both CREATE2 + CREATE at the same time.

SSTORE2

Calling SSTORE2.write with some data returns an address pointer; this pointer address can later be feed into SSTORE2.read to retrieve the same data. Every time write is called it generates a new pointer, pointers can't be deleted.

Notice: reading a never an invalid pointer may return an empty bytes array or contract bytecode.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivate pointer;
function setText(stringcalldata_text) external {
pointer = SSTORE2.write(bytes(_text));
}
function getText() externalviewreturns (stringmemory) {
returnstring(SSTORE2.read(pointer));
}
}

Arbitrary size immutables

Solidity 0.8.9 doesn't support variable size immutable variables; these can be emulated using SSTORE2 and immutable pointers.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivateimmutable dataPointer;
constructor(bytesmemory_data) {
dataPointer = SSTORE2.write(_data);
}
function getData() externalviewreturns (bytesmemory) {
return SSTORE2.read(dataPointer);
}
}
contractBroken {
// Fails to build, non-primite types// can't be used as immutable variablesbytesprivateimmutable data;
constructor(bytesmemory_data) {
data = _data;
}
}

SSTORE2Map

SSTORE2Map behaves similarly to SSTORE2, but instead of auto-generating a pointer on each SSTORE2Map.write call it takes an arbitrary key in the form of a bytes32 variable; this key must later be provided to SSTORE2Map.read to retrieve the written value.

The map store is also write-once, meaning that calling SSTORE2Map.write TWICE with the same key will fail. There is no mechanism for deleting or removing the value of a given key.

Notice: reading a never written key will always return an empty array of bytes.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
bytes32private constant KEY =0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3;
function setHashes(bytes32[] calldata_hashes) external {
SSTORE2Map.write(KEY, abi.encode(_hashes));
}
function getHashes() externalviewreturns (bytes32[] memory) {
returnabi.decode(SSTORE2Map.read(KEY), (bytes32[]));
}
}

Using multiple keys

SSTORE2Map supports using multiple keys at the same time, but re-using a key will result in failure.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
// This worksfunction good() external {
SSTORE2Map.write(string("@key-1"), bytes("hola"));
SSTORE2Map.write(string("@key-2"), bytes("mundo"));
}
// This revertsfunction bad() external {
SSTORE2Map.write(string("@key-3"), bytes("adios"));
SSTORE2Map.write(string("@key-3"), bytes("mundo"));
}
}

Notice: strings can be used as SSTORE2Map; they get internally mapped as keccak256(bytes(<string>).

Reading slices

Both SSTORE2 and SSTORE2Map support reading data slices; their behaviors mirror javascript's .slice(start, end).

The functionality can be used for future-proofing a contract in the case that code merkelization is ever implemented.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
event Sliced(bytes_data);
function goodSlices() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// 0x223344emitSliced(
SSTORE2.read(pointer, 1)
);
// 0x2233emitSliced(
SSTORE2.read(pointer, 1, 3)
);
// 0xemitSliced(
SSTORE2.read(pointer, 3, 3)
);
// 0x3344emitSliced(
SSTORE2.read(pointer, 2, 42000)
);
// 0xemitSliced(
SSTORE2.read(pointer, 41000, 42000)
);
}
function badSlies() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// This reverts// start must be equal or lower than endemitSliced(
SSTORE2.read(pointer, 3, 2)
);
}
}

License

MIT License
Copyright (c) [2018] [Ismael Ramos Silvan]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

Faster & cheaper contract key-value storage for Ethereum Contracts

Resources

Stars

447 stars

Watchers

20 watching

Forks

Releases

Packages

Used by

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content

Repository files navigation

SLOAD2 & SLOAD2-Map

License: MITtests

SLOAD2 is a set of Solidity libraries for writing and reading contract storage paying a fraction of the cost, it uses contract code as storage, writing data takes the form of contract creations and reading data uses EXTCODECOPY.

The library is not audited, it's recommended to perform a full audit of SSTORE2 and CREATE3 before using this code on a production envirovment.

Features

  • All SLOAD2 storages are write-once only
  • Key Value storage (custom key and auto-gen key)
  • Cheaper storage reads (vs SLOAD) after 32 bytes
  • Cheaper storage writes (vs SSTORE) after 32 bytes (auto-gen key)
  • Cheaper storage writes (vs SSTORE) after 96 bytes (custom key)
  • Use strings as keys
  • Use bytes32 as keys
  • Use address as keys (auto-gen)

Gas savings

Gas costs are overall lower compared with traditional SSTORED and SLOAD operations, SLOAD2 (auto-generated key) and SLOAD2-Map (custom key) have different costs associated with using them.

The root cause is that custom-key SLOAD2 needs to use CREATE3 to deploy the data contract, and CREATE3 needs to deploy an aditional proxy contract for each deployed contract.

SLOAD Cost (data read)

Reading data is a lot cheaper compared to native SLOAD operations (native solidity storage).

After reading 32 bytes SSTORE2.read becomes the cheaper option, and SSTORE2Map.read becomes cheaper when reading 33 bytes or more.

Size (bytes)SLOADSLOAD2SLOAD2 - MapSavingsSavings (map)
02.6793.1025.2580,86x0,51x
22.8523.1085.2610,92x0,54x
324.9143.1085.2641,58x0,93x
337.0673.1145.2672,27x1,34x
647.0673.1145.2702,27x1,34x
969.2203.1205.2762,96x1,75x
12811.3733.1265.2823,64x2,15x
25619.9853.1505.3066,34x3,77x
51237.2093.1985.35511,64x6,95x
102471.6593.2965.45421,74x13,14x
245761.349.1617.6279.805176,89x137,60x

SSTORE Cost

SSTORE Cost (data writes)

Writing data is also cheaper than native SSTORE operations (native solidity storage), but gains become apparent after higher data sizes.

After writing 32 bytes SSTORE2.write becomes the cheaper option, and SSTORE2Map.write becomes cheaper only when writing 128 bytes or more.

Size (bytes)SSTORESSTORE2SSTORE2 - MapSavingsSavings (map)
02.66035.32373.5650,08x0,04x
222.60735.81974.0610,63x0,31x
3244.81041.89180.2181,07x0,56x
3366.98042.18780.5141,59x0,83x
6466.98048.45986.8701,38x0,77x
9689.15055.02793.5231,62x0,95x
128111.32061.595100.1751,81x1,11x
256200.00087.869126.7862,28x1,58x
512377.360140.417180.0102,69x2,10x
1024732.080245.522286.4752,98x2,56x
2457613.878.8904.148.0204.244.9983,35x3,27x

SSTORE Cost

Notice: gas savings may change in future Ethereum hard-forks.

Notice x2: due to contract code limits 24576 bytes is the maximum amount of data that can be written in a single pointer / key. Attempting to write more will result in failure.

Installation

yarn add https://github.com/0xsequence/sstore2

or

npm install --save https://github.com/0xsequence/sstore2

Usage

SSTORE2 comes in two flavors, SSTORE2 and SSTORE2Map. The main difference is that SSTORE2 auto-generates a key or "pointer" for later data reads, and SSTORE2Map let's you use a custom pointer in the form of a bytes32 key.

SSTORE2 is cheaper because it only needs to use CREATE. SSTORE2Map is a little more expensive (~ +50k gas) because it makes use of CREATE3, which requires using both CREATE2 + CREATE at the same time.

SSTORE2

Calling SSTORE2.write with some data returns an address pointer; this pointer address can later be feed into SSTORE2.read to retrieve the same data. Every time write is called it generates a new pointer, pointers can't be deleted.

Notice: reading a never an invalid pointer may return an empty bytes array or contract bytecode.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivate pointer;
function setText(stringcalldata_text) external {
pointer = SSTORE2.write(bytes(_text));
}
function getText() externalviewreturns (stringmemory) {
returnstring(SSTORE2.read(pointer));
}
}

Arbitrary size immutables

Solidity 0.8.9 doesn't support variable size immutable variables; these can be emulated using SSTORE2 and immutable pointers.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
addressprivateimmutable dataPointer;
constructor(bytesmemory_data) {
dataPointer = SSTORE2.write(_data);
}
function getData() externalviewreturns (bytesmemory) {
return SSTORE2.read(dataPointer);
}
}
contractBroken {
// Fails to build, non-primite types// can't be used as immutable variablesbytesprivateimmutable data;
constructor(bytesmemory_data) {
data = _data;
}
}

SSTORE2Map

SSTORE2Map behaves similarly to SSTORE2, but instead of auto-generating a pointer on each SSTORE2Map.write call it takes an arbitrary key in the form of a bytes32 variable; this key must later be provided to SSTORE2Map.read to retrieve the written value.

The map store is also write-once, meaning that calling SSTORE2Map.write TWICE with the same key will fail. There is no mechanism for deleting or removing the value of a given key.

Notice: reading a never written key will always return an empty array of bytes.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
bytes32private constant KEY =0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3;
function setHashes(bytes32[] calldata_hashes) external {
SSTORE2Map.write(KEY, abi.encode(_hashes));
}
function getHashes() externalviewreturns (bytes32[] memory) {
returnabi.decode(SSTORE2Map.read(KEY), (bytes32[]));
}
}

Using multiple keys

SSTORE2Map supports using multiple keys at the same time, but re-using a key will result in failure.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2Map.sol";
contractDemo {
// This worksfunction good() external {
SSTORE2Map.write(string("@key-1"), bytes("hola"));
SSTORE2Map.write(string("@key-2"), bytes("mundo"));
}
// This revertsfunction bad() external {
SSTORE2Map.write(string("@key-3"), bytes("adios"));
SSTORE2Map.write(string("@key-3"), bytes("mundo"));
}
}

Notice: strings can be used as SSTORE2Map; they get internally mapped as keccak256(bytes(<string>).

Reading slices

Both SSTORE2 and SSTORE2Map support reading data slices; their behaviors mirror javascript's .slice(start, end).

The functionality can be used for future-proofing a contract in the case that code merkelization is ever implemented.

pragma solidity^0.8.0;
import"@0xsequence/sstore2/contracts/SSTORE2.sol";
contractDemo {
event Sliced(bytes_data);
function goodSlices() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// 0x223344emitSliced(
SSTORE2.read(pointer, 1)
);
// 0x2233emitSliced(
SSTORE2.read(pointer, 1, 3)
);
// 0xemitSliced(
SSTORE2.read(pointer, 3, 3)
);
// 0x3344emitSliced(
SSTORE2.read(pointer, 2, 42000)
);
// 0xemitSliced(
SSTORE2.read(pointer, 41000, 42000)
);
}
function badSlies() external {
address pointer = SSTORE2.write(hex"11_22_33_44");
// This reverts// start must be equal or lower than endemitSliced(
SSTORE2.read(pointer, 3, 2)
);
}
}

License

MIT License
Copyright (c) [2018] [Ismael Ramos Silvan]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

Faster & cheaper contract key-value storage for Ethereum Contracts

Resources

Stars

447 stars

Watchers

20 watching

Forks

Releases

Packages

Used by

Contributors

Languages