Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/api-reference/src/apis/evm/get-price-unsafe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { ParameterType } from "../../components/EvmApi";
export const getPriceUnsafe = readApi<"id">({
name: "getPriceUnsafe",
summary:
"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_",
"Get the **last updated** price object for the requested price feed ID. _Caution: This function may return a price from arbitrarily in the past_",
description: `
This method returns the price object containing **last updated** price for the requested price feed ID.

Expand Down
2 changes: 1 addition & 1 deletion apps/hermes/server/src/config/pythnet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub struct Options {
#[arg(env = "PYTHNET_WS_ADDR")]
pub ws_addr: String,

/// Addres of a PythNet compatible HTP RPC endpoint.
/// Address of a PythNet compatible HTP RPC endpoint.
#[arg(long = "pythnet-http-addr")]
#[arg(env = "PYTHNET_HTTP_ADDR")]
pub http_addr: String,
Expand Down
2 changes: 1 addition & 1 deletion apps/hermes/server/src/network/wormhole.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ impl std::fmt::Display for GuardianSet {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "[")?;
for (i, key) in self.keys.iter().enumerate() {
// Comma seperated printing of the keys using hex encoding.
// Comma separated printing of the keys using hex encoding.
if i != 0 {
write!(f, ", ")?;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ export type WormholeCoreBridgeSolana = {
name: "signerIndices";
docs: [
"Indices of verified guardian signatures, where -1 indicates a missing value. There is a",
"missing value if the guardian at this index is not expected to have its signature verfied by",
"missing value if the guardian at this index is not expected to have its signature verified by",
"the Sig Verify native program in the instruction invoked prior).",
"",
"NOTE: In the legacy implementation, this argument being a fixed-sized array of 19 only",
Expand Down Expand Up @@ -2207,7 +2207,7 @@ export const IDL: WormholeCoreBridgeSolana = {
name: "signerIndices",
docs: [
"Indices of verified guardian signatures, where -1 indicates a missing value. There is a",
"missing value if the guardian at this index is not expected to have its signature verfied by",
"missing value if the guardian at this index is not expected to have its signature verified by",
"the Sig Verify native program in the instruction invoked prior).",
"",
"NOTE: In the legacy implementation, this argument being a fixed-sized array of 19 only",
Expand Down
Loading