-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Addition of cosmos kit frontend AI assisted guide with some minor cha…
…nges to the previous AI guides (#515)
- Loading branch information
Showing
3 changed files
with
77 additions
and
2 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...lopment/1.smart-contract-development/1.ai-assited-smart-contract-development.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ssisted-development/2.frontend-development/1.ai-assited-frontend-development.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
...s/15.ai-assisted-development/2.frontend-development/2.cosmos-kit-integration.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
--- | ||
objectID: developers_guides_ai-assistance-development_cosmos-kit-integration | ||
title: Cosmoskit Integration | ||
description: How to use AI assistance to build dapp frontends on Archway utilizing the Cosmos Kit | ||
parentSection: Developers | ||
parentSectionPath: /developers | ||
--- | ||
|
||
# Overview | ||
|
||
In this tutorial, you'll learn how to create a Lottery Dapp frontend using the `arch3.js` library and `React` alongside [Cosmos Kit](https://cosmology.zone/products/cosmos-kit) for wallet integration and also the use of the [Create Cosmos App](https://cosmology.zone/products/create-cosmos-app) to bootstrap a new frontend dapp. The AI will guide you through the entire process, from setting up your project to interacting with your smart contract on the Archway blockchain. | ||
|
||
Please make sure you've gone through the following [guide](/developers/getting-started/install) to install all the tools required for developing on Archway. Also, make sure to go the [guide](/developers/guides/ai-assistance/ai-assited-smart-contract-development) on creating the Lottery smart contract. | ||
|
||
## Key tips for interacting with ChatGPT AI | ||
|
||
To successfully create and deploy the Lottery Dapp frontend using, you will interact with the ChatGPT AI to get clear, concise, and accurate instructions. | ||
|
||
- Be Specific: Clearly state what you need help with. The more specific your question, the better the response. | ||
- Use Code Blocks: When requesting code snippets, use code blocks to format your request. | ||
- Follow Instructions: Ensure you follow the instructions provided by ChatGPT closely to avoid errors. | ||
- Ask for Clarification: If any part of the response is unclear, ask for further clarification. | ||
- Check Outputs: After running commands, check the outputs and return any errors or messages to ChatGPT for further assistance. | ||
|
||
## Archway custom GPT | ||
|
||
We've created a custom GPT configured with a knowledge set that should help with building smart contract frontends on Archway. The custom GPT can be accessed [here](https://chatgpt.com/g/g-VN4mrW5HR-archway-frontend-dapp-developer) and is the recommended GPT for building smart contract frontends on Archway. | ||
|
||
## Initial setup | ||
|
||
You want to give ChatGPT an overview of what is to be built along with the requirements but still allowing you to go through individual prompts to do things step by step. | ||
|
||
The first step would be to create a new React project and set up the necessary dependencies using the [Create Cosmos App](https://cosmology.zone/products/create-cosmos-app) boilerplate. The following will therefore be the first prompt: | ||
|
||
``` | ||
I want to build a frontend for my Lottery Dapp on the Archway blockchain using React and Arch3.js. The frontend should allow users to enter the lottery by paying a small fee, and an admin can draw a winner to receive the total collected fees. | ||
Create a new React project using create-cosmos-app and set up the necessary dependencies but use arch3.js to execute transactions instead of cosmjs. | ||
``` | ||
|
||
The response should guide you with the commands and steps required for setting up your project and configuring `Cosmos Kit`. | ||
|
||
## Create components and smart contract interactions | ||
|
||
Along with the request to create the necessary components for entering the lottery, drawing a winner, and querying the pool and participants, you will also need to share the messages that makes up your smart contract with ChatGPT. This step helps ChatGPT understand how to interact with the contract. | ||
|
||
The following could be an example of the messages in your smart contract's `msg.rs` file: | ||
|
||
```rust | ||
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)] | ||
#[serde(rename_all = "snake_case")] | ||
pub enum ExecuteMsg { | ||
Enter {}, | ||
Draw {}, | ||
} | ||
|
||
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)] | ||
#[serde(rename_all = "snake_case")] | ||
pub enum QueryMsg { | ||
GetPool {}, | ||
GetParticipants {}, | ||
} | ||
``` | ||
|
||
You would then make the following prompt, adding the code from your contract's `msg.rs` file: | ||
|
||
``` | ||
Here are the messages defined in my smart contract: | ||
[Code Here] | ||
Create the necessary components for entering the lottery, drawing a winner, and querying the pool and participants. | ||
``` | ||
|
||
With these steps provided, your React application should now allow for multiple wallet connections to sign transactions via your browser. |