Skip to content

Commit 5f5d3d5

Browse files
committed
fix
1 parent 9ec4fb0 commit 5f5d3d5

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

components/EntropyDeployments.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
255255
"tabi-testnet": {
256256
address: "0xEbe57e8045F2F230872523bbff7374986E45C486",
257257
explorer: "https://testnetv2.tabiscan.com/address/$ADDRESS",
258-
delay: "1 block",
258+
delay: "0 block",
259259
gasLimit: "500K",
260260
network: "testnet",
261261
rpc: "https://rpc.testnetv2.tabichain.com",
@@ -327,7 +327,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
327327
"abstract-testnet": {
328328
address: "0x858687fD592112f7046E394A3Bf10D0C11fF9e63",
329329
explorer: "https://explorer.testnet.abs.xyz/address/$ADDRESS",
330-
delay: "1 block",
330+
delay: "0 block",
331331
gasLimit: "500K",
332332
network: "testnet",
333333
rpc: "https://api.testnet.abs.xyz",

pages/entropy/contract-addresses.mdx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ import EntropyDeploymentTable from "../../components/EntropyDeploymentTable";
1717
**The default provider for above mainnet chains is `0x52DeaA1c84233F7bb8C8A45baeDE41091c616506`.**
1818

1919
The default provider on mainnet has a reveal delay to avoid changes on the outcome of the Entropy request because of block reorgs.
20-
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.
21-
Read [here](https://www.alchemy.com/overviews/ethereum-commitment-levels) for more information on commitment levels.
20+
The reveal delay shows how many blocks should be produced after the block including the request transaction in order to reveal and submit a callback transaction.
2221

2322
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.
2423

@@ -30,12 +29,11 @@ The default provider fulfills the request by sending a transaction with a gas li
3029
([k, v]) => v.network === "testnet"
3130
)
3231
)}
33-
showReveal={false}
32+
showReveal={true}
3433
/>
3534

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

38-
The default provider on testnet has the same reveal delay as mainnet to provide consistent behavior and latencies for developers. 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.
39-
Read [here](https://www.alchemy.com/overviews/ethereum-commitment-levels) for more information on commitment levels.
37+
The default provider on testnet has reveal delays identical to the corresponding mainnet chains to ensure consistent behavior across environments.
4038

4139
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.

0 commit comments

Comments
 (0)