citizenwallet / app

https://citizenwallet.xyz/
MIT License
14 stars 5 forks source link

citizen wallet logo
Citizen Wallet

An open source wallet for your community currency.

About this repo

This is the repo for the web/iOS/Android app of the Citizen Wallet (using DART/Flutter). See below for instructions on how to run it locally.

About the Citizen Wallet

Our goal is to give communities the tools they need to build a resilient and regenerative economy 👠💪🌱🌻🌳.

It starts with a wallet to enable all of us, citizens, to receive and send the tokens of our communities without any prior knowledge of web3.

Citizen Wallet banner

Read more on our website: citizenwallet.xyz.

Why yet another crypto wallet?

Existing crypto wallets assume that you are either a technical person (e.g. metamask) or a trader (e.g. Rainbow wallet). Chances are that most of the people in your community do not fit any of those two categories.

That's why we are building the Citizen Wallet, a new category of wallets for everyday people, that just want to receive and send your community token.

The easiest way to onboard someone to web3

Screenshot 2023-11-15 at 10 17 12 AM

Features

Screenshot 2023-11-15 at 10 17 44 AM

Contributors

Current communities

Join us on discord to discuss: https://discord.citizenwallet.xyz

Links

Running the project

Install Flutter

Select your platform and follow instructions.

Install dependencies

flutter pub get

Make .env file

The example includes a test wallet made for the Ganache TestRPC configuration command.

You can use any other configuration that you want.

cp .example.env .env

Run project

You will be prompted to pick a platform.

flutter run

When updating, you may need to run the following:

flutter clean
flutter pub get
cd ios && pod install

Running a Ganache TestRPC

sudo docker run --detach --publish 8545:8545 trufflesuite/ganache:latest --account "0x429321276245f7d39855c8040f498af9392cafed95e1e4f50d158b2b39faa9cc,100000000000000000000000" --account "0xe1b5da7d6c2009c09dcb30781ec1dc4e9f73598a26b57e742d706102b69a1716,100000000000000000000000" --account "0x45c532f2bcb9a21f1a25b1d739bd9d3d65209e86836f370897c94e2e571ec18d,100000000000000000000000" --chain.chainId 1682515751360 --chain.networkId 1682515751360 --unlock "0x0b772F674eD6fB67C5647Be0fbBd2FBe95156D60" --unlock "0xBa711ff057dfAC08E4568Bb972EeC2313454f55A" --unlock "0x664ce0F7785E4bA5Ff422C77314eF982F193BeF5"
2cf01f52d6254ef24bed71b85253be48351de50b6b23c021863ad14d497249de

Deploy the app

flutter build web

This will create a build in build/web with all the static assets that you can deploy on your server.

Test locally

flutter run -d web