paulbellamy / hack-a-soroban-athon

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Soroban Voting Dapp Example

This is a Next.js project, demoing how to build a dapp frontend backed by smart contracts on Stellar. Learn more about this project @ https://stellar-resources.notion.site/stellar-resources/SorobountyDAO-5cedb58a80ae4013a4751403c39e6590

Getting Started

Dependencies

  1. soroban-cli v0.4.0. See https://soroban.stellar.org/docs/getting-started/setup#install-the-soroban-cli
  2. docker (both Standalone and Futurenet backends require it).
  3. Node.js v17
  4. Freighter wallet v2.9.1. Download it from https://github.com/stellar/freighter/releases/tag/2.9.1 and Enable "Experimental Mode" in the settings (gear icon).

Backend (Local Standalone Network)

  1. Run the backend docker container with ./quickstart.sh standalone, and wait for it to start.
  2. Run ./initialize.sh standalone to load the contracts and initialize it.
  • Note: this state will be lost if the quickstart docker container is removed.
  1. Add the Standalone custom network in Freighter
    Name Standalone
    URL http://localhost:8000/soroban/rpc
    Passphrase Standalone Network ; February 2017
    Allow HTTP connection Enabled
    Switch to this network Enabled
  2. Add some Standalone network lumens to your Freighter wallet. a. Copy the address for your freighter wallet. b. Visit http://localhost:8000/friendbot?addr=<your address>

Backend (Futurenet)

  1. Run the backend docker container with ./quickstart.sh futurenet, and wait for it to start.
  • Note: This can take up to 5 minutes to start syncing. You can tell it is working by visiting http://localhost:8000/, and look at the ingest_latest_ledger, field. If it is 0, the quickstart image is not ready yet.
  1. Run ./initialize.sh futurenet to load the contracts and initialize it.
  2. Add the Futurenet custom network in Freighter (Note, the out-of-the-box "Future Net" network in Freighter will not work with a local quickstart container, so we need to add our own):
    Name Futurenet Local RPC
    URL http://localhost:8000/soroban/rpc
    Passphrase Test SDF Future Network ; October 2022
    Allow HTTP connection Enabled
    Switch to this network Enabled
  3. Add some Futurenet network lumens to your Freighter wallet.

Frontend

Then, run the development server:

npm run dev

Open http://localhost:3000 with your browser to see the result.

Note: Before you can "Approve transfer & Back this project", you'll need to have some EXT (example token) in your freighter wallet. There is a "Mint 100 EXT" button, which will gift you 100 EXT tokens for that purpose.

User Workflows

The contract dev should be able to:

  • Clone the example repo (this one)
  • Choose their target amount and deadline
  • Deploy their contract to futurenet
  • Deploy a soroban rpc server somewhere (TBD)
  • Deploy the example web ui somewhere (e.g. netlify)

Then via the web UI, users should be able to:

  • Connect their wallet (freighter for now)
  • See their current balance(s)
  • See the current fundraising status (total amount & time remaining)
  • See allowed assets (xlm-only for now?)
  • Deposit an allowed asset
  • See their deposit(s) appear on the page as the transactions are confirmed.
  • "Live"-Update the page with the total amount with the new amount

Wallet Integration & Data Fetching

There is a ./wallet directory, which contains a small library to connect to the user's freighter wallet, as well as some React hooks to talk to a soroban-rpc server (e.g. soroban-cli serve), to fetch data and send transactions.

Data from contracts is fetched using the useContractValue hook in ./wallet/hooks/useContractValue.tsx. Transactions are submitted to the network using the useSendTransactions hook in ./wallet/hooks/useSendTransaction.tsx.

About

License:Apache License 2.0


Languages

Language:TypeScript 47.2%Language:Rust 29.0%Language:Python 8.6%Language:Shell 6.7%Language:CSS 5.4%Language:JavaScript 2.0%Language:Makefile 1.0%