mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-01-09 12:58:06 +00:00
Nabarun Gogoi
69e9402dc1
* Add failing test case for bytes with leading zeros * Fix getting bytes value length from storage slot
38 lines
1.2 KiB
Solidity
38 lines
1.2 KiB
Solidity
// SPDX-License-Identifier: AGPL-3.0
|
|
pragma solidity ^0.7.0;
|
|
|
|
contract TestBytes {
|
|
// Byte array variables are packed together in a slot as they occupy less than 32 bytes together.
|
|
bytes10 bytesTen;
|
|
bytes20 bytesTwenty;
|
|
|
|
// Byte array variable is stored in the next slot as there is not enough space for it in the previous slot.
|
|
bytes30 bytesThirty;
|
|
|
|
// Dynamically sized byte arrays will take the next single slot.
|
|
// If data is 32 or more bytes, the main slot stores the value length * 2 + 1 and the data is stored in keccak256(slot).
|
|
// Else the main slot stores the data and value length * 2.
|
|
// https://docs.soliditylang.org/en/v0.7.4/internals/layout_in_storage.html#bytes-and-string
|
|
bytes byteArray;
|
|
|
|
// Set variable bytesTen.
|
|
function setBytesTen(bytes10 value) external {
|
|
bytesTen = value;
|
|
}
|
|
|
|
// Set variable bytesTwenty.
|
|
function setBytesTwenty(bytes20 value) external {
|
|
bytesTwenty = value;
|
|
}
|
|
|
|
// Set variable bytesThirty.
|
|
function setBytesThirty(bytes30 value) external {
|
|
bytesThirty = value;
|
|
}
|
|
|
|
// Set variable byteArray.
|
|
function setByteArray(bytes calldata value) external {
|
|
byteArray = value;
|
|
}
|
|
}
|