Kevacoin source tree
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
2.8 KiB

3 months ago
# KevaCoin by Community
3 months ago
This project created to keep going [Kevacoin Core](https://github.com/kevacoin-project/kevacoin) ecosystem.
3 months ago
Contains QT and Boost updates, minor cosmetic changes, it's 100% compatible with Kevacoin Network.
3 months ago
3 months ago
Instead of `master` use `kvazar` branch as main.
The `master` branch required for legacy [contributions](https://github.com/kevacoin-project/kevacoin/pulls) and get updates from the original upstream only.
3 months ago
3 months ago
Join the development by sending [PR](https://github.com/kevacoin-project/kevacoin/pulls) or just open [Issue](https://github.com/kevacoin-project/kevacoin/issues) for any questions!
3 months ago
3 months ago
## What is Kevacoin?
6 years ago
Kevacoin is a decentralized open source key-value data store based on Litecoin (which is in turn based on Bitcoin) cryptocurrency. Kevacoin is largely influenced by Namecoin [https://namecoin.org](https://namecoin.org), even though it serves very different purposes and works very differently.
3 months ago
## What does it do?
3 months ago
* Securely record keys and their values. Size of value is up to `3072` bytes. No hard limits on the number of keys.
6 years ago
* Update or delete the keys and their values.
* Maintain network-unqiue namespaces. Keys are grouped under namespaces to avoid name conflicts.
* Transact the digital currency kevacoins (KVA).
3 months ago
## What can it be used for?
3 months ago
As a decentralized key-value database, it can be used to store data for all kinds of applications, such as social media, microblogging, public identity information, notary service. Kevacoin has limited support for smart contracts (similar to Bitcoin and Litecoin), but one can still develop decentralized apps (dApps) on Kevacoin. The data is decentralized while the application logic is developed off the blockchain.
4 years ago
Our major observation for decentralized apps is that data is significantly more important than the application. In fact, that is the case for all kinds of applications. It is common these days to hear that companies rewrite their applications using better technologies, but it is rare for any of them to make big changes to their valuable data.
3 months ago
Take a look at [awesome-kevacoin](https://github.com/kvazar-network/awesome-kevacoin) catalog, also you're welcome to share new service there!
3 months ago
## Build
3 months ago
### Linux
3 months ago
```
git clone https://github.com/kvazar-network/kevacoin.git
3 months ago
cd kevacoin
3 months ago
./contrib/install_db4.sh `pwd`
export BDB_PREFIX='/given/path/to/db4'
./autogen.sh
./configure BDB_LIBS="-L${BDB_PREFIX}/lib -ldb_cxx-4.8" BDB_CFLAGS="-I${BDB_PREFIX}/include"
make
```
3 months ago
## Connect
If you have any problems with connection to existing DNS, try following peers:
3 months ago
* `[201:23b4:991a:634d:8359:4521:5576:15b7]:9338` - Secure connections with [Yggdrasil](https://yggdrasil-network.github.io) by [YGGverse](https://github.com/YGGverse)
3 months ago
3 months ago
## License
6 years ago
Kevacoin Core is released under the terms of the MIT license. See [COPYING](COPYING) for more
3 months ago
information or see https://opensource.org/licenses/MIT.