Skip to content
Open
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
12 changes: 7 additions & 5 deletions src/interface/IFlowV5.sol
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,15 @@ import {UnregisteredFlow} from "../error/ErrFlow.sol";
/// ```
/// /* sentinel is always the same. */
/// sentinel: 0xfea74d0c9bf4a3c28f0dd0674db22a3d7f8bf259c56af19f4ac1e735b156974f,
/// /* erc1155 group sits at the bottom of the stack — written first in
/// rainlang, consumed last. Just a sentinel here as there's nothing to do. */
/// /* erc1155 group at the bottom — terminator sentinel, no tuples. */
/// _: sentinel,
/// /* erc721 group — terminator sentinel, then one tuple
/// (token, from, to, id). */
/// _: sentinel,
/// /* erc721 group sits in the middle, with the token id as the last value */
/// _: 0x1234 0xdeadbeef context<0 1>() 5678,
/// /* erc20 group sits at the top of the stack — written last in rainlang,
/// consumed first. The amount is the last value of the tuple. */
/// /* erc20 group at the top — terminator sentinel, then one tuple
/// (token, from, to, amount). */
/// _: sentinel,
/// _: 0xf00baa context<0 1>() 0xdeadbeef 1e18;
/// ```
///
Expand Down
Loading