Skip to content

Commit d57d5ac

Browse files
chainwhispersuyu
andauthored
Release0.7.1 (bnb-chain#216)
* edit changelog * add binaries Co-authored-by: suyu <[email protected]>
1 parent f1af0c6 commit d57d5ac

File tree

10 files changed

+1347
-0
lines changed

10 files changed

+1347
-0
lines changed

fullnode/Changelog.md

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

3+
## 0.7.1
4+
5+
**Bug Fix**
6+
* Fix bugs with delist
7+
8+
39
## 0.7.0
410
*June. 3rd*
511

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

0 commit comments

Comments
 (0)