Skip to content

Commit 4d69a3e

Browse files
devin-ai-integration[bot]aditya@dourolabs.xyz
authored andcommitted
fix(developer-hub): correct requestV2 parameter order in docs
The Full custom request section showed incorrect parameter order: (address provider, uint32 gasLimit, bytes32 userRandomNumber) Corrected to match IEntropyV2.sol interface: (address provider, bytes32 userRandomNumber, uint32 gasLimit) Co-Authored-By: [email protected] <[email protected]>
1 parent b8adf02 commit 4d69a3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/developer-hub/content/docs/entropy/request-callback-variants.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ This variant allows you to specify a custom entropy provider instead of using th
7373
```solidity
7474
function requestV2(
7575
address provider,
76-
uint32 gasLimit,
77-
bytes32 userRandomNumber
76+
bytes32 userRandomNumber,
77+
uint32 gasLimit
7878
) external payable returns (uint64 assignedSequenceNumber);
7979
```
8080

0 commit comments

Comments
 (0)