Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
- Fix `failed` type for `EXECUTED_MULTISIG_TRANSACTION`
- Update default `timeout` from `5` -> `2`
  • Loading branch information
Uxio0 committed Jun 6, 2024
1 parent d7840e8 commit 96df091
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ If you want to integrate with the events service, you need to:
- Endpoint need to answer with:
- `HTTP 202` status
- Nothing in the body.
- It should answer **as soon as posible**, as events service will timeout in 5 seconds, if multiple timeouts are detected **service will stop sending requests** to your endpoint. So you should receive the event, return a HTTP response and then act upon it.
- It should answer **as soon as posible**, as events service will timeout in 2 seconds, if multiple timeouts are detected **service will stop sending requests** to your endpoint. So you should receive the event, return a HTTP response and then act upon it.
- Configuring HTTP Basic Auth in your endpoint is recommended so a malicious user cannot post fake events to your service.

## Events supported
Expand Down Expand Up @@ -62,7 +62,7 @@ Some parameters are common to every event:
"address": "<Ethereum checksummed address>",
"type": "EXECUTED_MULTISIG_TRANSACTION",
"safeTxHash": "<0x-prefixed-hex-string>",
"failed": <bool>,
"failed": "true" | "false",
"txHash": "<0x-prefixed-hex-string>",
"chainId": "<stringified-int>"
}
Expand Down

0 comments on commit 96df091

Please sign in to comment.