Skip to content

Commit 2089b24

Browse files
authored
Release063 (bnb-chain#153)
* add tbnbcli linux * add tbnbcli mac * add tbnbcli mac * add tbnbcli.exe * add bnbchaind linux * add bnbchaind mac * add bnbchaind linux * add bnbchaind windows * add lightd linux * add lightd mac * add lightd windows * add changelog * add config * add config * edir config * edit config * edit config
1 parent 045a126 commit 2089b24

File tree

23 files changed

+1383
-0
lines changed

23 files changed

+1383
-0
lines changed

cli/CHANGELOG.md

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

3+
## 0.6.3
4+
*Nov 11th*
5+
**New Feature**
6+
* Performance Improvements
7+
8+
## 0.6.2-TSS
9+
*Nov 5th*
10+
11+
**New Feature**
12+
* Add Threshold Signature Scheme (TSS) support v0.1.2
13+
14+
315
## 0.6.2
416
*Sept 12th*
517

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9fbc2e67c736a1bddb148c5f87cc53fdcd2e7368008a8d742f7a2d9622a885d5 tbnbcli

cli/testnet/0.6.3/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:9fbc2e67c736a1bddb148c5f87cc53fdcd2e7368008a8d742f7a2d9622a885d5
3+
size 40645000
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
c565cc1f1795068375e3d18ab10e909f00864f6e550c276f04d98c4c07081b19 tbnbcli

cli/testnet/0.6.3/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:c565cc1f1795068375e3d18ab10e909f00864f6e550c276f04d98c4c07081b19
3+
size 39159576
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
5020bc646fca3011cba5a0562023aab052dfcf1a0035cf25528ff737df4c9f02 tbnbcli.exe
2+
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:5020bc646fca3011cba5a0562023aab052dfcf1a0035cf25528ff737df4c9f02
3+
size 39455232

fullnode/Changelog.md

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

3+
## 0.6.3
4+
*Nov. 11th*
5+
6+
** New Features**
7+
* Expose kafka version in publisher setting
8+
9+
** Improvements**
10+
* Lot Size enhencement
11+
* Change constrains of listing transaction
12+
* Massive performance improvements, especially for storage.
13+
* Improve the handle of zero balance accounts
14+
15+
**Tendermint Changes**
16+
Due to changes of underling Tendermint library, `ResponseCheckTx`, `ResponseDeliverTx`, `ResponseBeginBlock`, and `ResponseEndBlock` now include `Events` instead of `Tags`. Each Event contains a type and a list of attributes (list of key-value pairs) allowing for inclusion of multiple distinct events in each response.
17+
318
## 0.6.2
419
*Sep 12th*
520

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

0 commit comments

Comments
 (0)