TaskRequestSent
Emitted on sendRequest()
event TaskRequestSent(
address indexed requester,
bytes32 indexed requestId,
address indexed callbackAddr,
uint256 payment,
uint256 cancelExpiration,
bool deterministic,
bytes data
);
Parameters
Name | Type | Description |
---|---|---|
requester | address | The address of the requester. |
requestId | bytes32 | The unique identifier of the request. |
callbackAddr | address | The address of the callback contract. |
payment | uint256 | The amount of tokens sent with the request. |
cancelExpiration | uint256 | The timestamp when the request can be canceled. |
deterministic | bool | Whether the request is deterministic. |
data | bytes | The data sent with the request. |