-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_flashloan_v2.py
59 lines (42 loc) · 2 KB
/
test_flashloan_v2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# NOTE: The following tests begin by transferring assets to the deployed flashloan
# contract. this ensures that the tests pass with the base Flashloan implementation,
# i.e. one that does not implement any custom logic.
# The initial transfer should be removed prior to testing your final implementation.
def test_eth_flashloan(accounts, WETH, flashloan_v2):
"""
Test a flashloan that borrows Ethereum.
"""
# transfer ether to the flashloan contract
accounts[0].transfer(WETH, "2 ether")
WETH.transfer(flashloan_v2, "2 ether", {"from": accounts[0]})
flashloan_v2.flashloan(WETH, {"from": accounts[0]})
def test_dai_flashloan(Contract, accounts, DAI, flashloan_v2):
"""
Test a flashloan that borrows DAI.
To use a different asset, swap DAI with any of the fixture names in `tests/conftest.py`
"""
# purchase DAI on uniswap
uniswap_dai = Contract.from_explorer("0x2a1530C4C41db0B0b2bB646CB5Eb1A67b7158667")
uniswap_dai.ethToTokenSwapInput(
1, 10000000000, {"from": accounts[0], "value": "2 ether"}
)
# transfer DAI to the flashloan contract
balance = DAI.balanceOf(accounts[0])
DAI.transfer(flashloan_v2, balance, {"from": accounts[0]})
flashloan_v2.flashloan(DAI, {"from": accounts[0]})
def test_batch_eth_dai_flashloan(Contract, accounts, DAI, WETH, flashloan_v2):
"""
Test a flashloan that borrows WETH and DAI.
"""
# purchase DAI on uniswap
uniswap_dai = Contract.from_explorer("0x2a1530C4C41db0B0b2bB646CB5Eb1A67b7158667")
uniswap_dai.ethToTokenSwapInput(
1, 10000000000, {"from": accounts[0], "value": "2 ether"}
)
# transfer DAI to the flashloan contract
balance = DAI.balanceOf(accounts[0])
DAI.transfer(flashloan_v2, balance, {"from": accounts[0]})
# transfer ether to the flashloan contract
accounts[0].transfer(WETH, "2 ether")
WETH.transfer(flashloan_v2, "2 ether", {"from": accounts[0]})
flashloan_v2.flashloan([WETH, DAI], ["1 ether", "1 ether"], {"from": accounts[0]})