Skip to content

Commit 24e06b2

Browse files
authored
typos README.md
1 parent 7233a0b commit 24e06b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

basic/20-flash-loan/aave/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ contract Flashloan is FlashLoanReceiverBase {
1717
}
1818
```
1919

20-
We import the required dependence in abouve codes, the contract `Flashloan` is inherit from `FlashLoanReceiverBase` which is a abostract contract, supply several convinience functions, such as the way to repay the flash loan. The constraction function (constructor) of Flashloan.sol accept a loan pool supplier address on Aave. We will explain this later.
20+
We import the required dependence in abouve codes, the contract `Flashloan` is inherit from `FlashLoanReceiverBase` which is an abostract contract, supply several convinience functions, such as the way to repay the flash loan. The constraction function (constructor) of Flashloan.sol accept a loan pool supplier address on Aave. We will explain this later.
2121

2222
### The flashloan function
2323
Well, let's take a look of flashloan function
@@ -65,7 +65,7 @@ The `executeOperation` function will be called after contract `LendingPool` get
6565

6666
When we triggered valid flashloan with `flashLoan` function, the all paramaters in `executeOperation` will be passed automatically, and we use `require` to make sure whether we had get the right amount of assets from flashloan.
6767

68-
Then, we can insert any logical we want to excute. In this step, we had have all usable fund from flashloan, and we can use it to have a arbitrage.
68+
Then, we can insert any logical we want to excute. In this step, we had have all usable fund from flashloan, and we can use it to have an arbitrage.
6969

7070
After we used flashloan, it's repay time.
7171

0 commit comments

Comments
 (0)