-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
11 additions
and
8 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
10 changes: 5 additions & 5 deletions
10
centrifuge-js/src/modules/liquidityPools/abi/LiquidityPool.abi.json
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[ | ||
"event DepositRequest(address indexed, address, uint256)", | ||
"event RedeemRequest(address indexed, address, address, uint256)", | ||
"event DepositRequest(address indexed, address indexed, uint256 indexed, address, uint256)", | ||
"event RedeemRequest(address indexed, address indexed, uint256 indexed, address, uint256)", | ||
"event CancelDepositRequest(address indexed)", | ||
"event CancelRedeemRequest(address indexed)", | ||
"function mint(uint256, address) public returns (uint256)", | ||
"function withdraw(uint256, address, address) public returns (uint256)", | ||
"function requestDeposit(uint256, address) public", | ||
"function requestRedeem(uint256, address, address) public", | ||
"function requestDepositWithPermit(uint256, address, uint256, uint8, bytes32, bytes32) public", | ||
"function requestDeposit(uint256, address, address, bytes) public", | ||
"function requestRedeem(uint256, address, address, bytes) public", | ||
"function requestDepositWithPermit(uint256, address, bytes, uint256, uint8, bytes32, bytes32) public", | ||
"function cancelDepositRequest() public", | ||
"function cancelRedeemRequest() public" | ||
] |