Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion pages/entropy/debug-callback-failures.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Debug Callback Failures

import { Callout } from "nextra/components";

This guide explains how to identify and resolve issues with the Entropy callback.
The intended audience for this guide is developers who have made an Entropy random number request, but their application hasn't received a callback.

Expand Down Expand Up @@ -57,7 +59,11 @@ Retrieve the `/v1/chains/$CHAIN_ID/revelations/$SEQUENCE_NUMBER` endpoint from t
curl https://fortuna.dourolabs.app/v1/chains/$CHAIN_ID/revelations/$SEQUENCE_NUMBER
```

N.B. The chain ID is the string name of the chain and not the EVM chain ID. The chain ids are available [here](https://fortuna.dourolabs.app/docs/#/crate%3A%3Aapi/chain_ids)
<Callout type="warning" emoji="⚠️">
The chain ID is the string name of the chain and not the EVM chain ID. The
chain ids are available
[here](https://fortuna.dourolabs.app/docs/#/crate%3A%3Aapi/chain_ids).
</Callout>

This endpoint will return the provider's revelation as a hexadecimal value, such as:

Expand Down
Loading