Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keymesh/trustmesh
Blockchain-based (Ethereum) public key and message infrastructure
https://github.com/keymesh/trustmesh
blockchain ethereum
Last synced: about 1 month ago
JSON representation
Blockchain-based (Ethereum) public key and message infrastructure
- Host: GitHub
- URL: https://github.com/keymesh/trustmesh
- Owner: keymesh
- Created: 2018-02-21T05:14:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-03-15T17:56:58.000Z (over 6 years ago)
- Last Synced: 2024-09-30T12:42:02.775Z (about 2 months ago)
- Topics: blockchain, ethereum
- Language: TypeScript
- Size: 703 KB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Trustmesh [![Build Status](https://travis-ci.org/keymesh/trustmesh.svg?branch=master)](https://travis-ci.org/keymesh/trustmesh)
Blockchain-based (Ethereum) Public key and message infrastructure. Can be use to build trusted communication DApp.
## Installation
```bash
yarn add @keymesh/trustmesh
```## APIs
*TODO*
## Development
### Test
1. Run [Ethereum Test RPC (Ganache CLI)](https://github.com/trufflesuite/ganache-cli):
```bash
yarn testrpc
```2. Run tests (in another console):
```bash
yarn test
```### Deployment
#### Quick Start
```bash
# Using default localhost:8545
yarn migrate
```#### Using [infura.io](https://infura.io/) and Mnemonic
```bash
# Use TRUSTMESH_MNEMONIC and TRUSTMESH_ETH_SENDER to config
TRUSTMESH_MNEMONIC='foo bar baz quz...' \
TRUSTMESH_ETH_SENDER='0x123...' yarn migrate --network rinkeby
```