From f8a66be8c123c890a4a4df3c05e608c86bd4472e Mon Sep 17 00:00:00 2001 From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> Date: Fri, 6 Dec 2024 19:18:31 +0300 Subject: [PATCH 1/8] fix broken link README.md Signed-off-by: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> --- examples/crowd-funding/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/crowd-funding/README.md b/examples/crowd-funding/README.md index 62e4e4ced6d..eab80cfccaf 100644 --- a/examples/crowd-funding/README.md +++ b/examples/crowd-funding/README.md @@ -35,7 +35,7 @@ Optionally, contributors may also be able to create a block to accept a new epoc ## Setting Up The WebAssembly binaries for the bytecode can be built and published using [steps from the -book](https://linera-io.github.io/linera-documentation/getting_started/first_app.html), +book](https://linera.dev/developers/getting_started.html), summarized below. Set up the path and the helper function. From 038bc06fe8e979f50066dc6e0826b562ce0df746 Mon Sep 17 00:00:00 2001 From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> Date: Fri, 6 Dec 2024 19:26:47 +0300 Subject: [PATCH 2/8] fix broken link README.md Signed-off-by: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> --- examples/fungible/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/fungible/README.md b/examples/fungible/README.md index b2af9b49827..e869516040c 100644 --- a/examples/fungible/README.md +++ b/examples/fungible/README.md @@ -30,7 +30,7 @@ Tokens can be transferred from an account to different destinations, such as: ## Setting Up The WebAssembly binaries for the bytecode can be built and published using [steps from the -book](https://linera-io.github.io/linera-documentation/getting_started/first_app.html), +book](https://linera.dev/developers/getting_started/installation.html), summarized below. Before getting started, make sure that the binary tools `linera*` corresponding to From cca788f41206d2545109e99a42f32a9ab563a28a Mon Sep 17 00:00:00 2001 From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> Date: Fri, 6 Dec 2024 19:31:22 +0300 Subject: [PATCH 3/8] typo README.md Signed-off-by: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> --- examples/hex-game/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hex-game/README.md b/examples/hex-game/README.md index c50f311a0ee..44c21d83753 100644 --- a/examples/hex-game/README.md +++ b/examples/hex-game/README.md @@ -138,7 +138,7 @@ Now the first player can make a move by navigating to the URL you get by running mutation { makeMove(x: 4, y: 4) } ``` -And the second player player at the URL you get by running `echo "http://localhost:8080/chains/$HEX_CHAIN/applications/$APP_ID"`: +And the second player at the URL you get by running `echo "http://localhost:8080/chains/$HEX_CHAIN/applications/$APP_ID"`: ```gql,uri=http://localhost:8081/chains/$HEX_CHAIN/applications/$APP_ID mutation { makeMove(x: 4, y: 5) } From ba5e263483f33e23480ad21f2e6d20a72dbb3ad0 Mon Sep 17 00:00:00 2001 From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> Date: Fri, 6 Dec 2024 19:37:33 +0300 Subject: [PATCH 4/8] typos README.md Signed-off-by: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> --- examples/social/web-frontend/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/social/web-frontend/README.md b/examples/social/web-frontend/README.md index 5f0623ba7b2..04a11f1f842 100644 --- a/examples/social/web-frontend/README.md +++ b/examples/social/web-frontend/README.md @@ -3,13 +3,13 @@ This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). The application (contract/service) must be deployed on the network, and a Node Service must be running -on port 8000. Also make sure you have performed the operations mentoined in this [README](../README.md) +on port 8000. Also make sure you have performed the operations mentioned in this [README](../README.md) ### Note The app is an example of a social app, and will be improved with future updates. Users can see their post by `ownPost` query in GraphiQL IDE. -#### Operations avaiable: +#### Operations available: Post, Likes, and Comments (only by the creation chain). From ab50f36c9a5d8c2a5277b7be6361ac38a3b31f09 Mon Sep 17 00:00:00 2001 From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> Date: Sat, 7 Dec 2024 23:14:17 +0300 Subject: [PATCH 5/8] broken link lib.rs Signed-off-by: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> --- examples/fungible/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/fungible/src/lib.rs b/examples/fungible/src/lib.rs index 1362b7479aa..34c5705257b 100644 --- a/examples/fungible/src/lib.rs +++ b/examples/fungible/src/lib.rs @@ -34,7 +34,7 @@ Tokens can be transferred from an account to different destinations, such as: ## Setting Up The WebAssembly binaries for the bytecode can be built and published using [steps from the -book](https://linera-io.github.io/linera-documentation/getting_started/first_app.html), +book](https://linera.dev/developers/getting_started.html), summarized below. Before getting started, make sure that the binary tools `linera*` corresponding to From a1beca445fc58b01fbf0cd781d6379d5d441e966 Mon Sep 17 00:00:00 2001 From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> Date: Sat, 7 Dec 2024 23:15:08 +0300 Subject: [PATCH 6/8] broken link lib.rs Signed-off-by: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> --- examples/crowd-funding/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/crowd-funding/src/lib.rs b/examples/crowd-funding/src/lib.rs index 6a973b4fae4..81d2cb400ea 100644 --- a/examples/crowd-funding/src/lib.rs +++ b/examples/crowd-funding/src/lib.rs @@ -43,7 +43,7 @@ Optionally, contributors may also be able to create a block to accept a new epoc ## Setting Up The WebAssembly binaries for the bytecode can be built and published using [steps from the -book](https://linera-io.github.io/linera-documentation/getting_started/first_app.html), +book](https://linera.dev/developers/getting_started.html), summarized below. Set up the path and the helper function. From 74c8aa690e71e5e362e046ee2f92c0433b4bcec8 Mon Sep 17 00:00:00 2001 From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> Date: Sat, 7 Dec 2024 23:22:18 +0300 Subject: [PATCH 7/8] typo lib.rs Signed-off-by: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> --- examples/hex-game/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hex-game/src/lib.rs b/examples/hex-game/src/lib.rs index d042b2f2d8b..d332a94f074 100644 --- a/examples/hex-game/src/lib.rs +++ b/examples/hex-game/src/lib.rs @@ -142,7 +142,7 @@ Now the first player can make a move by navigating to the URL you get by running mutation { makeMove(x: 4, y: 4) } ``` -And the second player player at the URL you get by running `echo "http://localhost:8080/chains/$HEX_CHAIN/applications/$APP_ID"`: +And the second player at the URL you get by running `echo "http://localhost:8080/chains/$HEX_CHAIN/applications/$APP_ID"`: ```gql,uri=http://localhost:8081/chains/$HEX_CHAIN/applications/$APP_ID mutation { makeMove(x: 4, y: 5) } From f1e5be6b7e22dd26c501ee69cab35684e71a2bd7 Mon Sep 17 00:00:00 2001 From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> Date: Sun, 8 Dec 2024 20:24:45 +0300 Subject: [PATCH 8/8] fix lib.rs Signed-off-by: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> --- examples/fungible/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/fungible/src/lib.rs b/examples/fungible/src/lib.rs index 34c5705257b..3117f963901 100644 --- a/examples/fungible/src/lib.rs +++ b/examples/fungible/src/lib.rs @@ -34,7 +34,7 @@ Tokens can be transferred from an account to different destinations, such as: ## Setting Up The WebAssembly binaries for the bytecode can be built and published using [steps from the -book](https://linera.dev/developers/getting_started.html), +book](https://linera.dev/developers/getting_started/installation.html), summarized below. Before getting started, make sure that the binary tools `linera*` corresponding to