https://github.com/ringecosystem/gov-helper
https://github.com/ringecosystem/gov-helper
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ringecosystem/gov-helper
- Owner: ringecosystem
- Created: 2025-03-20T00:10:53.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-03-20T08:25:30.000Z (2 months ago)
- Last Synced: 2025-03-20T08:34:02.143Z (2 months ago)
- Language: TypeScript
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Darwinia Polkadot-SDK Governance Helper
A utility project to interact with Polkadot-SDK governance features on Darwinia/Crab networks.
## Usage
1. Set the qualified members in the `AUTHORIZED_AUTHORS=` section of the workflow file. This will prevent other users' issues from being processed.
2. Set `GOV_PROXY_KEY` in this repository's secrets. This key is used to sign the transaction on behalf of the governance proxy account.
3. Creating a new issue on this repository, prefix the title with `[GOV]`, and ensure that the first two lines of the body are as follows:```plain
# wss://rpc.darwinia.network
# https://github.com/darwinia-network/darwinia/releases/download/v7.0.0/darwinia_runtime.compact.compressed.wasm
```## Local Development
### Setup
1. Install dependencies:
```sh
chmod +x install.sh && ./install.sh
```2. Run:
```sh
yarn build && yarn start
```### Updating Dependencies
To update to the latest version of all packages:
```sh
yarn upgrade --latest
```