Skip to content

Commit

Permalink
fix: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nickfrosty committed Jul 27, 2023
1 parent ec73ee7 commit 4d113fa
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions developers/guides/advanced/introduction-to-durable-nonces.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,10 @@ The solution lies with Durable Nonces⚡️

### Durable Nonces

Durable Transaction Nonces, which are 32-byte in length (usually represented as base58 encoded strings), are used in place
of recent blockhashes to make every transaction unique (to avoid
double-spending) while removing the mortality on the unexecuted transaction.
Durable Transaction Nonces, which are 32-byte in length (usually represented as
base58 encoded strings), are used in place of recent blockhashes to make every
transaction unique (to avoid double-spending) while removing the mortality on
the unexecuted transaction.

> How do they make transactions unique to avoid double spending?
>
Expand All @@ -170,8 +171,8 @@ with Solana transactions.
### Nonce Account

The Nonce Account is the account that stores the value of the nonce. This
account is owned by the `SystemProgram` and is rent-excempt; thus needs to maintain
the minimum balance for rent exemption (around 0.0015 SOL).
account is owned by the `SystemProgram` and is rent-exempt; thus needs to
maintain the minimum balance for rent exemption (around 0.0015 SOL).

### Nonce Authority

Expand Down Expand Up @@ -249,8 +250,8 @@ Output
AkrQn5QWLACSP5EMT2R1ZHyKaGWVFrDHJ6NL89HKtwjQ
```

This is the base58 encoded hash that will be used in place of recent
blockhashes while signing a transaction.
This is the base58 encoded hash that will be used in place of recent blockhashes
while signing a transaction.

### Displace Nonce Account

Expand Down

0 comments on commit 4d113fa

Please sign in to comment.