Skip to content

Commit 52124e9

Browse files
authored
Release0.6.0 (bnb-chain#68)
* add binaries * add binaries * replace config * Update config.toml * Update config.toml * edit * replace * Update config.toml * Update config.toml * Update CHANGELOG.md * Update Changelog.md
1 parent 9b584ec commit 52124e9

File tree

20 files changed

+1305
-0
lines changed

20 files changed

+1305
-0
lines changed

cli/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
3+
## 0.6.0
4+
5+
*June 26th*
6+
7+
**New Feature**
8+
* Offline Transactions Signing: `bnbcli` support generating and signing all types of transactions offline, then broadcast them. This feature will let users generate and sign their transactions at an offline machine, then use another machine to broadcast it to the network
9+
210
## 0.5.8.1
311

412
*April 24th*
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4bf262685446043837e9f9f6562dab1b34102a6d3a185329324a836eb7296d67 tbnbcli

cli/testnet/0.6.0/linux/tbnbcli

30.1 MB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cb546aca8ca5cb8148c6e1a46ac2e31ed47844379a9e7c3824c198cbe9390aa6 tbnbcli

cli/testnet/0.6.0/mac/tbnbcli

36.1 MB
Binary file not shown.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
d7c89593ea292bdb0f8317eba2042aa517348b2522d494e0c6e48c6b35577bc1 tbnbcli.exe
2+
36 MB
Binary file not shown.

fullnode/Changelog.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,32 @@
11
# Changelog
22

3+
## 0.6.0
4+
*June 26th*
5+
6+
**New Features**
7+
8+
* Delist Trading Pairs on Binance DEX
9+
* Time Locking of Token Assets on Binance Chain
10+
* Registered Types for Transaction Source
11+
* State Sync Enhancement
12+
* Match Engine Revise
13+
14+
**Bug Fixes**
15+
16+
* Apply more validity check on the fee-change proposals
17+
18+
**Tendermint Changes**
19+
20+
Binance chain bumped its Tendermint dependency from v0.30.1 to v0.31.5.
21+
22+
* Other improvements:
23+
* The stability of P2P layer is improved. Now, it handles high pressure better when state-sync; handle DNS lockup failure;dataseed nodes dials more efficiently
24+
* RPC response time is decreased
25+
* issues in go-crypto are fixed
26+
327
## 0.5.10
428
*June 13th*
29+
530
**Imoprovements**
631
* Fix issues with AppHash conflicts when running `state-sync`
732

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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+
28+
[addr]
29+
# Bech32PrefixAccAddr defines the Bech32 prefix of an account's address
30+
bech32PrefixAccAddr = "tbnb"
31+
# Bech32PrefixAccPub defines the Bech32 prefix of an account's public key
32+
bech32PrefixAccPub = "bnbp"
33+
# Bech32PrefixValAddr defines the Bech32 prefix of a validator's operator address
34+
bech32PrefixValAddr = "bva"
35+
# Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key
36+
bech32PrefixValPub = "bvap"
37+
# Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address
38+
bech32PrefixConsAddr = "bca"
39+
# Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key
40+
bech32PrefixConsPub = "bcap"
41+
42+
##### publication related configurations #####
43+
[publication]
44+
# configurations ends with Kafka can be a semi-colon separated host-port list
45+
# Whether we want publish market data (this includes trades and order)
46+
publishOrderUpdates = false
47+
orderUpdatesTopic = "orders"
48+
orderUpdatesKafka = "127.0.0.1:9092"
49+
50+
# Whether we want publish account balance to notify browser db indexer persist latest account balance change
51+
publishAccountBalance = false
52+
accountBalanceTopic = "accounts"
53+
accountBalanceKafka = "127.0.0.1:9092"
54+
55+
# Whether we want publish order book changes
56+
publishOrderBook = false
57+
orderBookTopic = "orders"
58+
orderBookKafka = "127.0.0.1:9092"
59+
60+
# Whether we want publish block fee changes
61+
publishBlockFee = false
62+
blockFeeTopic = "accounts"
63+
blockFeeKafka = "127.0.0.1:9092"
64+
65+
# Whether we want publish transfers
66+
publishTransfer = false
67+
transferTopic = "transfers"
68+
transferKafka = "127.0.0.1:9092"
69+
70+
# Global setting
71+
publicationChannelSize = "10000"
72+
publishKafka = false
73+
publishLocal = false
74+
# max size in megabytes of marketdata json file before rotate
75+
localMaxSize = 1024
76+
# max days of marketdata json files to keep before deleted
77+
localMaxAge = 7
78+
79+
[log]
80+
81+
# Write logs to console instead of file
82+
logToConsole = false
83+
84+
## The below parameters take effect only when logToConsole is false
85+
# Log file root, if not set, use home path
86+
logFileRoot = ""
87+
# Log file path relative to log file root path
88+
logFilePath = "bnc.log"
89+
# Number of logs keep in memory before writing to file
90+
logBuffSize = 10000

0 commit comments

Comments
 (0)