Skip to content

Commit 3a1c267

Browse files
committed
requested changes
1 parent 3a22daf commit 3a1c267

File tree

1 file changed

+2
-3
lines changed
  • pages/entropy/generate-random-numbers

1 file changed

+2
-3
lines changed

pages/entropy/generate-random-numbers/evm.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ This method returns a sequence number and emits a [`Requested`](https://github.c
8585
Note that there are several variants of `requestV2` that allow the caller to configure the provider fulfilling the request and the gas limit for the callback.
8686

8787
<Callout type="info" emoji="ℹ️">
88-
Users can also request a number with a custom gas limit by passing a **custom `gasLimit`** to the `requestV2(uint32 gasLimit){:bash}` call.
88+
Users can also request a random number with a custom gas limit by passing a **custom `gasLimit`** to the `requestV2(uint32 gasLimit){:bash}` call.
8989
For example,
9090
```solidity copy
9191
function requestRandomNumber(uint32 gasLimit) external payable {
@@ -95,10 +95,9 @@ uint64 sequenceNumber = entropy.requestV2{ value: fee }(gasLimit);
9595
}
9696
9797
````
98-
Please see the method documentation in the [IEntropyV2 interface](https://github.com/pyth-network/pyth-crosschain/blob/main/target_chains/ethereum/entropy_sdk/solidity/IEntropyV2.sol).
99-
10098
</Callout>
10199
100+
Please see the method documentation in the [IEntropyV2 interface](https://github.com/pyth-network/pyth-crosschain/blob/main/target_chains/ethereum/entropy_sdk/solidity/IEntropyV2.sol).
102101
103102
### 2. Implement the Entropy callback
104103

0 commit comments

Comments
 (0)