Skip to content
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
4 changes: 2 additions & 2 deletions docs/algokit.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ See also the [AlgoKit CLI Reference](./cli/index.md), which details every comman

The following tutorials guide you through various scenarios:

- [AlgoKit quick start](./tutorials/intro.md)
- [Creating AlgoKit templates](./tutorials/algokit-template.md)
- [AlgoKit quick start](https://dev.algorand.co/algokit/algokit-intro)
- [Creating AlgoKit templates](https://dev.algorand.co/algokit/custom-algokit-templates)

## Guiding Principles

Expand Down
2 changes: 1 addition & 1 deletion docs/features/dispenser.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Options

- `--txID`, -t: Transaction ID of your refund operation. This option is required. The receiver address of the transaction must be the same as the dispenser wallet address that you can obtain by observing a `sender` field of [`fund`](#fund) transaction.

> Please note, performing a refund operation will not immedately change your daily fund limit. Your daily fund limit is reset daily at midnigth UTC. If you have reached your daily fund limit, you will not be able to perform a refund operation until your daily fund limit is reset.
> Please note, performing a refund operation will not immediately change your daily fund limit. Your daily fund limit is reset daily at midnigth UTC. If you have reached your daily fund limit, you will not be able to perform a refund operation until your daily fund limit is reset.

## Limit

Expand Down
2 changes: 1 addition & 1 deletion docs/features/localnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ AlgoKit LocalNet uses Docker images that are optimised for a great dev experienc

The philosophy we take with AlgoKit LocalNet is that you should treat it as an ephemeral network. This means assume it could be reset at any time - don't store data on there that you can't recover / recreate. We have optimised the AlgoKit LocalNet experience to minimise situations where the network will get reset to improve the experience, but it can and will still happen in a number of situations.

> For details on executing `algokit localnet` without `docker` or `podman` refer to the [codespaces](#codespaces) section.
> For details on executing `algokit localnet` without `docker` or `podman` refer to the [codespaces](#github-codespaces-based-localnet) section.

## Prerequisites

Expand Down
2 changes: 1 addition & 1 deletion docs/features/project/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Here's an example of what the `.algokit.toml` file might look like. When deployi

```toml
[algokit]
min_version = "v{lastest_version}"
min_version = "v{latest_version}"

[project]

Expand Down
4 changes: 2 additions & 2 deletions docs/features/tasks/sign.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Encoding simple txn object in python:

```py
# Encoding single transaction as a base64 encoded string
algosdk.encoding.msgpack_encode({"txn": {YOUR_TXN_OBJECT}.dictify()}) # Resulting string can be passed directy to algokit task sign with --transaction flag
algosdk.encoding.msgpack_encode({"txn": {YOUR_TXN_OBJECT}.dictify()}) # Resulting string can be passed directly to algokit task sign with --transaction flag

# Encoding multiple transactions as a message pack encoded binary file
algosdk.transaction.write_to_file([{YOUR_TXN_OBJECT}], "some_file.txn") # Resulting file path can be passed directly to algokit sign with --file flag
Expand All @@ -86,7 +86,7 @@ Encoding simple txn object in javascript:
```ts
Buffer.from(algosdk.encodeObj({ txn: txn.get_obj_for_encoding() })).toString(
"base64"
); // Resulting string can be passed directy to algokit task sign with --transaction flag
); // Resulting string can be passed directly to algokit task sign with --transaction flag
```

## Further Reading
Expand Down
Loading