Skip to content
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
4 changes: 2 additions & 2 deletions crates/sui-rpc-api/src/subscription.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ impl SubscriptionService {
self.subscribers.retain(|subscriber| {
match subscriber.try_send(Arc::clone(&checkpoint)) {
Ok(()) => {
trace!("succesfully enqueued checkpont for subscriber");
trace!("successfully enqueued checkpont for subscriber");
true // Retain this subscriber
}
Err(e) => {
Expand All @@ -149,7 +149,7 @@ impl SubscriptionService {
let (sender, reciever) = mpsc::channel(SUBSCRIPTION_CHANNEL_SIZE);
match request.sender.send(reciever) {
Ok(()) => {
trace!("succesfully registered new subscriber");
trace!("successfully registered new subscriber");
self.metrics.inflight_subscribers.inc();
self.subscribers.push(sender);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function Overview({ output }: { output: DryRunTransactionBlockResponse })
network,
status:
output.effects.status?.status === 'success'
? '✅ Transaction dry run executed succesfully!'
? '✅ Transaction dry run executed successfully!'
: output.effects.status?.status === 'failure'
? '❌ Transaction failed to execute!'
: null,
Expand Down
2 changes: 1 addition & 1 deletion examples/move/nft-rental/sources/nft_rental.move
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public fun setup_renting<T>(publisher: &Publisher, amount_bp: u64, ctx: &mut TxC

/// Enables someone to list an asset within the Rentables extension's Bag,
/// creating a Bag entry with the asset's ID as the key and a Rentable wrapper object as the value.
/// Requires the existance of a ProtectedTP which can only be created by the creator of type T.
/// Requires the existence of a ProtectedTP which can only be created by the creator of type T.
/// Assumes item is already placed (& optionally locked) in a Kiosk.
public fun list<T: key + store>(
kiosk: &mut Kiosk,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use sui::url::{Self, Url};

/// An example soulbound NFT that can be minted by anybody
///
/// Removing the `store` ablity prevents this NFT
/// Removing the `store` ability prevents this NFT
/// from being transferred unless this module provides
/// a transfer function.
public struct TestnetSoulboundNFT has key {
Expand Down
2 changes: 1 addition & 1 deletion examples/trading/api/indexer/escrow-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type EscrowCancelled = {
/**
* Handles all events emitted by the `escrow` module.
* Data is modelled in a way that allows writing to the db in any order (DESC or ASC) without
* resulting in data incosistencies.
* resulting in data inconsistencies.
* We're constructing the updates to support multiple events involving a single record
* as part of the same batch of events (but using a single write/record to the DB).
* */
Expand Down
2 changes: 1 addition & 1 deletion examples/trading/api/indexer/locked-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type LockDestroyed = {
/**
* Handles all events emitted by the `lock` module.
* Data is modelled in a way that allows writing to the db in any order (DESC or ASC) without
* resulting in data incosistencies.
* resulting in data inconsistencies.
* We're constructing the updates to support multiple events involving a single record
* as part of the same batch of events (but using a single write/record to the DB).
* */
Expand Down