From 1a08a95174b9aa26bb01e1deda9efd8827db42cd Mon Sep 17 00:00:00 2001 From: huangsuyu <48426112+huangsuyu@users.noreply.github.com> Date: Thu, 21 Nov 2019 20:48:01 +0800 Subject: [PATCH] Release063 hotfix (#158) * add bbchaind mac * add bbchaind linux * add bbchaind windows * add bbchaind mac * add bbchaind mac * add configs * add bbchaind linux * add bbchaind linux --- fullnode/prod/0.6.3-hotfix/config/app.toml | 102 ++ fullnode/prod/0.6.3-hotfix/config/config.toml | 405 ++++++++ .../prod/0.6.3-hotfix/config/genesis.json | 975 ++++++++++++++++++ fullnode/prod/0.6.3-hotfix/linux/bnbchaind | 3 + .../prod/0.6.3-hotfix/linux/sha256checksum | 1 + fullnode/prod/0.6.3-hotfix/mac/bnbchaind | 3 + fullnode/prod/0.6.3-hotfix/mac/sha256checksum | 1 + .../prod/0.6.3-hotfix/windows/bnbchaind.exe | 3 + .../prod/0.6.3-hotfix/windows/sha256checksum | 1 + 9 files changed, 1494 insertions(+) create mode 100644 fullnode/prod/0.6.3-hotfix/config/app.toml create mode 100644 fullnode/prod/0.6.3-hotfix/config/config.toml create mode 100644 fullnode/prod/0.6.3-hotfix/config/genesis.json create mode 100755 fullnode/prod/0.6.3-hotfix/linux/bnbchaind create mode 100644 fullnode/prod/0.6.3-hotfix/linux/sha256checksum create mode 100755 fullnode/prod/0.6.3-hotfix/mac/bnbchaind create mode 100644 fullnode/prod/0.6.3-hotfix/mac/sha256checksum create mode 100755 fullnode/prod/0.6.3-hotfix/windows/bnbchaind.exe create mode 100644 fullnode/prod/0.6.3-hotfix/windows/sha256checksum diff --git a/fullnode/prod/0.6.3-hotfix/config/app.toml b/fullnode/prod/0.6.3-hotfix/config/app.toml new file mode 100644 index 0000000..4763e8f --- /dev/null +++ b/fullnode/prod/0.6.3-hotfix/config/app.toml @@ -0,0 +1,102 @@ +# This is a TOML config file. +# For more information, see https://github.com/toml-lang/toml + +[base] +# Interval blocks of breathe block, if breatheBlockInterval is 0, breathe block will be created every day. +breatheBlockInterval = 0 +# Size of account cache +accountCacheSize = 30000 +# Size of signature cache +signatureCacheSize = 30000 +# Running mode when start up, 0: Normal, 1: TransferOnly, 2: RecoverOnly +startMode = 0 +# Concurrency of OrderKeeper, should be power of 2 +orderKeeperConcurrency = 2 +# Days count back for breathe block +breatheBlockDaysCountBack = 7 + +[upgrade] +# Block height of BEP6 upgrade +BEP6Height = 20300000 +# Block height of BEP9 upgrade +BEP9Height = 20300000 +# Block height of BEP10 upgrade +BEP10Height = 20300000 +# Block height of BEP19 upgrade +BEP19Height = 20300000 +# Block height of BEP12 upgrade +BEP12Height = 25120000 +# Block height of BEP3 upgrade +BEP3Height = 41277000 +# Block height of FixSignBytesOverflow upgrade +FixSignBytesOverflowHeight = 51467800 +# Block height of LotSizeOptimization upgrade +LotSizeUpgradeHeight = 51467800 +# Block height of changing listing rule upgrade +ListingRuleUpgradeHeight = 51467800 +# Block height of FixZeroBalanceHeight upgrade +FixZeroBalanceHeight = 51467800 + +[addr] +# Bech32PrefixAccAddr defines the Bech32 prefix of an account's address +bech32PrefixAccAddr = "bnb" +# Bech32PrefixAccPub defines the Bech32 prefix of an account's public key +bech32PrefixAccPub = "bnbp" +# Bech32PrefixValAddr defines the Bech32 prefix of a validator's operator address +bech32PrefixValAddr = "bva" +# Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key +bech32PrefixValPub = "bvap" +# Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address +bech32PrefixConsAddr = "bca" +# Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key +bech32PrefixConsPub = "bcap" + +##### publication related configurations ##### +[publication] +# configurations ends with Kafka can be a semi-colon separated host-port list +# Whether we want publish market data (this includes trades and order) +publishOrderUpdates = true +orderUpdatesTopic = "orders" +orderUpdatesKafka = "127.0.0.1:9092" + +# Whether we want publish account balance to notify browser db indexer persist latest account balance change +publishAccountBalance = true +accountBalanceTopic = "accounts" +accountBalanceKafka = "127.0.0.1:9092" + +# Whether we want publish order book changes +publishOrderBook = true +orderBookTopic = "orders" +orderBookKafka = "127.0.0.1:9092" + +# Whether we want publish block fee changes +publishBlockFee = true +blockFeeTopic = "accounts" +blockFeeKafka = "127.0.0.1:9092" + +# Whether we want publish transfers +publishTransfer = true +transferTopic = "transfers" +transferKafka = "127.0.0.1:9092" + +# Global setting +publicationChannelSize = "10000" +publishKafka = false +publishLocal = true +# max size in megabytes of marketdata json file before rotate +localMaxSize = 1024 +# max days of marketdata json files to keep before deleted +localMaxAge = 7 + +[log] + +# Write logs to console instead of file +logToConsole = false + +## The below parameters take effect only when logToConsole is false +# Log file root, if not set, use home path +logFileRoot = "" +# Log file path relative to log file root path +logFilePath = "bnc.log" +# Number of logs keep in memory before writing to file +logBuffSize = 10000 diff --git a/fullnode/prod/0.6.3-hotfix/config/config.toml b/fullnode/prod/0.6.3-hotfix/config/config.toml new file mode 100644 index 0000000..550809a --- /dev/null +++ b/fullnode/prod/0.6.3-hotfix/config/config.toml @@ -0,0 +1,405 @@ +# This is a TOML config file. +# For more information, see https://github.com/toml-lang/toml + +##### main base config options ##### + +# TCP or UNIX socket address of the ABCI application, +# or the name of an ABCI application compiled in with the Tendermint binary +proxy_app = "tcp://127.0.0.1:28658" + +# A custom human readable name for this node +moniker = "xxx" + +# If this node is many blocks behind the tip of the chain, FastSync +# allows them to catchup quickly by downloading blocks in parallel +# and verifying their commits +fast_sync = true + +# As state sync is an experimental feature, this switch can totally disable it on core network nodes (validator, witness) +state_sync_reactor = true + +# If this node is many days behind the tip of the chain, StateSyncHeight +# allows them to catchup quickly by downloading app state (without historical blocks) +# in parallel and start syncing block afterwards +# <0 - turn off state sync +# =0 - sync from peer's latest height +# >0 - sync from that height +state_sync_height = 0 + +# Only take effect when HotSyncReactor is true. +# If true, will sync blocks use hot sync protocol +# If false, still use tendermint consensus protocol, but can still handle other peers sync request. +hot_sync = true + +# The max wait time for subscribe a block. +# Only take effect when hot_sync is true +hot_sync_timeout = "3s" + +# It will benefit fullnode and witness who do not need consensus by saving network and cpu resources. +# Recommend the node that is not validator to turn on. +hot_sync_reactor = true + +# Database backend: goleveldb | cleveldb | boltdb +# * goleveldb (github.com/syndtr/goleveldb - most popular implementation) +# - pure go +# - stable +# * cleveldb (uses levigo wrapper) +# - fast +# - requires gcc +# - use cleveldb build tag (go build -tags cleveldb) +# * boltdb (uses etcd's fork of bolt - github.com/etcd-io/bbolt) +# - EXPERIMENTAL +# - may be faster is some use-cases (random reads - indexer) +# - use boltdb build tag (go build -tags boltdb) +db_backend = "goleveldb" + +# Database directory +db_dir = "data" + +# Output level for logging, including package level options +log_level = "statesync:info,blockchain:info,main:info,paramHub:info,dex:info,dexkeeper:info,state:info,token:info,pub:info,consensus:info,*:error" + +# Output format: 'plain' (colored text) or 'json' +log_format = "plain" + +##### additional base config options ##### + +# Path to the JSON file containing the initial validator set and other meta data +genesis_file = "config/genesis.json" + +# Path to the JSON file containing the private key to use as a validator in the consensus protocol +priv_validator_key_file = "config/priv_validator_key.json" + +# Path to the JSON file containing the last sign state of a validator +priv_validator_state_file = "data/priv_validator_state.json" + +# TCP or UNIX socket address for Tendermint to listen on for +# connections from an external PrivValidator process +priv_validator_laddr = "" + +# Path to the JSON file containing the private key to use for node authentication in the p2p protocol +node_key_file = "config/node_key.json" + +# Mechanism to connect to the ABCI application: socket | grpc +abci = "socket" + +# TCP or UNIX socket address for the profiling server to listen on +prof_laddr = ":9060" + +# If true, query the ABCI app on connecting to a new peer +# so the app can decide if we should keep the connection or not +filter_peers = false + +# If false, will not check appHash when apply block +with_app_stat = true + +##### advanced configuration options ##### + +##### rpc server configuration options ##### +[rpc] + +# TCP or UNIX socket address for the RPC server to listen on +laddr = "tcp://0.0.0.0:27147" + +# A list of origins a cross-domain request can be executed from +# Default value '[]' disables cors support +# Use '["*"]' to allow any origin +cors_allowed_origins = [] + +# A list of methods the client is allowed to use with cross-domain requests +cors_allowed_methods = ["HEAD", "GET", "POST", ] + +# A list of non simple headers the client is allowed to use with cross-domain requests +cors_allowed_headers = ["Origin", "Accept", "Content-Type", "X-Requested-With", "X-Server-Time", ] + +# TCP or UNIX socket address for the gRPC server to listen on +# NOTE: This server only supports /broadcast_tx_commit +grpc_laddr = "" + +# Maximum number of simultaneous connections. +# Does not include RPC (HTTP&WebSocket) connections. See max_open_connections +# If you want to accept a larger number than the default, make sure +# you increase your OS limits. +# 0 - unlimited. +# Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files} +# 1024 - 40 - 10 - 50 = 924 = ~900 +grpc_max_open_connections = 900 + +# Activate unsafe RPC commands like /dial_seeds and /unsafe_flush_mempool +unsafe = false + +# Maximum number of simultaneous connections (including WebSocket). +# Does not include gRPC connections. See grpc_max_open_connections +# If you want to accept a larger number than the default, make sure +# you increase your OS limits. +# 0 - unlimited. +# Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files} +# 1024 - 40 - 10 - 50 = 924 = ~900 +max_open_connections = 900 + +# Websocket handler will be disabled if set true +disable_websocket = false + +# Maximum number of go routine to process websocket request. +# 1 - process websocket request synchronously. +# 10 - default size. +# Should be {WebsocketPoolSpawnSize} =< {WebsocketPoolMaxSize} +websocket_pool_size = 10 + +# The queued buffer for workers to process requests. +# 10 -default +websocket_pool_queue_size = 10 + +# The initial size of goroutines in pool. +# 1 - process websocket request synchronously. +# 5 - default size +# Should be {WebsocketPoolSpawnSize} =< {WebsocketPoolMaxSize} +websocket_pool_spawn_size = 5 + +# Maximum number of unique clientIDs that can /subscribe +# If you're using /broadcast_tx_commit, set to the estimated maximum number +# of broadcast_tx_commit calls per block. +max_subscription_clients = 100 + +# Maximum number of unique queries a given client can /subscribe to +# If you're using GRPC (or Local RPC client) and /broadcast_tx_commit, set to +# the estimated # maximum number of broadcast_tx_commit calls per block. +max_subscriptions_per_client = 5 + +# How long to wait for a tx to be committed during /broadcast_tx_commit. +# WARNING: Using a value larger than 10s will result in increasing the +# global HTTP write timeout, which applies to all connections and endpoints. +# See https://github.com/tendermint/tendermint/issues/3435 +timeout_broadcast_tx_commit = "10s" + +# Maximum size of request body, in bytes +max_body_bytes = 1000000 + +# Maximum size of request header, in bytes +max_header_bytes = 1048576 + +# The path to a file containing certificate that is used to create the HTTPS server. +# Migth be either absolute path or path related to tendermint's config directory. +# If the certificate is signed by a certificate authority, +# the certFile should be the concatenation of the server's certificate, any intermediates, +# and the CA's certificate. +# NOTE: both tls_cert_file and tls_key_file must be present for Tendermint to create HTTPS server. Otherwise, HTTP server is run. +tls_cert_file = "" + +# The path to a file containing matching private key that is used to create the HTTPS server. +# Migth be either absolute path or path related to tendermint's config directory. +# NOTE: both tls_cert_file and tls_key_file must be present for Tendermint to create HTTPS server. Otherwise, HTTP server is run. +tls_key_file = "" + +##### peer to peer configuration options ##### +[p2p] + +# Address to listen for incoming connections +laddr = "tcp://0.0.0.0:27146" + +# Address to advertise to peers for them to dial +# If empty, will use the same port as the laddr, +# and will introspect on the listener or use UPnP +# to figure out the address. +external_address = "" + +# Comma separated list of seed nodes to connect to +seeds = "b323708b0bd429a95154ff0a287f0f42f432cb62@34.247.169.233:27146,bb721fe089e83d42bcb8f629f8efe0e4af888fde@52.197.88.253:27146,289f680c0c78465dbf1d86c2260dd032d4541a4c@34.227.165.88:27146" + +# Comma separated list of nodes to keep persistent connections to +persistent_peers = "" +# UPNP port forwarding +upnp = false + +# Path to address book +addr_book_file = "config/addrbook.json" + +# Set true for strict address routability rules +# Set false for private or local networks +addr_book_strict = false + +# Maximum number of inbound peers +max_num_inbound_peers = 40 + +# Maximum number of outbound peers to connect to, excluding persistent peers +max_num_outbound_peers = 10 + +# Time to wait before flushing messages out on the connection +flush_throttle_timeout = "10ms" + +# Maximum size of a message packet payload, in bytes +max_packet_msg_payload_size = 10485760 + +# Maximum num of keys a state sync request ask for +keys_per_request = 1500 + +# Rate at which packets can be sent, in bytes/second +send_rate = 52428800 + +# Rate at which packets can be received, in bytes/second +recv_rate = 102428800 + +# Interval to send pings +ping_interval = "1m0s" + +# Maximum wait time for pongs +pong_timeout = "45s" + +# Set true to enable the peer-exchange reactor +pex = true + +# Seed mode, in which node constantly crawls the network and looks for +# peers. If another node asks it for addresses, it responds and disconnects. +# +# Does not work if the peer-exchange reactor is disabled. +seed_mode = false + +# Comma separated list of peer IDs to keep private (will not be gossiped to other peers) +private_peer_ids = "" + +# Toggle to disable guard against peers connecting from the same ip. +allow_duplicate_ip = true + +# Peer connection configuration. +handshake_timeout = "20s" +dial_timeout = "3s" + +##### dbcache configuration options ##### +[dbcache] +# OpenFilesCacheCapacity defines the capacity of the open files caching. +open_files_cache_capacity = 1024 + +# BlockCacheCapacity defines the capacity of the 'sorted table' block caching. +block_cache_capacity = 1073741824 + +# WriteBuffer defines maximum size of a 'memdb' before flushed to 'sorted table'. +write_buffer = 67108864 + +# Filter defines an 'effective filter' to use. An 'effective filter' +# if defined will be used to generate per-table filter block. +# Greater than 0 would creates a new initialized bloom filter for given bitsPerKey. +bits_per_key = 10 + +##### mempool configuration options ##### +[mempool] + +recheck = true +broadcast = true +wal_dir = "" + +# If set true, will only broadcast transactions to persistent peers. +only_to_persistent = false + +# If set true, only the transaction from none persistent peer will broadcast. +skip_tx_from_persistent = false + +# Maximum number of transactions in the mempool +size = 5000 + +# Limit the total size of all txs in the mempool. +# This only accounts for raw transactions (e.g. given 1MB transactions and +# max_txs_bytes=5MB, mempool will only accept 5 transactions). +max_txs_bytes = 1073741824 + +# Size of the cache (used to filter transactions we saw earlier) in transactions +cache_size = 10000 + +# Maximum size of a single transaction. +# NOTE: the max size of a tx transmitted over the network is {max_tx_bytes} + {amino overhead}. +max_tx_bytes = 1048576 + +##### fast sync configuration options ##### +[fastsync] + +# Fast Sync version to use: +# 1) "v0" (default) - the legacy fast sync implementation +# 2) "v1" - refactor of v0 version for better testability +version = "v0" + +##### consensus configuration options ##### +[consensus] + +wal_file = "data/cs.wal/wal" + +timeout_propose = "3s" +timeout_propose_delta = "500ms" +timeout_prevote = "1s" +timeout_prevote_delta = "500ms" +timeout_precommit = "1s" +timeout_precommit_delta = "500ms" +timeout_commit = "1s" + +# Make progress as soon as we have all the precommits (as if TimeoutCommit = 0) +skip_timeout_commit = true + +# EmptyBlocks mode and possible interval between empty blocks +create_empty_blocks = true +create_empty_blocks_interval = "0s" + +# Reactor sleep duration parameters +peer_gossip_sleep_duration = "10ms" +peer_query_maj23_sleep_duration = "2s" + +# Block time parameters. Corresponds to the minimum time increment between consecutive blocks. +blocktime_iota = "0s" + +##### transactions indexer configuration options ##### +[tx_index] + +# What indexer to use for transactions +# +# Options: +# 1) "null" +# 2) "kv" (default) - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend). +indexer = "kv" + +# Operator ["<", ">", ">=", "<="] belongs to range query operator. +# Notice: only enable it in trust environment. +enable_range_query = true + +# Comma-separated list of tags to index (by default the only tag is "tx.hash") +# +# You can also index transactions by height by adding "tx.height" tag here. +# +# It's recommended to index only a subset of tags due to possible memory +# bloat. This is, of course, depends on the indexer's DB and the volume of +# transactions. +index_tags = "" + +# When set to true, tells indexer to index all tags (predefined tags: +# "tx.hash", "tx.height" and all tags from DeliverTx responses). +# +# Note this may be not desirable (see the comment above). IndexTags has a +# precedence over IndexAllTags (i.e. when given both, IndexTags will be +# indexed). +index_all_tags = false + +##### block indexer configuration options ##### +[block_index] + +# What indexer to use for blocks +# +# Options: +# 1) "null" +# 2) "kv" (default) - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend). +indexer = "null" + +##### instrumentation configuration options ##### +[instrumentation] + +# When true, Prometheus metrics are served under /metrics on +# PrometheusListenAddr. +# Check out the documentation for the list of available metrics. +prometheus = false + +# Address to listen for Prometheus collector(s) connections +prometheus_listen_addr = ":28660" + +# Maximum number of simultaneous connections. +# If you want to accept a larger number than the default, make sure +# you increase your OS limits. +# 0 - unlimited. +max_open_connections = 3 + +# Instrumentation namespace +namespace = "tendermint" diff --git a/fullnode/prod/0.6.3-hotfix/config/genesis.json b/fullnode/prod/0.6.3-hotfix/config/genesis.json new file mode 100644 index 0000000..10ce1ff --- /dev/null +++ b/fullnode/prod/0.6.3-hotfix/config/genesis.json @@ -0,0 +1,975 @@ +{ + "genesis_time": "2019-04-18T05:59:26.228734998Z", + "chain_id": "Binance-Chain-Tigris", + "consensus_params": { + "block_size": { + "max_bytes": "1048576", + "max_gas": "-1" + }, + "evidence": { + "max_age": "100000" + }, + "validator": { + "pub_key_types": [ + "ed25519" + ] + } + }, + "app_hash": "", + "app_state": { + "tokens": [ + { + "name": "Binance Chain Native Token", + "symbol": "BNB", + "total_supply": "20000000000000000", + "owner": "bnb1ultyhpw2p2ktvr68swz56570lgj2rdsadq3ym2", + "mintable": false + } + ], + "accounts": [ + { + "name": "Aconcagua", + "address": "bnb1y888axmhzz6yjj464syfy68mkhzy9phlv8fzac", + "consensus_addr": "" + }, + { + "name": "Aconcagua", + "address": "bnb1kdx4xkktr35j2mpxncvtsshswj5gq577me7lx4", + "consensus_addr": "A71E5CD078B8C5C7B1AF88BCE84DD70B0557D93E" + }, + { + "name": "Ararat", + "address": "bnb15hx3frkdu7vajy2eulu80vl97vehnhyavu927v", + "consensus_addr": "" + }, + { + "name": "Ararat", + "address": "bnb1slq53dua0nj3e6y949u4yc3erus0t68k37jcwh", + "consensus_addr": "B7707D9F593C62E85BB9E1A2366D12A97CD5DFF2" + }, + { + "name": "Carrauntoohil", + "address": "bnb1jw9xup8arde2jzarzcs2fv49hh28uad92m4ke0", + "consensus_addr": "" + }, + { + "name": "Carrauntoohil", + "address": "bnb139l5umk42mam3znr568gw706fwvp485kw5zks3", + "consensus_addr": "1175946A48EAA473868A0A6F52E6C66CCAF472EA" + }, + { + "name": "Elbrus", + "address": "bnb1tpagqqqx36gq09kzw4f5a3a9sk3tq54dpl5ldn", + "consensus_addr": "" + }, + { + "name": "Elbrus", + "address": "bnb1l8e7nvtl0jn7jps8mc9usum6t3wsdr0a736q9x", + "consensus_addr": "7235EF143D20FC0ABC427615D83014BB02D7C06C" + }, + { + "name": "Everest", + "address": "bnb19hunw9ps8n9tkrp2j64jvheezgqmfc2eyrxd7a", + "consensus_addr": "" + }, + { + "name": "Everest", + "address": "bnb1z79qgmv2e9xm6p24f2el0a2evxzyvnsnps0mvx", + "consensus_addr": "B0FBB52FF7EE93CC476DFE6B74FA1FC88584F30D" + }, + { + "name": "Fuji", + "address": "bnb19klje94mnu53wj7pmrk0zmtpwgr0uz8th0fcvw", + "consensus_addr": "" + }, + { + "name": "Fuji", + "address": "bnb1atdghwrh7wy36frauvl9mem9x4rxhe85fx33t6", + "consensus_addr": "A9157B3FA6EB4C1E396B9B746E95327A07DC42E5" + }, + { + "name": "Gahinga", + "address": "bnb17kfuzeza2kn46yqx4twxxmlw2jk2ywp5x4gze2", + "consensus_addr": "" + }, + { + "name": "Gahinga", + "address": "bnb1h9ymecpakr8p8lhchtah2xxx7x4xq099umclqu", + "consensus_addr": "71F253E6FEA9EDD4B4753F5483549FE4F0F3A21C" + }, + { + "name": "Kita", + "address": "bnb13m056plt2646zse2mwxfft92xawnky4nmncxc3", + "consensus_addr": "" + }, + { + "name": "Kita", + "address": "bnb167z5qvur7xu85q885l906dgcwmgsvm3ppdarpf", + "consensus_addr": "414FB3BBA216AF84C47E07D6EBAA2DCFC3563A2F" + }, + { + "name": "Scafell", + "address": "bnb16k0gajcczwgymfkk0zsysjzl0sxyxdfckplxlr", + "consensus_addr": "" + }, + { + "name": "Scafell", + "address": "bnb10fg9t982xa35ddy6v8f5y06hf9hmx6tte4xlpa", + "consensus_addr": "14CFCE69B645F3F88BAF08EA5B77FA521E4480F9" + }, + { + "name": "Seoraksan", + "address": "bnb1xaef2agzycsww32fqyggnk5xgqxs8780vfv2kh", + "consensus_addr": "" + }, + { + "name": "Seoraksan", + "address": "bnb1u5mvgkqt9rmj4fut60rnpqfv0a865pwnn90v9q", + "consensus_addr": "17B42E8F284D3CA0E420262F89CD76C749BB12C9" + }, + { + "name": "Zugspitze", + "address": "bnb1jstexazk7zateuwzzwllswu4j3dsllu3dgte4m", + "consensus_addr": "" + }, + { + "name": "Zugspitze", + "address": "bnb1aanuahm2c9z5syvwsk4792vddtp74jkme5d38l", + "consensus_addr": "3CD4AABABDDEB7ABFEA9618732E331077A861D2B" + } + ], + "dex": {}, + "param": { + "fees": [ + { + "type": "params/FixedFeeParams", + "value": { + "msg_type": "submit_proposal", + "fee": "1000000000", + "fee_for": 1 + } + }, + { + "type": "params/FixedFeeParams", + "value": { + "msg_type": "deposit", + "fee": "125000", + "fee_for": 1 + } + }, + { + "type": "params/FixedFeeParams", + "value": { + "msg_type": "vote", + "fee": "0", + "fee_for": 3 + } + }, + { + "type": "params/FixedFeeParams", + "value": { + "msg_type": "create_validator", + "fee": "1000000000", + "fee_for": 1 + } + }, + { + "type": "params/FixedFeeParams", + "value": { + "msg_type": "remove_validator", + "fee": "100000000", + "fee_for": 1 + } + }, + { + "type": "params/FixedFeeParams", + "value": { + "msg_type": "dexList", + "fee": "200000000000", + "fee_for": 2 + } + }, + { + "type": "params/FixedFeeParams", + "value": { + "msg_type": "orderNew", + "fee": "0", + "fee_for": 3 + } + }, + { + "type": "params/FixedFeeParams", + "value": { + "msg_type": "orderCancel", + "fee": "0", + "fee_for": 3 + } + }, + { + "type": "params/FixedFeeParams", + "value": { + "msg_type": "issueMsg", + "fee": "100000000000", + "fee_for": 2 + } + }, + { + "type": "params/FixedFeeParams", + "value": { + "msg_type": "mintMsg", + "fee": "20000000000", + "fee_for": 2 + } + }, + { + "type": "params/FixedFeeParams", + "value": { + "msg_type": "tokensBurn", + "fee": "100000000", + "fee_for": 1 + } + }, + { + "type": "params/FixedFeeParams", + "value": { + "msg_type": "tokensFreeze", + "fee": "1000000", + "fee_for": 1 + } + }, + { + "type": "params/TransferFeeParams", + "value": { + "fixed_fee_params": { + "msg_type": "send", + "fee": "62500", + "fee_for": 1 + }, + "multi_transfer_fee": "50000", + "lower_limit_as_multi": "2" + } + }, + { + "type": "params/DexFeeParam", + "value": { + "dex_fee_fields": [ + { + "fee_name": "ExpireFee", + "fee_value": "50000" + }, + { + "fee_name": "ExpireFeeNative", + "fee_value": "10000" + }, + { + "fee_name": "CancelFee", + "fee_value": "50000" + }, + { + "fee_name": "CancelFeeNative", + "fee_value": "10000" + }, + { + "fee_name": "FeeRate", + "fee_value": "1000" + }, + { + "fee_name": "FeeRateNative", + "fee_value": "400" + }, + { + "fee_name": "IOCExpireFee", + "fee_value": "25000" + }, + { + "fee_name": "IOCExpireFeeNative", + "fee_value": "5000" + } + ] + } + } + ] + }, + "stake": { + "pool": { + "loose_tokens": "20000000000000000", + "bonded_tokens": "0" + }, + "params": { + "unbonding_time": "604800000000000", + "max_validators": 21, + "bond_denom": "BNB" + }, + "validators": null, + "bonds": null + }, + "gov": { + "starting_proposalID": "1", + "deposit_params": { + "min_deposit": [ + { + "denom": "BNB", + "amount": "100000000000" + } + ], + "max_deposit_period": "172800000000000" + }, + "tally_params": { + "quorum": "50000000", + "threshold": "50000000", + "veto": "33400000" + } + }, + "gentxs": [ + { + "type": "auth/StdTx", + "value": { + "msg": [ + { + "type": "cosmos-sdk/MsgCreateValidatorProposal", + "value": { + "MsgCreateValidator": { + "Description": { + "moniker": "Aconcagua", + "identity": "", + "website": "", + "details": "" + }, + "Commission": { + "rate": "0", + "max_rate": "0", + "max_change_rate": "0" + }, + "delegator_address": "bnb1y888axmhzz6yjj464syfy68mkhzy9phlv8fzac", + "validator_address": "bva1kdx4xkktr35j2mpxncvtsshswj5gq577m9l0c3", + "pubkey": { + "type": "tendermint/PubKeyEd25519", + "value": "Xj/NowvRnUXEtzaI2jXn2h/OfGhZssHyDtUgLSQUTj4=" + }, + "delegation": { + "denom": "BNB", + "amount": "1000000000000" + } + }, + "proposal_id": "0" + } + } + ], + "signatures": [ + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "AoeLfC96urAqZtAxg7cCSXh/+tRxGMthLbvXFu/w9nO0" + }, + "signature": "b0wYwS7fJcpg0TerEoH22T1CqcZMc3NHm0BusK/+LPMPtqHQuOkbIlPUM12r1iXJjKZhPM/ItFveKIo1oFtfUg==", + "account_number": "0", + "sequence": "0" + }, + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "AreZUwAj6OlZI+xHZm66K4Nj5G/eNei768x77fdFz1fc" + }, + "signature": "GefEmRyOFk5jGpIZnaGNAOubzPn+wedg62mf8m8yV5cWK7+SByBCcCTHQ+7kB+mkMjOR1AIuXC7Xfou5Q/QhgQ==", + "account_number": "0", + "sequence": "0" + } + ], + "memo": "", + "source": "0", + "data": null + } + }, + { + "type": "auth/StdTx", + "value": { + "msg": [ + { + "type": "cosmos-sdk/MsgCreateValidatorProposal", + "value": { + "MsgCreateValidator": { + "Description": { + "moniker": "Ararat", + "identity": "", + "website": "", + "details": "" + }, + "Commission": { + "rate": "0", + "max_rate": "0", + "max_change_rate": "0" + }, + "delegator_address": "bnb15hx3frkdu7vajy2eulu80vl97vehnhyavu927v", + "validator_address": "bva1slq53dua0nj3e6y949u4yc3erus0t68k3zngsn", + "pubkey": { + "type": "tendermint/PubKeyEd25519", + "value": "cfLXuOwci5mmU0KbARjNIB95T0CdD+pNZbG2YvKwAGM=" + }, + "delegation": { + "denom": "BNB", + "amount": "1000000000000" + } + }, + "proposal_id": "0" + } + } + ], + "signatures": [ + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "Akr730PfaqtT0SKSy6LSPMeJwZ1xMpZs79e7LeSVnHnN" + }, + "signature": "pZTynPBRN+W0kDlgTK88NazxXoGK5YpLqGUKrhhDqB16f//hr1/zWQdgYxv0LcA+vtW+UF78aVx/dXi0SQEHyw==", + "account_number": "0", + "sequence": "0" + }, + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "Ap2OZ7JzK6o7+uIgcxpXwex+DyZfewmyWi6W4l+/jAD4" + }, + "signature": "usP5kTrOrFGvK5adragmBqdGusM+of5GmFL+PUUG//0MLT6Ark6tvVESoCCuOvYxjP0zdHcLh+DagNucw1sQQQ==", + "account_number": "0", + "sequence": "0" + } + ], + "memo": "", + "source": "0", + "data": null + } + }, + { + "type": "auth/StdTx", + "value": { + "msg": [ + { + "type": "cosmos-sdk/MsgCreateValidatorProposal", + "value": { + "MsgCreateValidator": { + "Description": { + "moniker": "Carrauntoohil", + "identity": "", + "website": "", + "details": "" + }, + "Commission": { + "rate": "0", + "max_rate": "0", + "max_change_rate": "0" + }, + "delegator_address": "bnb1jw9xup8arde2jzarzcs2fv49hh28uad92m4ke0", + "validator_address": "bva139l5umk42mam3znr568gw706fwvp485kwgrxw4", + "pubkey": { + "type": "tendermint/PubKeyEd25519", + "value": "03adih94tMF6ll96MNQYH6u9H5afRtPI6Dta1IRUIdg=" + }, + "delegation": { + "denom": "BNB", + "amount": "1000000000000" + } + }, + "proposal_id": "0" + } + } + ], + "signatures": [ + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "A5YeM0SMZacFSpOLDJVpJ8ovJBE2GiZhHFYMhCaVAzjT" + }, + "signature": "5J9/MSE7tPXUP0pPlz21WOxjQn0rmIwZUzHFXj8+2VQ1qY3q8hGrIUTi8siNXV1G7gh8BzF828ljIRIWxWMzpw==", + "account_number": "0", + "sequence": "0" + }, + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "A+xavrLLttWguYDOutmEv6WmrBmaaqHA68zM6gzzlIgx" + }, + "signature": "EL5Jky6T3eF4ujHwyYJUpeE+ceL8ha1J+P9QSCwdZZtCobb4FeKhLDx+K0td7sf27DRJ64GK5+C/7yCi+JQMdQ==", + "account_number": "0", + "sequence": "0" + } + ], + "memo": "", + "source": "0", + "data": null + } + }, + { + "type": "auth/StdTx", + "value": { + "msg": [ + { + "type": "cosmos-sdk/MsgCreateValidatorProposal", + "value": { + "MsgCreateValidator": { + "Description": { + "moniker": "Elbrus", + "identity": "", + "website": "", + "details": "" + }, + "Commission": { + "rate": "0", + "max_rate": "0", + "max_change_rate": "0" + }, + "delegator_address": "bnb1tpagqqqx36gq09kzw4f5a3a9sk3tq54dpl5ldn", + "validator_address": "bva1l8e7nvtl0jn7jps8mc9usum6t3wsdr0a7dmsmz", + "pubkey": { + "type": "tendermint/PubKeyEd25519", + "value": "6B03l+BUTDpxjh8F8Pt4IhLiSOeEwahRvofneuDbIw4=" + }, + "delegation": { + "denom": "BNB", + "amount": "1000000000000" + } + }, + "proposal_id": "0" + } + } + ], + "signatures": [ + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "Ahn7MRUZfNKd9Y7FyB1jSn1vC+VMpmnOwq4I+bK7XM4j" + }, + "signature": "OzRMZ/u5F28DLRjyCQh4eBZ8dDGTiSh3A+Np6Is0sv1fBD8OgdfLi9nwBYjYGS+7cAlIMiUlOhDuijPU+HkaPw==", + "account_number": "0", + "sequence": "0" + }, + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "AkPSe1gjEdCmb+KiRFXkArA4DDlmcUor6AS45tc4Lpe9" + }, + "signature": "ocQajxzhcQ0Cge7yzuD2nwqw8htkuQ/qjWisskpwZdZNnfUHnqgO1VfIdG5lI+DHNyIEs7MfyoRi+ir8QG6xyw==", + "account_number": "0", + "sequence": "0" + } + ], + "memo": "", + "source": "0", + "data": null + } + }, + { + "type": "auth/StdTx", + "value": { + "msg": [ + { + "type": "cosmos-sdk/MsgCreateValidatorProposal", + "value": { + "MsgCreateValidator": { + "Description": { + "moniker": "Everest", + "identity": "", + "website": "", + "details": "" + }, + "Commission": { + "rate": "0", + "max_rate": "0", + "max_change_rate": "0" + }, + "delegator_address": "bnb19hunw9ps8n9tkrp2j64jvheezgqmfc2eyrxd7a", + "validator_address": "bva1z79qgmv2e9xm6p24f2el0a2evxzyvnsnpvwtjz", + "pubkey": { + "type": "tendermint/PubKeyEd25519", + "value": "DJEOL+ZQ5OAUBrMxC0iftgqEvD/1xb7jpW1YmLaorzI=" + }, + "delegation": { + "denom": "BNB", + "amount": "1000000000000" + } + }, + "proposal_id": "0" + } + } + ], + "signatures": [ + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "Am/wetIQSzI5tGJ24D6dOxn9sAwRj8w36DSYPmu6caKv" + }, + "signature": "UI24Ax8YAHTUBBnJnAtLnrYRs878X2fa8n995/jx+s0LP1la39Z7pKrmAprLj8z675NGlTEeewOPlF8pfJMErg==", + "account_number": "0", + "sequence": "0" + }, + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "As5pyeztTCpapqEEzFoF66hiDLACFIxB3g6/PrcG+hyQ" + }, + "signature": "iAMofKNSVgorz7qTdU5DCgmGyLiapE2m4CX83pACv3dy1kLNUW7tZSYz4N5S07WnC683dl2pLFHkonQ1PYpAzQ==", + "account_number": "0", + "sequence": "0" + } + ], + "memo": "", + "source": "0", + "data": null + } + }, + { + "type": "auth/StdTx", + "value": { + "msg": [ + { + "type": "cosmos-sdk/MsgCreateValidatorProposal", + "value": { + "MsgCreateValidator": { + "Description": { + "moniker": "Fuji", + "identity": "", + "website": "", + "details": "" + }, + "Commission": { + "rate": "0", + "max_rate": "0", + "max_change_rate": "0" + }, + "delegator_address": "bnb19klje94mnu53wj7pmrk0zmtpwgr0uz8th0fcvw", + "validator_address": "bva1atdghwrh7wy36frauvl9mem9x4rxhe85f6sp47", + "pubkey": { + "type": "tendermint/PubKeyEd25519", + "value": "sGpZotdb9dAU/OfJmbXnHnqWCHD3JYR9S6MjW66qCO8=" + }, + "delegation": { + "denom": "BNB", + "amount": "1000000000000" + } + }, + "proposal_id": "0" + } + } + ], + "signatures": [ + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "A0OfHJt5TyR/e6+qpcXgJMQ1+G896gFbrWvYQIkKUR4k" + }, + "signature": "HGWUXPTCd+f1Oj/8TXQehp7GxAe/ACccMwa1BmIeKFJQkUrZ1VmJ26SdAtQIyG6GGSfIvFMNSqHMl7UMIW5SlA==", + "account_number": "0", + "sequence": "0" + }, + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "AnLQak9lXNvW2PhhOrc3BBt0S842rk3+B7fajT+E+iBo" + }, + "signature": "wyyGoLsd1TkzEPjuosGsQ5DYTJSTcYGwLU50GELNJpgjiAPxpawk0CC3cnop76JP6vSSh2Oo926WkV3v+JojYg==", + "account_number": "0", + "sequence": "0" + } + ], + "memo": "", + "source": "0", + "data": null + } + }, + { + "type": "auth/StdTx", + "value": { + "msg": [ + { + "type": "cosmos-sdk/MsgCreateValidatorProposal", + "value": { + "MsgCreateValidator": { + "Description": { + "moniker": "Gahinga", + "identity": "", + "website": "", + "details": "" + }, + "Commission": { + "rate": "0", + "max_rate": "0", + "max_change_rate": "0" + }, + "delegator_address": "bnb17kfuzeza2kn46yqx4twxxmlw2jk2ywp5x4gze2", + "validator_address": "bva1h9ymecpakr8p8lhchtah2xxx7x4xq099u8e07c", + "pubkey": { + "type": "tendermint/PubKeyEd25519", + "value": "A1PGOfgMyAFZRENtqxAyJF1E+RLtwx72aP+fSkXNBZk=" + }, + "delegation": { + "denom": "BNB", + "amount": "1000000000000" + } + }, + "proposal_id": "0" + } + } + ], + "signatures": [ + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "AzW1smD8iikhtvEzgYtG3D9RNv2LkLHoMCJa94cVOaRI" + }, + "signature": "O67Zv+21h+gpRQKirHTZNHMqzxGIAS2xsqpz8j5C5opNSb+LVdOrwXTMtQZusjwUH7WbwnblB9AJXAnUfltQgA==", + "account_number": "0", + "sequence": "0" + }, + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "AmNNSL/gDALBP6wFmnsohrwIU3Hr/ATTWYo5DRxGEHf1" + }, + "signature": "1a3drH17u1zo7EaRcusuAZNFjmAD3FGPc7RPV7j/YO87TZRqAPB+QCzBEqBuYKJqJjdV1pRcHFLMwJW3pTzaoQ==", + "account_number": "0", + "sequence": "0" + } + ], + "memo": "", + "source": "0", + "data": null + } + }, + { + "type": "auth/StdTx", + "value": { + "msg": [ + { + "type": "cosmos-sdk/MsgCreateValidatorProposal", + "value": { + "MsgCreateValidator": { + "Description": { + "moniker": "Kita", + "identity": "", + "website": "", + "details": "" + }, + "Commission": { + "rate": "0", + "max_rate": "0", + "max_change_rate": "0" + }, + "delegator_address": "bnb13m056plt2646zse2mwxfft92xawnky4nmncxc3", + "validator_address": "bva167z5qvur7xu85q885l906dgcwmgsvm3pp3unld", + "pubkey": { + "type": "tendermint/PubKeyEd25519", + "value": "lEbRSthsjS10eAsIRxEAAaHC4lLu3+pHU+u7/OOiL1I=" + }, + "delegation": { + "denom": "BNB", + "amount": "1000000000000" + } + }, + "proposal_id": "0" + } + } + ], + "signatures": [ + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "AouWnV2LmPlF0LWz/+7co0Qt5whIIQOfyj7N1K8j3XVv" + }, + "signature": "vZUVfPGEJEi966N8IPBm2Q1a+eMjp/VXKoQTlOm6r1h2ksw44Rt3M9If/O8tlDkWrHNJFa/gKCIFMEyVctuV+A==", + "account_number": "0", + "sequence": "0" + }, + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "A9Y5dz1pmP75kb2AvqsrAy02SdN6v3X/5az9SoaB0lnk" + }, + "signature": "21G47QHSs6b0fIWMSLXwssut+VFMqK2i+W1gfJj6Rxo/OZBKBxjcWknQG4oUYt7pLp2NMnIBR2jJ63a3Ov0RTw==", + "account_number": "0", + "sequence": "0" + } + ], + "memo": "", + "source": "0", + "data": null + } + }, + { + "type": "auth/StdTx", + "value": { + "msg": [ + { + "type": "cosmos-sdk/MsgCreateValidatorProposal", + "value": { + "MsgCreateValidator": { + "Description": { + "moniker": "Scafell", + "identity": "", + "website": "", + "details": "" + }, + "Commission": { + "rate": "0", + "max_rate": "0", + "max_change_rate": "0" + }, + "delegator_address": "bnb16k0gajcczwgymfkk0zsysjzl0sxyxdfckplxlr", + "validator_address": "bva10fg9t982xa35ddy6v8f5y06hf9hmx6ttef80le", + "pubkey": { + "type": "tendermint/PubKeyEd25519", + "value": "K6ToFUL0N7euH4o13bIzx4mo3CJzQ3fZttY68cpAO2E=" + }, + "delegation": { + "denom": "BNB", + "amount": "1000000000000" + } + }, + "proposal_id": "0" + } + } + ], + "signatures": [ + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "A5JwWw9dUTx5ptcMX1xT0IiTBuI+BRAx+b/qHuJeDHaY" + }, + "signature": "bEqho76PsinsQi+cG9wTka4YjeWzpxuuhIOBOxf0P55Q5MsUuSM+i3uGUSvh8DQZLEZ4QCu1PuPkJE69IjJJVA==", + "account_number": "0", + "sequence": "0" + }, + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "AkIZ4rTzTCQnXID0RrJAbWbuL7/39SUpO9Yzg/DoJ2nn" + }, + "signature": "xTbs2pScagYfryZ0gEy5BVX0PIk1aVHJaFb2ORNIASVOSyNS0R0uJrrEo2uoTNTg5/VbWjXRQ4mNp4KgoDaTMg==", + "account_number": "0", + "sequence": "0" + } + ], + "memo": "", + "source": "0", + "data": null + } + }, + { + "type": "auth/StdTx", + "value": { + "msg": [ + { + "type": "cosmos-sdk/MsgCreateValidatorProposal", + "value": { + "MsgCreateValidator": { + "Description": { + "moniker": "Seoraksan", + "identity": "", + "website": "", + "details": "" + }, + "Commission": { + "rate": "0", + "max_rate": "0", + "max_change_rate": "0" + }, + "delegator_address": "bnb1xaef2agzycsww32fqyggnk5xgqxs8780vfv2kh", + "validator_address": "bva1u5mvgkqt9rmj4fut60rnpqfv0a865pwnnewumy", + "pubkey": { + "type": "tendermint/PubKeyEd25519", + "value": "342oxav9s4WVORMIu3HloeCqvcHQzzgxXVDWvpObJgY=" + }, + "delegation": { + "denom": "BNB", + "amount": "1000000000000" + } + }, + "proposal_id": "0" + } + } + ], + "signatures": [ + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "A4KbDaWTfv2EGahovzcunfeVSDv+yIkwnAwhVOEERZ4R" + }, + "signature": "TGPCijFmaQyKtq2sTWSehfOfcmtq/aYyT36L83HxIZUl7BR+I0fzcIlN2NNg/rJMTZ+4rpWMkEGj6Qz/mfWsnA==", + "account_number": "0", + "sequence": "0" + }, + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "AlK/+L/va2UNh+a+vJDg7jwIqssgj0g/xkbTIK0ZFJ5x" + }, + "signature": "JKlZwpNfkoMtyUQrOpUPyPFJj08TVFSSs0xGdUXW4bU7nABgAAW+P+XpKTtp4i4XPxOsbWCPNUJnYu9EJ6Umyw==", + "account_number": "0", + "sequence": "0" + } + ], + "memo": "", + "source": "0", + "data": null + } + }, + { + "type": "auth/StdTx", + "value": { + "msg": [ + { + "type": "cosmos-sdk/MsgCreateValidatorProposal", + "value": { + "MsgCreateValidator": { + "Description": { + "moniker": "Zugspitze", + "identity": "", + "website": "", + "details": "" + }, + "Commission": { + "rate": "0", + "max_rate": "0", + "max_change_rate": "0" + }, + "delegator_address": "bnb1jstexazk7zateuwzzwllswu4j3dsllu3dgte4m", + "validator_address": "bva1aanuahm2c9z5syvwsk4792vddtp74jkmegvpem", + "pubkey": { + "type": "tendermint/PubKeyEd25519", + "value": "tmGe3KQUNISAAoHWmLcMk16RUq1Xsx2FwF8vefZLOfM=" + }, + "delegation": { + "denom": "BNB", + "amount": "1000000000000" + } + }, + "proposal_id": "0" + } + } + ], + "signatures": [ + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "AqduvCtc3R/Urghz/SawvGlPZm54RO0qmzHKsrKjgkNw" + }, + "signature": "LSez3TtJS3uZKb11HZ7FyLopr73FkVy4xCWuxUdJEvoE6ve9OTIqBkl5eFxHa/t1hRybVrKLcOFpHW8LpYU27A==", + "account_number": "0", + "sequence": "0" + }, + { + "pub_key": { + "type": "tendermint/PubKeySecp256k1", + "value": "AjFun7TuRN06G7mK3a/61Ak+0Fq5FTPs/yEelcOUFhtV" + }, + "signature": "Sw6eEsRQKxA/rKkqT+WOCJXG6CVF38gk3jzudQ8zUo1ns3ij/Xe6HCByiUJ8cKkTq00r8hwuO8LaCp0jiIE2Og==", + "account_number": "0", + "sequence": "0" + } + ], + "memo": "", + "source": "0", + "data": null + } + } + ] + } +} \ No newline at end of file diff --git a/fullnode/prod/0.6.3-hotfix/linux/bnbchaind b/fullnode/prod/0.6.3-hotfix/linux/bnbchaind new file mode 100755 index 0000000..365e70f --- /dev/null +++ b/fullnode/prod/0.6.3-hotfix/linux/bnbchaind @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c78a1a236225c0cac19f6dc4a7e44367bd75b0af1e557d28b494d7153193780 +size 46527920 diff --git a/fullnode/prod/0.6.3-hotfix/linux/sha256checksum b/fullnode/prod/0.6.3-hotfix/linux/sha256checksum new file mode 100644 index 0000000..a0d6a41 --- /dev/null +++ b/fullnode/prod/0.6.3-hotfix/linux/sha256checksum @@ -0,0 +1 @@ +1c78a1a236225c0cac19f6dc4a7e44367bd75b0af1e557d28b494d7153193780 bnbchaind diff --git a/fullnode/prod/0.6.3-hotfix/mac/bnbchaind b/fullnode/prod/0.6.3-hotfix/mac/bnbchaind new file mode 100755 index 0000000..b2fcf76 --- /dev/null +++ b/fullnode/prod/0.6.3-hotfix/mac/bnbchaind @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87495b7f74c033251d2c738ba9b90ca42015a549b22ee354c066393988d576f6 +size 45160816 diff --git a/fullnode/prod/0.6.3-hotfix/mac/sha256checksum b/fullnode/prod/0.6.3-hotfix/mac/sha256checksum new file mode 100644 index 0000000..50a8b49 --- /dev/null +++ b/fullnode/prod/0.6.3-hotfix/mac/sha256checksum @@ -0,0 +1 @@ +87495b7f74c033251d2c738ba9b90ca42015a549b22ee354c066393988d576f6 bnbchaind diff --git a/fullnode/prod/0.6.3-hotfix/windows/bnbchaind.exe b/fullnode/prod/0.6.3-hotfix/windows/bnbchaind.exe new file mode 100755 index 0000000..f540aa3 --- /dev/null +++ b/fullnode/prod/0.6.3-hotfix/windows/bnbchaind.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f430054d3e4d157b5c470f625c60c1f923fd159c957c1172149208ef7dfc20b +size 45498880 diff --git a/fullnode/prod/0.6.3-hotfix/windows/sha256checksum b/fullnode/prod/0.6.3-hotfix/windows/sha256checksum new file mode 100644 index 0000000..528823b --- /dev/null +++ b/fullnode/prod/0.6.3-hotfix/windows/sha256checksum @@ -0,0 +1 @@ +3f430054d3e4d157b5c470f625c60c1f923fd159c957c1172149208ef7dfc20b bnbchaind.exe