Commit d5bad38f authored by vicotor's avatar vicotor

add 3-vals data

parent 706ae9e5
=============== Dec 27, 2023 (UTC) ===============
06:19:36.352494 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
06:19:36.358925 db@open opening
06:19:36.370196 version@stat F·[] S·0B[] Sc·[]
06:19:36.372843 db@janitor F·2 G·0
06:19:36.373643 db@open done T·14.07ms
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": "4c5163e428c9e7b9f89b1cd5",
"addrs": []
}
\ No newline at end of file
# This is a TOML config file.
# For more information, see https://github.com/toml-lang/toml
##### main base config options #####
# The minimum gas prices a validator is willing to accept for processing a
# transaction. A transaction's fees must meet the minimum of any denomination
# specified in this config (e.g. 0.25token1;0.0001token2).
minimum-gas-prices = ""
# HaltHeight contains a non-zero block height at which a node will gracefully
# halt and shutdown that can be used to assist upgrades and testing.
#
# Note: Commitment of state will be attempted on the corresponding block.
halt-height = 0
# HaltTime contains a non-zero minimum block time (in Unix seconds) at which
# a node will gracefully halt and shutdown that can be used to assist upgrades
# and testing.
#
# Note: Commitment of state will be attempted on the corresponding block.
halt-time = 0
# InterBlockCache enables inter-block caching.
inter-block-cache = true
# Pruning sets the pruning strategy: syncable, nothing, everything
# syncable: only those states not needed for state syncing will be deleted (keeps last 100 + every 10000th)
# nothing: all historic states will be saved, nothing will be deleted (i.e. archiving node)
# everything: all saved states will be deleted, storing only the current state
pruning = "syncable"
# This is a TOML config file.
# For more information, see https://github.com/toml-lang/toml
# NOTE: Any path below can be absolute (e.g. "/var/myawesomeapp/data") or
# relative to the home directory (e.g. "data"). The home directory is
# "$HOME/.tendermint" by default, but could be changed via $TMHOME env variable
# or --home cmd flag.
##### main base config options #####
# TCP or UNIX socket address of the ABCI application,
# or the name of an ABCI application compiled in with the Metaversegraph binary
proxy_app = "tcp://127.0.0.1:26658"
# A custom human readable name for this node
moniker = "node1"
# If this node is many blocks behind the tip of the chain, FastSync
# allows them to catchup quickly by downloading blocks in parallel
# and verifying their commits
fast_sync = true
# Database backend: goleveldb | cleveldb | boltdb | rocksdb
# * goleveldb (github.com/syndtr/goleveldb - most popular implementation)
# - pure go
# - stable
# * cleveldb (uses levigo wrapper)
# - fast
# - requires gcc
# - use cleveldb build tag (go build -tags cleveldb)
# * boltdb (uses etcd's fork of bolt - github.com/etcd-io/bbolt)
# - EXPERIMENTAL
# - may be faster is some use-cases (random reads - indexer)
# - use boltdb build tag (go build -tags boltdb)
# * rocksdb (uses github.com/tecbot/gorocksdb)
# - EXPERIMENTAL
# - requires gcc
# - use rocksdb build tag (go build -tags rocksdb)
db_backend = "goleveldb"
# Database directory
db_dir = "data"
# Output level for logging, including package level options
log_level = "info"
# Output format: 'plain' (colored text) or 'json'
log_format = "plain"
##### additional base config options #####
# Path to the JSON file containing the initial validator set and other meta data
genesis_file = "config/genesis.json"
# Path to the JSON file containing the private key to use as a validator in the consensus protocol
priv_validator_key_file = "config/priv_validator_key.json"
# Path to the JSON file containing the last sign state of a validator
priv_validator_state_file = "data/priv_validator_state.json"
# TCP or UNIX socket address for Metaversegraph to listen on for
# connections from an external PrivValidator process
priv_validator_laddr = ""
# Path to the JSON file containing the private key to use for node authentication in the p2p protocol
node_key_file = "config/node_key.json"
# Mechanism to connect to the ABCI application: socket | grpc
abci = "socket"
# TCP or UNIX socket address for the profiling server to listen on
prof_laddr = "localhost:6060"
# If true, query the ABCI app on connecting to a new peer
# so the app can decide if we should keep the connection or not
filter_peers = false
##### advanced configuration options #####
##### rpc server configuration options #####
[rpc]
# TCP or UNIX socket address for the RPC server to listen on
laddr = "tcp://127.0.0.1:26657"
# A list of origins a cross-domain request can be executed from
# Default value '[]' disables cors support
# Use '["*"]' to allow any origin
cors_allowed_origins = []
# A list of methods the client is allowed to use with cross-domain requests
cors_allowed_methods = ["HEAD", "GET", "POST", ]
# A list of non simple headers the client is allowed to use with cross-domain requests
cors_allowed_headers = ["Origin", "Accept", "Content-Type", "X-Requested-With", "X-Server-Time", ]
# TCP or UNIX socket address for the gRPC server to listen on
# NOTE: This server only supports /broadcast_tx_commit
grpc_laddr = ""
# Maximum number of simultaneous connections.
# Does not include RPC (HTTP&WebSocket) connections. See max_open_connections
# If you want to accept a larger number than the default, make sure
# you increase your OS limits.
# 0 - unlimited.
# Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files}
# 1024 - 40 - 10 - 50 = 924 = ~900
grpc_max_open_connections = 900
# Activate unsafe RPC commands like /dial_seeds and /unsafe_flush_mempool
unsafe = false
# Maximum number of simultaneous connections (including WebSocket).
# Does not include gRPC connections. See grpc_max_open_connections
# If you want to accept a larger number than the default, make sure
# you increase your OS limits.
# 0 - unlimited.
# Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files}
# 1024 - 40 - 10 - 50 = 924 = ~900
max_open_connections = 900
# Maximum number of unique clientIDs that can /subscribe
# If you're using /broadcast_tx_commit, set to the estimated maximum number
# of broadcast_tx_commit calls per block.
max_subscription_clients = 100
# Maximum number of unique queries a given client can /subscribe to
# If you're using GRPC (or Local RPC client) and /broadcast_tx_commit, set to
# the estimated # maximum number of broadcast_tx_commit calls per block.
max_subscriptions_per_client = 5
# How long to wait for a tx to be committed during /broadcast_tx_commit.
# WARNING: Using a value larger than 10s will result in increasing the
# global HTTP write timeout, which applies to all connections and endpoints.
timeout_broadcast_tx_commit = "10s"
# Maximum size of request body, in bytes
max_body_bytes = 1000000
# Maximum size of request header, in bytes
max_header_bytes = 1048576
# The path to a file containing certificate that is used to create the HTTPS server.
# Migth be either absolute path or path related to tendermint's config directory.
# If the certificate is signed by a certificate authority,
# the certFile should be the concatenation of the server's certificate, any intermediates,
# and the CA's certificate.
# NOTE: both tls_cert_file and tls_key_file must be present for Metaversegraph to create HTTPS server.
# Otherwise, HTTP server is run.
tls_cert_file = ""
# The path to a file containing matching private key that is used to create the HTTPS server.
# Migth be either absolute path or path related to tendermint's config directory.
# NOTE: both tls_cert_file and tls_key_file must be present for Metaversegraph to create HTTPS server.
# Otherwise, HTTP server is run.
tls_key_file = ""
##### peer to peer configuration options #####
[p2p]
# Address to listen for incoming connections
laddr = "tcp://0.0.0.0:26656"
# Address to advertise to peers for them to dial
# If empty, will use the same port as the laddr,
# and will introspect on the listener or use UPnP
# to figure out the address.
external_address = ""
# Comma separated list of seed nodes to connect to
seeds = ""
# Comma separated list of nodes to keep persistent connections to
persistent_peers = "8767568e976249e5a7306f5c0a9bc6a1df5f3d5f@172.77.5.1:26656"
# UPNP port forwarding
upnp = false
# Path to address book
addr_book_file = "config/addrbook.json"
# Set true for strict address routability rules
# Set false for private or local networks
addr_book_strict = false
# Maximum number of inbound peers
max_num_inbound_peers = 40
# Maximum number of outbound peers to connect to, excluding persistent peers
max_num_outbound_peers = 10
# List of node IDs, to which a connection will be (re)established ignoring any existing limits
unconditional_peer_ids = ""
# Maximum pause when redialing a persistent peer (if zero, exponential backoff is used)
persistent_peers_max_dial_period = "0s"
# Time to wait before flushing messages out on the connection
flush_throttle_timeout = "100ms"
# Maximum size of a message packet payload, in bytes
max_packet_msg_payload_size = 1024
# Rate at which packets can be sent, in bytes/second
send_rate = 5120000
# Rate at which packets can be received, in bytes/second
recv_rate = 5120000
# Set true to enable the peer-exchange reactor
pex = true
# Seed mode, in which node constantly crawls the network and looks for
# peers. If another node asks it for addresses, it responds and disconnects.
#
# Does not work if the peer-exchange reactor is disabled.
seed_mode = false
# Comma separated list of peer IDs to keep private (will not be gossiped to other peers)
private_peer_ids = ""
# Toggle to disable guard against peers connecting from the same ip.
allow_duplicate_ip = false
# Peer connection configuration.
handshake_timeout = "20s"
dial_timeout = "3s"
##### mempool configuration options #####
[mempool]
recheck = false
broadcast = false
wal_dir = ""
# Maximum number of transactions in the mempool
size = 500000
# Limit the total size of all txs in the mempool.
# This only accounts for raw transactions (e.g. given 1MB transactions and
# max_txs_bytes=5MB, mempool will only accept 5 transactions).
max_txs_bytes = 1073741824
# Size of the cache (used to filter transactions we saw earlier) in transactions
cache_size = 1000000
# Maximum size of a single transaction.
# NOTE: the max size of a tx transmitted over the network is {max_tx_bytes} + {amino overhead}.
max_tx_bytes = 1048576
##### fast sync configuration options #####
[fastsync]
# Fast Sync version to use:
# 1) "v0" (default) - the legacy fast sync implementation
# 2) "v1" - refactor of v0 version for better testability
version = "v0"
##### consensus configuration options #####
[consensus]
# EmptyEvents mode and possible interval between empty events
create_empty_events = true
create_empty_events_interval = "500ms"
# Reactor sleep duration parameters
peer_gossip_sleep_duration = "50ms"
##### transactions indexer configuration options #####
[tx_index]
# What indexer to use for transactions
#
# Options:
# 1) "null"
# 2) "kv" (default) - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend).
indexer = "kv"
# Comma-separated list of compositeKeys to index (by default the only key is "tx.hash")
# Remember that Event has the following structure: type.key
# type: [
# key: value,
# ...
# ]
#
# You can also index transactions by height by adding "tx.height" key here.
#
# It's recommended to index only a subset of keys due to possible memory
# bloat. This is, of course, depends on the indexer's DB and the volume of
# transactions.
index_keys = ""
# When set to true, tells indexer to index all compositeKeys (predefined keys:
# "tx.hash", "tx.height" and all keys from DeliverTx responses).
#
# Note this may be not desirable (see the comment above). IndexKeys has a
# precedence over IndexAllKeys (i.e. when given both, IndexKeys will be
# indexed).
index_all_keys = true
##### instrumentation configuration options #####
[instrumentation]
# When true, Prometheus metrics are served under /metrics on
# PrometheusListenAddr.
# Check out the documentation for the list of available metrics.
prometheus = false
# Address to listen for Prometheus collector(s) connections
prometheus_listen_addr = ":26660"
# Maximum number of simultaneous connections.
# If you want to accept a larger number than the default, make sure
# you increase your OS limits.
# 0 - unlimited.
max_open_connections = 3
# Instrumentation namespace
namespace = "cmp"
##### extra configuration options #####
[extra]
save_tx_err = false
save_tx_redis = ""
save_tx_redis_password = ""
{
"genesis_time": "2023-07-10T04:02:14.858967428Z",
"chain_id": "1024",
"consensus_params": {
"event": {
"max_gas": "-1",
"max_bytes": "131072",
"time_iota_ms": "1000"
},
"validator": {
"pub_key_types": [
"ed25519"
]
}
},
"app_hash": "",
"app_state": {
"params": null,
"genutil": {
"gentxs": [
{
"type": "cosmos-sdk/StdTx",
"value": {
"msg": [
{
"type": "cosmos-sdk/MsgCreateValidator",
"value": {
"description": {
"moniker": "node1",
"identity": "",
"website": "",
"security_contact": "",
"details": ""
},
"commission": {
"rate": "0.100000000000000000",
"max_rate": "0.200000000000000000",
"max_change_rate": "0.010000000000000000"
},
"min_self_delegation": "1",
"delegator_address": "cmp1u8k3dapx7xwlf7w2req9dx3pfgk08y3pewqyaa",
"validator_address": "cmpvaloper1u8k3dapx7xwlf7w2req9dx3pfgk08y3pqzcyf2",
"pubkey": "cmpvalconspub1l67l54pqsrce5kjca9n2udkwmc3l64wusltprnvw47jx8y5nf35sgm0xqjxs2pk75s",
"value": {
"denom": "cmp",
"amount": "1000000000000000000"
}
}
}
],
"fee": {
"amount": [],
"gas": "200000"
},
"signatures": [
{
"pub_key": {
"type": "crypto/PubKeySecp256k1",
"value": "BOumfO2q5AR3rTPOxUo+H1i0LVMCyxWm7uKMueexxiRiSt7amJuC3i6eaB4LEV1wVN8MRSG6/+nI3mML6GDrHQQ="
},
"signature": "N4CxR6/KdBx83IKE7KIxB1gsNKjHl6KwBbsNaoL+5YZNSHOAZ2cmf5q8BzNusPKtYN4qsyqLw5KU1O/eglclmQA="
}
],
"memo": "8767568e976249e5a7306f5c0a9bc6a1df5f3d5f@172.77.5.1:26656"
}
}
]
},
"supply": {
"supply": []
},
"gov": {
"starting_proposal_id": "1",
"deposits": null,
"votes": null,
"proposals": null,
"deposit_params": {
"min_deposit": [
{
"denom": "cmp",
"amount": "10000000000000000000"
}
],
"max_deposit_period": "172800000000000"
},
"voting_params": {
"voting_period": "172800000000000"
},
"tally_params": {
"quorum": "0.334000000000000000",
"threshold": "0.500000000000000000",
"veto": "0.334000000000000000"
}
},
"iam": {},
"staking": {
"params": {
"unbonding_time": "1814400000000000",
"max_validators": 100,
"max_entries": 7,
"historical_entries": 0,
"bond_denom": "cmp"
},
"last_total_power": "0",
"last_validator_powers": null,
"validators": null,
"delegations": null,
"unbonding_delegations": null,
"redelegations": null,
"exported": false
},
"crisis": {
"constant_fee": {
"denom": "cmp",
"amount": "1000"
}
},
"punishment": {},
"distribution": {
"params": {
"community_tax": "0.020000000000000000",
"base_proposer_reward": "0.010000000000000000",
"bonus_proposer_reward": "0.040000000000000000",
"withdraw_addr_enabled": true
},
"fee_pool": {
"community_pool": []
},
"delegator_withdraw_infos": [],
"previous_proposer": "",
"outstanding_rewards": [],
"validator_accumulated_commissions": [],
"validator_historical_rewards": [],
"validator_current_rewards": [],
"delegator_starting_infos": [],
"validator_slash_events": []
},
"slashing": {
"params": {
"signed_blocks_window": "100",
"min_signed_per_window": "0.500000000000000000",
"downtime_jail_duration": "600000000000",
"slash_fraction_double_sign": "0.050000000000000000",
"slash_fraction_downtime": "0.010000000000000000"
},
"signing_infos": {},
"missed_blocks": {}
},
"auth": {
"params": {
"max_memo_characters": "256",
"tx_sig_limit": "7",
"tx_size_cost_per_byte": "0",
"sig_verify_cost_ed25519": "590",
"sig_verify_cost_secp256k1": "1000"
},
"accounts": [
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1r9rwywd2tcldnlusxqqyk92fc99fcrr863g7pe",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "1000000000000000000000000000"
},
{
"denom": "coin0",
"amount": "1"
},
{
"denom": "coin1",
"amount": "1"
},
{
"denom": "coin2",
"amount": "1"
},
{
"denom": "coin3",
"amount": "1"
},
{
"denom": "coin4",
"amount": "1"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x1946e239aa5e3ed9ff9030004b1549c14a9c0c67"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1u8k3dapx7xwlf7w2req9dx3pfgk08y3pewqyaa",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xe1ed16f426f19df4f9ca1e40569a214a2cf39221"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp184njle738cp07nvjpsgteedc4zwrw3s4umhdnp",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x3d672fe7d13e02ff4d920c10bce5b8a89c374615"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp158yqhh23t45v26h0fwz06074px8hwlu6j6j5ka",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xa1c80bdd515d68c56aef4b84fd3fd5098f777f9a"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1p8rrym7u0vrgwfp7p6a77g4gfz8q8r0uwqq5y9",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x09c6326fdc7b0687243e0ebbef22a8488e038dfc"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp12uvupl9dkde6g26qx968l7dc0g4mk9qm0tn9dj",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x5719c0fcadb373a42b4031747ff9b87a2bbb141b"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1upu9vy2spdvzenn9rst5w7jq3hgq2lfsqf9e6h",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xe0785611500b582cce651c17477a408dd0057d30"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp19qvfg8ekcycwx643mhf7xfy36vrzqqh9l27sqf",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x2818941f36c130e36ab1ddd3e32491d3062002e5"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1zyta462nzs52mtfs6vfs3s4ddzmzag27tq9lu7",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x1117dae9531428adad30d31308c2ad68b62ea15e"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1slrafu7865dfth4zar6lapp268mqywl3zq22zz",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x87c7d4f3c7d51a95dea2e8f5fe842ad1f6023bf1"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1a92qtkaaahljmsdkma5rdfh82qm676pyvp0xum",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xe95405dbbdedff2dc1b6df6836a6e75037af6824"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1h8al0u73wjm8a0wxtvzck2rc32jqleqy6tn80t",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xb9fbf7f3d174b67ebdc65b058b28788aa40fe404"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp10ca3vuexrrjg6cw3fe8n73htwmc2akcauxasj2",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x7e3b16732618e48d61d14e4f3f46eb76f0aedb1d"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp12pe9y64nral9kgz9medgxehkm8cqrevtfzefsc",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x5072526ab31f7e5b2045de5a8366f6d9f001e58b"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp155k2s2ylmgrngcg2kklcfzwz04sw3ywqnsyf5a",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xa52ca8289fda0734610ab5bf8489c27d60e891c0"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1uthagq4xwvpcevp89d3wkzusw94wmkjtlgwwdt",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xe2efd402a673038cb0272b62eb0b90716aedda4b"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp19elu50e3gdd2mz3nmg0epvy4ehwe7mjz4ar2fm",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x2e7fca3f31435aad8a33da1f90b095cddd9f6e42"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1ah3n3yvvfe20fehtca6uqvtu6c7kvtrd8vkh6k",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xede338918c4e54f4e6ebc775c0317cd63d662c6d"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1kl0sn49z4qnv0f0q5e3wfu05rr5yke7yg7nxsu",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xb7df09d4a2a826c7a5e0a662e4f1f418e84b67c4"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1hzpn338jz8fu4n6sqhedqpfvxm3wxdy3lz574y",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xb88338c4f211d3cacf5005f2d0052c36e2e33491"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1a6wxwxm4pk7d0cfgdyu75prgkx4x76yctvdrkd",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0xee9c671b750dbcd7e1286939ea0468b1aa6f6898"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp1n8nk3n8w0jklay0n4mpj24vxljcggge06wecnm",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x99e768ccee7cadfe91f3aec3255586fcb084232f"
}
},
{
"type": "cmp/MainAccount",
"value": {
"name": "",
"address": "cmp10qkycl5t5pr7m7l6pu5pt4xsx4r8c6haum8dvf",
"sub_addresses": null,
"coins": [
{
"denom": "cmp",
"amount": "100000000000000000000000"
},
{
"denom": "coin0",
"amount": "1000000000000000000"
},
{
"denom": "coin1",
"amount": "1000000000000000000"
},
{
"denom": "coin2",
"amount": "1000000000000000000"
},
{
"denom": "coin3",
"amount": "1000000000000000000"
},
{
"denom": "coin4",
"amount": "1000000000000000000"
}
],
"public_key": null,
"account_number": 0,
"sequence": 0,
"code_hash": "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ethAddress": "0x782c4c7e8ba047edfbfa0f2815d4d035467c6afd"
}
}
]
},
"mint": {
"minter": {
"total_provisions": "200000000000000000000000000.000000000000000000",
"minted_per_duration": "800000000.000000000000000000",
"genesis_block_time": "0001-01-01T00:00:00Z",
"latest_block_time": "0001-01-01T00:00:00Z",
"inflation": "0.130000000000000000",
"annual_provisions": "0.000000000000000000"
},
"params": {
"mint_denom": "cmp",
"inflation_rate_change": "0.130000000000000000",
"inflation_max": "0.200000000000000000",
"inflation_min": "0.070000000000000000",
"goal_bonded": "0.670000000000000000",
"blocks_per_year": "6311520"
}
},
"bank": {
"send_enabled": true
},
"evm": {
"accounts": null,
"ethlogs": null,
"params": {
"evm_denom": "cmp",
"enable_create": true,
"enable_call": true,
"chain_config": {
"homestead_block": "0",
"dao_fork_block": "0",
"dao_fork_support": true,
"eip150_block": "0",
"eip150_hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"eip155_block": "0",
"eip158_block": "0",
"byzantium_block": "0",
"constantinople_block": "0",
"petersburg_block": "0",
"istanbul_block": "0",
"muir_glacier_block": "0",
"yoloV2_block": "-1",
"ewasm_block": "-1"
}
}
}
}
}
\ No newline at end of file
{"type":"cosmos-sdk/StdTx","value":{"msg":[{"type":"cosmos-sdk/MsgCreateValidator","value":{"description":{"moniker":"node1","identity":"","website":"","security_contact":"","details":""},"commission":{"rate":"0.100000000000000000","max_rate":"0.200000000000000000","max_change_rate":"0.010000000000000000"},"min_self_delegation":"1","delegator_address":"cmp1u8k3dapx7xwlf7w2req9dx3pfgk08y3pewqyaa","validator_address":"cmpvaloper1u8k3dapx7xwlf7w2req9dx3pfgk08y3pqzcyf2","pubkey":"cmpvalconspub1l67l54pqsrce5kjca9n2udkwmc3l64wusltprnvw47jx8y5nf35sgm0xqjxs2pk75s","value":{"denom":"cmp","amount":"1000000000000000000"}}}],"fee":{"amount":[],"gas":"200000"},"signatures":[{"pub_key":{"type":"crypto/PubKeySecp256k1","value":"BOumfO2q5AR3rTPOxUo+H1i0LVMCyxWm7uKMueexxiRiSt7amJuC3i6eaB4LEV1wVN8MRSG6/+nI3mML6GDrHQQ="},"signature":"N4CxR6/KdBx83IKE7KIxB1gsNKjHl6KwBbsNaoL+5YZNSHOAZ2cmf5q8BzNusPKtYN4qsyqLw5KU1O/eglclmQA="}],"memo":"8767568e976249e5a7306f5c0a9bc6a1df5f3d5f@172.77.5.1:26656"}}
{"priv_key":{"type":"cmp/PrivKeyEd25519","value":"XBBnnwvfmL8wlPnTr5wa/BBbS1G1SN2+JNpedKQo9vYZ/JqZBH1j2YvTIHmuHhwfF2AnDkIr8z4fHmVXHAzzog=="}}
\ No newline at end of file
{
"address": "823B7A05131602D36565D9EE670FD1CF1A64AACF",
"pub_key": {
"type": "cmp/PubKeyEd25519",
"value": "gPGaWljpZq42zt4j/VXch9YRzY6vpGOSk0xpBG3mBI0="
},
"priv_key": {
"type": "cmp/PrivKeyEd25519",
"value": "kxTwAaFqH4bmQnhxmnuhO8+6zXPEP1UMkqmjae4cZouA8ZpaWOlmrjbO3iP9VdyH1hHNjq+kY5KTTGkEbeYEjQ=="
}
}
\ No newline at end of file
=============== Dec 27, 2023 (UTC) ===============
06:19:31.167139 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
06:19:31.173207 db@open opening
06:19:31.178591 version@stat F·[] S·0B[] Sc·[]
06:19:31.180803 db@janitor F·2 G·0
06:19:31.181679 db@open done T·8.02ms
=============== Dec 27, 2023 (UTC) ===============
06:19:31.207952 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
06:19:31.209692 db@open opening
06:19:31.210493 version@stat F·[] S·0B[] Sc·[]
06:19:31.211163 db@janitor F·2 G·0
06:19:31.211265 db@open done T·1.489ms
{
"height": "0",
"round": "0",
"step": 0
}
\ No newline at end of file
=============== Dec 27, 2023 (UTC) ===============
06:19:31.212092 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
06:19:31.213854 db@open opening
06:19:31.215643 version@stat F·[] S·0B[] Sc·[]
06:19:31.217472 db@janitor F·2 G·0
06:19:31.217603 db@open done T·3.654ms
=============== Dec 27, 2023 (UTC) ===============
06:19:31.230858 log@legend F·NumFile S·FileSize N·Entry C·BadEntry B·BadBlock Ke·KeyError D·DroppedEntry L·Level Q·SeqNum T·TimeElapsed
06:19:31.232882 db@open opening
06:19:31.233647 version@stat F·[] S·0B[] Sc·[]
06:19:31.234343 db@janitor F·2 G·0
06:19:31.234450 db@open done T·1.481ms
This source diff could not be displayed because it is too large. You can view the blob instead.
E[2023-12-27|06:19:36.325] failed to dail backup rpc server module=json-rpc namespace=eth error="dial unix: missing address"
E[2023-12-27|06:19:36.326] failed to dail ext log server websocket=websocket-server api=filter error="dial unix: missing address"
I[2023-12-27|06:19:36.346] Allocated cache and file handles module=leveldb websocket=websocket-server logCtx="[cache 1000.00 MiB handles 1000]"
I[2023-12-27|06:19:36.377] txstore start module=txstore websocket=websocket-server block=1
D[2023-12-27|06:19:36.396] have no new block, need wait module=txstore websocket=websocket-server
I[2023-12-27|06:19:36.446] Starting application REST service (chain-id: "0")... module=rest-server
I[2023-12-27|06:19:36.447] Starting RPC HTTP server on [::]:8545 module=rest-server
D[2023-12-27|06:19:37.414] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:19:37.420] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:37.475] eth_estimateGas module=json-rpc namespace=eth returngas=619697
D[2023-12-27|06:19:37.478] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:19:37.490] eth_chainId module=json-rpc namespace=eth
D[2023-12-27|06:19:37.503] checkTxExist module=json-rpc namespace=eth hash=0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd
query tmhash with ethhash 0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd err = <nil>
D[2023-12-27|06:19:37.559] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd
query tmhash with ethhash 0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd err = <nil>
D[2023-12-27|06:19:37.666] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd
query tmhash with ethhash 0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd err = <nil>
D[2023-12-27|06:19:38.492] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:38.677] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd
query tmhash with ethhash 0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd err = <nil>
D[2023-12-27|06:19:39.521] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:40.557] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:41.584] save tx module=txstore websocket=websocket-server height=12 index=0
D[2023-12-27|06:19:41.604] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:42.643] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:42.702] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd
query tmhash with ethhash 0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd err = <nil>
D[2023-12-27|06:19:42.780] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd logs="[{\"address\":\"0xc6add5a6545a6a22a6f6e8a6eb9323f980c06359\",\"topics\":[\"0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\",\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x000000000000000000000000e0785611500b582cce651c17477a408dd0057d30\"],\"data\":\"0x\",\"blockNumber\":\"0xc\",\"transactionHash\":\"0xb921184d8942cf00872093a92653b556ecf037fbbd0ab4843e1bf014779687dd\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0xcd37698442acc55384f412c2c79272231b959ccfa6014b827e30cd015366b3ed\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2023-12-27|06:19:42.784] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:19:42.813] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:19:42.867] eth_estimateGas failed vm module=json-rpc namespace=eth error="contract address collision"
D[2023-12-27|06:19:42.871] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:19:42.886] checkTxExist module=json-rpc namespace=eth hash=0x6f4a7a44d8174ff2abe9d3e1188892b8874cf420e3d9309fa72593c80b02d7eb
query tmhash with ethhash 0x6f4a7a44d8174ff2abe9d3e1188892b8874cf420e3d9309fa72593c80b02d7eb err = <nil>
D[2023-12-27|06:19:42.917] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x6f4a7a44d8174ff2abe9d3e1188892b8874cf420e3d9309fa72593c80b02d7eb
query tmhash with ethhash 0x6f4a7a44d8174ff2abe9d3e1188892b8874cf420e3d9309fa72593c80b02d7eb err = <nil>
D[2023-12-27|06:19:43.022] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x6f4a7a44d8174ff2abe9d3e1188892b8874cf420e3d9309fa72593c80b02d7eb
query tmhash with ethhash 0x6f4a7a44d8174ff2abe9d3e1188892b8874cf420e3d9309fa72593c80b02d7eb err = <nil>
D[2023-12-27|06:19:43.682] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:44.031] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x6f4a7a44d8174ff2abe9d3e1188892b8874cf420e3d9309fa72593c80b02d7eb
query tmhash with ethhash 0x6f4a7a44d8174ff2abe9d3e1188892b8874cf420e3d9309fa72593c80b02d7eb err = <nil>
D[2023-12-27|06:19:44.699] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:45.769] save tx module=txstore websocket=websocket-server height=21 index=0
D[2023-12-27|06:19:45.774] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:46.803] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:47.848] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:48.045] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x6f4a7a44d8174ff2abe9d3e1188892b8874cf420e3d9309fa72593c80b02d7eb
query tmhash with ethhash 0x6f4a7a44d8174ff2abe9d3e1188892b8874cf420e3d9309fa72593c80b02d7eb err = <nil>
D[2023-12-27|06:19:48.133] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x6f4a7a44d8174ff2abe9d3e1188892b8874cf420e3d9309fa72593c80b02d7eb logs="[{\"address\":\"0x0c62cd40e3dc952a891724b22883df996eef66a4\",\"topics\":[\"0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\",\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x000000000000000000000000e0785611500b582cce651c17477a408dd0057d30\"],\"data\":\"0x\",\"blockNumber\":\"0x15\",\"transactionHash\":\"0x6f4a7a44d8174ff2abe9d3e1188892b8874cf420e3d9309fa72593c80b02d7eb\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0x8149389da3888c695bbf672521435bfe7b0016d4cd837cc63ac8947efc7309fc\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2023-12-27|06:19:48.137] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:19:48.163] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:19:48.211] eth_estimateGas module=json-rpc namespace=eth returngas=60502
D[2023-12-27|06:19:48.214] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:19:48.225] checkTxExist module=json-rpc namespace=eth hash=0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e
query tmhash with ethhash 0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e err = <nil>
D[2023-12-27|06:19:48.258] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e
query tmhash with ethhash 0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e err = <nil>
D[2023-12-27|06:19:48.363] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e
query tmhash with ethhash 0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e err = <nil>
D[2023-12-27|06:19:48.885] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:49.375] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e
query tmhash with ethhash 0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e err = <nil>
D[2023-12-27|06:19:49.926] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:50.963] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:51.983] save tx module=txstore websocket=websocket-server height=31 index=0
D[2023-12-27|06:19:51.996] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:53.012] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:53.398] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e
query tmhash with ethhash 0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e err = <nil>
D[2023-12-27|06:19:53.465] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x72d24be3a75488de69a471f174c1e5d19013eae2da49c845fd37bb88c866a83e logs=[]
D[2023-12-27|06:19:53.469] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:19:53.497] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:19:53.551] eth_estimateGas failed vm module=json-rpc namespace=eth error="contract address collision"
D[2023-12-27|06:19:53.555] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:19:53.567] checkTxExist module=json-rpc namespace=eth hash=0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed
query tmhash with ethhash 0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed err = <nil>
D[2023-12-27|06:19:53.601] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed
query tmhash with ethhash 0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed err = <nil>
D[2023-12-27|06:19:53.706] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed
query tmhash with ethhash 0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed err = <nil>
D[2023-12-27|06:19:54.087] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:54.714] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed
query tmhash with ethhash 0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed err = <nil>
D[2023-12-27|06:19:55.139] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:56.179] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:57.215] save tx module=txstore websocket=websocket-server height=41 index=0
D[2023-12-27|06:19:57.219] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:58.262] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:19:58.731] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed
query tmhash with ethhash 0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed err = <nil>
D[2023-12-27|06:19:58.806] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed logs="[{\"address\":\"0xbc838adb194b356d36176aa02362820cf3041400\",\"topics\":[\"0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\",\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x000000000000000000000000e0785611500b582cce651c17477a408dd0057d30\"],\"data\":\"0x\",\"blockNumber\":\"0x29\",\"transactionHash\":\"0xbf2810f6afea3f68e0797e4cc9104b446b2aafe32686e51dbc54d2eb3cd203ed\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0xfe010508defb394a8f0f4aeae6899a5c256fc5e612ba93dada3eab1b911962ec\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2023-12-27|06:19:58.809] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:19:58.835] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:19:58.903] eth_estimateGas module=json-rpc namespace=eth returngas=60255
D[2023-12-27|06:19:58.906] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:19:58.920] checkTxExist module=json-rpc namespace=eth hash=0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb
query tmhash with ethhash 0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb err = <nil>
D[2023-12-27|06:19:58.957] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb
query tmhash with ethhash 0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb err = <nil>
D[2023-12-27|06:19:59.062] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb
query tmhash with ethhash 0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb err = <nil>
D[2023-12-27|06:19:59.298] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:00.073] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb
query tmhash with ethhash 0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb err = <nil>
D[2023-12-27|06:20:00.331] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:01.349] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:02.378] save tx module=txstore websocket=websocket-server height=50 index=0
D[2023-12-27|06:20:02.426] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:03.456] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:04.099] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb
query tmhash with ethhash 0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb err = <nil>
D[2023-12-27|06:20:04.135] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xc6a34f71097023973d1a55977fc56f78186c12b2fbdaa6641227f1f654a5cdfb logs=[]
D[2023-12-27|06:20:04.137] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:04.163] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:04.213] eth_estimateGas failed vm module=json-rpc namespace=eth error="contract address collision"
D[2023-12-27|06:20:04.215] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:20:04.226] checkTxExist module=json-rpc namespace=eth hash=0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607
query tmhash with ethhash 0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607 err = <nil>
D[2023-12-27|06:20:04.260] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607
query tmhash with ethhash 0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607 err = <nil>
D[2023-12-27|06:20:04.364] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607
query tmhash with ethhash 0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607 err = <nil>
D[2023-12-27|06:20:04.477] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:05.373] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607
query tmhash with ethhash 0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607 err = <nil>
D[2023-12-27|06:20:05.513] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:06.557] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:07.592] save tx module=txstore websocket=websocket-server height=60 index=0
D[2023-12-27|06:20:07.596] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:08.616] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:09.389] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607
query tmhash with ethhash 0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607 err = <nil>
D[2023-12-27|06:20:09.471] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607 logs="[{\"address\":\"0xfb070e8ad3eac6ff1da58ec888f256fc7167c500\",\"topics\":[\"0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\",\"0x0000000000000000000000000000000000000000000000000000000000000000\",\"0x000000000000000000000000e0785611500b582cce651c17477a408dd0057d30\"],\"data\":\"0x\",\"blockNumber\":\"0x3c\",\"transactionHash\":\"0x6ab591bc25a51577fe2e52cb0d9de4656844fbe06ccab415752f7710a4ca2607\",\"transactionIndex\":\"0x0\",\"blockHash\":\"0x222a13946e6a293546ce66266441c55e45d46102134b43c82da3ed29a2a57c0f\",\"logIndex\":\"0x0\",\"removed\":false}]"
D[2023-12-27|06:20:09.474] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:09.501] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:09.551] eth_estimateGas module=json-rpc namespace=eth returngas=60502
D[2023-12-27|06:20:09.553] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:20:09.564] checkTxExist module=json-rpc namespace=eth hash=0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b
query tmhash with ethhash 0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b err = <nil>
D[2023-12-27|06:20:09.598] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b
query tmhash with ethhash 0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b err = <nil>
D[2023-12-27|06:20:09.622] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:09.703] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b
query tmhash with ethhash 0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b err = <nil>
D[2023-12-27|06:20:10.656] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:10.712] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b
query tmhash with ethhash 0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b err = <nil>
D[2023-12-27|06:20:11.698] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:12.734] save tx module=txstore websocket=websocket-server height=69 index=0
D[2023-12-27|06:20:12.739] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:13.784] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:14.731] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b
query tmhash with ethhash 0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b err = <nil>
D[2023-12-27|06:20:14.771] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x4ca975a44520228e02997af40e97bdee375cac8c71723c138577088394d9535b logs=[]
D[2023-12-27|06:20:14.774] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:14.793] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:14.809] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:14.861] eth_estimateGas failed vm module=json-rpc namespace=eth error="contract address collision"
D[2023-12-27|06:20:14.863] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:20:14.874] checkTxExist module=json-rpc namespace=eth hash=0xe34288ba8a825fa841d0a73df00686f7bbc66f6123f759b262d456145db1478e
query tmhash with ethhash 0xe34288ba8a825fa841d0a73df00686f7bbc66f6123f759b262d456145db1478e err = <nil>
D[2023-12-27|06:20:14.908] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xe34288ba8a825fa841d0a73df00686f7bbc66f6123f759b262d456145db1478e
query tmhash with ethhash 0xe34288ba8a825fa841d0a73df00686f7bbc66f6123f759b262d456145db1478e err = <nil>
D[2023-12-27|06:20:15.012] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xe34288ba8a825fa841d0a73df00686f7bbc66f6123f759b262d456145db1478e
query tmhash with ethhash 0xe34288ba8a825fa841d0a73df00686f7bbc66f6123f759b262d456145db1478e err = <nil>
D[2023-12-27|06:20:15.824] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:16.020] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xe34288ba8a825fa841d0a73df00686f7bbc66f6123f759b262d456145db1478e
query tmhash with ethhash 0xe34288ba8a825fa841d0a73df00686f7bbc66f6123f759b262d456145db1478e err = <nil>
D[2023-12-27|06:20:16.856] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:17.897] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:18.926] save tx module=txstore websocket=websocket-server height=79 index=0
D[2023-12-27|06:20:18.942] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:19.975] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:20.043] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xe34288ba8a825fa841d0a73df00686f7bbc66f6123f759b262d456145db1478e
query tmhash with ethhash 0xe34288ba8a825fa841d0a73df00686f7bbc66f6123f759b262d456145db1478e err = <nil>
D[2023-12-27|06:20:20.114] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xe34288ba8a825fa841d0a73df00686f7bbc66f6123f759b262d456145db1478e logs=[]
D[2023-12-27|06:20:20.119] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:20.146] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:20.202] eth_estimateGas module=json-rpc namespace=eth returngas=60749
D[2023-12-27|06:20:20.204] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:20:20.215] checkTxExist module=json-rpc namespace=eth hash=0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1
query tmhash with ethhash 0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1 err = <nil>
D[2023-12-27|06:20:20.252] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1
query tmhash with ethhash 0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1 err = <nil>
D[2023-12-27|06:20:20.361] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1
query tmhash with ethhash 0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1 err = <nil>
D[2023-12-27|06:20:21.019] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:21.370] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1
query tmhash with ethhash 0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1 err = <nil>
D[2023-12-27|06:20:22.042] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:23.066] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:24.091] save tx module=txstore websocket=websocket-server height=89 index=0
D[2023-12-27|06:20:24.100] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:25.140] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:25.382] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1
query tmhash with ethhash 0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1 err = <nil>
D[2023-12-27|06:20:25.432] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x2e63481d2daab6b5e7327a343a3f4e3fca7115c51087e4abda1754be311b43f1 logs=[]
D[2023-12-27|06:20:25.436] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:25.465] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:25.514] eth_estimateGas module=json-rpc namespace=eth returngas=140829
D[2023-12-27|06:20:25.516] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:20:25.529] checkTxExist module=json-rpc namespace=eth hash=0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a
query tmhash with ethhash 0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a err = <nil>
D[2023-12-27|06:20:25.562] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a
query tmhash with ethhash 0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a err = <nil>
D[2023-12-27|06:20:25.667] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a
query tmhash with ethhash 0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a err = <nil>
D[2023-12-27|06:20:26.178] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:26.677] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a
query tmhash with ethhash 0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a err = <nil>
D[2023-12-27|06:20:27.217] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:28.255] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:29.264] save tx module=txstore websocket=websocket-server height=98 index=0
D[2023-12-27|06:20:29.274] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:30.347] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:30.700] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a
query tmhash with ethhash 0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a err = <nil>
D[2023-12-27|06:20:30.752] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0xdf589deaa21ee9cde760c6402ae5c95bc0a67c71321424d167cd0e18b84f729a logs=[]
D[2023-12-27|06:20:30.754] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:30.778] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:30.831] eth_estimateGas module=json-rpc namespace=eth returngas=101829
D[2023-12-27|06:20:30.833] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:20:30.843] checkTxExist module=json-rpc namespace=eth hash=0x00cef45003b6fbcdb91da1ed6f3c3194918d1a7e94333d6b87d1aeb9820487ed
query tmhash with ethhash 0x00cef45003b6fbcdb91da1ed6f3c3194918d1a7e94333d6b87d1aeb9820487ed err = <nil>
D[2023-12-27|06:20:30.878] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x00cef45003b6fbcdb91da1ed6f3c3194918d1a7e94333d6b87d1aeb9820487ed
query tmhash with ethhash 0x00cef45003b6fbcdb91da1ed6f3c3194918d1a7e94333d6b87d1aeb9820487ed err = <nil>
D[2023-12-27|06:20:30.980] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x00cef45003b6fbcdb91da1ed6f3c3194918d1a7e94333d6b87d1aeb9820487ed
query tmhash with ethhash 0x00cef45003b6fbcdb91da1ed6f3c3194918d1a7e94333d6b87d1aeb9820487ed err = <nil>
D[2023-12-27|06:20:31.421] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:31.986] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x00cef45003b6fbcdb91da1ed6f3c3194918d1a7e94333d6b87d1aeb9820487ed
query tmhash with ethhash 0x00cef45003b6fbcdb91da1ed6f3c3194918d1a7e94333d6b87d1aeb9820487ed err = <nil>
D[2023-12-27|06:20:32.452] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:33.491] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:34.532] save tx module=txstore websocket=websocket-server height=108 index=0
D[2023-12-27|06:20:34.538] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:35.583] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:35.995] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x00cef45003b6fbcdb91da1ed6f3c3194918d1a7e94333d6b87d1aeb9820487ed
query tmhash with ethhash 0x00cef45003b6fbcdb91da1ed6f3c3194918d1a7e94333d6b87d1aeb9820487ed err = <nil>
D[2023-12-27|06:20:36.044] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x00cef45003b6fbcdb91da1ed6f3c3194918d1a7e94333d6b87d1aeb9820487ed logs=[]
D[2023-12-27|06:20:36.046] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:36.072] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:36.121] eth_estimateGas module=json-rpc namespace=eth returngas=86658
D[2023-12-27|06:20:36.123] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:20:36.133] checkTxExist module=json-rpc namespace=eth hash=0x53070568cb1c50adda3afbf51626ad038a654284a300f944e4ec965cc1cd3011
query tmhash with ethhash 0x53070568cb1c50adda3afbf51626ad038a654284a300f944e4ec965cc1cd3011 err = <nil>
D[2023-12-27|06:20:36.164] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x53070568cb1c50adda3afbf51626ad038a654284a300f944e4ec965cc1cd3011
query tmhash with ethhash 0x53070568cb1c50adda3afbf51626ad038a654284a300f944e4ec965cc1cd3011 err = <nil>
D[2023-12-27|06:20:36.269] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x53070568cb1c50adda3afbf51626ad038a654284a300f944e4ec965cc1cd3011
query tmhash with ethhash 0x53070568cb1c50adda3afbf51626ad038a654284a300f944e4ec965cc1cd3011 err = <nil>
D[2023-12-27|06:20:36.616] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:37.302] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x53070568cb1c50adda3afbf51626ad038a654284a300f944e4ec965cc1cd3011
query tmhash with ethhash 0x53070568cb1c50adda3afbf51626ad038a654284a300f944e4ec965cc1cd3011 err = <nil>
D[2023-12-27|06:20:37.636] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:38.712] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:39.733] save tx module=txstore websocket=websocket-server height=117 index=0
D[2023-12-27|06:20:39.742] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:40.783] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:41.321] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x53070568cb1c50adda3afbf51626ad038a654284a300f944e4ec965cc1cd3011
query tmhash with ethhash 0x53070568cb1c50adda3afbf51626ad038a654284a300f944e4ec965cc1cd3011 err = <nil>
D[2023-12-27|06:20:41.388] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x53070568cb1c50adda3afbf51626ad038a654284a300f944e4ec965cc1cd3011 logs=[]
D[2023-12-27|06:20:41.391] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:41.422] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:41.472] eth_estimateGas module=json-rpc namespace=eth returngas=67158
D[2023-12-27|06:20:41.474] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:20:41.485] checkTxExist module=json-rpc namespace=eth hash=0x5885103e94c26412e5c0ee20b6f3fdb1d1358e304e9f95c3f58b1ed64d8e1012
query tmhash with ethhash 0x5885103e94c26412e5c0ee20b6f3fdb1d1358e304e9f95c3f58b1ed64d8e1012 err = <nil>
D[2023-12-27|06:20:41.518] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x5885103e94c26412e5c0ee20b6f3fdb1d1358e304e9f95c3f58b1ed64d8e1012
query tmhash with ethhash 0x5885103e94c26412e5c0ee20b6f3fdb1d1358e304e9f95c3f58b1ed64d8e1012 err = <nil>
D[2023-12-27|06:20:41.622] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x5885103e94c26412e5c0ee20b6f3fdb1d1358e304e9f95c3f58b1ed64d8e1012
query tmhash with ethhash 0x5885103e94c26412e5c0ee20b6f3fdb1d1358e304e9f95c3f58b1ed64d8e1012 err = <nil>
D[2023-12-27|06:20:41.828] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:42.631] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x5885103e94c26412e5c0ee20b6f3fdb1d1358e304e9f95c3f58b1ed64d8e1012
query tmhash with ethhash 0x5885103e94c26412e5c0ee20b6f3fdb1d1358e304e9f95c3f58b1ed64d8e1012 err = <nil>
D[2023-12-27|06:20:42.894] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:43.932] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:44.967] save tx module=txstore websocket=websocket-server height=127 index=0
D[2023-12-27|06:20:44.971] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:45.989] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:46.647] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x5885103e94c26412e5c0ee20b6f3fdb1d1358e304e9f95c3f58b1ed64d8e1012
query tmhash with ethhash 0x5885103e94c26412e5c0ee20b6f3fdb1d1358e304e9f95c3f58b1ed64d8e1012 err = <nil>
D[2023-12-27|06:20:46.712] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x5885103e94c26412e5c0ee20b6f3fdb1d1358e304e9f95c3f58b1ed64d8e1012 logs=[]
D[2023-12-27|06:20:46.717] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:46.745] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:46.792] eth_estimateGas module=json-rpc namespace=eth returngas=67158
D[2023-12-27|06:20:46.795] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:20:46.805] checkTxExist module=json-rpc namespace=eth hash=0x0dcaba7df07e99195234f39c27f45c31f951ded6f213151b9e48c4954ecc743d
query tmhash with ethhash 0x0dcaba7df07e99195234f39c27f45c31f951ded6f213151b9e48c4954ecc743d err = <nil>
D[2023-12-27|06:20:46.839] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x0dcaba7df07e99195234f39c27f45c31f951ded6f213151b9e48c4954ecc743d
query tmhash with ethhash 0x0dcaba7df07e99195234f39c27f45c31f951ded6f213151b9e48c4954ecc743d err = <nil>
D[2023-12-27|06:20:46.946] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x0dcaba7df07e99195234f39c27f45c31f951ded6f213151b9e48c4954ecc743d
query tmhash with ethhash 0x0dcaba7df07e99195234f39c27f45c31f951ded6f213151b9e48c4954ecc743d err = <nil>
D[2023-12-27|06:20:47.003] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:47.956] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x0dcaba7df07e99195234f39c27f45c31f951ded6f213151b9e48c4954ecc743d
query tmhash with ethhash 0x0dcaba7df07e99195234f39c27f45c31f951ded6f213151b9e48c4954ecc743d err = <nil>
D[2023-12-27|06:20:48.040] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:49.082] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:50.122] save tx module=txstore websocket=websocket-server height=136 index=0
D[2023-12-27|06:20:50.126] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:51.171] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:51.982] eth_getTransactionByHash module=json-rpc namespace=eth hash=0x0dcaba7df07e99195234f39c27f45c31f951ded6f213151b9e48c4954ecc743d
query tmhash with ethhash 0x0dcaba7df07e99195234f39c27f45c31f951ded6f213151b9e48c4954ecc743d err = <nil>
D[2023-12-27|06:20:52.050] eth_getTransactionReceipt module=json-rpc namespace=eth hash=0x0dcaba7df07e99195234f39c27f45c31f951ded6f213151b9e48c4954ecc743d logs=[]
D[2023-12-27|06:20:52.053] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:52.076] eth_blockNumber module=json-rpc namespace=eth
D[2023-12-27|06:20:52.122] eth_estimateGas module=json-rpc namespace=eth returngas=58240
D[2023-12-27|06:20:52.124] eth_getTransactionCount module=json-rpc namespace=eth address=0xe0785611500b582cce651c17477a408dd0057d30 blocknumber=-2
D[2023-12-27|06:20:52.134] checkTxExist module=json-rpc namespace=eth hash=0xf640f6558387414089d7ca19b8b5181b6b64d9662ceca8d32b5c48f61d0fa83c
query tmhash with ethhash 0xf640f6558387414089d7ca19b8b5181b6b64d9662ceca8d32b5c48f61d0fa83c err = <nil>
D[2023-12-27|06:20:52.165] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xf640f6558387414089d7ca19b8b5181b6b64d9662ceca8d32b5c48f61d0fa83c
query tmhash with ethhash 0xf640f6558387414089d7ca19b8b5181b6b64d9662ceca8d32b5c48f61d0fa83c err = <nil>
D[2023-12-27|06:20:52.179] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:52.272] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xf640f6558387414089d7ca19b8b5181b6b64d9662ceca8d32b5c48f61d0fa83c
query tmhash with ethhash 0xf640f6558387414089d7ca19b8b5181b6b64d9662ceca8d32b5c48f61d0fa83c err = <nil>
D[2023-12-27|06:20:53.192] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:53.280] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xf640f6558387414089d7ca19b8b5181b6b64d9662ceca8d32b5c48f61d0fa83c
query tmhash with ethhash 0xf640f6558387414089d7ca19b8b5181b6b64d9662ceca8d32b5c48f61d0fa83c err = <nil>
D[2023-12-27|06:20:54.228] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:55.273] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:56.297] save tx module=txstore websocket=websocket-server height=146 index=0
D[2023-12-27|06:20:56.313] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:57.292] eth_getTransactionByHash module=json-rpc namespace=eth hash=0xf640f6558387414089d7ca19b8b5181b6b64d9662ceca8d32b5c48f61d0fa83c
query tmhash with ethhash 0xf640f6558387414089d7ca19b8b5181b6b64d9662ceca8d32b5c48f61d0fa83c err = <nil>
D[2023-12-27|06:20:57.337] have no new block, need wait module=txstore websocket=websocket-server
D[2023-12-27|06:20:58.376] have no new block, need wait module=txstore websocket=websocket-server
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