Skip to content

Commit fc916c6

Browse files
authored
fix: typos (#1347)
* fix typo * fix typos * fix typo * fix typos
1 parent ce614fa commit fc916c6

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

price_pusher/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@ It will take a few minutes until all the services are up and running.
207207
## Reliability
208208

209209
You can run multiple instances of the price pusher to increase the reliability. It is better to use
210-
difference RPCs to get better reliability in case an RPC goes down. **If you use the same payer account
210+
different RPCs to get better reliability in case an RPC goes down. **If you use the same payer account
211211
in different pushers, then due to blockchains nonce or sequence for accounts, a transaction won't be
212-
pushed twiced and you won't pay additional costs most of the time.** However, there might be some race
213-
condiitons in the RPCs because they are often behind a load balancer than can sometimes cause rejected
214-
transactions land on-chain. You can reduce the chances of additional cost overhead by reducing the
212+
pushed twice and you won't pay additional costs most of the time.** However, there might be some race
213+
conditions in the RPCs because they are often behind a load balancer which can sometimes cause rejected
214+
transactions to land on-chain. You can reduce the chances of additional cost overhead by reducing the
215215
pushing frequency.

target_chains/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ A basic implementation of pyth on a target chain includes the following pieces o
2727

2828
## What is stored on each contract
2929

30-
In terms of contract configuration the following states exists on all the implementations:
30+
In terms of contract configuration the following states exist on all the implementations:
3131

3232
1. Price feeds: each contract stores the latest values for each price feed
3333
2. Wormhole address: wormhole contract to be used for verifying the VAAs
@@ -40,7 +40,7 @@ In terms of contract configuration the following states exists on all the implem
4040
## Wormhole deployments
4141

4242
In the case that wormhole is not deployed on a new chain we want to deploy pyth on, we need to deploy wormhole too.
43-
The deployment process is chain dependant, but should be very similar to how pyth is deployed on the target chain.
43+
The deployment process is chain dependent, but should be very similar to how pyth is deployed on the target chain.
4444
After the initial deployment, we need to make sure wormhole configuration is also on the latest version.
4545
This is done by running a set of fixed, known VAAs that update the wormhole configurations (guardians sets) on all chains.
4646

target_chains/ethereum/contracts/VERIFY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ETHERSCAN_KEY=... npm run verify --module=PythUpgradable --contract_address=0x0e
3434
(Note: the network name comes from the `truffle-config.json`).
3535
(Note: In this case, the `ETHERSCAN_KEY` is your snowtrace API key).
3636

37-
**You might need to add the the explorer api keys in [the truffle config](./truffle-config.js) `api_keys`.** Please look at
37+
**You might need to add the explorer api keys in [the truffle config](./truffle-config.js) `api_keys`.** Please look at
3838
`truffle-plugin-verify/utils.js` to find the key names. Here is an example:
3939

4040
```js

target_chains/sui/cli/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The following steps are needed to upgrade our sui contracts:
4646

4747
## Generating the new contract hash:
4848

49-
Run the following command to generate the new hash, make sure the contract addresses are idential to the deployed ones:
49+
Run the following command to generate the new hash, make sure the contract addresses are identical to the deployed ones:
5050

5151
```bash
5252
npm run cli -- generate-digest
@@ -65,5 +65,5 @@ Since clients try to fetch the latest version of the package automatically, it's
6565

6666
### FAQ:
6767

68-
- I'm seeting the error `Transaction has non recoverable errors from at least 1/3 of validators`. What should I do?
68+
- I'm seeing the error `Transaction has non recoverable errors from at least 1/3 of validators`. What should I do?
6969
Make sure you have enough funding in the wallet and try again. Usually a more descriptive error message is available in the returned value of the transaction.

0 commit comments

Comments
 (0)