Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cosmos/cosmos-multisig-ui
Create multisigs and multisig transactions on Cosmos chains
https://github.com/cosmos/cosmos-multisig-ui
cosmos multisig
Last synced: 3 days ago
JSON representation
Create multisigs and multisig transactions on Cosmos chains
- Host: GitHub
- URL: https://github.com/cosmos/cosmos-multisig-ui
- Owner: cosmos
- License: apache-2.0
- Created: 2021-02-27T19:18:26.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-01T13:47:26.000Z (3 months ago)
- Last Synced: 2024-11-04T21:37:10.778Z (4 days ago)
- Topics: cosmos, multisig
- Language: TypeScript
- Homepage: https://multisig.confio.run
- Size: 1.54 MB
- Stars: 82
- Watchers: 7
- Forks: 109
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-ccamel - cosmos/cosmos-multisig-ui - Create multisigs and multisig transactions on Cosmos chains (TypeScript)
README
# Cosmoshub Multisig App
This app allows for multisig users to create, sign and broadcast transactions on any stargate enabled chain. It's built with Cosmjs, Next.js, Dgraph and Vercel.
[The app is live here](https://multisig.confio.run).
[Here is a user guide on how to use the app](https://github.com/samepant/cosmoshub-legacy-multisig/blob/master/docs/App%20User%20Guide.md)
## Running your own instance
### 1. Clone project / setup Vercel deployment
This app uses Vercel for deployment and hosting, since they support next.js's serverless functions. You will need a vercel account to deploy this app. Use the button below to one-click clone and deploy this repo. The initial deployment will fail until all the necessary environment variables are input from the following steps.
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fvercel%2Fnext.js%2Ftree%2Fcanary%2Fexamples%2Fhello-world)
### 2. Setup environment variables
In the Vercel control panel for your new app, go to `Settings -> Environment Variables` and add in the keys and values from this repo's `.env.sample` file. The only remaining variable should be the `DGRAPH_SECRET`, which will be available once you setup your DGraph instance.
### 3. Initializing DGraph
This app relies on DGraph as for storing account, transaction and signature details.
- Create a [DGraph](https://cloud.dgraph.io) account
- Launch a new backend
- Click the `Develop -> Schema` menu item, and past the contents of the `db-schema.graphql` file in the root of this repo
- On the `Develop -> Schema` view, click the `Access` tab, and make sure Anonymous Access is OFF.
- Click the `Admin -> Settings` menu item, and create a key. Copy that key into your vercel app's environment variables as the `DGRAPH_SECRET` valueAs your instance of the app is used, you can return to the DGraph dashboard to view records for any accounts, transactions or signatures.
### 4. Successful Deployment
Redeploy the app and it will pickup the new environment variables and should be functioning normally.
## Running Locally
### 1. Setup .env.local file
Copy the `.env.sample` file and rename it to `.env.local`
### 2. Run a local cosmos-sdk Simapp instance
It's recommended that you make your simapp instance mimic the denomination of cosmoshub-4 (`uatom`). Put the local address of your node as the value for `NEXT_PUBLIC_NODE_ADDRESS` in your `.env.local` file.
A more in depth tutorial on this is coming soon :)
### 3. Initializing DGraph
This app relies on DGraph as for storing account, transaction and signature details.
- Create a [DGraph](https://cloud.dgraph.io) account
- Launch a new backend
- Click the `Develop -> Schema` menu item, and past the contents of the `db-schema.graphql` file in the root of this repo
- On the `Develop -> Schema` view, click the `Access` tab, and make sure Anonymous Access is OFF.
- Click the `Admin -> Settings` menu item, and create a key. Copy that key into your vercel app's environment variables as the `DGRAPH_SECRET` valueAs your instance of the app is used, you can return to the DGraph dashboard to view records for any accounts, transactions or signatures.
### 3. Run your instance
With the simapp process running, run these commands in another window:
```
// with node v12.5.0 or later
npm install
npm run dev
```