-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from connext/event-signatures
Event signatures
- Loading branch information
Showing
47 changed files
with
1,449 additions
and
856 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
packages/contracts/contracts/interfaces/IFulfillHelper.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// SPDX-License-Identifier: UNLICENSED | ||
pragma solidity 0.8.4; | ||
|
||
interface IFulfillHelper { | ||
function addFunds( | ||
address user, | ||
bytes32 transactionId, | ||
address assetId, | ||
uint256 amount | ||
) external payable; | ||
|
||
function execute( | ||
address user, | ||
bytes32 transactionId, | ||
address assetId, | ||
uint256 amount, | ||
bytes calldata callData | ||
) external; | ||
} |
10 changes: 0 additions & 10 deletions
10
packages/contracts/contracts/interfaces/IMultisendInterpreter.sol
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 0 additions & 39 deletions
39
packages/contracts/contracts/interpreters/MultisendInterpreter.sol
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.