Skip to content

Commit

Permalink
Release 0.3.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
dcaoyuan committed Sep 8, 2019
1 parent 8573025 commit b573fca
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ It is built on earlier work on Mantis by [Grothendieck Team](https://iohk.io/pro
The major researches of Khipu so far:

- Try to execute transactions in a block as in parallel as possible. Average 80% transactions in one block could be executed in parallel currently
- LMDB based storage engine carefully designed for blockchain with high performance both on random/sequential reading and writing
- Kafka based storage engine carefully designed for blockchain with high performance both on random/sequential reading and writing
- The fastest Ethereum implemention

### Status - Beta Release 0.2.0
### Status - Beta Release 0.3.0

This version of the code supports

Expand Down Expand Up @@ -46,8 +46,8 @@ Running from command line:


```
unzip khipu-eth-0.2.0.zip
cd khipu-eth-0.2.0/bin
unzip khipu-eth-0.3.0.zip
cd khipu-eth-0.3.0/bin
./khipu-eth
```
or
Expand All @@ -60,10 +60,10 @@ Khipu data directory is $HOME/.khipu.eth

```
$ ls .khipu.eth
keystore lmdb nodeId.keys
kesque.logs keystore nodeId.keys rocksdb
```

Remove lmdb will level a installation with empty blockchain data, but the keystore and nodeId.keys will be kept.
Remove kesque.logs and rocksdb will level a installation with empty blockchain data, but the keystore and nodeId.keys will be kept.


#### Prerequisites to build
Expand Down
8 changes: 4 additions & 4 deletions khipu-eth/src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ khipu {
chain-type = "eth"

# Identifier used when connecting to other clients
client-id = "Khipu/v0.2.1-beta"
client-id = "Khipu/v0.3.0-beta"

# Version string (reported by an RPC method)
client-version = "khipu/v0.2"
client-version = "khipu/v0.3"

# Base directory where all the data used by the node is stored, including blockchain data and private keys
datadir = ${user.home}"/.khipu"
Expand Down Expand Up @@ -386,8 +386,8 @@ khipu {
}

db {
# "kesque-lmdb", "kesque-rocksdb" or "lmdb"
engine = "kesque-lmdb"
# "kesque-rocksdb", "kesque-lmdb" or "lmdb"
engine = "kesque-rocksdb"

rocksdb {
path = "rocksdb/"
Expand Down
8 changes: 4 additions & 4 deletions khipu-eth/src/universal/conf/dev.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ khipu {
chain-type = "eth"

# Identifier used when connecting to other clients
client-id = "Khipu/v0.2.1-beta"
client-id = "Khipu/v0.3.0-beta"

# Version string (reported by an RPC method)
client-version = "khipu/v0.2"
client-version = "khipu/v0.3"

# Base directory where all the data used by the node is stored, including blockchain data and private keys
datadir = ${user.home}"/.khipu"
Expand Down Expand Up @@ -386,8 +386,8 @@ khipu {
}

db {
# "kesque-lmdb", "kesque-rocksdb" or "lmdb"
engine = "kesque-lmdb"
# "kesque-rocksdb", "kesque-lmdb" or "lmdb"
engine = "kesque-rocksdb"

rocksdb {
path = "rocksdb/"
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ object Build extends sbt.Build {

lazy val basicSettings = Defaults.coreDefaultSettings ++ Seq(
organization := "khipu.io",
version := "0.2.1-beta",
version := "0.3.0-beta",
resolvers ++= Seq(
"Local Maven" at Path.userHome.asURL + ".m2/repository",
"Typesafe repo" at "http://repo.typesafe.com/typesafe/releases/",
Expand Down

0 comments on commit b573fca

Please sign in to comment.