Skip to content

Commit 202c882

Browse files
committed
Merge pull request #2 from init4tech/il-figlio-morpho.sol
Fix link path for Morpho.sol example
2 parents 9e64cc7 + c243768 commit 202c882

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ are effectively MEV, you can do some really interesting things with them. Like
1616

1717
## App Examples
1818

19-
- [`Morpho.sol`](./src/examples/Morpho.sol) - Contracts that allow you to drive
19+
- [`Morpho.sol`](./src/apps/Morpho.sol) - Contracts that allow you to drive
2020
Morpho lending market positions using Signet Orders. This allows you to
2121
supply, borrow, and lend Morpho positions on Ethereum from Signet instantly
2222
and atomically.

src/examples/GetOut.sol

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@ contract GetOut is SignetStd {
3535
RollupOrders.Output[] memory outputs = new RollupOrders.Output[](1);
3636
outputs[0] = hostUsdcOutput(desired, msg.sender);
3737

38-
ORDERS.initiate{
39-
value: msg.value
40-
}(
38+
ORDERS.initiate{value: msg.value}(
4139
block.timestamp, // this is equivalent to no deadline
4240
inputs,
4341
outputs

src/examples/PayYou.sol

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ abstract contract PayYou is SignetStd {
3131
RollupOrders.Input[] memory inputs = new RollupOrders.Input[](1);
3232
inputs[0] = makeInput(asset, amount);
3333

34-
ORDERS.initiate{
35-
value: amount
36-
}(
34+
ORDERS.initiate{value: amount}(
3735
block.timestamp, // no deadline
3836
inputs,
3937
new RollupOrders.Output[](0) // no outputs

0 commit comments

Comments
 (0)