Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spolu/settle
Decentralized trust graph for value exchange without a blockchain
https://github.com/spolu/settle
Last synced: 2 months ago
JSON representation
Decentralized trust graph for value exchange without a blockchain
- Host: GitHub
- URL: https://github.com/spolu/settle
- Owner: spolu
- License: mit
- Created: 2016-04-25T15:52:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-19T09:33:20.000Z (about 6 years ago)
- Last Synced: 2024-10-16T11:12:47.177Z (3 months ago)
- Language: Go
- Homepage: https://settle.network
- Size: 4.23 MB
- Stars: 55
- Watchers: 18
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Settle
*Decentralized trust graph for value exchange without a blockchain.*
Settle's goal is to explore a new financial trust primitive on the Internet,
and doing so, construct a decentralized trust graph enabling (totally) free
exchange of value without relying on a blockchain.[https://settle.network](https://settle.network)
## Installing the `settle` client
Install `settle` locally (under `~/.settle`):
```
curl -L https://settle.network/install | sh && export PATH=$PATH:~/.settle
```Or from the source, assuming you have [Go](https://golang.org/) installed (version 1.7 or higher):
```
go get -u github.com/spolu/settle/...
```## Building and running tests
To speed up build and test execution, run `go install` from the following
vendored packages to avoid recompiling them at each build or test run:```
./vendor/github.com/mattn/go-sqlite3
```To run tests you may need to increase the number of open files permitted on
your account with:```
ulimit -n 4096
```