Итерация над массивом списков в солидности
address[] public myList;
function iterateOverList() public {
address currentAddress;
for (uint i=0; i < myList.length; i++) {
currentAddress = myList[i];
}
}
Anxious Alligator