Skip to content

docs: update chain ID note to use Callout tag in entropy callback docs #537

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Dec 12, 2024
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