mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-01-25 04:20:33 +00:00
eb20708faf
* Tests for fixed array of struct type. * Add tests for maps with struct type value and double nested maps. Co-authored-by: nikugogoi <95nikass@gmail.com>
66 lines
1.8 KiB
Solidity
66 lines
1.8 KiB
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.6;
|
|
pragma abicoder v2;
|
|
|
|
contract TestFixedArrays {
|
|
// Fixed size array variable will use 5 consecutive slots as size of 1 element is 32 bytes.
|
|
uint[5] uintArray;
|
|
|
|
// Fixed size array variable will use 3 slots as size of 1 element is 16 bytes.
|
|
int128[5] int128Array;
|
|
|
|
// Fixed size array variable will use 1 slot as size of one element is 1 byte.
|
|
bool[2] boolArray;
|
|
|
|
// Fixed size array variable will use the next slot as it is of array type.
|
|
// https://docs.soliditylang.org/en/v0.7.4/internals/layout_in_storage.html#layout-of-state-variables-in-storage
|
|
uint16[5] uint16Array;
|
|
|
|
address[4] addressArray;
|
|
|
|
bytes10[5] bytesArray;
|
|
|
|
struct TestStruct {
|
|
uint32 uint1;
|
|
int56 int1;
|
|
bool bool1;
|
|
}
|
|
|
|
TestStruct[5] structArray;
|
|
|
|
// Set variable boolArray.
|
|
function setBoolArray(bool[2] calldata value) external {
|
|
boolArray = value;
|
|
}
|
|
|
|
// Set variable uintArray.
|
|
function setUintArray(uint[5] calldata value) external {
|
|
uintArray = value;
|
|
}
|
|
|
|
// Set variable uint16Array.
|
|
function setUint16Array(uint16[5] calldata value) external {
|
|
uint16Array = value;
|
|
}
|
|
|
|
// Set variable int128Array.
|
|
function setInt128Array(int128[5] calldata value) external {
|
|
int128Array = value;
|
|
}
|
|
|
|
// Set variable addressArray.
|
|
function setAddressArray(address[4] calldata value) external {
|
|
addressArray = value;
|
|
}
|
|
|
|
// Set variable bytesArray.
|
|
function setBytesArray(bytes10[5] calldata value) external {
|
|
bytesArray = value;
|
|
}
|
|
|
|
// Set variable structArray.
|
|
function setStructArray(TestStruct calldata value, uint index) external {
|
|
structArray[index] = value;
|
|
}
|
|
}
|