Skip to content

Commit f79afa4

Browse files
chainwhispersuyu
andauthored
add Binaries for v0.7.0 (bnb-chain#209)
* add binaries v0.7.0 * add binaries v0.7.0 * add binaries v0.7.0 Co-authored-by: suyu <[email protected]>
1 parent 959f5fc commit f79afa4

File tree

16 files changed

+1366
-0
lines changed

16 files changed

+1366
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
254e6d43c4e768c38d545214fce7562bed05a884e54ff5183598d132492b0da8 tbnbcli

cli/testnet/0.7.0/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:254e6d43c4e768c38d545214fce7562bed05a884e54ff5183598d132492b0da8
3+
size 38229987
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7787b60a8c613ea433b92b7e61bfb855b8c35866ac6ef9d90495ef3e1c4abd2f tbnbcli

cli/testnet/0.7.0/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:7787b60a8c613ea433b92b7e61bfb855b8c35866ac6ef9d90495ef3e1c4abd2f
3+
size 45378428
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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 0.7.0
4+
*June. 3rd*
5+
6+
**New Features**
7+
8+
* BEP8 - Mini-BEP2 token features
9+
* BEP70 - Support busd pair listing and trading
10+
11+
Improvements
12+
* BEP67 Price-based Order Expiration
13+
* Add pendingMatch flag to orderbook query response
14+
315
## 0.6.3-hf.2
416
*June. 1st*
517

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)