-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
4d6bee2
commit 8ed3009
Showing
5 changed files
with
49 additions
and
4 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
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
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,6 +1,5 @@ | ||
# ISequenceMarket | ||
|
||
|
||
## Structs | ||
### RequestParams | ||
Request parameters. | ||
|
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,32 @@ | ||
# ISequenceMarketBatchPayable | ||
|
||
Inherits [ISequenceMarket](./ISequenceMarket.md). | ||
|
||
## Functions | ||
### acceptRequestBatchPayable | ||
|
||
Accepts requests. | ||
|
||
*Additional fees are applied to each request.* | ||
|
||
|
||
```solidity | ||
function acceptRequestBatchPayable( | ||
uint256[] calldata requestIds, | ||
uint256[] calldata quantities, | ||
address[] calldata recipients, | ||
uint256[] calldata additionalFees, | ||
address[] calldata additionalFeeRecipients | ||
) external payable; | ||
``` | ||
**Parameters** | ||
|
||
|Name|Type|Description| | ||
|----|----|-----------| | ||
|`requestIds`|`uint256[]`|The IDs of the requests.| | ||
|`quantities`|`uint256[]`|The quantities of tokens to accept.| | ||
|`recipients`|`address[]`|The recipients of the accepted tokens.| | ||
|`additionalFees`|`uint256[]`|The additional fees to pay.| | ||
|`additionalFeeRecipients`|`address[]`|The addresses to send the additional fees to.| | ||
|
||
|
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