Skip to content

Commit

Permalink
forwarder: provide forwarder interface with extra data
Browse files Browse the repository at this point in the history
  • Loading branch information
facuspagnuolo committed Jun 10, 2020
1 parent f5ac5f8 commit 886f149
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions contracts/forwarding/IForwarderV2.sol
@@ -0,0 +1,13 @@
/*
* SPDX-License-Identifier: MIT
*/

pragma solidity ^0.4.24;

import "./IForwarderPayable.sol";


// TODO: Cannot inherit interfaces in Solidity 0.4.24
contract IForwarderV2 is IForwarderPayable {
function forward(bytes evmCallScript, bytes context) external payable;
}

0 comments on commit 886f149

Please sign in to comment.