From 3565ee627e41c67e9e4174ef1f6c096eb2e2a70a Mon Sep 17 00:00:00 2001 From: Dev Kalra Date: Thu, 21 Dec 2023 15:26:26 +0530 Subject: [PATCH] point entropy sdk docs to pyth docs for current deployments (#1199) --- target_chains/ethereum/entropy_sdk/solidity/README.md | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/target_chains/ethereum/entropy_sdk/solidity/README.md b/target_chains/ethereum/entropy_sdk/solidity/README.md index bee32484..4cf406d2 100644 --- a/target_chains/ethereum/entropy_sdk/solidity/README.md +++ b/target_chains/ethereum/entropy_sdk/solidity/README.md @@ -16,16 +16,9 @@ npm install @pythnetwork/entropy-sdk-solidity ## Setup 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). -``` -| Chain | Entropy Address | Provider | -|-------------------|--------------------------------------------|--------------------------------------------| -| lightlink-pegasus | 0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a | 0x6CC14824Ea2918f5De5C2f75A9Da968ad4BD6344 | - -``` - -Choose one of these networks and instantiate an `IEntropy` contract in your solidity contract: +Choose one of the networks and instantiate an `IEntropy` contract in your solidity contract: ```solidity IEntropy entropy = IEntropy(
);