Skip to content

Fix getAccounts #565

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions contracts/prebuilts/account/utils/BaseAccountFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -119,17 +119,16 @@ abstract contract BaseAccountFactory is IAccountFactory, Multicall {

/// @notice Returns all accounts between the given indices.
function getAccounts(uint256 _start, uint256 _end) external view returns (address[] memory accounts) {
uint256 len = _baseAccountFactoryStorage().allAccounts.length();
require(_start < _end && _end <= len, "BaseAccountFactory: invalid indices");

if (len == 0) {
return new address[](0);
}
require(
_start < _end && _end <= _baseAccountFactoryStorage().allAccounts.length(),
"BaseAccountFactory: invalid indices"
);

uint256 len = _end - _start;
accounts = new address[](_end - _start);

for (uint256 i = _start; i < _end; i += 1) {
accounts[i] = _baseAccountFactoryStorage().allAccounts.at(i);
for (uint256 i = 0; i < len; i += 1) {
accounts[i] = _baseAccountFactoryStorage().allAccounts.at(i + _start);
}
}

Expand Down
52 changes: 52 additions & 0 deletions src/test/smart-wallet/Account.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,14 @@ contract SimpleAccountTest is BaseTest {

/// @dev Create more than one accounts with the same admin.
function test_state_createAccount_viaEntrypoint_multipleAccountSameAdmin() public {
uint256 start = 0;
uint256 end = 0;

assertEq(accountFactory.totalAccounts(), 0);

vm.expectRevert("BaseAccountFactory: invalid indices");
address[] memory accs = accountFactory.getAccounts(start, end);

uint256 amount = 100;

for (uint256 i = 0; i < amount; i += 1) {
Expand Down Expand Up @@ -365,6 +373,50 @@ contract SimpleAccountTest is BaseTest {
)
);
}

start = 25;
end = 75;

address[] memory accountsPaginatedOne = accountFactory.getAccounts(start, end);

for (uint256 i = 0; i < (end - start); i += 1) {
assertEq(
accountsPaginatedOne[i],
Clones.predictDeterministicAddress(
accountFactory.accountImplementation(),
_generateSalt(accountAdmin, bytes(abi.encode(start + i))),
address(accountFactory)
)
);
}

start = 0;
end = amount;

address[] memory accountsPaginatedTwo = accountFactory.getAccounts(start, end);

for (uint256 i = 0; i < (end - start); i += 1) {
assertEq(
accountsPaginatedTwo[i],
Clones.predictDeterministicAddress(
accountFactory.accountImplementation(),
_generateSalt(accountAdmin, bytes(abi.encode(start + i))),
address(accountFactory)
)
);
}

start = 75;
end = 25;

vm.expectRevert("BaseAccountFactory: invalid indices");
accs = accountFactory.getAccounts(start, end);

start = 25;
end = amount + 1;

vm.expectRevert("BaseAccountFactory: invalid indices");
accs = accountFactory.getAccounts(start, end);
}

/*///////////////////////////////////////////////////////////////
Expand Down