Skip to content

Commit a8d5f59

Browse files
Add parameter to the createNewTask method of the ServiceManagerContract in docs
1 parent d9abacf commit a8d5f59

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

docs/2_architecture/components/3_service_manager_contract.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,16 @@ Besides the base [EigenLayer middleware contracts](https://github.com/Layr-Labs/
1919
```solidity
2020
function createNewTask(
2121
bytes32 batchMerkleRoot,
22-
string calldata batchDataPointer
22+
string calldata batchDataPointer,
23+
uint256 respondToTaskFeeLimit
2324
) external payable
2425
```
2526

2627
This method is called to create a new batch verification task that will broadcast an event to all operators, signaling that there are new proofs awaiting verification.
2728

2829
* `batchMerkleRoot` is a 256 bit hash corresponding to the Merkle Root of the proofs batch to be verified by operators.
2930
* `batchDataPointer` is a string representing a link to some specific data storage location. This is used by operators to download the entire batch of proofs.
31+
* `respondToTaskFeeLimit` are the funds required for the operator to respond to the task
3032

3133
#### Respond to task
3234

0 commit comments

Comments
 (0)