From 96760438b6aeb5ae2c3576d1d9f387168921b45b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A2=D0=B8=D0=BC=D1=83=D1=80=20=D0=9C=D0=B5=D0=B4=D0=BE?= =?UTF-8?q?=D0=B2?= Date: Thu, 12 Oct 2023 14:32:11 +0300 Subject: [PATCH 1/2] update battleship.md --- docs/examples/battleship.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples/battleship.md b/docs/examples/battleship.md index d4539de34..81ee04e1d 100644 --- a/docs/examples/battleship.md +++ b/docs/examples/battleship.md @@ -11,7 +11,7 @@ Battleship is a strategic board game in which two players compete to sink an opp The game of Battleship requires logical thinking, strategy, and luck. Players must position their ships to remain well hidden from the enemy, with each ship having a different length, adding variety to the tactics of the game. -"Battleship is a popular game that operates **entirely on-chain**. It has no backend or centralized components; instead, the user interface interacts directly with the smart contract uploaded to the Vara Network. +"Battleship is a popular game that operates **entirely on-chain**. The primary game version lacks a backend or centralized components. Nevertheless, there is an option to enable [vouchers](../api/vouchers.md), permitting participation with zero tokens in the balance. However, this requires the activation of the backend (Instructions for voucher integration will be detailed in the article). The source code is available on [GitHub](https://github.com/gear-foundation/dapps/tree/master/contracts/battleship ). This article describes the program interface, data structure, basic functions and explains their purpose. It can be used as is or modified to suit your own scenarios. @@ -28,7 +28,7 @@ The source code is available on [GitHub](https://github.com/gear-foundation/dapp 3. Build and run user interface > More information about this can be found in the [README](https://github.com/gear-foundation/dapps/tree/master/frontend/battleship) directory of the frontend. -4. Build and run the backend to release vouchers +4. **Optional**. Build and run the backend to release vouchers > Comprehensive instructions on the voucher execution process are provided within the [README](https://github.com/gear-foundation/dapps-battleship-backend). ## Implementation details From 80932cfe8400968d789f999e86cc2713d010a9d2 Mon Sep 17 00:00:00 2001 From: AndrePanin Date: Thu, 12 Oct 2023 14:49:38 +0300 Subject: [PATCH 2/2] text edits --- docs/examples/battleship.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/battleship.md b/docs/examples/battleship.md index 81ee04e1d..42e223d5b 100644 --- a/docs/examples/battleship.md +++ b/docs/examples/battleship.md @@ -11,7 +11,7 @@ Battleship is a strategic board game in which two players compete to sink an opp The game of Battleship requires logical thinking, strategy, and luck. Players must position their ships to remain well hidden from the enemy, with each ship having a different length, adding variety to the tactics of the game. -"Battleship is a popular game that operates **entirely on-chain**. The primary game version lacks a backend or centralized components. Nevertheless, there is an option to enable [vouchers](../api/vouchers.md), permitting participation with zero tokens in the balance. However, this requires the activation of the backend (Instructions for voucher integration will be detailed in the article). +"Battleship is a popular game that operates **entirely on-chain**. The primary game version does not have a backend or centralized components. However, there is an option to include [vouchers](../api/vouchers.md) that allow users to play with a zero tokens on their balance. This requires activation of the backend to issue vouchers (instructions for voucher integration will be detailed in the article). The source code is available on [GitHub](https://github.com/gear-foundation/dapps/tree/master/contracts/battleship ). This article describes the program interface, data structure, basic functions and explains their purpose. It can be used as is or modified to suit your own scenarios.