From 8e327848424889ffaeac1b0e211ba70867168c96 Mon Sep 17 00:00:00 2001 From: Aditya Arora Date: Mon, 7 Oct 2024 16:26:15 -0400 Subject: [PATCH] fix(ethereum/sdk/solidity) Fix Readme --- target_chains/ethereum/sdk/solidity/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/target_chains/ethereum/sdk/solidity/README.md b/target_chains/ethereum/sdk/solidity/README.md index dc50e8a482..1e489261e0 100644 --- a/target_chains/ethereum/sdk/solidity/README.md +++ b/target_chains/ethereum/sdk/solidity/README.md @@ -7,7 +7,7 @@ It is **strongly recommended** to follow the [consumer best practices](https://d ## Installation -###Truffle/Hardhat +### Truffle/Hardhat If you are using Truffle or Hardhat, simply install the NPM package: @@ -15,7 +15,7 @@ If you are using Truffle or Hardhat, simply install the NPM package: npm install @pythnetwork/pyth-sdk-solidity ``` -###Foundry +### Foundry If you are using Foundry, you will need to create an NPM project if you don't already have one. From the root directory of your project, run: @@ -81,7 +81,7 @@ Please refer to [Pyth On-Demand Updates page](https://docs.pyth.network/document ## Solidity Target Chains -[This](https://docs.pyth.network/documentation/pythnet-price-feeds/evm#networks) document contains list of the EVM networks that Pyth is available on. +[This](https://docs.pyth.network/price-feeds/contract-addresses/evm) document contains list of the EVM networks that Pyth is available on. You can find a list of available price feeds [here](https://pyth.network/developers/price-feed-ids/). @@ -93,7 +93,7 @@ You can find a list of available price feeds [here](https://pyth.network/develop ### ABIs -When making changes to a contract interface, please make sure to update the ABI files too. You can update it using `npm run generate-abi` and it will update the ABI files in [abis](./abis) directory. If you create a new contract, you also need to add the contract name in [the ABI generation script](./scripts/generateAbi.js#L5) so the script can create the ABI file for the new contract as well. +When making changes to a contract interface, please make sure to update the ABI files too. You can update it using `pnpm generate-abi` and it will update the ABI files in [abis](./abis) directory. ### Releases