Commit f8291cbc authored by vicotor's avatar vicotor

add new mainchain data

parent 91557adc
=============== Jul 10, 2025 (UTC) ===============
23:32:36.298952 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
23:32:36.308055 db@open opening
23:32:36.337593 version@stat F·[] S·0B[] Sc·[]
23:32:36.341253 db@janitor F·2 G·0
23:32:36.341271 db@open done T·33.201716ms
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": "e3bf362b6fa5879825f9425b",
"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 = "3000ms"
# 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": "cmp1qqqgkdug2846srmx2adjl0p5a8st0w48wd248j",
"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": "0x00008B378851EBa80F66575B2fBC34e9e0b7BAa7"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1q9rs97rjc8s2wv2235j6cyp5y4lj3wl407cu0n",
"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": "0x014702f872C1E0A7314a8D25aC1034257F28BBf5"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1q2q2nuypn9re7fxskeseg8fgj38p4nrzt63ypx",
"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": "0x0280A9F08199479F24d0B661941D28944e1acC62"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1q00d3t06actrqh6r7d6wrrchmec4pgezesuqvh",
"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": "0x03deD8aDFaEe16305F43F374E18F17de7150a322"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1q3uyckvg5tzk96j3fww6rzyvwudrpe84e2ymmj",
"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": "0x04784c5988a2c562Ea514B9da1888c771A30e4f5"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1q55n8q5wkaz56fwucffwtp69azmfwtmlry59vl",
"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": "0x052933828eB7454D25dcc252e58745E8b6972f7F"
}
},
{
"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"
}
}
}
}
}
{"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
=============== Jul 10, 2025 (UTC) ===============
23:32:31.294126 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
23:32:31.298841 db@open opening
23:32:31.301810 version@stat F·[] S·0B[] Sc·[]
23:32:31.304004 db@janitor F·2 G·0
23:32:31.304029 db@open done T·5.166833ms
=============== Jul 10, 2025 (UTC) ===============
23:32:31.310899 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
23:32:31.314036 db@open opening
23:32:31.314203 version@stat F·[] S·0B[] Sc·[]
23:32:31.316231 db@janitor F·2 G·0
23:32:31.316247 db@open done T·2.204453ms
{
"height": "0",
"round": "0",
"step": 0
}
\ No newline at end of file
=============== Jul 10, 2025 (UTC) ===============
23:32:31.316412 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
23:32:31.319527 db@open opening
23:32:31.321200 version@stat F·[] S·0B[] Sc·[]
23:32:31.323389 db@janitor F·2 G·0
23:32:31.323399 db@open done T·3.861427ms
=============== Jul 10, 2025 (UTC) ===============
23:32:31.331275 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
23:32:31.334452 db@open opening
23:32:31.334613 version@stat F·[] S·0B[] Sc·[]
23:32:31.336697 db@janitor F·2 G·0
23:32:31.336711 db@open done T·2.253375ms
This source diff could not be displayed because it is too large. You can view the blob instead.
E[2025-07-10|23:32:36.294] failed to dail backup rpc server module=json-rpc namespace=eth error="dial unix: missing address"
E[2025-07-10|23:32:36.294] failed to dail ext log server websocket=websocket-server api=filter error="dial unix: missing address"
I[2025-07-10|23:32:36.297] Allocated cache and file handles module=leveldb websocket=websocket-server logCtx="[cache 1000.00 MiB handles 1000]"
I[2025-07-10|23:32:36.341] txstore start module=txstore websocket=websocket-server block=1
D[2025-07-10|23:32:36.342] have no new block, need wait module=txstore websocket=websocket-server
I[2025-07-10|23:32:36.354] Starting application REST service (chain-id: "0")... module=rest-server
I[2025-07-10|23:32:36.354] Starting RPC HTTP server on [::]:8545 module=rest-server
D[2025-07-10|23:32:37.342] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:38.343] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:39.344] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:40.345] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:41.346] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:42.347] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:43.348] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:44.349] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:45.350] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:46.351] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:47.351] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:48.353] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:49.354] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:50.356] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:51.357] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:52.357] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:53.360] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:54.361] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:55.362] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:56.364] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:57.364] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:58.061] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:32:58.365] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:58.556] eth_estimateGas module=json-rpc namespace=eth returngas=619697
D[2025-07-10|23:32:58.851] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:32:58.998] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:32:59.142] eth_chainId module=json-rpc namespace=eth
D[2025-07-10|23:32:59.299] checkTxExist module=json-rpc namespace=eth hash=0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618
query tmhash with ethhash 0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618 err = <nil>
D[2025-07-10|23:32:59.367] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:32:59.447] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618
query tmhash with ethhash 0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618 err = <nil>
D[2025-07-10|23:32:59.695] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618
query tmhash with ethhash 0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618 err = <nil>
D[2025-07-10|23:33:00.368] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:00.841] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618
query tmhash with ethhash 0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618 err = <nil>
D[2025-07-10|23:33:01.369] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:02.371] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:03.372] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:04.373] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:04.989] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618
query tmhash with ethhash 0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618 err = <nil>
D[2025-07-10|23:33:05.375] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:06.376] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:07.377] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:08.379] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:09.136] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618
query tmhash with ethhash 0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618 err = <nil>
D[2025-07-10|23:33:09.380] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:10.380] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:11.382] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:12.383] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:13.288] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618
query tmhash with ethhash 0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618 err = <nil>
D[2025-07-10|23:33:13.384] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:13.804] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618 logs="[{\"address\":\"0x614824bf396197024882b45c13e95fbfeab6621a\",\"topics\":[\"0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\",\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x00000000000000000000000000008b378851eba80f66575b2fbc34e9e0b7baa7\"],\"data\":\"0x\",\"blockNumber\":\"0xa\",\"transactionHash\":\"0xc712cc637d9d60132857ecfb15d7b7f35e157a9e84c72eae1b8b7ef9c09ca618\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0xa7e1eb2b08bed00e07a86cea0d66974fcc44b786e44a7d87923946908412cb0e\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2025-07-10|23:33:13.954] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:33:14.119] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:33:14.380] eth_estimateGas failed vm module=json-rpc namespace=eth error="contract address collision"
D[2025-07-10|23:33:14.385] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:14.535] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:33:14.684] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:33:14.947] checkTxExist module=json-rpc namespace=eth hash=0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3
query tmhash with ethhash 0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3 err = <nil>
D[2025-07-10|23:33:15.097] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3
query tmhash with ethhash 0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3 err = <nil>
D[2025-07-10|23:33:15.345] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3
query tmhash with ethhash 0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3 err = <nil>
D[2025-07-10|23:33:15.386] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:16.387] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:16.493] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3
query tmhash with ethhash 0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3 err = <nil>
D[2025-07-10|23:33:17.389] save tx module=txstore websocket=websocket-server height=10 index=0
D[2025-07-10|23:33:17.389] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:18.390] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:19.391] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:20.394] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:20.642] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3
query tmhash with ethhash 0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3 err = <nil>
D[2025-07-10|23:33:21.395] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:22.396] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:23.455] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:24.456] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:24.789] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3
query tmhash with ethhash 0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3 err = <nil>
D[2025-07-10|23:33:25.457] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:26.478] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:27.479] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:28.480] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:28.940] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3
query tmhash with ethhash 0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3 err = <nil>
D[2025-07-10|23:33:29.498] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:29.546] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3 logs="[{\"address\":\"0xbc035d1338d012e7f50851ffe8432655dcbf134d\",\"topics\":[\"0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\",\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x00000000000000000000000000008b378851eba80f66575b2fbc34e9e0b7baa7\"],\"data\":\"0x\",\"blockNumber\":\"0xf\",\"transactionHash\":\"0xd6bf6f1033c3ab5b4ee1aed6bc8551f47f84fd999f66d257272323b4e5d051f3\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0xfafaa463980913441e48119141e2f1deb9126ab049f3ca5eea9f2ce4246b4cb3\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2025-07-10|23:33:29.692] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:33:29.842] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:33:29.998] eth_estimateGas module=json-rpc namespace=eth returngas=60502
D[2025-07-10|23:33:30.142] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:33:30.288] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:33:30.445] checkTxExist module=json-rpc namespace=eth hash=0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916
query tmhash with ethhash 0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916 err = <nil>
D[2025-07-10|23:33:30.499] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:30.604] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916
query tmhash with ethhash 0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916 err = <nil>
D[2025-07-10|23:33:30.850] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916
query tmhash with ethhash 0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916 err = <nil>
D[2025-07-10|23:33:31.501] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:32.000] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916
query tmhash with ethhash 0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916 err = <nil>
D[2025-07-10|23:33:32.528] save tx module=txstore websocket=websocket-server height=15 index=0
D[2025-07-10|23:33:32.530] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:33.531] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:34.532] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:35.544] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:36.149] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916
query tmhash with ethhash 0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916 err = <nil>
D[2025-07-10|23:33:36.545] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:37.547] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:38.565] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:39.566] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:40.295] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916
query tmhash with ethhash 0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916 err = <nil>
D[2025-07-10|23:33:40.567] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:41.585] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:42.586] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:43.587] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:44.443] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916
query tmhash with ethhash 0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916 err = <nil>
D[2025-07-10|23:33:44.607] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:44.938] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x46ee83fbb0ff16eb25fc7b1479ee591ec956ea04da1b10d55aea2fa8f0651916 logs=[]
D[2025-07-10|23:33:45.085] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:33:45.244] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:33:45.403] eth_estimateGas failed vm module=json-rpc namespace=eth error="contract address collision"
D[2025-07-10|23:33:45.550] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:33:45.608] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:45.696] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:33:45.851] checkTxExist module=json-rpc namespace=eth hash=0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e
query tmhash with ethhash 0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e err = <nil>
D[2025-07-10|23:33:46.004] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e
query tmhash with ethhash 0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e err = <nil>
D[2025-07-10|23:33:46.252] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e
query tmhash with ethhash 0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e err = <nil>
D[2025-07-10|23:33:46.609] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:47.403] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e
query tmhash with ethhash 0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e err = <nil>
D[2025-07-10|23:33:47.628] save tx module=txstore websocket=websocket-server height=20 index=0
D[2025-07-10|23:33:47.629] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:48.630] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:49.631] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:50.647] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:51.551] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e
query tmhash with ethhash 0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e err = <nil>
D[2025-07-10|23:33:51.648] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:52.649] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:53.665] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:54.666] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:55.667] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:55.700] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e
query tmhash with ethhash 0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e err = <nil>
D[2025-07-10|23:33:56.681] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:57.683] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:58.683] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:59.695] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:33:59.847] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e
query tmhash with ethhash 0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e err = <nil>
D[2025-07-10|23:34:00.348] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e logs="[{\"address\":\"0xd6e4ca52fb7437675fbee9c2141ca95134534e51\",\"topics\":[\"0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\",\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x00000000000000000000000000008b378851eba80f66575b2fbc34e9e0b7baa7\"],\"data\":\"0x\",\"blockNumber\":\"0x19\",\"transactionHash\":\"0x569e4b07b42a87b700b9fb9aa9d5e19c5ec665df42cdac28487e6d4900494d4e\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0x4ef53af87bbc8d4a24ba15940626b9d3909d3f03db97b82e7c6da536b404e873\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2025-07-10|23:34:00.495] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:34:00.648] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:34:00.696] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:00.805] eth_estimateGas module=json-rpc namespace=eth returngas=60333
D[2025-07-10|23:34:00.954] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:34:01.099] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:34:01.251] checkTxExist module=json-rpc namespace=eth hash=0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479
query tmhash with ethhash 0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479 err = <nil>
D[2025-07-10|23:34:01.402] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479
query tmhash with ethhash 0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479 err = <nil>
D[2025-07-10|23:34:01.648] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479
query tmhash with ethhash 0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479 err = <nil>
D[2025-07-10|23:34:01.696] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:02.707] save tx module=txstore websocket=websocket-server height=25 index=0
D[2025-07-10|23:34:02.708] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:02.795] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479
query tmhash with ethhash 0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479 err = <nil>
D[2025-07-10|23:34:03.708] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:04.709] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:05.717] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:06.718] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:06.942] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479
query tmhash with ethhash 0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479 err = <nil>
D[2025-07-10|23:34:07.719] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:08.730] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:09.731] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:10.732] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:11.088] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479
query tmhash with ethhash 0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479 err = <nil>
D[2025-07-10|23:34:11.741] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:12.742] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:13.743] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:14.754] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:15.241] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479
query tmhash with ethhash 0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479 err = <nil>
D[2025-07-10|23:34:15.726] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x753e58dd31c8d1209debabf1edd18445488588d9975e3d6cbbc95c6240c0c479 logs=[]
D[2025-07-10|23:34:15.755] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:15.873] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:34:16.028] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:34:16.181] eth_estimateGas failed vm module=json-rpc namespace=eth error="contract address collision"
D[2025-07-10|23:34:16.325] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:34:16.468] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:34:16.621] checkTxExist module=json-rpc namespace=eth hash=0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303
query tmhash with ethhash 0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303 err = <nil>
D[2025-07-10|23:34:16.755] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:16.773] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303
query tmhash with ethhash 0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303 err = <nil>
D[2025-07-10|23:34:17.022] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303
query tmhash with ethhash 0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303 err = <nil>
D[2025-07-10|23:34:17.767] save tx module=txstore websocket=websocket-server height=30 index=0
D[2025-07-10|23:34:17.768] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:18.170] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303
query tmhash with ethhash 0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303 err = <nil>
D[2025-07-10|23:34:18.769] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:19.770] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:20.774] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:21.775] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:22.317] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303
query tmhash with ethhash 0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303 err = <nil>
D[2025-07-10|23:34:22.776] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:23.780] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:24.781] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:25.782] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:26.468] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303
query tmhash with ethhash 0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303 err = <nil>
D[2025-07-10|23:34:26.796] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:27.796] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:28.797] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:29.813] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:30.614] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303
query tmhash with ethhash 0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303 err = <nil>
D[2025-07-10|23:34:30.814] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:31.101] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303 logs="[{\"address\":\"0xcb3dde31ca08bf3e9f6220537b5ec2a1f2132146\",\"topics\":[\"0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\",\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x00000000000000000000000000008b378851eba80f66575b2fbc34e9e0b7baa7\"],\"data\":\"0x\",\"blockNumber\":\"0x23\",\"transactionHash\":\"0x7e50cbdb82c3675f87f72fd519da49c6d3f306bec8df8f2bc2983fc0060b7303\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0x655e98c5cbb72ccb2248f6d5df3cf1b5a9f3c054fa4998af3b48064e8351dcd0\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2025-07-10|23:34:31.249] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:34:31.396] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:34:31.551] eth_estimateGas module=json-rpc namespace=eth returngas=60580
D[2025-07-10|23:34:31.692] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:34:31.815] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:31.840] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:34:31.989] checkTxExist module=json-rpc namespace=eth hash=0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e
query tmhash with ethhash 0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e err = <nil>
D[2025-07-10|23:34:32.141] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e
query tmhash with ethhash 0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e err = <nil>
D[2025-07-10|23:34:32.388] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e
query tmhash with ethhash 0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e err = <nil>
D[2025-07-10|23:34:32.823] save tx module=txstore websocket=websocket-server height=35 index=0
D[2025-07-10|23:34:32.823] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:33.534] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e
query tmhash with ethhash 0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e err = <nil>
D[2025-07-10|23:34:33.824] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:34.825] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:35.834] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:36.835] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:37.680] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e
query tmhash with ethhash 0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e err = <nil>
D[2025-07-10|23:34:37.836] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:38.847] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:39.848] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:40.849] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:41.827] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e
query tmhash with ethhash 0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e err = <nil>
D[2025-07-10|23:34:41.860] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:42.861] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:43.862] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:44.871] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:45.872] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:45.974] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e
query tmhash with ethhash 0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e err = <nil>
D[2025-07-10|23:34:46.463] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x458f92a0f9a898e7e1eab27f507d1969e6e1c5fcd54f4cf07980ffc6b7fe3a4e logs=[]
D[2025-07-10|23:34:46.610] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:34:46.768] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:34:46.873] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:46.918] eth_estimateGas failed vm module=json-rpc namespace=eth error="contract address collision"
D[2025-07-10|23:34:47.067] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:34:47.209] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:34:47.367] checkTxExist module=json-rpc namespace=eth hash=0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d
query tmhash with ethhash 0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d err = <nil>
D[2025-07-10|23:34:47.515] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d
query tmhash with ethhash 0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d err = <nil>
D[2025-07-10|23:34:47.764] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d
query tmhash with ethhash 0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d err = <nil>
D[2025-07-10|23:34:47.894] save tx module=txstore websocket=websocket-server height=40 index=0
D[2025-07-10|23:34:47.894] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:48.895] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:48.915] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d
query tmhash with ethhash 0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d err = <nil>
D[2025-07-10|23:34:49.896] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:50.904] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:51.905] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:52.906] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:53.064] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d
query tmhash with ethhash 0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d err = <nil>
D[2025-07-10|23:34:53.910] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:54.910] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:55.911] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:56.922] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:57.212] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d
query tmhash with ethhash 0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d err = <nil>
D[2025-07-10|23:34:57.703] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d logs=[]
D[2025-07-10|23:34:57.850] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:34:57.923] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:57.999] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d logs=[]
D[2025-07-10|23:34:58.147] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:34:58.924] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:34:59.184] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d logs=[]
D[2025-07-10|23:34:59.323] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:34:59.832] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xd565dbe1778dd6043a3a26017318a6fa49bb010966a5549084b7195cd9d7340d logs=[]
D[2025-07-10|23:34:59.975] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:34:59.988] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:00.133] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:35:00.281] eth_estimateGas module=json-rpc namespace=eth returngas=60671
D[2025-07-10|23:35:00.428] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:35:00.568] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:35:00.727] checkTxExist module=json-rpc namespace=eth hash=0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb
query tmhash with ethhash 0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb err = <nil>
D[2025-07-10|23:35:00.873] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb
query tmhash with ethhash 0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb err = <nil>
D[2025-07-10|23:35:00.989] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:01.119] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb
query tmhash with ethhash 0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb err = <nil>
D[2025-07-10|23:35:01.989] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:02.266] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb
query tmhash with ethhash 0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb err = <nil>
D[2025-07-10|23:35:02.999] save tx module=txstore websocket=websocket-server height=45 index=0
D[2025-07-10|23:35:03.000] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:04.000] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:05.001] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:06.412] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb
query tmhash with ethhash 0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb err = <nil>
D[2025-07-10|23:35:06.494] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:07.495] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:07.602] JSON RPC reconnects to Caduceus Node WS websocket=websocket-server address=tcp://localhost:26657/websocket
D[2025-07-10|23:35:07.683] JSON RPC reconnects to Caduceus Node WS websocket=websocket-server address=tcp://localhost:26657/websocket
D[2025-07-10|23:35:08.496] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:09.500] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:10.501] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:10.584] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb
query tmhash with ethhash 0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb err = <nil>
D[2025-07-10|23:35:11.502] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:12.522] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:13.523] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:14.524] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:14.733] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb
query tmhash with ethhash 0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb err = <nil>
D[2025-07-10|23:35:15.237] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb logs=[]
D[2025-07-10|23:35:15.387] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:35:15.538] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x4d87c164d57700be92b1e2eb8bfedf9219e72e15ec7f86e78aaff5371f9b33eb logs=[]
D[2025-07-10|23:35:15.562] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:15.683] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:35:15.837] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:35:15.989] eth_estimateGas failed vm module=json-rpc namespace=eth error="contract address collision"
D[2025-07-10|23:35:16.135] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:35:16.278] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:35:16.434] checkTxExist module=json-rpc namespace=eth hash=0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e
query tmhash with ethhash 0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e err = <nil>
D[2025-07-10|23:35:16.563] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:16.584] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e
query tmhash with ethhash 0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e err = <nil>
D[2025-07-10|23:35:16.836] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e
query tmhash with ethhash 0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e err = <nil>
D[2025-07-10|23:35:17.564] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:17.983] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e
query tmhash with ethhash 0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e err = <nil>
D[2025-07-10|23:35:18.576] save tx module=txstore websocket=websocket-server height=50 index=0
D[2025-07-10|23:35:18.576] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:19.577] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:20.578] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:21.839] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:22.131] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e
query tmhash with ethhash 0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e err = <nil>
D[2025-07-10|23:35:22.840] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:23.841] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:25.025] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:26.026] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:26.277] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e
query tmhash with ethhash 0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e err = <nil>
D[2025-07-10|23:35:27.027] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:28.042] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:29.043] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:30.044] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:30.424] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e
query tmhash with ethhash 0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e err = <nil>
D[2025-07-10|23:35:30.925] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xcded3aabb2d6ea68289f01cc65fbc262ab0632cc28de8f0e872975897b029d4e logs=[]
D[2025-07-10|23:35:31.064] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:31.075] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:35:31.225] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:35:31.382] eth_estimateGas module=json-rpc namespace=eth returngas=60411
D[2025-07-10|23:35:31.529] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:35:31.675] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:35:31.829] checkTxExist module=json-rpc namespace=eth hash=0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f
query tmhash with ethhash 0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f err = <nil>
D[2025-07-10|23:35:31.986] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f
query tmhash with ethhash 0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f err = <nil>
D[2025-07-10|23:35:32.065] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:32.232] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f
query tmhash with ethhash 0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f err = <nil>
D[2025-07-10|23:35:33.066] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:33.381] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f
query tmhash with ethhash 0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f err = <nil>
D[2025-07-10|23:35:34.090] save tx module=txstore websocket=websocket-server height=55 index=0
D[2025-07-10|23:35:34.090] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:35.091] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:36.092] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:37.108] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:37.529] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f
query tmhash with ethhash 0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f err = <nil>
D[2025-07-10|23:35:38.109] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:39.110] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:40.128] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:41.129] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:41.676] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f
query tmhash with ethhash 0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f err = <nil>
D[2025-07-10|23:35:42.130] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:43.148] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:44.149] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:45.150] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:45.821] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f
query tmhash with ethhash 0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f err = <nil>
D[2025-07-10|23:35:46.168] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:46.309] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x8b7d3f25d28bbc95d5cce038db4611e8405bf75f2631aea2f3bcc783b91d924f logs=[]
D[2025-07-10|23:35:46.458] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:35:46.604] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:35:46.772] eth_estimateGas module=json-rpc namespace=eth returngas=140660
D[2025-07-10|23:35:46.913] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:35:47.062] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:35:47.169] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:47.211] checkTxExist module=json-rpc namespace=eth hash=0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e
query tmhash with ethhash 0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e err = <nil>
D[2025-07-10|23:35:47.371] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e
query tmhash with ethhash 0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e err = <nil>
D[2025-07-10|23:35:47.614] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e
query tmhash with ethhash 0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e err = <nil>
D[2025-07-10|23:35:48.170] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:48.762] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e
query tmhash with ethhash 0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e err = <nil>
D[2025-07-10|23:35:49.175] save tx module=txstore websocket=websocket-server height=60 index=0
D[2025-07-10|23:35:49.176] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:50.177] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:51.178] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:52.185] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:52.913] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e
query tmhash with ethhash 0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e err = <nil>
D[2025-07-10|23:35:53.186] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:54.187] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:55.193] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:56.194] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:57.063] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e
query tmhash with ethhash 0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e err = <nil>
D[2025-07-10|23:35:57.194] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:58.215] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:35:59.216] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:00.217] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:01.218] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e
query tmhash with ethhash 0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e err = <nil>
D[2025-07-10|23:36:01.223] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:01.706] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xffa52f3a70dc9da8d41af61b1dae1d55b9e954734f68e948722dd045b8ce3e1e logs=[]
D[2025-07-10|23:36:01.862] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:36:02.007] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:36:02.162] eth_estimateGas module=json-rpc namespace=eth returngas=101829
D[2025-07-10|23:36:02.224] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:02.302] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:36:02.447] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:36:02.597] checkTxExist module=json-rpc namespace=eth hash=0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785
query tmhash with ethhash 0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785 err = <nil>
D[2025-07-10|23:36:02.750] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785
query tmhash with ethhash 0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785 err = <nil>
D[2025-07-10|23:36:02.998] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785
query tmhash with ethhash 0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785 err = <nil>
D[2025-07-10|23:36:03.224] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:04.146] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785
query tmhash with ethhash 0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785 err = <nil>
D[2025-07-10|23:36:04.348] save tx module=txstore websocket=websocket-server height=65 index=0
D[2025-07-10|23:36:04.348] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:05.349] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:06.350] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:07.379] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:08.295] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785
query tmhash with ethhash 0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785 err = <nil>
D[2025-07-10|23:36:08.380] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:09.381] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:10.396] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:11.397] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:12.398] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:12.445] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785
query tmhash with ethhash 0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785 err = <nil>
D[2025-07-10|23:36:13.406] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:14.407] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:15.408] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:16.416] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:16.592] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785
query tmhash with ethhash 0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785 err = <nil>
D[2025-07-10|23:36:17.067] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x83da5f64acecfa7958d1c11928e32ce5890df0e2001337013bd0cb2752032785 logs=[]
D[2025-07-10|23:36:17.211] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:36:17.355] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:36:17.416] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:17.506] eth_estimateGas module=json-rpc namespace=eth returngas=101829
D[2025-07-10|23:36:17.650] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:36:17.798] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:36:17.945] checkTxExist module=json-rpc namespace=eth hash=0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f
query tmhash with ethhash 0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f err = <nil>
D[2025-07-10|23:36:18.099] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f
query tmhash with ethhash 0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f err = <nil>
D[2025-07-10|23:36:18.347] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f
query tmhash with ethhash 0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f err = <nil>
D[2025-07-10|23:36:18.417] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:19.424] save tx module=txstore websocket=websocket-server height=70 index=0
D[2025-07-10|23:36:19.425] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:19.498] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f
query tmhash with ethhash 0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f err = <nil>
D[2025-07-10|23:36:20.425] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:21.426] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:22.434] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:23.435] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:23.651] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f
query tmhash with ethhash 0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f err = <nil>
D[2025-07-10|23:36:24.435] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:25.445] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:26.446] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:27.446] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:27.800] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f
query tmhash with ethhash 0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f err = <nil>
D[2025-07-10|23:36:28.454] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:29.455] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:30.456] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:31.467] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:31.948] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f
query tmhash with ethhash 0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f err = <nil>
D[2025-07-10|23:36:32.439] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xe0c4df6af6b94ba9fc3de722584d4418b0bddce08697aadfdadb4a48ecf3290f logs=[]
D[2025-07-10|23:36:32.467] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:32.584] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:36:32.728] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:36:32.885] eth_estimateGas module=json-rpc namespace=eth returngas=101829
D[2025-07-10|23:36:33.028] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:36:33.172] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:36:33.320] checkTxExist module=json-rpc namespace=eth hash=0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1
query tmhash with ethhash 0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1 err = <nil>
D[2025-07-10|23:36:33.468] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:33.470] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1
query tmhash with ethhash 0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1 err = <nil>
D[2025-07-10|23:36:33.717] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1
query tmhash with ethhash 0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1 err = <nil>
D[2025-07-10|23:36:34.473] save tx module=txstore websocket=websocket-server height=75 index=0
D[2025-07-10|23:36:34.474] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:34.863] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1
query tmhash with ethhash 0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1 err = <nil>
D[2025-07-10|23:36:35.475] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:36.477] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:37.484] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:38.485] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:39.015] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1
query tmhash with ethhash 0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1 err = <nil>
D[2025-07-10|23:36:39.485] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:40.496] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:41.497] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:42.497] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:43.162] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1
query tmhash with ethhash 0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1 err = <nil>
D[2025-07-10|23:36:43.510] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:44.511] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:45.511] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:46.519] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:47.311] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1
query tmhash with ethhash 0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1 err = <nil>
D[2025-07-10|23:36:47.520] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:47.793] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xf1667f53fcff249c619525f0f9c3d7cd6424019469bcf8184fdafb0a3479efa1 logs=[]
D[2025-07-10|23:36:47.939] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:36:48.082] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:36:48.236] eth_estimateGas module=json-rpc namespace=eth returngas=101829
D[2025-07-10|23:36:48.375] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:36:48.521] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:36:48.521] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:48.668] checkTxExist module=json-rpc namespace=eth hash=0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc
query tmhash with ethhash 0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc err = <nil>
D[2025-07-10|23:36:48.819] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc
query tmhash with ethhash 0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc err = <nil>
D[2025-07-10|23:36:49.063] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc
query tmhash with ethhash 0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc err = <nil>
D[2025-07-10|23:36:49.527] save tx module=txstore websocket=websocket-server height=80 index=0
D[2025-07-10|23:36:49.528] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:50.212] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc
query tmhash with ethhash 0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc err = <nil>
D[2025-07-10|23:36:50.529] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:51.529] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:52.539] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:53.540] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:54.540] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:54.664] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc
query tmhash with ethhash 0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc err = <nil>
D[2025-07-10|23:36:55.550] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:56.551] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:57.552] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:58.562] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:58.817] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc
query tmhash with ethhash 0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc err = <nil>
D[2025-07-10|23:36:59.307] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc logs=[]
D[2025-07-10|23:36:59.452] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:36:59.563] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:36:59.602] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc logs=[]
D[2025-07-10|23:36:59.748] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:37:00.255] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc logs=[]
D[2025-07-10|23:37:00.396] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:37:00.564] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:00.901] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc logs=[]
D[2025-07-10|23:37:01.045] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:37:01.551] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x5df031aed8a926fb9355ec70a526e76266342edd2bc9d9a62fce5004ee938bcc logs=[]
D[2025-07-10|23:37:01.601] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:01.696] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:37:01.845] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:37:01.996] eth_estimateGas module=json-rpc namespace=eth returngas=101829
D[2025-07-10|23:37:02.139] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:37:02.281] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:37:02.435] checkTxExist module=json-rpc namespace=eth hash=0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f
query tmhash with ethhash 0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f err = <nil>
D[2025-07-10|23:37:02.582] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f
query tmhash with ethhash 0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f err = <nil>
D[2025-07-10|23:37:02.602] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:02.829] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f
query tmhash with ethhash 0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f err = <nil>
D[2025-07-10|23:37:03.603] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:03.977] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f
query tmhash with ethhash 0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f err = <nil>
D[2025-07-10|23:37:04.700] save tx module=txstore websocket=websocket-server height=85 index=0
D[2025-07-10|23:37:04.701] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:05.702] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:06.702] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:07.711] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:08.124] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f
query tmhash with ethhash 0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f err = <nil>
D[2025-07-10|23:37:08.712] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:09.712] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:11.213] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:12.213] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:12.271] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f
query tmhash with ethhash 0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f err = <nil>
D[2025-07-10|23:37:13.214] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:14.223] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:15.224] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:16.225] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:16.417] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f
query tmhash with ethhash 0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f err = <nil>
D[2025-07-10|23:37:16.918] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f logs=[]
D[2025-07-10|23:37:17.065] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:37:17.218] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x52ba9faaaf0659a3bbcb5b0fe2054e04a8ea7ff684e9693c4fb78317dc05e72f logs=[]
D[2025-07-10|23:37:17.264] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:17.366] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:37:17.519] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:37:17.679] eth_estimateGas module=json-rpc namespace=eth returngas=116350
D[2025-07-10|23:37:17.826] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:37:17.975] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:37:18.127] checkTxExist module=json-rpc namespace=eth hash=0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25
query tmhash with ethhash 0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25 err = <nil>
D[2025-07-10|23:37:18.265] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:18.279] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25
query tmhash with ethhash 0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25 err = <nil>
D[2025-07-10|23:37:18.526] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25
query tmhash with ethhash 0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25 err = <nil>
D[2025-07-10|23:37:19.266] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:19.674] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25
query tmhash with ethhash 0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25 err = <nil>
D[2025-07-10|23:37:20.275] save tx module=txstore websocket=websocket-server height=90 index=0
D[2025-07-10|23:37:20.276] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:21.276] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:22.277] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:23.504] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:23.819] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25
query tmhash with ethhash 0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25 err = <nil>
D[2025-07-10|23:37:24.505] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:25.505] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:26.708] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:27.709] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:27.969] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25
query tmhash with ethhash 0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25 err = <nil>
D[2025-07-10|23:37:28.709] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:30.331] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:31.332] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:32.117] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25
query tmhash with ethhash 0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25 err = <nil>
D[2025-07-10|23:37:32.333] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:32.610] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25 logs="[{\"address\":\"0xcb3dde31ca08bf3e9f6220537b5ec2a1f2132146\",\"topics\":[\"0xe366c1c0452ed8eec96861e9e54141ebff23c9ec89fe27b996b45f5ec3884987\",\"0x000000000000000000000000014702f872c1e0a7314a8d25ac1034257f28bbf5\"],\"data\":\"0x\",\"blockNumber\":\"0x5f\",\"transactionHash\":\"0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0x9ce602af96e0c222955e81d4d83da0c6609042f878ee9e83ba302c120b251bc8\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2025-07-10|23:37:32.758] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:37:32.907] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25 logs="[{\"address\":\"0xcb3dde31ca08bf3e9f6220537b5ec2a1f2132146\",\"topics\":[\"0xe366c1c0452ed8eec96861e9e54141ebff23c9ec89fe27b996b45f5ec3884987\",\"0x000000000000000000000000014702f872c1e0a7314a8d25ac1034257f28bbf5\"],\"data\":\"0x\",\"blockNumber\":\"0x5f\",\"transactionHash\":\"0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0x9ce602af96e0c222955e81d4d83da0c6609042f878ee9e83ba302c120b251bc8\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2025-07-10|23:37:33.054] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:37:33.349] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:33.559] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25 logs="[{\"address\":\"0xcb3dde31ca08bf3e9f6220537b5ec2a1f2132146\",\"topics\":[\"0xe366c1c0452ed8eec96861e9e54141ebff23c9ec89fe27b996b45f5ec3884987\",\"0x000000000000000000000000014702f872c1e0a7314a8d25ac1034257f28bbf5\"],\"data\":\"0x\",\"blockNumber\":\"0x5f\",\"transactionHash\":\"0xfe19a224c65cce29d0b19b7dadf81577a799f012b5ae681b1f35c1765737aa25\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0x9ce602af96e0c222955e81d4d83da0c6609042f878ee9e83ba302c120b251bc8\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2025-07-10|23:37:33.700] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:37:33.851] eth_blockNumber module=json-rpc namespace=eth
D[2025-07-10|23:37:34.001] eth_estimateGas module=json-rpc namespace=eth returngas=58266
D[2025-07-10|23:37:34.148] eth_gasPrice module=json-rpc namespace=eth
D[2025-07-10|23:37:34.290] eth_getTransactionCount module=json-rpc namespace=eth address=0x00008b378851eba80f66575b2fbc34e9e0b7baa7 blocknumber=-2
D[2025-07-10|23:37:34.350] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:34.447] checkTxExist module=json-rpc namespace=eth hash=0xdb967981899863a93b5b0c660fd8ab2594c300ee2686adc032b60aa1cf824141
query tmhash with ethhash 0xdb967981899863a93b5b0c660fd8ab2594c300ee2686adc032b60aa1cf824141 err = <nil>
D[2025-07-10|23:37:34.599] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xdb967981899863a93b5b0c660fd8ab2594c300ee2686adc032b60aa1cf824141
query tmhash with ethhash 0xdb967981899863a93b5b0c660fd8ab2594c300ee2686adc032b60aa1cf824141 err = <nil>
D[2025-07-10|23:37:34.851] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xdb967981899863a93b5b0c660fd8ab2594c300ee2686adc032b60aa1cf824141
query tmhash with ethhash 0xdb967981899863a93b5b0c660fd8ab2594c300ee2686adc032b60aa1cf824141 err = <nil>
D[2025-07-10|23:37:35.351] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:35.995] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xdb967981899863a93b5b0c660fd8ab2594c300ee2686adc032b60aa1cf824141
query tmhash with ethhash 0xdb967981899863a93b5b0c660fd8ab2594c300ee2686adc032b60aa1cf824141 err = <nil>
D[2025-07-10|23:37:36.370] save tx module=txstore websocket=websocket-server height=95 index=0
D[2025-07-10|23:37:36.371] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:37.372] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:38.373] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:39.317] JSON RPC reconnects to Caduceus Node WS websocket=websocket-server address=tcp://localhost:26657/websocket
D[2025-07-10|23:37:39.391] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:39.587] JSON RPC reconnects to Caduceus Node WS websocket=websocket-server address=tcp://localhost:26657/websocket
D[2025-07-10|23:37:40.141] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xdb967981899863a93b5b0c660fd8ab2594c300ee2686adc032b60aa1cf824141
query tmhash with ethhash 0xdb967981899863a93b5b0c660fd8ab2594c300ee2686adc032b60aa1cf824141 err = <nil>
D[2025-07-10|23:37:40.392] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:41.393] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:42.413] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:43.414] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:44.286] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xdb967981899863a93b5b0c660fd8ab2594c300ee2686adc032b60aa1cf824141
query tmhash with ethhash 0xdb967981899863a93b5b0c660fd8ab2594c300ee2686adc032b60aa1cf824141 err = <nil>
D[2025-07-10|23:37:44.415] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:45.433] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:46.434] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:47.435] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:48.432] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xdb967981899863a93b5b0c660fd8ab2594c300ee2686adc032b60aa1cf824141
query tmhash with ethhash 0xdb967981899863a93b5b0c660fd8ab2594c300ee2686adc032b60aa1cf824141 err = <nil>
D[2025-07-10|23:37:48.452] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:49.453] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:50.454] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:51.472] save tx module=txstore websocket=websocket-server height=100 index=0
D[2025-07-10|23:37:51.472] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:52.473] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:53.474] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:54.489] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:55.490] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:56.491] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:57.510] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:58.511] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:37:59.512] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:00.528] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:01.529] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:02.530] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:03.547] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:04.548] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:05.549] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:06.560] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:07.561] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:08.562] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:09.572] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:10.573] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:11.573] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:12.586] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:13.586] have no new block, need wait module=txstore websocket=websocket-server
D[2025-07-10|23:38:14.587] have no new block, need wait module=txstore websocket=websocket-server
# envrionment
One validator and six rpcnodes.
```bash
export RPCNODES="0x00008B378851EBa80F66575B2fBC34e9e0b7BAa7,0x014702f872C1E0A7314a8D25aC1034257F28BBf5,0x0280A9F08199479F24d0B661941D28944e1acC62,0x03deD8aDFaEe16305F43F374E18F17de7150a322,0x04784c5988a2c562Ea514B9da1888c771A30e4f5,0x052933828eB7454D25dcc252e58745E8b6972f7F"
export VALIDATORS="0x014702f872C1E0A7314a8D25aC1034257F28BBf5"
```
Detail contract address.
```txt
RootContract deploy at 0x614824bF396197024882b45c13E95FbFeAB6621A
ConsensusContract deploy at 0xbc035d1338D012e7f50851ffe8432655DcBF134D
RpcnodeContract deploy at 0xd6e4CA52FB7437675fBee9C2141CA95134534e51
ValidatorsContract deploy at 0xCb3DdE31cA08Bf3e9F6220537B5EC2A1F2132146
BlockConfirmContract deploy at 0xEB2d61344A0115058A4C3b398800Fb8D49D5e558
ElectionContract deploy at 0xCf9029081E39f6f1F51aEf14c36B50f7d37416Ab
```
Contract Version:
```
https://code.wuban.net.cn/cmpchain/layer1_contracts
commit: 4a72de6d98169ae160bd1b2a52046f3acab31821
```
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