You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASE.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ The aptos node release tags are created for validator/fullnode deployment of the
33
33
The aptos framework release tags are created to facilitate the on-chain framework upgrade of the given release branch. The minor number *Z* will increment when a new hot-fix release or a new framework update is required on this release branch.
34
34
35
35
### aptos-cli-v*X.Y.Z* release tag
36
-
The aptos cli release tags are created to track the CLI versions for community to use when developing on the Aptos network. It's always recommended to upgrade your CLI when a new version is released, for the best user experience. Learn how to update to the [latest CLI version](https://aptos.dev/tools/install-cli/install-from-brew/#upgrading-the-cli).
36
+
The aptos cli release tags are created to track the CLI versions for community to use when developing on the Aptos network. It's always recommended to upgrade your CLI when a new version is released, for the best user experience. Learn how to update to the [latest CLI version](https://aptos.dev/tools/aptos-cli/install-cli/install-from-brew/#upgrading-the-cli).
37
37
38
38
## Aptos Release Lifecycle
39
39
(The time length here is a rough estimate, it varies depends on each release.)
Copy file name to clipboardExpand all lines: aptos-move/move-examples/move-tutorial/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ You should obtain a copy of the content of the directory in which this `README.m
35
35
step_1 step_2 step_2_sol step_3 ...
36
36
```
37
37
38
-
You also need a recent version of the [Aptos CLI](../../../developer-docs-site/docs/tools/install-cli/index.md). This tutorial is written using the following version:
38
+
You also need a recent version of the [Aptos CLI](../../../developer-docs-site/docs/tools/aptos-cli/install-cli/index.md). This tutorial is written using the following version:
39
39
40
40
```shell
41
41
> aptos --version
@@ -492,7 +492,7 @@ Read more about [phantom type](../../../developer-docs-site/docs/move/book/gener
492
492
493
493
## Step 7: Use the Move Prover
494
494
495
-
> NOTE: Before running the Move Prover, ensure that the [Move Prover](../../../developer-docs-site/docs/tools/install-cli/install-move-prover.md) and associated tools are installed.
495
+
> NOTE: Before running the Move Prover, ensure that the [Move Prover](../../../developer-docs-site/docs/tools/aptos-cli/install-cli/install-move-prover.md) and associated tools are installed.
496
496
497
497
Smart contracts deployed on the blockchain may manipulate high-value assets. As a technique that uses strict
498
498
mathematical methods to describe behavior and reason correctness of computer systems, formal verification
The `aptos` tool is a command line interface (CLI) for debugging, development, and node operation.
4
-
See [Aptos CLI Documentation](https://aptos.dev/cli-tools/aptos-cli-tool/install-aptos-cli) for how to install the `aptos` CLI tool and how to use it.
4
+
See [Aptos CLI Documentation](https://aptos.dev/cli-tools/aptos-cli/use-cli/install-aptos-cli) for how to install the `aptos` CLI tool and how to use it.
Copy file name to clipboardExpand all lines: developer-docs-site/docs/guides/building-from-source.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ import TabItem from '@theme/TabItem';
7
7
8
8
# Building Aptos From Source
9
9
10
-
[Binary releases are available](../tools/install-cli/index.md), but if you want to build from source or develop on the Aptos tools, this is how.
10
+
[Binary releases are available](../tools/aptos-cli/install-cli/index.md), but if you want to build from source or develop on the Aptos tools, this is how.
Copy file name to clipboardExpand all lines: developer-docs-site/docs/guides/nfts/mint-nft-cli.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ This tutorial assumes you have:
12
12
13
13
* a [GitHub account](https://docs.github.com/en/get-started/signing-up-for-github/signing-up-for-a-new-github-account)
14
14
* the [GitHub CLI](https://cli.github.com/)
15
-
* the [Aptos CLI](../../tools/install-cli/index.md) (or you can run from [aptos-core](https://github.com/aptos-labs/aptos-core) source via `cargo run`)
15
+
* the [Aptos CLI](../../tools/aptos-cli/install-cli/index.md) (or you can run from [aptos-core](https://github.com/aptos-labs/aptos-core) source via `cargo run`)
16
16
* the `aptos-core` repository checked out: `git clone https://github.com/aptos-labs/aptos-core.git`
17
17
18
18
Then:
@@ -44,7 +44,7 @@ In this section, we create a collection and token. This work maps to the demonst
44
44
45
45
### Create an account
46
46
47
-
1.[Install the Aptos CLI](../../tools/install-cli/index.md).
47
+
1.[Install the Aptos CLI](../../tools/aptos-cli/install-cli/index.md).
48
48
49
49
2. Create a default (typical) account on Aptos devnet to receive the NFT by running the following command and selecting `devnet`:
Copy file name to clipboardExpand all lines: developer-docs-site/docs/guides/system-integrators-guide.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ See [Aptos Blockchain Deployments](../nodes/deployments.md) for full details on
41
41
42
42
There are two options for running a local testnet:
43
43
* Directly [run a local testnet](../nodes/local-testnet/run-a-local-testnet.md) using either the [Aptos-core source code](../nodes/local-testnet/run-a-local-testnet.md#using-the-aptos-core-source-code) or a [Docker image](../nodes/local-testnet/run-a-local-testnet.md#using-docker). These paths are useful for testing changes to the Aptos-core codebase or framework, or for building services on top of the Aptos blockchain, respectively.
44
-
*[Install the Aptos CLI](../tools/install-cli/index.md) and 2) start a [local node with a faucet](../nodes/local-testnet/using-cli-to-run-a-local-testnet.md#starting-a-local-testnet-with-a-faucet). This path is useful for developing on the Aptos blockchain, debugging Move contracts, and testing node operations.
44
+
*[Install the Aptos CLI](../tools/aptos-cli/install-cli/index.md) and 2) start a [local node with a faucet](../nodes/local-testnet/using-cli-to-run-a-local-testnet.md#starting-a-local-testnet-with-a-faucet). This path is useful for developing on the Aptos blockchain, debugging Move contracts, and testing node operations.
45
45
46
46
Either of these methods will expose a [REST API service](../integration/aptos-apis.md) at `http://127.0.0.1:8080` and a Faucet API service at `http://127.0.0.1:8000` for option 1 run a local testnet or `http://127.0.0.1:8081` for option 2 install the Aptos CLI. The applications will output the location of the services.
47
47
@@ -84,7 +84,7 @@ Aptos currently provides three SDKs:
84
84
2.[Python](../sdks/python-sdk.md)
85
85
3.[Rust](../sdks/rust-sdk.md)
86
86
87
-
Almost all developers will benefit from exploring the CLI. [Using the CLI](../tools/aptos-cli-tool/use-aptos-cli.md) demonstrates how the CLI can be used to which includes creating accounts, transferring coins, and publishing modules.
87
+
Almost all developers will benefit from exploring the CLI. [Using the CLI](../tools/aptos-cli/use-cli/use-aptos-cli.md) demonstrates how the CLI can be used to which includes creating accounts, transferring coins, and publishing modules.
88
88
89
89
## Accounts on Aptos
90
90
@@ -98,7 +98,7 @@ At creation, an [Aptos account](https://github.com/aptos-labs/aptos-core/blob/88
98
98
* An [event handle](../concepts/events.md) for all new types of coins added to the account.
99
99
* An event handle for all key rotations for the account.
100
100
101
-
Read more about [Accounts](../concepts/accounts.md) and [set one up](../tools/aptos-cli-tool/use-aptos-cli#initialize-local-configuration-and-create-an-account).
101
+
Read more about [Accounts](../concepts/accounts.md) and [set one up](../tools/aptos-cli/use-cli/use-aptos-cli#initialize-local-configuration-and-create-an-account).
102
102
103
103
## Transactions
104
104
@@ -502,7 +502,7 @@ To learn more about coin creation, make ["Your First Coin"](../tutorials/first-c
502
502
503
503
## Integrating with the faucet
504
504
505
-
This tutorial is for SDK and wallet developers who want to integrate with the [Aptos Faucet](https://github.com/aptos-labs/aptos-core/tree/main/crates/aptos-faucet). If you are a dapp developer, you should access the faucet through an existing [SDK](../tutorials/first-transaction.md) or [CLI](../tools/aptos-cli-tool/use-aptos-cli#initialize-local-configuration-and-create-an-account) instead.
505
+
This tutorial is for SDK and wallet developers who want to integrate with the [Aptos Faucet](https://github.com/aptos-labs/aptos-core/tree/main/crates/aptos-faucet). If you are a dapp developer, you should access the faucet through an existing [SDK](../tutorials/first-transaction.md) or [CLI](../tools/aptos-cli/use-cli/use-aptos-cli#initialize-local-configuration-and-create-an-account) instead.
506
506
507
507
### Differences between devnet and testnet
508
508
What are the differences between devnet and testnet? Effectively none. In the past, the testnet faucet had a Captcha in front of it, making it unqueryable by normal means. This is no longer true.
0 commit comments