Skip to content
Merged
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
3 changes: 3 additions & 0 deletions src/lib/LibFlow.sol
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,9 @@ library LibFlow {
/// interpreter store. Then processes the ERC20, ERC721 and ERC1155 transfers
/// in the flow. Guarantees ordering of the transfers but DOES NOT prevent
/// reentrancy attacks. This is the responsibility of the caller.
/// `set` is skipped entirely when `kvs.length == 0`. Stores that need to
/// observe every flow invocation (e.g. for audit logging) cannot rely on
/// `set` being called for empty kvs.
/// @param flowTransfer The `FlowTransferV1` to process.
/// @param interpreterStore The `IInterpreterStoreV1` to set state on.
/// @param kvs The key value pairs to set on the interpreter store.
Expand Down
Loading