Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.
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
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ aptos config rename-profile \
### Rotate back to Ledger

Once you've signed the large package publication transaction with the hot key,
you can then rotate the authentication key back to to the corresponding to the
you can then rotate the authentication key back to the corresponding to the
private key on the Ledger at index 1000:

```sh filename="Terminal"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Ed25519Accounts are created to sign transactions and interact with the blockchai

### Using a Private Key

To generate an account from a private key, you will need to create the `Ed25519PrivateKey` object and pass into into the
To generate an account from a private key, you will need to create the `Ed25519PrivateKey` object and pass into the
`Ed25519Account` constructor. The private key can be given a `string` or `byte[]` representation.

```csharp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ Currently these are only applicable to numeric values.
| `*=` | Performs multiplication and updates the left-hand value |
| `%=` | Performs modular division and updates the left-hand value |
| `/=` | Performs truncating division and updates the left-hand value |
| `&=` | Performs bitwise and and updates the left-hand value |
| `&=` | Performs bitwise and updates the left-hand value |
| `\|=` | Performs bitwise or and updates the left-hand value |
| `^=` | Performs bitwise xor and updates the left-hand value |
| `<<=` | Performs shift left and updates the left-hand value |
Expand Down
Loading