point entropy sdk docs to pyth docs for current deployments (#1199)

This commit is contained in:
Dev Kalra 2023-12-21 15:26:26 +05:30 committed by GitHub
parent 5bdc7adf5e
commit 3565ee627e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 9 deletions

View File

@ -16,16 +16,9 @@ npm install @pythnetwork/entropy-sdk-solidity
## Setup ## Setup
To use the SDK, you need the address of an Entropy contract on your blockchain and a randomness provider. To use the SDK, you need the address of an Entropy contract on your blockchain and a randomness provider.
The following table lists the current deployments of entropy. You can find current deployments on this [page](https://docs.pyth.network/documentation/entropy/evm).
``` Choose one of the networks and instantiate an `IEntropy` contract in your solidity contract:
| Chain | Entropy Address | Provider |
|-------------------|--------------------------------------------|--------------------------------------------|
| lightlink-pegasus | 0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a | 0x6CC14824Ea2918f5De5C2f75A9Da968ad4BD6344 |
```
Choose one of these networks and instantiate an `IEntropy` contract in your solidity contract:
```solidity ```solidity
IEntropy entropy = IEntropy(<address>); IEntropy entropy = IEntropy(<address>);