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";
44export const getPriceUnsafe = readApi < "id" > ( {
55 name : "getPriceUnsafe" ,
66 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_" ,
88 description : `
99 This method returns the price object containing **last updated** price for the requested price feed ID.
1010
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ pub struct Options {
1111 #[ arg( env = "PYTHNET_WS_ADDR" ) ]
1212 pub ws_addr : String ,
1313
14- /// Addres of a PythNet compatible HTP RPC endpoint.
14+ /// Address of a PythNet compatible HTP RPC endpoint.
1515 #[ arg( long = "pythnet-http-addr" ) ]
1616 #[ arg( env = "PYTHNET_HTTP_ADDR" ) ]
1717 pub http_addr : String ,
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ impl std::fmt::Display for GuardianSet {
3030 fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
3131 write ! ( f, "[" ) ?;
3232 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.
3434 if i != 0 {
3535 write ! ( f, ", " ) ?;
3636 }
Original file line number Diff line number Diff line change @@ -601,7 +601,7 @@ export type WormholeCoreBridgeSolana = {
601601 name : "signerIndices" ;
602602 docs : [
603603 "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" ,
605605 "the Sig Verify native program in the instruction invoked prior)." ,
606606 "" ,
607607 "NOTE: In the legacy implementation, this argument being a fixed-sized array of 19 only" ,
@@ -2207,7 +2207,7 @@ export const IDL: WormholeCoreBridgeSolana = {
22072207 name : "signerIndices" ,
22082208 docs : [
22092209 "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" ,
22112211 "the Sig Verify native program in the instruction invoked prior)." ,
22122212 "" ,
22132213 "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