You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
215 lines
12 KiB
215 lines
12 KiB
'use strict'
|
|
|
|
module.exports = {
|
|
contract: `contract structArrayStorage {
|
|
struct intStruct {
|
|
int8 i8;
|
|
int16 i16;
|
|
uint32 ui32;
|
|
int i256;
|
|
uint16 ui16;
|
|
int32 i32;
|
|
}
|
|
intStruct intStructDec;
|
|
|
|
int64[7] i5;
|
|
|
|
int64[] idyn5;
|
|
|
|
int32[][4] dyn1;
|
|
|
|
int32[][4][] dyn2;
|
|
|
|
struct simpleStruct {
|
|
int8 i8;
|
|
string str;
|
|
}
|
|
simpleStruct[][3] arrayStruct;
|
|
constructor () public {
|
|
intStructDec.i8 = 32;
|
|
intStructDec.i16 = -54;
|
|
intStructDec.ui32 = 128;
|
|
intStructDec.i256 = -1243565465756;
|
|
intStructDec.ui16 = 34556;
|
|
intStructDec.i32 = -345446546;
|
|
|
|
i5[0] = -2134;
|
|
i5[1] = 345;
|
|
i5[2] = -3246;
|
|
i5[3] = 4357;
|
|
i5[4] = 324;
|
|
i5[5] = -2344;
|
|
i5[6] = 3254;
|
|
|
|
idyn5.push(-2134);
|
|
idyn5.push(345);
|
|
idyn5.push(-3246);
|
|
idyn5.push(4357);
|
|
idyn5.push(324);
|
|
idyn5.push(-2344);
|
|
idyn5.push(3254);
|
|
idyn5.push(-254);
|
|
idyn5.push(-2354);
|
|
|
|
dyn1[0].push(3);
|
|
dyn1[1].push(12);
|
|
dyn1[1].push(-12);
|
|
dyn1[1].push(-1234);
|
|
|
|
dyn1[2].push(1);
|
|
dyn1[2].push(12);
|
|
dyn1[2].push(1235);
|
|
dyn1[2].push(-12);
|
|
dyn1[2].push(-123456);
|
|
dyn1[2].push(-23435435);
|
|
dyn1[2].push(543543);
|
|
dyn1[2].push(2);
|
|
dyn1[2].push(-1);
|
|
dyn1[2].push(232432);
|
|
dyn1[3].push(232432);
|
|
dyn1[3].push(232432);
|
|
|
|
int32[][4] memory e1;
|
|
e1[0] = new int32[](3);
|
|
e1[1] = new int32[](3);
|
|
e1[2] = new int32[](3);
|
|
e1[3] = new int32[](3);
|
|
|
|
e1[0][0] = 23;
|
|
e1[0][1] = -23;
|
|
e1[0][2] = -28;
|
|
|
|
e1[1][0] = 23;
|
|
e1[1][1] = -23;
|
|
e1[1][2] = -28;
|
|
|
|
e1[2][0] = 23;
|
|
e1[2][1] = -23;
|
|
e1[2][2] = -28;
|
|
|
|
e1[3][0] = 23;
|
|
e1[3][1] = -23;
|
|
e1[3][2] = -28;
|
|
|
|
dyn2.push(e1);
|
|
|
|
int32[][4] memory e2;
|
|
e2[0] = new int32[](3);
|
|
e2[1] = new int32[](3);
|
|
e2[2] = new int32[](3);
|
|
e2[3] = new int32[](3);
|
|
|
|
e2[0][0] = 23;
|
|
e2[0][1] = -23;
|
|
e2[0][2] = -28;
|
|
|
|
e2[1][0] = 23;
|
|
e2[1][1] = -23;
|
|
e2[1][2] = -28;
|
|
|
|
e2[2][0] = 23;
|
|
e2[2][1] = -23;
|
|
e2[2][2] = -28;
|
|
|
|
e2[3][0] = 23;
|
|
e2[3][1] = -23;
|
|
e2[3][2] = -28;
|
|
|
|
dyn2.push(e2);
|
|
|
|
simpleStruct memory s1;
|
|
s1.i8 = 34;
|
|
s1.str = 'test_str_short';
|
|
|
|
simpleStruct memory s2;
|
|
s1.i8 = -123;
|
|
s1.str = 'test_str_long test_str_lo ngtest_str_longtest_str_ longtest_str_longtest_ str_longtest_str_l ongtest_str_long';
|
|
|
|
arrayStruct[0].push(s1);
|
|
arrayStruct[0].push(s2);
|
|
|
|
simpleStruct memory s3;
|
|
s3.i8 = 50;
|
|
s3.str = 'test_str_short';
|
|
|
|
arrayStruct[1].push(s3);
|
|
|
|
simpleStruct memory s4;
|
|
s4.i8 = 60;
|
|
s4.str = 'test_str_short';
|
|
|
|
simpleStruct memory s5;
|
|
s5.i8 = 84;
|
|
s5.str = 'test_str_long test_str_lo ngtest_str_longtest_str_ longtest_str_longtest_ str_longtest_str_l ongtest_str_long';
|
|
|
|
simpleStruct memory s6;
|
|
s5.i8 = -34;
|
|
s5.str = 'test_str_short';
|
|
|
|
arrayStruct[2].push(s4);
|
|
arrayStruct[2].push(s5);
|
|
arrayStruct[2].push(s6);
|
|
}
|
|
}
|
|
`,
|
|
storage: {
|
|
'0x0000000000000000000000000000000000000000000000000000000000000000': '0x0000000000000000000000000000000000000000000000000000000080ffca20',
|
|
'0x0000000000000000000000000000000000000000000000000000000000000001': '0xfffffffffffffffffffffffffffffffffffffffffffffffffffffede75b8df64',
|
|
'0x0000000000000000000000000000000000000000000000000000000000000002': '0x0000000000000000000000000000000000000000000000000000eb68e76e86fc',
|
|
'0x0000000000000000000000000000000000000000000000000000000000000003': '0x0000000000001105fffffffffffff3520000000000000159fffffffffffff7aa',
|
|
'0x0000000000000000000000000000000000000000000000000000000000000004': '0x00000000000000000000000000000cb6fffffffffffff6d80000000000000144',
|
|
'0x0000000000000000000000000000000000000000000000000000000000000005': '0x0000000000000000000000000000000000000000000000000000000000000009',
|
|
'0x036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0': '0x0000000000001105fffffffffffff3520000000000000159fffffffffffff7aa',
|
|
'0x036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db1': '0xffffffffffffff020000000000000cb6fffffffffffff6d80000000000000144',
|
|
'0x036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db2': '0x000000000000000000000000000000000000000000000000fffffffffffff6ce',
|
|
'0x0000000000000000000000000000000000000000000000000000000000000006': '0x0000000000000000000000000000000000000000000000000000000000000001',
|
|
'0x0000000000000000000000000000000000000000000000000000000000000007': '0x0000000000000000000000000000000000000000000000000000000000000003',
|
|
'0x0000000000000000000000000000000000000000000000000000000000000008': '0x000000000000000000000000000000000000000000000000000000000000000a',
|
|
'0x0000000000000000000000000000000000000000000000000000000000000009': '0x0000000000000000000000000000000000000000000000000000000000000002',
|
|
'0xf652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f': '0x0000000000000000000000000000000000000000000000000000000000000003',
|
|
'0xa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688': '0x0000000000000000000000000000000000000000fffffb2efffffff40000000c',
|
|
'0xf3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3': '0x0000000200084b37fe9a6755fffe1dc0fffffff4000004d30000000c00000001',
|
|
'0xf3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee4': '0x00000000000000000000000000000000000000000000000000038bf0ffffffff',
|
|
'0x6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af': '0x00000000000000000000000000000000000000000000000000038bf000038bf0',
|
|
'0x000000000000000000000000000000000000000000000000000000000000000a': '0x0000000000000000000000000000000000000000000000000000000000000002',
|
|
'0xc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8': '0x0000000000000000000000000000000000000000000000000000000000000003',
|
|
'0xc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a9': '0x0000000000000000000000000000000000000000000000000000000000000003',
|
|
'0xc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2aa': '0x0000000000000000000000000000000000000000000000000000000000000003',
|
|
'0xc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2ab': '0x0000000000000000000000000000000000000000000000000000000000000003',
|
|
'0xc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2ac': '0x0000000000000000000000000000000000000000000000000000000000000003',
|
|
'0xc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2ad': '0x0000000000000000000000000000000000000000000000000000000000000003',
|
|
'0xc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2ae': '0x0000000000000000000000000000000000000000000000000000000000000003',
|
|
'0xc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2af': '0x0000000000000000000000000000000000000000000000000000000000000003',
|
|
'0x410c2796757c1866e144712b649ab035b22d7295530f125d2b7bc17fa7b793b5': '0x0000000000000000000000000000000000000000ffffffe4ffffffe900000017',
|
|
'0x06b493c1ca289c5326ef56c162cd187bf96c737c2c9bbda318cc345be15042af': '0x0000000000000000000000000000000000000000ffffffe4ffffffe900000017',
|
|
'0x7a0b543a77c72a2154fae01417d93ab4a7f07c9a6bbce5febfeb9904a41b7914': '0x0000000000000000000000000000000000000000ffffffe4ffffffe900000017',
|
|
'0x5370eae143cc2f6260640bd734b0cdaf587bbcfc81362df39d56d5a29a7e663b': '0x0000000000000000000000000000000000000000ffffffe4ffffffe900000017',
|
|
'0xd5211e5652076f058928f5b24e1816690291c298b337ea927f8d0f3aabb8a05a': '0x0000000000000000000000000000000000000000ffffffe4ffffffe900000017',
|
|
'0xf232dee5d9edbb879fab95c81a3867fe42b8d79b05e9c99336c5297487f94e8d': '0x0000000000000000000000000000000000000000ffffffe4ffffffe900000017',
|
|
'0x8a82e6d20ae2c2a82dd8e575dac6354ce964fd35e3d1cdb79bb1757c6a7675b6': '0x0000000000000000000000000000000000000000ffffffe4ffffffe900000017',
|
|
'0xa9e6724ab7d0ccf2de69222bc5703c9df2049038736e6d57f437315272b76a3a': '0x0000000000000000000000000000000000000000ffffffe4ffffffe900000017',
|
|
'0x000000000000000000000000000000000000000000000000000000000000000b': '0x0000000000000000000000000000000000000000000000000000000000000002',
|
|
'0x000000000000000000000000000000000000000000000000000000000000000c': '0x0000000000000000000000000000000000000000000000000000000000000001',
|
|
'0x000000000000000000000000000000000000000000000000000000000000000d': '0x0000000000000000000000000000000000000000000000000000000000000003',
|
|
'0x0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9': '0x0000000000000000000000000000000000000000000000000000000000000022',
|
|
'0x0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01dba': '0x746573745f7374725f73686f727400000000000000000000000000000000001c',
|
|
'0x0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01dbb': '0x0000000000000000000000000000000000000000000000000000000000000085',
|
|
'0x0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01dbc': '0x00000000000000000000000000000000000000000000000000000000000000db',
|
|
'0x40abea1508c7557b93b3e219e777ce8530b60f9f8452ef1c627dbc62b53708fc': '0x746573745f7374725f6c6f6e6720746573745f7374725f6c6f206e6774657374',
|
|
'0x40abea1508c7557b93b3e219e777ce8530b60f9f8452ef1c627dbc62b53708fd': '0x5f7374725f6c6f6e67746573745f7374725f206c6f6e67746573745f7374725f',
|
|
'0x40abea1508c7557b93b3e219e777ce8530b60f9f8452ef1c627dbc62b53708fe': '0x6c6f6e67746573745f207374725f6c6f6e67746573745f7374725f6c206f6e67',
|
|
'0x40abea1508c7557b93b3e219e777ce8530b60f9f8452ef1c627dbc62b53708ff': '0x746573745f7374725f6c6f6e6700000000000000000000000000000000000000',
|
|
'0xdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7': '0x0000000000000000000000000000000000000000000000000000000000000032',
|
|
'0xdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c8': '0x746573745f7374725f73686f727400000000000000000000000000000000001c',
|
|
'0xd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb5': '0x000000000000000000000000000000000000000000000000000000000000003c',
|
|
'0xd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb6': '0x746573745f7374725f73686f727400000000000000000000000000000000001c',
|
|
'0xd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb7': '0x0000000000000000000000000000000000000000000000000000000000000054',
|
|
'0xd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb8': '0x00000000000000000000000000000000000000000000000000000000000000db',
|
|
'0x87466a1ae97409dd9d9cd9368751b439509d8b3f8fc2bb47a4264e5d6fd4d324': '0x746573745f7374725f6c6f6e6720746573745f7374725f6c6f206e6774657374',
|
|
'0x87466a1ae97409dd9d9cd9368751b439509d8b3f8fc2bb47a4264e5d6fd4d325': '0x5f7374725f6c6f6e67746573745f7374725f206c6f6e67746573745f7374725f',
|
|
'0x87466a1ae97409dd9d9cd9368751b439509d8b3f8fc2bb47a4264e5d6fd4d326': '0x6c6f6e67746573745f207374725f6c6f6e67746573745f7374725f6c206f6e67',
|
|
'0x87466a1ae97409dd9d9cd9368751b439509d8b3f8fc2bb47a4264e5d6fd4d327': '0x746573745f7374725f6c6f6e6700000000000000000000000000000000000000',
|
|
'0xd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb9': '0x00000000000000000000000000000000000000000000000000000000000000de',
|
|
'0xd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eba': '0x746573745f7374725f73686f727400000000000000000000000000000000001c'
|
|
}
|
|
}
|
|
|