Commit 3eb9a76c authored by vicotor's avatar vicotor

update data

parent 1561b865
=============== Dec 13, 2023 (UTC) ===============
08:34:12.219375 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
08:34:12.225921 db@open opening
08:34:12.325160 version@stat F·[] S·0B[] Sc·[]
08:34:12.328396 db@janitor F·2 G·0
08:34:12.329149 db@open done T·102.597ms
chain-id = "1024"
indent = true
keyring-backend = "test"
output = "json"
trust-node = true
eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNy0xMCAxMjowMjoxNC43MjgxNTczMTkgKzA4MDAgQ1NUIG09KzAuMDM0Nzk1NTY5IiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoiMmZFM09TMUQ2bzNYV2V5WiJ9.dMp8e5EcfpOCErKuYrTdfSdCDRZNSPn_IUOtcmCoh2s60Rlg_Nm1Dw.SpWvuhtH-bOK4Hjm.ezoZuZe4l8Fnyryq4pqnbD9h4VExJNYkzZqgqchdgiV3OCYhLX5S__rjHOfpjwuvNHSskYF8CBXWPy8TThJQFF1-IY_Zr_ffkyD2PERGsZ-uvYfYedzN6-QoluRbR1CbRWmM2UUzJhgzL7jCJ_KOqW1Xl-gbJ8rOMcn4GdoROjD7TqqV7Y34sKCZCz8o83LpUgt3nc0wp-zHFcz-EVmLUofN06uzLYFsrQiJxZRowrpzPrkj5JhrUamTmdQ.uaUEofKW6BeJ0CUj3Pn6kQ
\ No newline at end of file
eyJhbGciOiJQQkVTMi1IUzI1NitBMTI4S1ciLCJjcmVhdGVkIjoiMjAyMy0wNy0xMCAxMjowMjoxNC43MjQ1OTcwMzEgKzA4MDAgQ1NUIG09KzAuMDMxMjM1MjkxIiwiZW5jIjoiQTI1NkdDTSIsInAyYyI6ODE5MiwicDJzIjoidkxIZUhiMTh2YzRtTjQyMiJ9.ptQQDQX3_X-1Bwk117BNLlYA-qdKPImxaQqJY4X9ytuJCcn7Ho5hrQ.CJcuz2nKxQEm-OjW.oZtTYvgK2dcVLPKlh8lLafDWr0UQ84KjSkeViHIgENSqsPoxPNVk5lk61sDvakqpIViY3GTvb0jUo2et6kV9TeR40ySJxnS_WciU7r_C-Wti794VAJHDuzDCTXE7aF-SJ7CqEppSA2o5m3Wto_YKpJFCD8VXVDvbAup7Wg3Bpll0ABSm4ZDSGJhYQtEqirJm7P6x63b-VzQ9Ah2NL1d9YQNTi8QVduTc_3d3YjyyzEQCZbWSSXGYIch775uJJSS-_0d8EPA_pXMsETUM88db4MqyPURVmxmpR2E2f9LrOVrVNBKMarxmdTywOT2_I3RskVEIl3blrl5ZRW4evwaL55WA9TfiYfC_r9dIryvEF6-u5XIxUMztGGdikedE_YcZvURMllD4D0DAN4LMfeQOYZfZirIm0c2ZvD3xPs4eaShT._tXek5wit33qB8ragMX0XA
\ No newline at end of file
{
"key": "7c1f027592aab7b02f7359f1",
"addrs": []
}
\ No newline at end of file
# This is a TOML config file.
# For more information, see https://github.com/toml-lang/toml
##### main base config options #####
# The minimum gas prices a validator is willing to accept for processing a
# transaction. A transaction's fees must meet the minimum of any denomination
# specified in this config (e.g. 0.25token1;0.0001token2).
minimum-gas-prices = ""
# HaltHeight contains a non-zero block height at which a node will gracefully
# halt and shutdown that can be used to assist upgrades and testing.
#
# Note: Commitment of state will be attempted on the corresponding block.
halt-height = 0
# HaltTime contains a non-zero minimum block time (in Unix seconds) at which
# a node will gracefully halt and shutdown that can be used to assist upgrades
# and testing.
#
# Note: Commitment of state will be attempted on the corresponding block.
halt-time = 0
# InterBlockCache enables inter-block caching.
inter-block-cache = true
# Pruning sets the pruning strategy: syncable, nothing, everything
# syncable: only those states not needed for state syncing will be deleted (keeps last 100 + every 10000th)
# nothing: all historic states will be saved, nothing will be deleted (i.e. archiving node)
# everything: all saved states will be deleted, storing only the current state
pruning = "syncable"
# This is a TOML config file.
# For more information, see https://github.com/toml-lang/toml
# NOTE: Any path below can be absolute (e.g. "/var/myawesomeapp/data") or
# relative to the home directory (e.g. "data"). The home directory is
# "$HOME/.tendermint" by default, but could be changed via $TMHOME env variable
# or --home cmd flag.
##### main base config options #####
# TCP or UNIX socket address of the ABCI application,
# or the name of an ABCI application compiled in with the Metaversegraph binary
proxy_app = "tcp://127.0.0.1:26658"
# A custom human readable name for this node
moniker = "node1"
# 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
# Database backend: goleveldb | cleveldb | boltdb | rocksdb
# * 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)
# * rocksdb (uses github.com/tecbot/gorocksdb)
# - EXPERIMENTAL
# - requires gcc
# - use rocksdb build tag (go build -tags rocksdb)
db_backend = "goleveldb"
# Database directory
db_dir = "data"
# Output level for logging, including package level options
log_level = "info"
# 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 Metaversegraph 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 = "localhost:6060"
# 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
##### advanced configuration options #####
##### rpc server configuration options #####
[rpc]
# TCP or UNIX socket address for the RPC server to listen on
laddr = "tcp://127.0.0.1:26657"
# 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
# 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.
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 Metaversegraph 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 Metaversegraph 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:26656"
# 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 = ""
# Comma separated list of nodes to keep persistent connections to
persistent_peers = "8767568e976249e5a7306f5c0a9bc6a1df5f3d5f@172.77.5.1:26656"
# 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
# List of node IDs, to which a connection will be (re)established ignoring any existing limits
unconditional_peer_ids = ""
# Maximum pause when redialing a persistent peer (if zero, exponential backoff is used)
persistent_peers_max_dial_period = "0s"
# Time to wait before flushing messages out on the connection
flush_throttle_timeout = "100ms"
# Maximum size of a message packet payload, in bytes
max_packet_msg_payload_size = 1024
# Rate at which packets can be sent, in bytes/second
send_rate = 5120000
# Rate at which packets can be received, in bytes/second
recv_rate = 5120000
# 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 = false
# Peer connection configuration.
handshake_timeout = "20s"
dial_timeout = "3s"
##### mempool configuration options #####
[mempool]
recheck = false
broadcast = false
wal_dir = ""
# Maximum number of transactions in the mempool
size = 500000
# 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 = 1000000
# 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]
# EmptyEvents mode and possible interval between empty events
create_empty_events = true
create_empty_events_interval = "500ms"
# Reactor sleep duration parameters
peer_gossip_sleep_duration = "50ms"
##### 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"
# Comma-separated list of compositeKeys to index (by default the only key is "tx.hash")
# Remember that Event has the following structure: type.key
# type: [
# key: value,
# ...
# ]
#
# You can also index transactions by height by adding "tx.height" key here.
#
# It's recommended to index only a subset of keys due to possible memory
# bloat. This is, of course, depends on the indexer's DB and the volume of
# transactions.
index_keys = ""
# When set to true, tells indexer to index all compositeKeys (predefined keys:
# "tx.hash", "tx.height" and all keys from DeliverTx responses).
#
# Note this may be not desirable (see the comment above). IndexKeys has a
# precedence over IndexAllKeys (i.e. when given both, IndexKeys will be
# indexed).
index_all_keys = true
##### 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 = ":26660"
# 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 = "cmp"
##### extra configuration options #####
[extra]
save_tx_err = false
save_tx_redis = ""
save_tx_redis_password = ""
{
"genesis_time": "2023-07-10T04:02:14.858967428Z",
"chain_id": "1024",
"consensus_params": {
"event": {
"max_gas": "-1",
"max_bytes": "131072",
"time_iota_ms": "1000"
},
"validator": {
"pub_key_types": [
"ed25519"
]
}
},
"app_hash": "",
"app_state": {
"params": null,
"genutil": {
"gentxs": [
{
"type": "cosmos-sdk/StdTx",
"value": {
"msg": [
{
"type": "cosmos-sdk/MsgCreateValidator",
"value": {
"description": {
"moniker": "node1",
"identity": "",
"website": "",
"security_contact": "",
"details": ""
},
"commission": {
"rate": "0.100000000000000000",
"max_rate": "0.200000000000000000",
"max_change_rate": "0.010000000000000000"
},
"min_self_delegation": "1",
"delegator_address": "cmp1u8k3dapx7xwlf7w2req9dx3pfgk08y3pewqyaa",
"validator_address": "cmpvaloper1u8k3dapx7xwlf7w2req9dx3pfgk08y3pqzcyf2",
"pubkey": "cmpvalconspub1l67l54pqsrce5kjca9n2udkwmc3l64wusltprnvw47jx8y5nf35sgm0xqjxs2pk75s",
"value": {
"denom": "cmp",
"amount": "1000000000000000000"
}
}
}
],
"fee": {
"amount": [],
"gas": "200000"
},
"signatures": [
{
"pub_key": {
"type": "crypto/PubKeySecp256k1",
"value": "BOumfO2q5AR3rTPOxUo+H1i0LVMCyxWm7uKMueexxiRiSt7amJuC3i6eaB4LEV1wVN8MRSG6/+nI3mML6GDrHQQ="
},
"signature": "N4CxR6/KdBx83IKE7KIxB1gsNKjHl6KwBbsNaoL+5YZNSHOAZ2cmf5q8BzNusPKtYN4qsyqLw5KU1O/eglclmQA="
}
],
"memo": "8767568e976249e5a7306f5c0a9bc6a1df5f3d5f@172.77.5.1:26656"
}
}
]
},
"supply": {
"supply": []
},
"gov": {
"starting_proposal_id": "1",
"deposits": null,
"votes": null,
"proposals": null,
"deposit_params": {
"min_deposit": [
{
"denom": "cmp",
"amount": "10000000000000000000"
}
],
"max_deposit_period": "172800000000000"
},
"voting_params": {
"voting_period": "172800000000000"
},
"tally_params": {
"quorum": "0.334000000000000000",
"threshold": "0.500000000000000000",
"veto": "0.334000000000000000"
}
},
"iam": {},
"staking": {
"params": {
"unbonding_time": "1814400000000000",
"max_validators": 100,
"max_entries": 7,
"historical_entries": 0,
"bond_denom": "cmp"
},
"last_total_power": "0",
"last_validator_powers": null,
"validators": null,
"delegations": null,
"unbonding_delegations": null,
"redelegations": null,
"exported": false
},
"crisis": {
"constant_fee": {
"denom": "cmp",
"amount": "1000"
}
},
"punishment": {},
"distribution": {
"params": {
"community_tax": "0.020000000000000000",
"base_proposer_reward": "0.010000000000000000",
"bonus_proposer_reward": "0.040000000000000000",
"withdraw_addr_enabled": true
},
"fee_pool": {
"community_pool": []
},
"delegator_withdraw_infos": [],
"previous_proposer": "",
"outstanding_rewards": [],
"validator_accumulated_commissions": [],
"validator_historical_rewards": [],
"validator_current_rewards": [],
"delegator_starting_infos": [],
"validator_slash_events": []
},
"slashing": {
"params": {
"signed_blocks_window": "100",
"min_signed_per_window": "0.500000000000000000",
"downtime_jail_duration": "600000000000",
"slash_fraction_double_sign": "0.050000000000000000",
"slash_fraction_downtime": "0.010000000000000000"
},
"signing_infos": {},
"missed_blocks": {}
},
"auth": {
"params": {
"max_memo_characters": "256",
"tx_sig_limit": "7",
"tx_size_cost_per_byte": "0",
"sig_verify_cost_ed25519": "590",
"sig_verify_cost_secp256k1": "1000"
},
"accounts": [
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1r9rwywd2tcldnlusxqqyk92fc99fcrr863g7pe",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "1000000000000000000000000000"
},
{
"denom": "coin0",
"amount": "1"
},
{
"denom": "coin1",
"amount": "1"
},
{
"denom": "coin2",
"amount": "1"
},
{
"denom": "coin3",
"amount": "1"
},
{
"denom": "coin4",
"amount": "1"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x1946e239aa5e3ed9ff9030004b1549c14a9c0c67"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1u8k3dapx7xwlf7w2req9dx3pfgk08y3pewqyaa",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xe1ed16f426f19df4f9ca1e40569a214a2cf39221"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp184njle738cp07nvjpsgteedc4zwrw3s4umhdnp",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x3d672fe7d13e02ff4d920c10bce5b8a89c374615"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp158yqhh23t45v26h0fwz06074px8hwlu6j6j5ka",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xa1c80bdd515d68c56aef4b84fd3fd5098f777f9a"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1p8rrym7u0vrgwfp7p6a77g4gfz8q8r0uwqq5y9",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x09c6326fdc7b0687243e0ebbef22a8488e038dfc"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp12uvupl9dkde6g26qx968l7dc0g4mk9qm0tn9dj",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x5719c0fcadb373a42b4031747ff9b87a2bbb141b"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1upu9vy2spdvzenn9rst5w7jq3hgq2lfsqf9e6h",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xe0785611500b582cce651c17477a408dd0057d30"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp19qvfg8ekcycwx643mhf7xfy36vrzqqh9l27sqf",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x2818941f36c130e36ab1ddd3e32491d3062002e5"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1zyta462nzs52mtfs6vfs3s4ddzmzag27tq9lu7",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x1117dae9531428adad30d31308c2ad68b62ea15e"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1slrafu7865dfth4zar6lapp268mqywl3zq22zz",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x87c7d4f3c7d51a95dea2e8f5fe842ad1f6023bf1"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1a92qtkaaahljmsdkma5rdfh82qm676pyvp0xum",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xe95405dbbdedff2dc1b6df6836a6e75037af6824"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1h8al0u73wjm8a0wxtvzck2rc32jqleqy6tn80t",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xb9fbf7f3d174b67ebdc65b058b28788aa40fe404"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp10ca3vuexrrjg6cw3fe8n73htwmc2akcauxasj2",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x7e3b16732618e48d61d14e4f3f46eb76f0aedb1d"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp12pe9y64nral9kgz9medgxehkm8cqrevtfzefsc",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x5072526ab31f7e5b2045de5a8366f6d9f001e58b"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp155k2s2ylmgrngcg2kklcfzwz04sw3ywqnsyf5a",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xa52ca8289fda0734610ab5bf8489c27d60e891c0"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1uthagq4xwvpcevp89d3wkzusw94wmkjtlgwwdt",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xe2efd402a673038cb0272b62eb0b90716aedda4b"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp19elu50e3gdd2mz3nmg0epvy4ehwe7mjz4ar2fm",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x2e7fca3f31435aad8a33da1f90b095cddd9f6e42"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1ah3n3yvvfe20fehtca6uqvtu6c7kvtrd8vkh6k",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xede338918c4e54f4e6ebc775c0317cd63d662c6d"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1kl0sn49z4qnv0f0q5e3wfu05rr5yke7yg7nxsu",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xb7df09d4a2a826c7a5e0a662e4f1f418e84b67c4"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1hzpn338jz8fu4n6sqhedqpfvxm3wxdy3lz574y",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xb88338c4f211d3cacf5005f2d0052c36e2e33491"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1a6wxwxm4pk7d0cfgdyu75prgkx4x76yctvdrkd",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xee9c671b750dbcd7e1286939ea0468b1aa6f6898"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1n8nk3n8w0jklay0n4mpj24vxljcggge06wecnm",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x99e768ccee7cadfe91f3aec3255586fcb084232f"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp10qkycl5t5pr7m7l6pu5pt4xsx4r8c6haum8dvf",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x782c4c7e8ba047edfbfa0f2815d4d035467c6afd"
}
}
]
},
"mint": {
"minter": {
"total_provisions": "200000000000000000000000000.000000000000000000",
"minted_per_duration": "800000000.000000000000000000",
"genesis_block_time": "0001-01-01T00:00:00Z",
"latest_block_time": "0001-01-01T00:00:00Z",
"inflation": "0.130000000000000000",
"annual_provisions": "0.000000000000000000"
},
"params": {
"mint_denom": "cmp",
"inflation_rate_change": "0.130000000000000000",
"inflation_max": "0.200000000000000000",
"inflation_min": "0.070000000000000000",
"goal_bonded": "0.670000000000000000",
"blocks_per_year": "6311520"
}
},
"bank": {
"send_enabled": true
},
"evm": {
"accounts": null,
"ethlogs": null,
"params": {
"evm_denom": "cmp",
"enable_create": true,
"enable_call": true,
"chain_config": {
"homestead_block": "0",
"dao_fork_block": "0",
"dao_fork_support": true,
"eip150_block": "0",
"eip150_hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"eip155_block": "0",
"eip158_block": "0",
"byzantium_block": "0",
"constantinople_block": "0",
"petersburg_block": "0",
"istanbul_block": "0",
"muir_glacier_block": "0",
"yoloV2_block": "-1",
"ewasm_block": "-1"
}
}
}
}
}
\ No newline at end of file
{"type":"cosmos-sdk/StdTx","value":{"msg":[{"type":"cosmos-sdk/MsgCreateValidator","value":{"description":{"moniker":"node1","identity":"","website":"","security_contact":"","details":""},"commission":{"rate":"0.100000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"cmp1u8k3dapx7xwlf7w2req9dx3pfgk08y3pewqyaa","validator_address":"cmpvaloper1u8k3dapx7xwlf7w2req9dx3pfgk08y3pqzcyf2","pubkey":"cmpvalconspub1l67l54pqsrce5kjca9n2udkwmc3l64wusltprnvw47jx8y5nf35sgm0xqjxs2pk75s","value":{"denom":"cmp","amount":"1000000000000000000"}}}],"fee":{"amount":[],"gas":"200000"},"signatures":[{"pub_key":{"type":"crypto/PubKeySecp256k1","value":"BOumfO2q5AR3rTPOxUo+H1i0LVMCyxWm7uKMueexxiRiSt7amJuC3i6eaB4LEV1wVN8MRSG6/+nI3mML6GDrHQQ="},"signature":"N4CxR6/KdBx83IKE7KIxB1gsNKjHl6KwBbsNaoL+5YZNSHOAZ2cmf5q8BzNusPKtYN4qsyqLw5KU1O/eglclmQA="}],"memo":"8767568e976249e5a7306f5c0a9bc6a1df5f3d5f@172.77.5.1:26656"}}
{"priv_key":{"type":"cmp/PrivKeyEd25519","value":"XBBnnwvfmL8wlPnTr5wa/BBbS1G1SN2+JNpedKQo9vYZ/JqZBH1j2YvTIHmuHhwfF2AnDkIr8z4fHmVXHAzzog=="}}
\ No newline at end of file
{
"address": "823B7A05131602D36565D9EE670FD1CF1A64AACF",
"pub_key": {
"type": "cmp/PubKeyEd25519",
"value": "gPGaWljpZq42zt4j/VXch9YRzY6vpGOSk0xpBG3mBI0="
},
"priv_key": {
"type": "cmp/PrivKeyEd25519",
"value": "kxTwAaFqH4bmQnhxmnuhO8+6zXPEP1UMkqmjae4cZouA8ZpaWOlmrjbO3iP9VdyH1hHNjq+kY5KTTGkEbeYEjQ=="
}
}
\ No newline at end of file
=============== Dec 13, 2023 (UTC) ===============
08:34:07.103334 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
08:34:07.109870 db@open opening
08:34:07.113255 version@stat F·[] S·0B[] Sc·[]
08:34:07.115305 db@janitor F·2 G·0
08:34:07.115977 db@open done T·5.483ms
=============== Dec 13, 2023 (UTC) ===============
08:34:07.134973 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
08:34:07.136634 db@open opening
08:34:07.137357 version@stat F·[] S·0B[] Sc·[]
08:34:07.137982 db@janitor F·2 G·0
08:34:07.138084 db@open done T·1.372ms
{
"height": "0",
"round": "0",
"step": 0
}
\ No newline at end of file
=============== Dec 13, 2023 (UTC) ===============
08:34:07.138890 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
08:34:07.140435 db@open opening
08:34:07.142663 version@stat F·[] S·0B[] Sc·[]
08:34:07.143355 db@janitor F·2 G·0
08:34:07.143456 db@open done T·2.947ms
=============== Dec 13, 2023 (UTC) ===============
08:34:07.155087 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
08:34:07.156618 db@open opening
08:34:07.157317 version@stat F·[] S·0B[] Sc·[]
08:34:07.157927 db@janitor F·2 G·0
08:34:07.158022 db@open done T·1.322ms
This source diff could not be displayed because it is too large. You can view the blob instead.
E[2023-12-13|08:34:12.189] failed to dail backup rpc server module=json-rpc namespace=eth error="dial unix: missing address"
E[2023-12-13|08:34:12.191] failed to dail ext log server websocket=websocket-server api=filter error="dial unix: missing address"
I[2023-12-13|08:34:12.212] Allocated cache and file handles module=leveldb websocket=websocket-server logCtx="[cache 1000.00 MiB handles 1000]"
I[2023-12-13|08:34:12.332] txstore start module=txstore websocket=websocket-server block=1
D[2023-12-13|08:34:12.351] have no new block, need wait module=txstore websocket=websocket-server
I[2023-12-13|08:34:12.397] Starting application REST service (chain-id: "0")... module=rest-server
I[2023-12-13|08:34:12.397] Starting RPC HTTP server on [::]:8545 module=rest-server
D[2023-12-13|08:34:13.379] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:13.807] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:13.865] eth_estimateGas module=json-rpc namespace=eth returngas=619697
D[2023-12-13|08:34:13.869] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-13|08:34:13.881] eth_chainId module=json-rpc namespace=eth
D[2023-12-13|08:34:13.891] checkTxExist module=json-rpc namespace=eth hash=0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd
query tmhash with ethhash 0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd err = <nil>
D[2023-12-13|08:34:13.945] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd
query tmhash with ethhash 0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd err = <nil>
D[2023-12-13|08:34:14.051] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd
query tmhash with ethhash 0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd err = <nil>
D[2023-12-13|08:34:14.392] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:15.065] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd
query tmhash with ethhash 0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd err = <nil>
D[2023-12-13|08:34:15.424] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:16.467] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:17.507] save tx module=txstore websocket=websocket-server height=13 index=0
D[2023-12-13|08:34:17.515] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:18.554] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:19.092] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd
query tmhash with ethhash 0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd err = <nil>
D[2023-12-13|08:34:19.172] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd logs="[{\"address\":\"0xc6add5a6545a6a22a6f6e8a6eb9323f980c06359\",\"topics\":[\"0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\",\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x000000000000000000000000e0785611500b582cce651c17477a408dd0057d30\"],\"data\":\"0x\",\"blockNumber\":\"0xd\",\"transactionHash\":\"0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0x76d25a4ba5b702e16abd38f1a4555c2708792c965004a6a9b26cc75655558c79\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2023-12-13|08:34:19.177] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:19.208] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:19.260] eth_estimateGas failed vm module=json-rpc namespace=eth error="contract address collision"
D[2023-12-13|08:34:19.262] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-13|08:34:19.275] checkTxExist module=json-rpc namespace=eth hash=0x70966e58ccba292a41ded8779c2be3207e0048c0481c27c9e44a59a88b2d65f1
query tmhash with ethhash 0x70966e58ccba292a41ded8779c2be3207e0048c0481c27c9e44a59a88b2d65f1 err = <nil>
D[2023-12-13|08:34:19.308] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x70966e58ccba292a41ded8779c2be3207e0048c0481c27c9e44a59a88b2d65f1
query tmhash with ethhash 0x70966e58ccba292a41ded8779c2be3207e0048c0481c27c9e44a59a88b2d65f1 err = <nil>
D[2023-12-13|08:34:19.413] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x70966e58ccba292a41ded8779c2be3207e0048c0481c27c9e44a59a88b2d65f1
query tmhash with ethhash 0x70966e58ccba292a41ded8779c2be3207e0048c0481c27c9e44a59a88b2d65f1 err = <nil>
D[2023-12-13|08:34:19.587] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:20.424] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x70966e58ccba292a41ded8779c2be3207e0048c0481c27c9e44a59a88b2d65f1
query tmhash with ethhash 0x70966e58ccba292a41ded8779c2be3207e0048c0481c27c9e44a59a88b2d65f1 err = <nil>
D[2023-12-13|08:34:20.620] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:21.636] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:22.674] save tx module=txstore websocket=websocket-server height=22 index=0
D[2023-12-13|08:34:22.710] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:23.744] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:24.451] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x70966e58ccba292a41ded8779c2be3207e0048c0481c27c9e44a59a88b2d65f1
query tmhash with ethhash 0x70966e58ccba292a41ded8779c2be3207e0048c0481c27c9e44a59a88b2d65f1 err = <nil>
D[2023-12-13|08:34:24.531] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x70966e58ccba292a41ded8779c2be3207e0048c0481c27c9e44a59a88b2d65f1 logs="[{\"address\":\"0x0c62cd40e3dc952a891724b22883df996eef66a4\",\"topics\":[\"0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\",\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x000000000000000000000000e0785611500b582cce651c17477a408dd0057d30\"],\"data\":\"0x\",\"blockNumber\":\"0x16\",\"transactionHash\":\"0x70966e58ccba292a41ded8779c2be3207e0048c0481c27c9e44a59a88b2d65f1\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0xe1c93c1345a7f5f0dd417fd83d01b258db11909d311268f7c5aa0b1a93de7f29\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2023-12-13|08:34:24.535] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:24.560] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:24.610] eth_estimateGas module=json-rpc namespace=eth returngas=60502
D[2023-12-13|08:34:24.612] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-13|08:34:24.621] checkTxExist module=json-rpc namespace=eth hash=0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e
query tmhash with ethhash 0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e err = <nil>
D[2023-12-13|08:34:24.651] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e
query tmhash with ethhash 0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e err = <nil>
D[2023-12-13|08:34:24.755] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:24.756] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e
query tmhash with ethhash 0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e err = <nil>
D[2023-12-13|08:34:25.767] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e
query tmhash with ethhash 0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e err = <nil>
D[2023-12-13|08:34:25.801] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:26.839] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:27.870] save tx module=txstore websocket=websocket-server height=32 index=0
D[2023-12-13|08:34:27.876] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:28.893] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:29.792] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e
query tmhash with ethhash 0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e err = <nil>
D[2023-12-13|08:34:29.856] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e logs=[]
D[2023-12-13|08:34:29.859] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:29.893] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:29.918] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:29.945] eth_estimateGas failed vm module=json-rpc namespace=eth error="contract address collision"
D[2023-12-13|08:34:29.949] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-13|08:34:29.960] checkTxExist module=json-rpc namespace=eth hash=0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed
query tmhash with ethhash 0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed err = <nil>
D[2023-12-13|08:34:29.992] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed
query tmhash with ethhash 0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed err = <nil>
D[2023-12-13|08:34:30.096] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed
query tmhash with ethhash 0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed err = <nil>
D[2023-12-13|08:34:30.946] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:31.106] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed
query tmhash with ethhash 0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed err = <nil>
D[2023-12-13|08:34:31.986] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:33.026] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:34.054] save tx module=txstore websocket=websocket-server height=42 index=0
D[2023-12-13|08:34:34.066] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:35.104] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:35.117] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed
query tmhash with ethhash 0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed err = <nil>
D[2023-12-13|08:34:35.174] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed logs="[{\"address\":\"0xbc838adb194b356d36176aa02362820cf3041400\",\"topics\":[\"0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\",\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x000000000000000000000000e0785611500b582cce651c17477a408dd0057d30\"],\"data\":\"0x\",\"blockNumber\":\"0x2a\",\"transactionHash\":\"0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0x97a0068df0e7a7f7649dabb13dbe09f947e84b4b1b0c601a59f6dd24c716bbac\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2023-12-13|08:34:35.177] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:35.207] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:35.257] eth_estimateGas module=json-rpc namespace=eth returngas=60255
D[2023-12-13|08:34:35.259] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-13|08:34:35.268] checkTxExist module=json-rpc namespace=eth hash=0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb
query tmhash with ethhash 0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb err = <nil>
D[2023-12-13|08:34:35.300] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb
query tmhash with ethhash 0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb err = <nil>
D[2023-12-13|08:34:35.405] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb
query tmhash with ethhash 0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb err = <nil>
D[2023-12-13|08:34:36.130] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:36.416] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb
query tmhash with ethhash 0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb err = <nil>
D[2023-12-13|08:34:37.194] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:38.223] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:39.245] save tx module=txstore websocket=websocket-server height=51 index=0
D[2023-12-13|08:34:39.262] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:40.298] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:40.441] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb
query tmhash with ethhash 0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb err = <nil>
D[2023-12-13|08:34:40.507] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb logs=[]
D[2023-12-13|08:34:40.509] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:40.542] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:40.594] eth_estimateGas failed vm module=json-rpc namespace=eth error="contract address collision"
D[2023-12-13|08:34:40.596] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-13|08:34:40.608] checkTxExist module=json-rpc namespace=eth hash=0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607
query tmhash with ethhash 0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607 err = <nil>
D[2023-12-13|08:34:40.640] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607
query tmhash with ethhash 0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607 err = <nil>
D[2023-12-13|08:34:40.745] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607
query tmhash with ethhash 0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607 err = <nil>
D[2023-12-13|08:34:41.341] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:41.755] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607
query tmhash with ethhash 0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607 err = <nil>
D[2023-12-13|08:34:42.379] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:43.397] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:44.460] save tx module=txstore websocket=websocket-server height=61 index=0
D[2023-12-13|08:34:44.466] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:45.494] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:45.778] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607
query tmhash with ethhash 0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607 err = <nil>
D[2023-12-13|08:34:45.853] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607 logs="[{\"address\":\"0xfb070e8ad3eac6ff1da58ec888f256fc7167c500\",\"topics\":[\"0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\",\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x000000000000000000000000e0785611500b582cce651c17477a408dd0057d30\"],\"data\":\"0x\",\"blockNumber\":\"0x3d\",\"transactionHash\":\"0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0x253f41c217edf1d86c01499856e05c7a5ee34b8d593ca7a1ff47389890fbfd22\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2023-12-13|08:34:45.856] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:45.880] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:45.927] eth_estimateGas module=json-rpc namespace=eth returngas=60502
D[2023-12-13|08:34:45.929] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-13|08:34:45.938] checkTxExist module=json-rpc namespace=eth hash=0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b
query tmhash with ethhash 0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b err = <nil>
D[2023-12-13|08:34:45.971] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b
query tmhash with ethhash 0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b err = <nil>
D[2023-12-13|08:34:46.075] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b
query tmhash with ethhash 0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b err = <nil>
D[2023-12-13|08:34:46.532] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:47.090] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b
query tmhash with ethhash 0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b err = <nil>
D[2023-12-13|08:34:47.571] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:48.613] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:49.637] save tx module=txstore websocket=websocket-server height=70 index=0
D[2023-12-13|08:34:49.653] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:50.693] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:51.110] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b
query tmhash with ethhash 0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b err = <nil>
D[2023-12-13|08:34:51.144] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b logs=[]
D[2023-12-13|08:34:51.146] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:51.174] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:51.222] eth_estimateGas failed vm module=json-rpc namespace=eth error="contract address collision"
D[2023-12-13|08:34:51.224] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-13|08:34:51.235] checkTxExist module=json-rpc namespace=eth hash=0x99348923b9e2b7ed658dcea349b6a8e911bda6b8ada63cc7d75d5a734dab5224
query tmhash with ethhash 0x99348923b9e2b7ed658dcea349b6a8e911bda6b8ada63cc7d75d5a734dab5224 err = <nil>
D[2023-12-13|08:34:51.268] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x99348923b9e2b7ed658dcea349b6a8e911bda6b8ada63cc7d75d5a734dab5224
query tmhash with ethhash 0x99348923b9e2b7ed658dcea349b6a8e911bda6b8ada63cc7d75d5a734dab5224 err = <nil>
D[2023-12-13|08:34:51.373] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x99348923b9e2b7ed658dcea349b6a8e911bda6b8ada63cc7d75d5a734dab5224
query tmhash with ethhash 0x99348923b9e2b7ed658dcea349b6a8e911bda6b8ada63cc7d75d5a734dab5224 err = <nil>
D[2023-12-13|08:34:51.711] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:52.383] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x99348923b9e2b7ed658dcea349b6a8e911bda6b8ada63cc7d75d5a734dab5224
query tmhash with ethhash 0x99348923b9e2b7ed658dcea349b6a8e911bda6b8ada63cc7d75d5a734dab5224 err = <nil>
D[2023-12-13|08:34:52.777] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:53.810] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:54.848] save tx module=txstore websocket=websocket-server height=80 index=0
D[2023-12-13|08:34:54.853] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:55.889] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:56.407] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x99348923b9e2b7ed658dcea349b6a8e911bda6b8ada63cc7d75d5a734dab5224
query tmhash with ethhash 0x99348923b9e2b7ed658dcea349b6a8e911bda6b8ada63cc7d75d5a734dab5224 err = <nil>
D[2023-12-13|08:34:56.476] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x99348923b9e2b7ed658dcea349b6a8e911bda6b8ada63cc7d75d5a734dab5224 logs=[]
D[2023-12-13|08:34:56.479] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:56.506] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:34:56.553] eth_estimateGas module=json-rpc namespace=eth returngas=60749
D[2023-12-13|08:34:56.555] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-13|08:34:56.564] checkTxExist module=json-rpc namespace=eth hash=0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1
query tmhash with ethhash 0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1 err = <nil>
D[2023-12-13|08:34:56.597] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1
query tmhash with ethhash 0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1 err = <nil>
D[2023-12-13|08:34:56.703] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1
query tmhash with ethhash 0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1 err = <nil>
D[2023-12-13|08:34:56.928] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:57.712] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1
query tmhash with ethhash 0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1 err = <nil>
D[2023-12-13|08:34:57.964] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:34:58.990] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:00.015] save tx module=txstore websocket=websocket-server height=89 index=0
D[2023-12-13|08:35:00.022] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:01.052] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:01.732] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1
query tmhash with ethhash 0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1 err = <nil>
D[2023-12-13|08:35:01.777] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1 logs=[]
D[2023-12-13|08:35:01.780] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:35:01.807] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:35:01.854] eth_estimateGas module=json-rpc namespace=eth returngas=140829
D[2023-12-13|08:35:01.857] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-13|08:35:01.868] checkTxExist module=json-rpc namespace=eth hash=0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a
query tmhash with ethhash 0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a err = <nil>
D[2023-12-13|08:35:01.901] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a
query tmhash with ethhash 0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a err = <nil>
D[2023-12-13|08:35:02.005] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a
query tmhash with ethhash 0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a err = <nil>
D[2023-12-13|08:35:02.068] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:03.017] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a
query tmhash with ethhash 0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a err = <nil>
D[2023-12-13|08:35:03.106] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:04.144] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:05.178] save tx module=txstore websocket=websocket-server height=99 index=0
D[2023-12-13|08:35:05.182] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:06.191] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:07.039] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a
query tmhash with ethhash 0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a err = <nil>
D[2023-12-13|08:35:07.104] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a logs=[]
D[2023-12-13|08:35:07.107] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:35:07.137] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:35:07.186] eth_estimateGas module=json-rpc namespace=eth returngas=86658
D[2023-12-13|08:35:07.187] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-13|08:35:07.196] checkTxExist module=json-rpc namespace=eth hash=0xbfe2d55a2ed01ee153068672e38dd4b9f01a60894bbd790973e5dd9aae7929f3
D[2023-12-13|08:35:07.197] have no new block, need wait module=txstore websocket=websocket-server
query tmhash with ethhash 0xbfe2d55a2ed01ee153068672e38dd4b9f01a60894bbd790973e5dd9aae7929f3 err = <nil>
D[2023-12-13|08:35:07.227] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xbfe2d55a2ed01ee153068672e38dd4b9f01a60894bbd790973e5dd9aae7929f3
query tmhash with ethhash 0xbfe2d55a2ed01ee153068672e38dd4b9f01a60894bbd790973e5dd9aae7929f3 err = <nil>
D[2023-12-13|08:35:07.334] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xbfe2d55a2ed01ee153068672e38dd4b9f01a60894bbd790973e5dd9aae7929f3
query tmhash with ethhash 0xbfe2d55a2ed01ee153068672e38dd4b9f01a60894bbd790973e5dd9aae7929f3 err = <nil>
D[2023-12-13|08:35:08.237] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:08.342] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xbfe2d55a2ed01ee153068672e38dd4b9f01a60894bbd790973e5dd9aae7929f3
query tmhash with ethhash 0xbfe2d55a2ed01ee153068672e38dd4b9f01a60894bbd790973e5dd9aae7929f3 err = <nil>
D[2023-12-13|08:35:09.273] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:10.314] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:11.338] save tx module=txstore websocket=websocket-server height=109 index=0
D[2023-12-13|08:35:11.355] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:12.361] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xbfe2d55a2ed01ee153068672e38dd4b9f01a60894bbd790973e5dd9aae7929f3
query tmhash with ethhash 0xbfe2d55a2ed01ee153068672e38dd4b9f01a60894bbd790973e5dd9aae7929f3 err = <nil>
D[2023-12-13|08:35:12.383] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:12.408] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xbfe2d55a2ed01ee153068672e38dd4b9f01a60894bbd790973e5dd9aae7929f3 logs=[]
D[2023-12-13|08:35:12.412] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:35:12.435] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-13|08:35:12.481] eth_estimateGas module=json-rpc namespace=eth returngas=58240
D[2023-12-13|08:35:12.483] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-13|08:35:12.493] checkTxExist module=json-rpc namespace=eth hash=0x64f89c7e3ec62cef73e411ed3bdfc94b85bbd840f95d98a34c4dd719f82071ac
query tmhash with ethhash 0x64f89c7e3ec62cef73e411ed3bdfc94b85bbd840f95d98a34c4dd719f82071ac err = <nil>
D[2023-12-13|08:35:12.525] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x64f89c7e3ec62cef73e411ed3bdfc94b85bbd840f95d98a34c4dd719f82071ac
query tmhash with ethhash 0x64f89c7e3ec62cef73e411ed3bdfc94b85bbd840f95d98a34c4dd719f82071ac err = <nil>
D[2023-12-13|08:35:12.630] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x64f89c7e3ec62cef73e411ed3bdfc94b85bbd840f95d98a34c4dd719f82071ac
query tmhash with ethhash 0x64f89c7e3ec62cef73e411ed3bdfc94b85bbd840f95d98a34c4dd719f82071ac err = <nil>
D[2023-12-13|08:35:13.400] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:13.640] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x64f89c7e3ec62cef73e411ed3bdfc94b85bbd840f95d98a34c4dd719f82071ac
query tmhash with ethhash 0x64f89c7e3ec62cef73e411ed3bdfc94b85bbd840f95d98a34c4dd719f82071ac err = <nil>
D[2023-12-13|08:35:14.434] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:15.479] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:16.505] save tx module=txstore websocket=websocket-server height=118 index=0
D[2023-12-13|08:35:16.522] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:17.560] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:17.663] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x64f89c7e3ec62cef73e411ed3bdfc94b85bbd840f95d98a34c4dd719f82071ac
query tmhash with ethhash 0x64f89c7e3ec62cef73e411ed3bdfc94b85bbd840f95d98a34c4dd719f82071ac err = <nil>
D[2023-12-13|08:35:18.599] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:19.631] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:20.643] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:21.678] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:22.716] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:23.755] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-13|08:35:24.784] have no new block, need wait module=txstore websocket=websocket-server
#!/bin/bash
make stop
rm -rf conf/deploy
cp -r ./backup-1213 conf/deploy
make start
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment