Skip to content

docs(entropy): update testnet block delays to match mainnets and remove safe block references #714

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

Closed
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
7 changes: 3 additions & 4 deletions pages/entropy/contract-addresses.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ import EntropyDeploymentTable from "../../components/EntropyDeploymentTable";
**The default provider for above mainnet chains is `0x52DeaA1c84233F7bb8C8A45baeDE41091c616506`.**

The default provider on mainnet has a reveal delay to avoid changes on the outcome of the Entropy request because of block reorgs.
The reveal delay can be a number of blocks (measured from the `latest` block) or `safe` which means the reveal will be delayed until the request transaction is included in a block with `safe` tag.
Read [here](https://www.alchemy.com/overviews/ethereum-commitment-levels) for more information on commitment levels.
The reveal delay is a number of blocks measured from the `latest` block.

The default provider fulfills the request by sending a transaction with a gas limit as mentioned in above table. Entropy callbacks the consumer as part of this transaction.

Expand All @@ -30,11 +29,11 @@ The default provider fulfills the request by sending a transaction with a gas li
([k, v]) => v.network === "testnet"
)
)}
showReveal={false}
showReveal={true}
/>

**The default provider for above testnet chains is `0x6CC14824Ea2918f5De5C2f75A9Da968ad4BD6344`.**

The default provider on testnet **doesn't have a reveal delay**. It reveals the commitment as soon as the request transaction is included in a block.
The default provider on testnet has reveal delays identical to the corresponding mainnet chains to ensure consistent behavior across environments.

The default provider fulfills the request by sending a transaction with a gas limit as mentioned in above table. Entropy callbacks the consumer as part of this transaction.
Loading