Skip to content
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

test: bulker #765

Merged
merged 23 commits into from
Apr 18, 2023
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f9a8059
test: add test layout and approve test
pakim249CAL Apr 11, 2023
f4ea949
test: add helpers
pakim249CAL Apr 11, 2023
9b72c95
test: add wrap eth and transfer tests
pakim249CAL Apr 12, 2023
33908dd
test: add more tests
pakim249CAL Apr 13, 2023
19a3f38
Merge remote-tracking branch 'origin/feat/bulker' into test/bulker
pakim249CAL Apr 13, 2023
c1bf392
test: fix supply test
pakim249CAL Apr 13, 2023
57c5ceb
test: add more tests except rewards
pakim249CAL Apr 13, 2023
a5700ea
Merge branch 'feat/bulker-2' into test/bulker
pakim249CAL Apr 13, 2023
5f0fc19
test: adjust for merge
pakim249CAL Apr 13, 2023
573fb17
test: add skim test
pakim249CAL Apr 13, 2023
da9e06e
test: add eth receive test
pakim249CAL Apr 14, 2023
4182780
test: add getter test
pakim249CAL Apr 14, 2023
ea07000
Merge branch 'feat/bulker-2' into test/bulker
pakim249CAL Apr 14, 2023
d39a8c3
Merge branch 'feat/bulker' into test/bulker
pakim249CAL Apr 14, 2023
3b08d28
test: add multiple action test and various fixes
pakim249CAL Apr 14, 2023
25d2501
test: fix test error message
pakim249CAL Apr 14, 2023
8dd9fba
chore: update license
pakim249CAL Apr 17, 2023
ae6a323
chore: move test
pakim249CAL Apr 17, 2023
02d1f5f
chore: remove redundancy in permit2 integration tests
pakim249CAL Apr 17, 2023
383eba3
Merge remote-tracking branch 'origin/feat/bulker' into test/bulker
pakim249CAL Apr 17, 2023
64f4d66
test: increase withdraw test tolerance
pakim249CAL Apr 17, 2023
a43ded5
test: fix some errors
pakim249CAL Apr 18, 2023
f961a1a
test: rename file
pakim249CAL Apr 18, 2023
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
10 changes: 10 additions & 0 deletions src/interfaces/ILido.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// SPDX-License-Identifier: GNU AGPLv3
pakim249CAL marked this conversation as resolved.
Show resolved Hide resolved
pragma solidity >=0.5.0;

interface ILido {
function getPooledEthByShares(uint256 _sharesAmount) external view returns (uint256);

function getCurrentStakeLimit() external view returns (uint256);

function submit(address _referral) external payable returns (uint256);
}
Loading