Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typos in documentation files #591

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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/indexer-admin/src/utils/notification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-License-Identifier: Apache-2.0

export enum AccountNotification {
MetadataUpated = 'MetadataUpated',
MetadataUpdated = 'MetadataUpdated',
ControllerUpdated = 'ControllerUpdated',
}

Expand Down
2 changes: 1 addition & 1 deletion apps/indexer-admin/src/utils/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export const START_PROJECT = gql`
$memory: Int!
$id: String!
$projectType: Float!
$serviceEndpoints: [SeviceEndpointInput!]!
$serviceEndpoints: [ServiceEndpointInput!]!
$rateLimit: Float!
$hostType: String! = "system-managed"
) {
Expand Down
6 changes: 3 additions & 3 deletions apps/indexer-proxy/proxy/src/auth.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This file is part of SubQuery.

// Copyright (C) 2020-2024 SubQuery Pte Ltd authors & contributors
// Copyright (C) 2020-2025 SubQuery Pte Ltd authors & contributors
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0

// This program is free software: you can redistribute it and/or modify
Expand Down Expand Up @@ -51,7 +51,7 @@ pub struct Payload {
pub consumer: Option<String>,
/// service agreement contract address
pub agreement: Option<String>,
/// deployment id for the proejct
/// deployment id for the project
pub deployment_id: String,
/// signature of user
pub signature: String,
Expand All @@ -67,7 +67,7 @@ struct Claims {
pub indexer: String,
/// agreement
pub agreement: Option<String>,
/// deployment id for the proejct
/// deployment id for the project
pub deployment_id: String,
/// issue timestamp
pub iat: i64,
Expand Down
4 changes: 2 additions & 2 deletions apps/indexer-proxy/proxy/src/payg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ pub async fn post_query_signle_state(
.map_err(|err| error!("Redis 1: {}", err));
}

// async to coordiantor
// async to coordinator
let channel_id = state.channel_id;
let mdata = format!(
r#"mutation {{
Expand Down Expand Up @@ -889,7 +889,7 @@ pub async fn pay_channel(mut state: QueryState) -> Result<String> {
}
}

// async to coordiantor
// async to coordinator
let mdata = format!(
r#"mutation {{
channelUpdate(
Expand Down