- Docs
- Developers
- Cosmoskit Integration
Overview
In this tutorial, you'll learn how to create a Lottery Dapp frontend using the arch3.js
library and React
alongside Cosmos Kit for wallet integration and also the use of the 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 to install all the tools required for developing on Archway. Also, make sure to go the guide 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 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 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:
#[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.