Skip to content

Commit b317501

Browse files
authored
Merge pull request bnb-chain#114 from binance-chain/0.6.2
add new version of binaries for testnet
2 parents 61277d7 + 54304a9 commit b317501

File tree

17 files changed

+1293
-1
lines changed

17 files changed

+1293
-1
lines changed

cli/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.6.2
4+
*Sept 12th*
5+
6+
**New Feature**
7+
* Add more checks on account flag commands
8+
* Add levels parameter to depth ABCI query
9+
* Fix the issue of generating order-id in offline mode
10+
311
## 0.6.1-TSS
412
*Aug 27th*
513
**New Feature**
@@ -43,4 +51,4 @@ This is the second public release of Binance Chain Client for mainnet and testne
4351

4452
*April 23th*
4553

46-
This is the first public release of Binance Chain Client for mainnet.
54+
This is the first public release of Binance Chain Client for mainnet.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tbnbcli filter=lfs diff=lfs merge=lfs -text
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
91b0fcba3953300aabed2c33c0d2421d6e6554c341522dedd6784514e9c33230 tbnbcli

cli/testnet/0.6.2/linux/tbnbcli

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:91b0fcba3953300aabed2c33c0d2421d6e6554c341522dedd6784514e9c33230
3+
size 31769170
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tbnbcli filter=lfs diff=lfs merge=lfs -text
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
f05fd8ac6fd792e7fd55215bcb71d13067a4ff76028ac56daddb8587415ca29b tbnbcli

cli/testnet/0.6.2/mac/tbnbcli

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:f05fd8ac6fd792e7fd55215bcb71d13067a4ff76028ac56daddb8587415ca29b
3+
size 38149660

fullnode/Changelog.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## 0.6.2
4+
*Sep 12th*
5+
6+
** New Features**
7+
8+
* BEP3, atomic swap
9+
* Add memo to transfer kafka message
10+
* Improve the handle of Kafka server connection error
11+
* API Server Improvements: Add support for querying time-lock information.
12+
13+
**Tendermint Changes**
14+
15+
* Introduce Hot-Sync
16+
* Support Index service recovery and add indexHeight in Status api
17+
* Performance improvements
18+
319
## 0.6.1-hotfix
420
*Sep 3rd*
521
**Bug Fix**
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# This is a TOML config file.
2+
# For more information, see https://github.com/toml-lang/toml
3+
4+
[base]
5+
# Interval blocks of breathe block, if breatheBlockInterval is 0, breathe block will be created every day.
6+
breatheBlockInterval = 0
7+
# Size of account cache
8+
accountCacheSize = 30000
9+
# Size of signature cache
10+
signatureCacheSize = 30000
11+
# Running mode when start up, 0: Normal, 1: TransferOnly, 2: RecoverOnly
12+
startMode = 0
13+
# Concurrency of OrderKeeper, should be power of 2
14+
orderKeeperConcurrency = 2
15+
# Days count back for breathe block
16+
breatheBlockDaysCountBack = 7
17+
18+
[upgrade]
19+
# Block height of BEP6 upgrade
20+
BEP6Height = 24020000
21+
# Block height of BEP9 upgrade
22+
BEP9Height = 24020000
23+
# Block height of BEP10 upgrade
24+
BEP10Height = 24020000
25+
# Block height of BEP19 upgrade
26+
BEP19Height = 24020000
27+
# Block height of BEP12 upgrade
28+
BEP12Height = 29794000
29+
# Block height of BEP3 upgrade
30+
BEP3Height = 39581000
31+
32+
[addr]
33+
# Bech32PrefixAccAddr defines the Bech32 prefix of an account's address
34+
bech32PrefixAccAddr = "tbnb"
35+
# Bech32PrefixAccPub defines the Bech32 prefix of an account's public key
36+
bech32PrefixAccPub = "bnbp"
37+
# Bech32PrefixValAddr defines the Bech32 prefix of a validator's operator address
38+
bech32PrefixValAddr = "bva"
39+
# Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key
40+
bech32PrefixValPub = "bvap"
41+
# Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address
42+
bech32PrefixConsAddr = "bca"
43+
# Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key
44+
bech32PrefixConsPub = "bcap"
45+
46+
##### publication related configurations #####
47+
[publication]
48+
# configurations ends with Kafka can be a semi-colon separated host-port list
49+
# Whether we want publish market data (this includes trades and order)
50+
publishOrderUpdates = false
51+
orderUpdatesTopic = "orders"
52+
orderUpdatesKafka = "127.0.0.1:9092"
53+
54+
# Whether we want publish account balance to notify browser db indexer persist latest account balance change
55+
publishAccountBalance = false
56+
accountBalanceTopic = "accounts"
57+
accountBalanceKafka = "127.0.0.1:9092"
58+
59+
# Whether we want publish order book changes
60+
publishOrderBook = false
61+
orderBookTopic = "orders"
62+
orderBookKafka = "127.0.0.1:9092"
63+
64+
# Whether we want publish block fee changes
65+
publishBlockFee = false
66+
blockFeeTopic = "accounts"
67+
blockFeeKafka = "127.0.0.1:9092"
68+
69+
# Whether we want publish transfers
70+
publishTransfer = false
71+
transferTopic = "transfers"
72+
transferKafka = "127.0.0.1:9092"
73+
74+
# Global setting
75+
publicationChannelSize = "10000"
76+
publishKafka = false
77+
publishLocal = false
78+
# max size in megabytes of marketdata json file before rotate
79+
localMaxSize = 1024
80+
# max days of marketdata json files to keep before deleted
81+
localMaxAge = 7
82+
83+
[log]
84+
85+
# Write logs to console instead of file
86+
logToConsole = false
87+
88+
## The below parameters take effect only when logToConsole is false
89+
# Log file root, if not set, use home path
90+
logFileRoot = ""
91+
# Log file path relative to log file root path
92+
logFilePath = "bnc.log"
93+
# Number of logs keep in memory before writing to file
94+
logBuffSize = 10000

0 commit comments

Comments
 (0)