https://github.com/hypersign-protocol/hid-node
A permissionless blockchain network to manage digital identity and access rights
https://github.com/hypersign-protocol/hid-node
blockchain data-privacy did ssi
Last synced: 5 months ago
JSON representation
A permissionless blockchain network to manage digital identity and access rights
- Host: GitHub
- URL: https://github.com/hypersign-protocol/hid-node
- Owner: hypersign-protocol
- License: apache-2.0
- Created: 2022-01-20T04:58:05.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-13T02:48:24.000Z (about 2 years ago)
- Last Synced: 2024-08-04T06:03:10.104Z (almost 2 years ago)
- Topics: blockchain, data-privacy, did, ssi
- Language: Go
- Homepage: https://hypersign.id
- Size: 47.5 MB
- Stars: 223
- Watchers: 6
- Forks: 23
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- best-of-crypto - GitHub - 1% open · ⏱️ 13.03.2024): (Others)
README
# Hypersign Identity Network
[](https://github.com/hypersign-protocol/hid-node/actions/workflows/build.yml) [](https://github.com/hypersign-protocol/hid-node/blob/main/LICENSE)  [](https://goreportcard.com/report/github.com/hypersign-protocol/hid-node) [](https://pkg.go.dev/github.com/hypersign-protocol/hid-node)
The Hypersign Identity Network is a permissionless blockchain network to manage digital identity and access rights. It aims to empower humans to gain control of their data and access on the internet by providing scalable, interoperable and secure [verifiable data registry (VDR)](https://www.w3.org/TR/did-core/#dfn-verifiable-data-registry) to implement use cases on Self Sovereign Identity (SSI) principles. The Hypersign Identity Network is built using [Cosmos-SDK](https://tendermint.com/sdk/) and is fully compatible with [W3C DID specifications](https://www.w3.org/TR/did-core/).
## Features
- Register, Update and Deactivate DID Documents
- Store/Update Credential Schema
- Store/Update status of a Verifiable Credential
- Stake `$HID` tokens
- Submit Governance Proposals
- Transfer `$HID` tokens within and across different Tendermint-based blockchains using IBC
- Deploy CosmWasm Smart Contracts
## Prerequisite
Following are the prerequisites that needs to be installed:
- Golang (Installation Guide: https://go.dev/doc/install) (version: 1.21)
- make
- jq
## Get started
### Local Binary
1. Clone this repository and install the binary:
```sh
git clone https://github.com/hypersign-protocol/hid-node.git
cd hid-node
make install
```
> The binary `hid-noded` is usually generated in `$HOME/go/bin` directory. Run `hid-noded --help` to explore its functionalities
2. Run the following script to setup a single-node blockchain. Please note that the following script requires `jq` to be installed.
```sh
bash ./scripts/localnet-single-node/setup.sh
```
3. Start `hid-noded`:
```sh
hid-noded start
```
### Docker
To run a single node `hid-node` docker container, follow the below steps:
1. Pull the image:
```sh
docker pull ghcr.io/hypersign-protocol/hid-node:latest
```
2. Run the following:
```sh
docker run --rm -d \
-p 26657:26657 -p 1317:1317 -p 26656:26656 -p 9090:9090 \
--name hid-node-container \
ghcr.io/hypersign-protocol/hid-node start
```
## Documentation
| Topic | Reference |
| ----- | ---- |
| Decentralised Identifiers | https://docs.hypersign.id/self-sovereign-identity-ssi/decentralized-identifier-did |
| Credential Schema | https://docs.hypersign.id/self-sovereign-identity-ssi/schema |
| Verifiable Credential Status | https://docs.hypersign.id/self-sovereign-identity-ssi/verifiable-credential-vc/credential-revocation-registry |
Please contact [support@hypermine.in](mailto:support@hypermine.in) for consulting and integration