Skip to content

Commit

Permalink
chore: fix typos according to editorial guidelines
Browse files Browse the repository at this point in the history
  • Loading branch information
notsimple committed Apr 11, 2024
1 parent 91fbe49 commit a09c16a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/get-started/mesh/transactions-basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ As of writing, there are 4 main types of transactions:
- [Send lovelace and assets](transactions-basic) (this)
- [Interacting with smart contracts](transactions-smart-contract)
- [Minting and burning assets](transactions-minting)
- [Interacting with stakepools](transactions-staking)
- [Interacting with stake pools](transactions-staking)

In this section, we will explore the following:

Expand Down
8 changes: 4 additions & 4 deletions docs/get-started/mesh/transactions-staking.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ description: APIs for staking ADA and managing stake pools.
image: /img/og/og-getstarted-mesh.png
---

In this section, we will learn to create to stake ADA in stakepools. If you are new to transactions, be sure to check out how to create transactions to [send lovelace and assets](transactions-basic).
In this section, we will learn to create to stake ADA in stake pools. If you are new to transactions, be sure to check out how to create transactions to [send lovelace and assets](transactions-basic).

In this section, we will explore the following:

- [Register Stake Address](#register-stake-address)
- [Delegate ADA to Stakepool](#delegate-ada-to-stakepool)
- [Delegate ADA to Stake Pool](#delegate-ada-to-stake-pool)

## Register Stake Address

New address must "register" before they can delegate to stakepools.
New address must "register" before they can delegate to stake pools.

```javascript
import { Transaction } from "@meshsdk/core";
Expand All @@ -33,7 +33,7 @@ const signedTx = await wallet.signTx(unsignedTx);
const txHash = await wallet.submitTx(signedTx);
```

## Delegate ADA to Stakepool
## Delegate ADA to Stake pool

Delegation is the process by which ADA holders delegate the stake associated with their ADA to a stake pool. Doing so, this allows ADA holders to participate in the network and be rewarded in proportion to the amount of stake delegated.

Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/technical-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ What is multisig? And how does it work on Cardano?
<iframe width="100%" height="325" src="https://www.youtube.com/embed/k_ph_V7xkio" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture fullscreen"></iframe>

## JorManager 6
Learn about what's new in the Cardano stakepool management software JorManager 6.
Learn about what's new in the Cardano stake pool management software JorManager 6.
<iframe width="100%" height="325" src="https://www.youtube.com/embed/7dNCcGWnkwY" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture fullscreen"></iframe>

## How to create a FT on Cardano that doesn't completely suck!
Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/testnets-and-devnets.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ You can download the current Cardano blockchain network configuration files for
#### Guild Network

- Guild Network is a community maintained public testnet network that is primarily useful for 'quick' testing for development/integrations, as it runs short 1-hour epochs.
- The primary use-case for this network is often short-term scope-specific testing, it has gone through previous forks on cardano chain with minimal data to ensure we do have different data objects across older forks. The faucet distribution for this network is manual and available with members across timezones based on request in [support](https://t.me/guild_operators_official) channel.
- The primary use case for this network is often short-term scope-specific testing, it has gone through previous forks on cardano chain with minimal data to ensure we do have different data objects across older forks. The faucet distribution for this network is manual and available with members across timezones based on request in [support](https://t.me/guild_operators_official) channel.
- The timeline for forks lead Mainnet but are flexible depending on community needs that could be discussed on [github](https://github.com/cardano-community/guild-operators/) (unless specific conditions require testing beforehand), and is useful for testing data against longer history (over 10K epochs).

You can download the current Cardano blockchain network configuration files for Guild Network [here](https://github.com/cardano-community/guild-operators/tree/alpha/files)
Expand Down
4 changes: 2 additions & 2 deletions docs/integrate-cardano/creating-wallet-faucet.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Always download the wallets from trusted sources. There are many fake wallets, m

### Creating a wallet

As mentioned before, in this guide we will only be focusing on the `cardano-cli` and `cardano-wallet` since they provide some level of programmability which is important when we are talking about **Cardano** integrations for different kinds of use-cases.
As mentioned before, in this guide we will only be focusing on the `cardano-cli` and `cardano-wallet` since they provide some level of programmability which is important when we are talking about **Cardano** integrations for different kinds of use cases.


#### Creating a wallet with `cardano-cli`
Expand Down Expand Up @@ -160,7 +160,7 @@ addr_test1vz95zjvtwm9u9mc83uzsfj55tzwf99fgeyt3gmwm9gdw2xgwrvsa5
```

:::note
You can derive more than one **wallet address** from a **Public Verification Key** for more advanced use-cases using `cardano-addresses` component. Which we discuss in more details here: ***@TODO: link to article***
You can derive more than one **wallet address** from a **Public Verification Key** for more advanced use cases using `cardano-addresses` component. Which we discuss in more details here: ***@TODO: link to article***

- Mainnet addresses are **prefixed** with the string value `addr1`.
- testnet addresses are **prefixed** with the string value `addr_test1`.
Expand Down

0 comments on commit a09c16a

Please sign in to comment.