Skip to content

Commit 571c9bc

Browse files
committed
prodnet binary bnbchaind release:v0.9.0
1 parent e0e8648 commit 571c9bc

File tree

6 files changed

+203
-0
lines changed

6 files changed

+203
-0
lines changed

fullnode/Changelog.md

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

3+
## 0.9.0
4+
5+
*Mar. 31th 2022*
6+
7+
New release for BNB Beacon Chain Prodnet
8+
9+
**IMPROVEMENTS**
10+
11+
* [\#835](https://github.com/bnb-chain/node/pull/835) [Staking] Implement BEP128
12+
13+
314
## 0.9.0
415

516
*Mar. 10th 2022*
Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
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 = 1
21+
# Block height of BEP9 upgrade
22+
BEP9Height = 1
23+
# Block height of BEP10 upgrade
24+
BEP10Height = 1
25+
# Block height of BEP19Height upgrade
26+
BEP19Height = 1
27+
# Block height of BEP12 upgrade
28+
BEP12Height = 1
29+
# Block height of BEP3 upgrade
30+
BEP3Height = 1
31+
# Block height of FixSignBytesOverflow upgrade
32+
FixSignBytesOverflowHeight = 1
33+
# Block height of LotSizeOptimization upgrade
34+
LotSizeUpgradeHeight = 1
35+
# Block height of changing listing rule upgrade
36+
ListingRuleUpgradeHeight = 1
37+
# Block height of FixZeroBalanceHeight upgrade
38+
FixZeroBalanceHeight = 1
39+
BEP70Height = 1
40+
BEP67Height = 1
41+
BEP8Height = 1
42+
43+
LaunchBscUpgradeHeight = 1
44+
# Block height of Fix Distribution upgrade
45+
FixSideChainRewardDistribution = 2208000
46+
47+
# Block height of BEP82Height upgrade
48+
BEP82Height = 7841000
49+
# Block height of BEP84Height upgrade
50+
BEP84Height = 7841000
51+
# Block height of BEP87Height upgrade
52+
BEP87Height = 7841000
53+
# Block height of FixFailAckPackage upgrade
54+
FixFailAckPackageHeight = 7841000
55+
# Block height of Enable Account Scripts For CrossChain Transfer upgrade
56+
EnableAccountScriptsForCrossChainTransferHeight = 7841000
57+
#Block height of BEP128 upgrade
58+
BEP128Height = 234560000
59+
60+
[query]
61+
# ABCI query interface black list, suggested value: ["custom/gov/proposals", "custom/timelock/timelocks", "custom/atomicSwap/swapcreator", "custom/atomicSwap/swaprecipient"]
62+
ABCIQueryBlackList = []
63+
64+
[addr]
65+
# Bech32PrefixAccAddr defines the Bech32 prefix of an account's address
66+
bech32PrefixAccAddr = "tbnb"
67+
# Bech32PrefixAccPub defines the Bech32 prefix of an account's public key
68+
bech32PrefixAccPub = "bnbp"
69+
# Bech32PrefixValAddr defines the Bech32 prefix of a validator's operator address
70+
bech32PrefixValAddr = "bva"
71+
# Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key
72+
bech32PrefixValPub = "bvap"
73+
# Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address
74+
bech32PrefixConsAddr = "bca"
75+
# Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key
76+
bech32PrefixConsPub = "bcap"
77+
78+
##### publication related configurations #####
79+
[publication]
80+
# configurations ends with Kafka can be a semi-colon separated host-port list
81+
# Whether we want publish market data (this includes trades and order)
82+
publishOrderUpdates = false
83+
orderUpdatesTopic = "orders"
84+
orderUpdatesKafka = "127.0.0.1:9092"
85+
86+
# Whether we want publish account balance to notify browser db indexer persist latest account balance change
87+
publishAccountBalance = false
88+
accountBalanceTopic = "accounts"
89+
accountBalanceKafka = "127.0.0.1:9092"
90+
91+
# Whether we want publish order book changes
92+
publishOrderBook = false
93+
orderBookTopic = "orders"
94+
orderBookKafka = "127.0.0.1:9092"
95+
96+
# Whether we want publish block fee changes
97+
publishBlockFee = false
98+
blockFeeTopic = "accounts"
99+
blockFeeKafka = "127.0.0.1:9092"
100+
101+
# Whether we want publish transfers
102+
publishTransfer = false
103+
transferTopic = "transfers"
104+
transferKafka = "127.0.0.1:9092"
105+
106+
# Whether we want publish block
107+
publishBlock = false
108+
blockTopic = "block"
109+
blockKafka = "127.0.0.1:9092"
110+
111+
# Whether we want publish distribution
112+
publishDistributeReward = false
113+
distributeRewardTopic = "distribution"
114+
distributeRewardKafka = "127.0.0.1:9092"
115+
116+
# Whether we want publish staking
117+
publishStaking = false
118+
stakingTopic = "staking"
119+
stakingKafka = "127.0.0.1:9092"
120+
121+
# Whether we want publish slashing
122+
publishSlashing = false
123+
slashingTopic = "slashing"
124+
slashingKafka = "127.0.0.1:9092"
125+
126+
# Whether we want publish cross transfer
127+
publishCrossTransfer = false
128+
crossTransferTopic = "crossTransfer"
129+
crossTransferKafka = "127.0.0.1:9092"
130+
131+
## Whether we want publish mirror events
132+
publishMirror = false
133+
mirrorTopic = "mirror"
134+
mirrorKafka = "127.0.0.1:9092"
135+
136+
# Whether we want publish side proposals
137+
publishSideProposal = false
138+
sideProposalTopic = "sideProposal"
139+
sideProposalKafka = "127.0.0.1:9092"
140+
141+
# Whether we want publish breatheBlock
142+
publishBreatheBlock = false
143+
breatheBlockTopic = "breatheBlock"
144+
breatheBlockKafka = "127.0.0.1:9092"
145+
146+
# Global setting
147+
publicationChannelSize = 10000
148+
publishKafka = false
149+
publishLocal = false
150+
# max size in megabytes of marketdata json file before rotate
151+
localMaxSize = 1024
152+
# max days of marketdata json files to keep before deleted
153+
localMaxAge = 7
154+
155+
# whether the kafka open SASL_PLAINTEXT auth
156+
auth = false
157+
kafkaUserName = ""
158+
kafkaPassword = ""
159+
160+
# stop process when publish to Kafka failed
161+
stopOnKafkaFail = false
162+
163+
# please modify the default value into the version of Kafka you are using
164+
# kafka broker version, default (and most recommended) is 2.1.0. Minimal supported version could be 0.8.2.0
165+
kafkaVersion = "2.1.0"
166+
167+
[log]
168+
169+
# Write logs to console instead of file
170+
logToConsole = false
171+
172+
## The below parameters take effect only when logToConsole is false
173+
# Log file root, if not set, use home path
174+
logFileRoot = ""
175+
# Log file path relative to log file root path
176+
logFilePath = "bnc.log"
177+
# Number of logs keep in memory before writing to file
178+
logBuffSize = 10000
179+
[cross_chain]
180+
ibcChainId = 1
181+
bscChainId = "chapel"
182+
bscIbcChainId = 97
183+
[dex]
184+
BUSDSymbol = "BUSD-BAF"
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:5fab02cdf154a74c21459e8df03a84c4469b329bd72d18a9530d5fe7075041f0
3+
size 43282056
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
5fab02cdf154a74c21459e8df03a84c4469b329bd72d18a9530d5fe7075041f0 bnbchaind

fullnode/prod/0.9.0/mac/bnbchaind

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:a59a37a5b6f3a8307577b4e3e4f6ba734ca134601ba5082c61390d6e0c020406
3+
size 41921442
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
a59a37a5b6f3a8307577b4e3e4f6ba734ca134601ba5082c61390d6e0c020406 bnbchaind

0 commit comments

Comments
 (0)