diff --git a/crates/sui-rpc-api/src/rest/transactions/resolve/mod.rs b/crates/sui-rpc-api/src/rest/transactions/resolve/mod.rs index db2701b79aeed..999fea08724ae 100644 --- a/crates/sui-rpc-api/src/rest/transactions/resolve/mod.rs +++ b/crates/sui-rpc-api/src/rest/transactions/resolve/mod.rs @@ -399,7 +399,7 @@ fn resolve_arg( let value = Base64::decode(&v).map_err(|e| { RpcServiceError::new( axum::http::StatusCode::BAD_REQUEST, - format!("argument is an invalid pure arguement: {e}"), + format!("argument is an invalid pure argument: {e}"), ) })?; CallArg::Pure(value) @@ -409,7 +409,7 @@ fn resolve_arg( let value = serde_json::from_value(serde_json::Value::from(array)).map_err(|e| { RpcServiceError::new( axum::http::StatusCode::BAD_REQUEST, - format!("argument is an invalid pure arguement: {e}"), + format!("argument is an invalid pure argument: {e}"), ) })?; CallArg::Pure(value) @@ -544,7 +544,7 @@ fn resolve_shared_input( resolve_shared_input_with_object(called_packages, commands, arg_idx, object) } -// Checks if the provided input argument is used as a recieving object +// Checks if the provided input argument is used as a receiving object fn is_input_argument_receiving( called_packages: &HashMap, commands: &[Command], diff --git a/crates/sui-types/src/messages_grpc.rs b/crates/sui-types/src/messages_grpc.rs index 1d2ce63d32e51..16347a832d0a8 100644 --- a/crates/sui-types/src/messages_grpc.rs +++ b/crates/sui-types/src/messages_grpc.rs @@ -200,7 +200,7 @@ pub struct HandleCertificateResponseV3 { /// versions of shared objects. // // TODO: In the future we may want to include shared objects or child objects which were read - // but not modified during exectuion. + // but not modified during execution. pub input_objects: Option>, /// If requested, will included all changed objects, including mutated, created and unwrapped @@ -247,7 +247,7 @@ pub struct HandleTransactionResponseV2 { /// versions of shared objects. // // TODO: In the future we may want to include shared objects or child objects which were read - // but not modified during exectuion. + // but not modified during execution. pub input_objects: Option>, /// If requested, will included all changed objects, including mutated, created and unwrapped diff --git a/crates/sui-types/src/storage/read_store.rs b/crates/sui-types/src/storage/read_store.rs index 7406d2e45bab1..e535a71a3aabe 100644 --- a/crates/sui-types/src/storage/read_store.rs +++ b/crates/sui-types/src/storage/read_store.rs @@ -662,7 +662,7 @@ pub struct DynamicFieldIndexInfo { pub name_value: Vec, // TODO do we want to also store the type of the value? We can get this for free for // DynamicFields, but for DynamicObjects it would require a lookup in the DB on init, or - // scanning the transaction's output objects for the coorisponding Object to retreive its type + // scanning the transaction's output objects for the coorisponding Object to retrieve its type // information. // // pub value_type: TypeTag, diff --git a/crates/suiop-cli/src/cli/lib/oauth/mod.rs b/crates/suiop-cli/src/cli/lib/oauth/mod.rs index d882d0029efd8..dcc7afb6d7c4d 100644 --- a/crates/suiop-cli/src/cli/lib/oauth/mod.rs +++ b/crates/suiop-cli/src/cli/lib/oauth/mod.rs @@ -20,7 +20,7 @@ use tokio::task; use tracing::{debug, info}; // Okta client created for Mysten Labs -// Contact #techops-suport for replacement +// Contact #techops-support for replacement const CLIENT_ID: &str = "0oacw4bwt1BOV410t697"; #[derive(Deserialize)] diff --git a/crates/suiop-cli/src/cli/pulumi/setup.rs b/crates/suiop-cli/src/cli/pulumi/setup.rs index fe4922a29ce2c..701450b7bea92 100644 --- a/crates/suiop-cli/src/cli/pulumi/setup.rs +++ b/crates/suiop-cli/src/cli/pulumi/setup.rs @@ -34,7 +34,7 @@ fn ensure_pulumi_authed() -> Result<()> { vec!["bash", "-c", "pulumi login"], Some(CommandOptions::new(true, false)), )?; - info!("logged in sucessfully") + info!("logged in successfully") } else { debug!("authed"); }