diff --git a/documentation/sdk/00_sdk_overview.md b/archive/sdk/00_sdk_overview.md similarity index 100% rename from documentation/sdk/00_sdk_overview.md rename to archive/sdk/00_sdk_overview.md diff --git a/documentation/sdk/create-leo-app/00_app_installation.md b/archive/sdk/create-leo-app/00_app_installation.md similarity index 100% rename from documentation/sdk/create-leo-app/00_app_installation.md rename to archive/sdk/create-leo-app/00_app_installation.md diff --git a/documentation/sdk/create-leo-app/01_create_leo_app.md b/archive/sdk/create-leo-app/01_create_leo_app.md similarity index 100% rename from documentation/sdk/create-leo-app/01_create_leo_app.md rename to archive/sdk/create-leo-app/01_create_leo_app.md diff --git a/documentation/sdk/create-leo-app/images/decrypt-record.png b/archive/sdk/create-leo-app/images/decrypt-record.png similarity index 100% rename from documentation/sdk/create-leo-app/images/decrypt-record.png rename to archive/sdk/create-leo-app/images/decrypt-record.png diff --git a/documentation/sdk/create-leo-app/images/deployment-console.png b/archive/sdk/create-leo-app/images/deployment-console.png similarity index 100% rename from documentation/sdk/create-leo-app/images/deployment-console.png rename to archive/sdk/create-leo-app/images/deployment-console.png diff --git a/documentation/sdk/create-leo-app/images/deployment-success.png b/archive/sdk/create-leo-app/images/deployment-success.png similarity index 100% rename from documentation/sdk/create-leo-app/images/deployment-success.png rename to archive/sdk/create-leo-app/images/deployment-success.png diff --git a/documentation/sdk/create-leo-app/images/execution-console.png b/archive/sdk/create-leo-app/images/execution-console.png similarity index 100% rename from documentation/sdk/create-leo-app/images/execution-console.png rename to archive/sdk/create-leo-app/images/execution-console.png diff --git a/documentation/sdk/create-leo-app/images/execution-success.png b/archive/sdk/create-leo-app/images/execution-success.png similarity index 100% rename from documentation/sdk/create-leo-app/images/execution-success.png rename to archive/sdk/create-leo-app/images/execution-success.png diff --git a/documentation/sdk/create-leo-app/images/get-transaction.png b/archive/sdk/create-leo-app/images/get-transaction.png similarity index 100% rename from documentation/sdk/create-leo-app/images/get-transaction.png rename to archive/sdk/create-leo-app/images/get-transaction.png diff --git a/documentation/sdk/python/00_aleo_sdk.md b/archive/sdk/python/00_aleo_sdk.md similarity index 100% rename from documentation/sdk/python/00_aleo_sdk.md rename to archive/sdk/python/00_aleo_sdk.md diff --git a/documentation/sdk/python/01_zkml_transpiler.md b/archive/sdk/python/01_zkml_transpiler.md similarity index 100% rename from documentation/sdk/python/01_zkml_transpiler.md rename to archive/sdk/python/01_zkml_transpiler.md diff --git a/documentation/sdk/typescript/00_sdk_overview.md b/archive/sdk/typescript/00_sdk_overview.md similarity index 100% rename from documentation/sdk/typescript/00_sdk_overview.md rename to archive/sdk/typescript/00_sdk_overview.md diff --git a/documentation/sdk/typescript/01_account.md b/archive/sdk/typescript/01_account.md similarity index 100% rename from documentation/sdk/typescript/01_account.md rename to archive/sdk/typescript/01_account.md diff --git a/documentation/sdk/typescript/02_aleo_network_client.md b/archive/sdk/typescript/02_aleo_network_client.md similarity index 100% rename from documentation/sdk/typescript/02_aleo_network_client.md rename to archive/sdk/typescript/02_aleo_network_client.md diff --git a/documentation/sdk/typescript/03_development_client.md b/archive/sdk/typescript/03_development_client.md similarity index 100% rename from documentation/sdk/typescript/03_development_client.md rename to archive/sdk/typescript/03_development_client.md diff --git a/documentation/sdk/wasm/00_wasm_installation.md b/archive/sdk/wasm/00_wasm_installation.md similarity index 100% rename from documentation/sdk/wasm/00_wasm_installation.md rename to archive/sdk/wasm/00_wasm_installation.md diff --git a/documentation/sdk/wasm/01_nodejs.md b/archive/sdk/wasm/01_nodejs.md similarity index 100% rename from documentation/sdk/wasm/01_nodejs.md rename to archive/sdk/wasm/01_nodejs.md diff --git a/documentation/sdk/wasm/02_browser_multi_thread.md b/archive/sdk/wasm/02_browser_multi_thread.md similarity index 100% rename from documentation/sdk/wasm/02_browser_multi_thread.md rename to archive/sdk/wasm/02_browser_multi_thread.md diff --git a/documentation/leo_by_example/01_auction.md b/documentation/leo_by_example/01_auction.md index bc50ddd74..90294dcf4 100644 --- a/documentation/leo_by_example/01_auction.md +++ b/documentation/leo_by_example/01_auction.md @@ -36,7 +36,7 @@ The auction is conducted in a series of stages. ## How to Run -Follow the [Leo Installation Instructions](https://docs.leo-lang.org/leo/installation). +Follow the [Leo Installation Instructions](https://docs.leo-lang.org/getting_started/installation). This auction program can be run using the following bash script. Locally, it will execute Leo program functions to conduct, bid, and close a three party auction. diff --git a/documentation/leo_by_example/02_basic_bank.md b/documentation/leo_by_example/02_basic_bank.md index a19da7dd0..8fb9043e5 100644 --- a/documentation/leo_by_example/02_basic_bank.md +++ b/documentation/leo_by_example/02_basic_bank.md @@ -39,7 +39,7 @@ There are, of course, ways to write a version of this application without these ## How to Run -Follow the [Leo Installation Instructions](https://docs.leo-lang.org/leo/installation). +Follow the [Leo Installation Instructions](https://docs.leo-lang.org/getting_started/installation). This basic bank program can be run using the following bash script. Locally, it will execute Leo program functions to issue, deposit, and withdraw tokens between a bank and a user. diff --git a/documentation/leo_by_example/03_vote.md b/documentation/leo_by_example/03_vote.md index ef8242adb..a7ced3396 100644 --- a/documentation/leo_by_example/03_vote.md +++ b/documentation/leo_by_example/03_vote.md @@ -20,7 +20,7 @@ Proposal information and voting results are revealed using the public `mapping` ## How to Run -Follow the [Leo Installation Instructions](https://docs.leo-lang.org/leo/installation). +Follow the [Leo Installation Instructions](https://docs.leo-lang.org/getting_started/installation). This vote program can be run using the following bash script. Locally, it will execute Leo program functions to create proposals, create tickets, and make votes. diff --git a/documentation/leo_by_example/04_token.md b/documentation/leo_by_example/04_token.md index ecf2b8e21..b89b06a5c 100644 --- a/documentation/leo_by_example/04_token.md +++ b/documentation/leo_by_example/04_token.md @@ -11,7 +11,7 @@ A transparent & shielded custom token in Leo. ## How to Run -Follow the [Leo Installation Instructions](https://docs.leo-lang.org/leo/installation). +Follow the [Leo Installation Instructions](https://docs.leo-lang.org/getting_started/installation). This token program can be run using the following bash script. Locally, it will execute Leo program functions to mint and transfer tokens publicly and privately. diff --git a/documentation/leo_by_example/05_tictactoe.md b/documentation/leo_by_example/05_tictactoe.md index 3817f0265..cf3deb479 100644 --- a/documentation/leo_by_example/05_tictactoe.md +++ b/documentation/leo_by_example/05_tictactoe.md @@ -30,7 +30,7 @@ The game board is represented by a struct called `Board`, which contains three ` ## How to Run -Follow the [Leo Installation Instructions](https://docs.leo-lang.org/leo/installation). +Follow the [Leo Installation Instructions](https://docs.leo-lang.org/getting_started/installation). This tictactoe program can be run using the following bash script. Locally, it will execute Leo program functions to create and play a game of Tic Tac Toe. diff --git a/documentation/leo_by_example/06_battleship.md b/documentation/leo_by_example/06_battleship.md index 6e79a2538..a04c6e280 100644 --- a/documentation/leo_by_example/06_battleship.md +++ b/documentation/leo_by_example/06_battleship.md @@ -47,7 +47,7 @@ This application was translated into Leo from the [zk-battleship](https://github ## How to Run -Follow the [Leo Installation Instructions](https://docs.leo-lang.org/leo/installation). +Follow the [Leo Installation Instructions](https://docs.leo-lang.org/getting_started/installation). This battleship program can be run using the following bash script. Locally, it will execute Leo program functions to create the board, place ships, and play a game of battleship.