Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #114 from binance-chain/0.6.2
Browse files Browse the repository at this point in the history
add new version of binaries for testnet
  • Loading branch information
unclezoro authored Sep 12, 2019
2 parents 61277d7 + 54304a9 commit b317501
Show file tree
Hide file tree
Showing 17 changed files with 1,293 additions and 1 deletion.
10 changes: 9 additions & 1 deletion cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.6.2
*Sept 12th*

**New Feature**
* Add more checks on account flag commands
* Add levels parameter to depth ABCI query
* Fix the issue of generating order-id in offline mode

## 0.6.1-TSS
*Aug 27th*
**New Feature**
Expand Down Expand Up @@ -43,4 +51,4 @@ This is the second public release of Binance Chain Client for mainnet and testne

*April 23th*

This is the first public release of Binance Chain Client for mainnet.
This is the first public release of Binance Chain Client for mainnet.
1 change: 1 addition & 0 deletions cli/testnet/0.6.2/linux/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tbnbcli filter=lfs diff=lfs merge=lfs -text
1 change: 1 addition & 0 deletions cli/testnet/0.6.2/linux/sha256checksum
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
91b0fcba3953300aabed2c33c0d2421d6e6554c341522dedd6784514e9c33230 tbnbcli
3 changes: 3 additions & 0 deletions cli/testnet/0.6.2/linux/tbnbcli
Git LFS file not shown
1 change: 1 addition & 0 deletions cli/testnet/0.6.2/mac/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tbnbcli filter=lfs diff=lfs merge=lfs -text
1 change: 1 addition & 0 deletions cli/testnet/0.6.2/mac/sha256checksum
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f05fd8ac6fd792e7fd55215bcb71d13067a4ff76028ac56daddb8587415ca29b tbnbcli
3 changes: 3 additions & 0 deletions cli/testnet/0.6.2/mac/tbnbcli
Git LFS file not shown
16 changes: 16 additions & 0 deletions fullnode/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 0.6.2
*Sep 12th*

** New Features**

* BEP3, atomic swap
* Add memo to transfer kafka message
* Improve the handle of Kafka server connection error
* API Server Improvements: Add support for querying time-lock information.

**Tendermint Changes**

* Introduce Hot-Sync
* Support Index service recovery and add indexHeight in Status api
* Performance improvements

## 0.6.1-hotfix
*Sep 3rd*
**Bug Fix**
Expand Down
94 changes: 94 additions & 0 deletions fullnode/testnet/0.6.2/config/app.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
# This is a TOML config file.
# For more information, see https://github.com/toml-lang/toml

[base]
# Interval blocks of breathe block, if breatheBlockInterval is 0, breathe block will be created every day.
breatheBlockInterval = 0
# Size of account cache
accountCacheSize = 30000
# Size of signature cache
signatureCacheSize = 30000
# Running mode when start up, 0: Normal, 1: TransferOnly, 2: RecoverOnly
startMode = 0
# Concurrency of OrderKeeper, should be power of 2
orderKeeperConcurrency = 2
# Days count back for breathe block
breatheBlockDaysCountBack = 7

[upgrade]
# Block height of BEP6 upgrade
BEP6Height = 24020000
# Block height of BEP9 upgrade
BEP9Height = 24020000
# Block height of BEP10 upgrade
BEP10Height = 24020000
# Block height of BEP19 upgrade
BEP19Height = 24020000
# Block height of BEP12 upgrade
BEP12Height = 29794000
# Block height of BEP3 upgrade
BEP3Height = 39581000

[addr]
# Bech32PrefixAccAddr defines the Bech32 prefix of an account's address
bech32PrefixAccAddr = "tbnb"
# Bech32PrefixAccPub defines the Bech32 prefix of an account's public key
bech32PrefixAccPub = "bnbp"
# Bech32PrefixValAddr defines the Bech32 prefix of a validator's operator address
bech32PrefixValAddr = "bva"
# Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key
bech32PrefixValPub = "bvap"
# Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address
bech32PrefixConsAddr = "bca"
# Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key
bech32PrefixConsPub = "bcap"

##### publication related configurations #####
[publication]
# configurations ends with Kafka can be a semi-colon separated host-port list
# Whether we want publish market data (this includes trades and order)
publishOrderUpdates = false
orderUpdatesTopic = "orders"
orderUpdatesKafka = "127.0.0.1:9092"

# Whether we want publish account balance to notify browser db indexer persist latest account balance change
publishAccountBalance = false
accountBalanceTopic = "accounts"
accountBalanceKafka = "127.0.0.1:9092"

# Whether we want publish order book changes
publishOrderBook = false
orderBookTopic = "orders"
orderBookKafka = "127.0.0.1:9092"

# Whether we want publish block fee changes
publishBlockFee = false
blockFeeTopic = "accounts"
blockFeeKafka = "127.0.0.1:9092"

# Whether we want publish transfers
publishTransfer = false
transferTopic = "transfers"
transferKafka = "127.0.0.1:9092"

# Global setting
publicationChannelSize = "10000"
publishKafka = false
publishLocal = false
# max size in megabytes of marketdata json file before rotate
localMaxSize = 1024
# max days of marketdata json files to keep before deleted
localMaxAge = 7

[log]

# Write logs to console instead of file
logToConsole = false

## The below parameters take effect only when logToConsole is false
# Log file root, if not set, use home path
logFileRoot = ""
# Log file path relative to log file root path
logFilePath = "bnc.log"
# Number of logs keep in memory before writing to file
logBuffSize = 10000
Loading

0 comments on commit b317501

Please sign in to comment.