Skip to content

Commit fe4c9de

Browse files
authored
Release063 mainnet (bnb-chain#157)
* add bnbcli * add bnbcli * add bnbcli * add lightd * add lightd * add lightd * add bnbchaind * add bnbchaind * add bnbchaind * add bnbchaind * add files * add files * add files
1 parent 2089b24 commit fe4c9de

30 files changed

+1535
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bnbcli filter=lfs diff=lfs merge=lfs -text

cli/prod/0.6.3/linux/bnbcli

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:a2bdee9b836accffac94705776d2f8a872b0eef6db11e31b56ede64318ded1ce
3+
size 40645168
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
a2bdee9b836accffac94705776d2f8a872b0eef6db11e31b56ede64318ded1ce ./bnbcli
3+
4+

cli/prod/0.6.3/mac/.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bnbcli filter=lfs diff=lfs merge=lfs -text

cli/prod/0.6.3/mac/bnbcli

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:2022b7d02892bdd6dda40573901471512827064d57b8f6bf4bad613628115ec4
3+
size 39159704

cli/prod/0.6.3/mac/sha256checksum

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
2022b7d02892bdd6dda40573901471512827064d57b8f6bf4bad613628115ec4 ./bnbcli
3+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bnbcli.exe filter=lfs diff=lfs merge=lfs -text

cli/prod/0.6.3/windows/bnbcli.exe

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

0 commit comments

Comments
 (0)