
A CLI that goes along with building blocks of smart contract. Along with our front-end snippets, this toolbox can reduce L2 gas cost by encoding calldata for dApps development to use as little bytes of calldata as possible.
Note💡
The code is not audited yet. Please use it carefully in production.
What is it for ?
This dApp building block is intended to reduce L2 gas costs by a significant amount, using calldata optimization paradigm.
While security is our top priority, we aim to enhance developer experience, such that the entire protocol is not required to re-written from scratch.
What you need to do is specify how argument is packed into one single calldata, then our CLI will generate required files for you !!
How It Works
It works by optimizing calldata by using as little bytes of calldata as possible.
Specifically, Our novel components are as follows:
-
Solidity snippets: one contract to encode call data on chain. Another to decode it. This component has following feat:
- AddressTable: to store the mapping between addresses and indexes, allowing:
- The address can be registered to the contract, then the index is generated.
- The generated id can then be used to look up the registered address during the compressed call data decoding process
- Data Serialization, allowing:
- The encoded calldata could be deserialized into the correct type with adequate data size.
- For example, if we choose to reduce the calldata by sending the time period as arguments with type of uint40 (5 bytes) instead of uint256, the calldata should be sliced at the correct offset and the result can be correctly used in the next steps.
- AddressTable: to store the mapping between addresses and indexes, allowing:
-
Front-end snippets: to atomically connect between encoding and decoding component into single call
- The demo of how to implement front-end part is here:
uniswap-calldata-optimization-monorepo
- The demo of how to implement front-end part is here:
-
CLI: to generate the above solidity snippets (including Encoder and Decoder contracts). The only task requires to do is to specify the data type to pack the calldata while ensuring security.
Benchmarks
We provide how the UniswapV2's router is optimized as follows:
- The original version:
UniswapV2Router02.sol
/** ... */
contract UniswapV2Router02 is IUniswapV2Router02 {
/** ... */
function addLiquidity(
address tokenA,
address tokenB,
uint256 amountADesired,
uint256 amountBDesired,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
) public virtual override ensure(deadline) returns (uint256 amountA, uint256 amountB, uint256 liquidity) {
/** ... */
}
/** ... */
}
- The optimized version: including two components. The first one is
UniswapV2Router02_Optimized.solwhich inherits main functionality fromUniswapV2Router02_Decoder.g.sol
/** ... */
contract UniswapV2Router02_Optimized is UniswapV2Router02, Ownable, UniswapV2Router02_Decoder {
/** ... */
function addLiquidityCompressed(bytes calldata _payload)
external
payable
returns (uint256 amountA, uint256 amountB, uint256 liquidity)
{
(addLiquidityData memory addLiquidityData,) = _decode_addLiquidityData(_payload, 0);
return UniswapV2Router02.addLiquidity(
addLiquidityData.tokenA,
addLiquidityData.tokenB,
addLiquidityData.amountADesired,
addLiquidityData.amountBDesired,
addLiquidityData.amountAMin,
addLiquidityData.amountBMin,
addLiquidityData.to,
addLiquidityData.deadline
);
}
/** ... */
}
The second one is UniswapV2Router02_Encoder.sol
/** ... */
contract UniswapV2Router02_Encoder {
IAddressTable public immutable addressTable;
/** ... */
function encode_addLiquidityData(
address tokenA,
address tokenB,
uint256 amountADesired,
uint256 amountBDesired,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
)
external
view
returns (
bytes memory _compressedPayload
)
{
/** ... */
}
/** ... */
}
As shown above, the various input arguments of original contract are compressed into a single calldata via encoder. It is then decoded to be used later in decoder. Thus, nearly half bytes of calldata is reduced.
This can be illustrated by following:
- This command shows how solidity encodes an original function with arguments:
- The result has the total bytes count of 520 hexa = 520/2 = 260 bytes:
0xe8e33700000000000000000000000000106eabe0298ec286adf962994f0dcf250c4bb763000000000000000000000000ebfc763eb9e1d1ab09eb2f70549b66682afd9aa50000000000000000000000000000000000000000000000410d586a20a4c000000000000000000000000000000000000000000000000000878678326eac90000000000000000000000000000000000000000000000000003635c9adc5dea0000000000000000000000000000000000000000000000000006c6b935b8bbd400000000000000000000000000000095e7baea6a6c7c4c2dfeb977efac326af552d870000000000000000000000000000000000000000000000000000000000000064
- This command shows how our optimized version encodes various input arguments into single tightly compressed calldata.
- The result has the total bytes count of 264 hexa = 264/2 = 132 bytes:
Hence, this saves bytes by around 50% of calldata. This figure is quite impactful when implementing on dApp deployed on L2 (like Arbitrum/ Optimism) where L2 users pay their significant portion of L1 security cost of batch submission. The L1 gas could possibly be 99% of the total gas cost (L1 + 2 gas).
This essentially means that either the fewer bytes of call data sent or the tighter packed call data, the lower gas users will pay on L2.
As a result, our optimized version of UniswapV2's router could potentially save nearly 50% of gas on L2.
Note💡
The gas amount saved heavily depends on L1 security cost which can vary, depending on the congestion on L1.
Mathematically, the total gas is the total of the L2 execution fee and the L1 data/security fee, and this figure is differently calculated, depending on different layer 2 chains.
Arbitrum
where l2_execution_fee is :
)
where gas_price_floor = 0.1 gwei on Arbitrum One and 0.01 gwei on Nova
and l1_data_fee is :
)
where brotli_zero_algorithm is used in order to reward users for posting transactions that are compressible.
Optimism
Here's the (simple) math:
where l2_execution_fee is :
and l1_data_fee is :
)
where tx_data_gas is:
) )
Installation
There are 2 ways: without npm and one with npm
with npm
We assume that you already setup your working environment with hardhat + foundry as specified in foundry 's guide or hardhat 's guide and cd into it
;
- add the
solid-grindernpm package:
This will automatically add the solid-grinder binary
- Add the following line in
package.json:
"scripts":
- Once you have finished the installation, we can check if it was successful.
- Adding
remappings.txtwith following line:
@solid-grinder/=node_modules/solid-grinder/
without npm
We assume that you already have a forge project
;
;
;
- Add the
solid-grindercrates package:
;
- Build the cli directly from
lib/solid-grinder
;
;
;
- Once you have finished the installation, we can check if it was successful.
- Adding
remappings.txtwith following line:
@solid-grinder/=lib/solid-grinder/contracts/
Quickstart
For simplicity, we use the UniswapV2's router as mentioned in Benchmarks as an example.
- Choose a function to optimize then do calldata bit packing. It is the same concept as storage bit packing. The main goal is to pack arguments into single 256 bits, such that the number of bits is lowest, minimizing the calldata as little as possible.
For uint type, we can, for example, minimize the time period into type of uint40 (5 bytes). This is safe as the upper bound is around 35k years, which is long enough.
For address type, the bit size is specified as uint24, assuming that the address table can store the maximum of 16,777,216 ids.
The following is the guideline how we can define the arguments' ranges.
// 24-bit, 16,777,216 possible
// 32-bit, 4,294,967,296 possible
// 40-bit, 1,099,511,627,776 => ~35k years
// 72-bit, 4,722 (18 decimals)
// 88-bit, 309m (18 decimals)
// 96-bit, 79b or 79,228,162,514 (18 decimals)
Note💡
Now, the tool only generates one function in each iteration. If you intend to optimize two functions, you can still use it two times and then add the second one to the first one.
- As an illustration, copy the folder
examplesinto your/contracts
- Generate
decodercontract
- Generate
encodercontract
- It is a good practice to do linting e.g.
- be an calldata gas optimizooor!!
Note💡
It is recommended to manually change original (un-optimized) contract's visibility to public. From user perspective, it is then safe to still include the original version, meaning that users can directly and quickly interact via Etherscan in emergency case (i.e. front-end part is down). This is because it is difficult to interact with the optimized version via Etherscan, because the users have to manually compress arguments into single payload themselves.
/** ... */
contract UniswapV2Router02 is IUniswapV2Router02 {
/** ... */
function addLiquidity(
/** ... */
) public virtual override ensure(deadline) returns (uint256 amountA, uint256 amountB, uint256 liquidity) {
/** ... */
}
/** ... */
}
Contributing
See our contributing guidelines.
We are currently still in an experimental phase leading up to a first audit and would love to hear your feedback on how we can improve Solid Grinder.
If you want to say thank you or/and support active development of Solid Grinder:
- Add a GitHub Star to the project.
- Tweet about Solid Grinder.
- Write interesting articles about the project on Medium, or your personal blog.
Architecture
WIP