File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
api-reference/src/apis/evm
target_chains/solana/sdk/js/pyth_solana_receiver/src/idl Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { ParameterType } from "../../components/EvmApi";
4
4
export const getPriceUnsafe = readApi < "id" > ( {
5
5
name : "getPriceUnsafe" ,
6
6
summary :
7
- "Get the **last updated** price object for the requested price feed ID. _Caution: This function may return a price from arbitrarily in the the past_" ,
7
+ "Get the **last updated** price object for the requested price feed ID. _Caution: This function may return a price from arbitrarily in the past_" ,
8
8
description : `
9
9
This method returns the price object containing **last updated** price for the requested price feed ID.
10
10
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ pub struct Options {
11
11
#[ arg( env = "PYTHNET_WS_ADDR" ) ]
12
12
pub ws_addr : String ,
13
13
14
- /// Addres of a PythNet compatible HTP RPC endpoint.
14
+ /// Address of a PythNet compatible HTP RPC endpoint.
15
15
#[ arg( long = "pythnet-http-addr" ) ]
16
16
#[ arg( env = "PYTHNET_HTTP_ADDR" ) ]
17
17
pub http_addr : String ,
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ impl std::fmt::Display for GuardianSet {
30
30
fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
31
31
write ! ( f, "[" ) ?;
32
32
for ( i, key) in self . keys . iter ( ) . enumerate ( ) {
33
- // Comma seperated printing of the keys using hex encoding.
33
+ // Comma separated printing of the keys using hex encoding.
34
34
if i != 0 {
35
35
write ! ( f, ", " ) ?;
36
36
}
Original file line number Diff line number Diff line change @@ -601,7 +601,7 @@ export type WormholeCoreBridgeSolana = {
601
601
name : "signerIndices" ;
602
602
docs : [
603
603
"Indices of verified guardian signatures, where -1 indicates a missing value. There is a" ,
604
- "missing value if the guardian at this index is not expected to have its signature verfied by" ,
604
+ "missing value if the guardian at this index is not expected to have its signature verified by" ,
605
605
"the Sig Verify native program in the instruction invoked prior)." ,
606
606
"" ,
607
607
"NOTE: In the legacy implementation, this argument being a fixed-sized array of 19 only" ,
@@ -2207,7 +2207,7 @@ export const IDL: WormholeCoreBridgeSolana = {
2207
2207
name : "signerIndices" ,
2208
2208
docs : [
2209
2209
"Indices of verified guardian signatures, where -1 indicates a missing value. There is a" ,
2210
- "missing value if the guardian at this index is not expected to have its signature verfied by" ,
2210
+ "missing value if the guardian at this index is not expected to have its signature verified by" ,
2211
2211
"the Sig Verify native program in the instruction invoked prior)." ,
2212
2212
"" ,
2213
2213
"NOTE: In the legacy implementation, this argument being a fixed-sized array of 19 only" ,
You can’t perform that action at this time.
0 commit comments