From 1f0b59a5386aefdaeb82e1de55c93d706130ab95 Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Thu, 30 Jan 2025 06:09:25 +0100 Subject: [PATCH] fix the initialization --- berachain/artio/config/app.toml | 269 ----------- berachain/artio/config/config.toml | 603 ------------------------- berachain/artio/config/genesis.json | 666 ---------------------------- 3 files changed, 1538 deletions(-) delete mode 100644 berachain/artio/config/app.toml delete mode 100644 berachain/artio/config/config.toml delete mode 100644 berachain/artio/config/genesis.json diff --git a/berachain/artio/config/app.toml b/berachain/artio/config/app.toml deleted file mode 100644 index 22280db0..00000000 --- a/berachain/artio/config/app.toml +++ /dev/null @@ -1,269 +0,0 @@ -# This is a TOML config file. -# For more information, see https://github.com/toml-lang/toml - -############################################################################### -### Base Configuration ### -############################################################################### - -# default: the last 362880 states are kept, pruning at 10 block intervals -# nothing: all historic states will be saved, nothing will be deleted (i.e. archiving node) -# everything: 2 latest states will be kept; pruning at 10 block intervals. -# custom: allow pruning options to be manually specified through 'pruning-keep-recent', and 'pruning-interval' -pruning = "everything" - -# These are applied if and only if the pruning strategy is custom. -pruning-keep-recent = "0" -pruning-interval = "0" - -# 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 - -# MinRetainBlocks defines the minimum block height offset from the current -# block being committed, such that all blocks past this offset are pruned -# from CometBFT. It is used as part of the process of determining the -# ResponseCommit.RetainHeight value during ABCI Commit. A value of 0 indicates -# that no blocks should be pruned. -# -# This configuration value is only responsible for pruning CometBFT blocks. -# It has no bearing on application state pruning which is determined by the -# "pruning-*" configurations. -# -# Note: CometBFT block pruning is dependent on this parameter in conjunction -# with the unbonding (safety threshold) period, state pruning and state sync -# snapshot parameters to determine the correct minimum value of -# ResponseCommit.RetainHeight. -min-retain-blocks = 0 - -# InterBlockCache enables inter-block caching. -inter-block-cache = true - -# IavlCacheSize set the size of the iavl tree cache (in number of nodes). -iavl-cache-size = 25000 - -# IAVLDisableFastNode enables or disables the fast node feature of IAVL. -# Default is false. -iavl-disable-fastnode = true - - -############################################################################### -### Telemetry Configuration ### -############################################################################### - -[telemetry] - -# Prefixed with keys to separate services. -service-name = "" - -# Enabled enables the application telemetry functionality. When enabled, -# an in-memory sink is also enabled by default. Operators may also enabled -# other sinks such as Prometheus. -enabled = true - -# Enable prefixing gauge values with hostname. -enable-hostname = false - -# Enable adding hostname to labels. -enable-hostname-label = false - -# Enable adding service to labels. -enable-service-label = false - -# PrometheusRetentionTime, when positive, enables a Prometheus metrics sink. -prometheus-retention-time = 0 - -# GlobalLabels defines a global set of name/value label tuples applied to all -# metrics emitted using the wrapper functions defined in telemetry package. -# -# Example: -# [["chain_id", "cosmoshub-1"]] -global-labels = [ -] - -# MetricsSink defines the type of metrics sink to use. -metrics-sink = "" - -# StatsdAddr defines the address of a statsd server to send metrics to. -# Only utilized if MetricsSink is set to "statsd" or "dogstatsd". -statsd-addr = "" - -# DatadogHostname defines the hostname to use when emitting metrics to -# Datadog. Only utilized if MetricsSink is set to "dogstatsd". -datadog-hostname = "" - -############################################################################### -### API Configuration ### -############################################################################### - -[api] - -# Enable defines if the API server should be enabled. -enable = false - -# Swagger defines if swagger documentation should automatically be registered. -swagger = false - -# Address defines the API server to listen on. -address = "tcp://localhost:1317" - -# MaxOpenConnections defines the number of maximum open connections. -max-open-connections = 1000 - -# RPCReadTimeout defines the CometBFT RPC read timeout (in seconds). -rpc-read-timeout = 10 - -# RPCWriteTimeout defines the CometBFT RPC write timeout (in seconds). -rpc-write-timeout = 0 - -# RPCMaxBodyBytes defines the CometBFT maximum request body (in bytes). -rpc-max-body-bytes = 1000000 - -# EnableUnsafeCORS defines if CORS should be enabled (unsafe - use it at your own risk). -enabled-unsafe-cors = false - -############################################################################### -### gRPC Configuration ### -############################################################################### - -[grpc] - -# Enable defines if the gRPC server should be enabled. -enable = true - -# Address defines the gRPC server address to bind to. -address = "localhost:9090" - -# MaxRecvMsgSize defines the max message size in bytes the server can receive. -# The default value is 10MB. -max-recv-msg-size = "10485760" - -# MaxSendMsgSize defines the max message size in bytes the server can send. -# The default value is math.MaxInt32. -max-send-msg-size = "2147483647" - -############################################################################### -### State Sync Configuration ### -############################################################################### - -# State sync snapshots allow other nodes to rapidly join the network without replaying historical -# blocks, instead downloading and applying a snapshot of the application state at a given height. -[state-sync] - -# snapshot-interval specifies the block interval at which local state sync snapshots are -# taken (0 to disable). -snapshot-interval = 0 - -# snapshot-keep-recent specifies the number of recent snapshots to keep and serve (0 to keep all). -snapshot-keep-recent = 2 - -############################################################################### -### State Streaming ### -############################################################################### - -# Streaming allows nodes to stream state to external systems. -[streaming] - -# streaming.abci specifies the configuration for the ABCI Listener streaming service. -[streaming.abci] - -# List of kv store keys to stream out via gRPC. -# The store key names MUST match the module's StoreKey name. -# -# Example: -# ["acc", "bank", "gov", "staking", "mint"[,...]] -# ["*"] to expose all keys. -keys = [] - -# The plugin name used for streaming via gRPC. -# Streaming is only enabled if this is set. -# Supported plugins: abci -plugin = "" - -# stop-node-on-err specifies whether to stop the node on message delivery error. -stop-node-on-err = true - -############################################################################### -### Mempool ### -############################################################################### - -[mempool] -# Setting max-txs to 0 will allow for a unbounded amount of transactions in the mempool. -# Setting max_txs to negative 1 (-1) will disable transactions from being inserted into the mempool (no-op mempool). -# Setting max_txs to a positive number (> 0) will limit the number of transactions in the mempool, by the specified amount. -# -# Note, this configuration only applies to SDK built-in app-side mempool -# implementations. -max-txs = -1 - - -############################################################################### -### BeaconKit ### -############################################################################### - -[beacon-kit.engine] -# HTTP url of the execution client JSON-RPC endpoint. -rpc-dial-url = "http://berachain-artio:8551" - -# Number of retries before shutting down consensus client. -rpc-retries = "3" - -# RPC timeout for execution client requests. -rpc-timeout = "2s" - -# Interval for the startup check. -rpc-startup-check-interval = "3s" - -# Interval for the JWT refresh. -rpc-jwt-refresh-interval = "30s" - -# Path to the execution client JWT-secret -jwt-secret-path = "/jwtsecret" - -[beacon-kit.logger] -# TimeFormat is a string that defines the format of the time in the logger. -time-format = "RFC3339" - -# LogLevel is the level of logging. Logger will log messages with verbosity up -# to LogLevel. -log-level = "info" - -# Style is the style of the logger. -style = "pretty" - -[beacon-kit.kzg] -# Path to the trusted setup path. -trusted-setup-path = "/root/.beacond/config/kzg-trusted-setup.json" - -# KZG implementation to use. -# Options are "crate-crypto/go-kzg-4844" or "ethereum/c-kzg-4844". -implementation = "crate-crypto/go-kzg-4844" - -[beacon-kit.payload-builder] -# Enabled determines if the local payload builder is enabled. -enabled = true - -# Post bellatrix, this address will receive the transaction fees produced by any blocks -# from this node. -suggested-fee-recipient = "0x0000000000000000000000000000000000000000" - -# The timeout for local build payload. This should match, or be slightly less -# than the configured timeout on your execution client. It also must be less than -# timeout_proposal in the CometBFT configuration. -payload-timeout = "850ms" - -[beacon-kit.validator] -# Graffiti string that will be included in the graffiti field of the beacon block. -graffiti = "" - -# EnableOptimisticPayloadBuilds enables building the next block's payload optimistically in -# process-proposal to allow for the execution client to have more time to assemble the block. -enable-optimistic-payload-builds = "true" diff --git a/berachain/artio/config/config.toml b/berachain/artio/config/config.toml deleted file mode 100644 index 0aecbe63..00000000 --- a/berachain/artio/config/config.toml +++ /dev/null @@ -1,603 +0,0 @@ -# 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/.cometbft" by default, but could be changed via $CMTHOME env variable -# or --home cmd flag. - -# The version of the CometBFT binary that created or -# last modified the config file. Do not modify this. -version = "1.0.0-alpha.2" - -####################################################################### -### Main Base Config Options ### -####################################################################### - -# TCP or UNIX socket address of the ABCI application, -# or the name of an ABCI application compiled in with the CometBFT binary -proxy_app = "tcp://127.0.0.1:26658" - -# A custom human readable name for this node -moniker = "whateveritsme" - -# Database backend: goleveldb | cleveldb | boltdb | rocksdb | badgerdb | pebbledb -# * goleveldb (github.com/syndtr/goleveldb) -# - UNMAINTAINED -# - stable -# - pure go -# * cleveldb (uses levigo wrapper) -# - DEPRECATED -# - requires gcc -# - use cleveldb build tag (go build -tags cleveldb) -# * boltdb (uses etcd's fork of bolt - github.com/etcd-io/bbolt) -# - DEPRECATED -# - EXPERIMENTAL -# - stable -# - use boltdb build tag (go build -tags boltdb) -# * rocksdb (uses github.com/linxGnu/grocksdb) -# - EXPERIMENTAL -# - requires gcc -# - use rocksdb build tag (go build -tags rocksdb) -# * badgerdb (uses github.com/dgraph-io/badger) -# - EXPERIMENTAL -# - stable -# - use badgerdb build tag (go build -tags badgerdb) -# * pebbledb (uses github.com/cockroachdb/pebble) -# - EXPERIMENTAL -# - stable -# - pure go -# - use pebbledb build tag (go build -tags pebbledb) -db_backend = "pebbledb" - -# 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 CometBFT 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" - -# 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://0.0.0.0: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", ] - -# Activate unsafe RPC commands like /dial_seeds and /unsafe_flush_mempool -unsafe = false - -# Maximum number of simultaneous connections (including WebSocket). -# 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 /broadcast_tx_commit, set to the estimated maximum number -# of broadcast_tx_commit calls per block. -max_subscriptions_per_client = 5 - -# Experimental parameter to specify the maximum number of events a node will -# buffer, per subscription, before returning an error and closing the -# subscription. Must be set to at least 100, but higher values will accommodate -# higher event throughput rates (and will use more memory). -experimental_subscription_buffer_size = 200 - -# Experimental parameter to specify the maximum number of RPC responses that -# can be buffered per WebSocket client. If clients cannot read from the -# WebSocket endpoint fast enough, they will be disconnected, so increasing this -# parameter may reduce the chances of them being disconnected (but will cause -# the node to use more memory). -# -# Must be at least the same as "experimental_subscription_buffer_size", -# otherwise connections could be dropped unnecessarily. This value should -# ideally be somewhat higher than "experimental_subscription_buffer_size" to -# accommodate non-subscription-related RPC responses. -experimental_websocket_write_buffer_size = 200 - -# If a WebSocket client cannot read fast enough, at present we may -# silently drop events instead of generating an error or disconnecting the -# client. -# -# Enabling this experimental parameter will cause the WebSocket connection to -# be closed instead if it cannot read fast enough, allowing for greater -# predictability in subscription behavior. -experimental_close_on_slow_client = false - -# How long to wait for a tx to be committed during /broadcast_tx_commit. -# WARNING: Using a value larger than 10s will result in increasing the -# global HTTP write timeout, which applies to all connections and endpoints. -# See https://github.com/tendermint/tendermint/issues/3435 -timeout_broadcast_tx_commit = "10s" - -# Maximum number of requests that can be sent in a batch -# If the value is set to '0' (zero-value), then no maximum batch size will be -# enforced for a JSON-RPC batch request. -max_request_batch_size = 10 - -# 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. -# Might be either absolute path or path related to CometBFT'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 CometBFT 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. -# Might be either absolute path or path related to CometBFT's config directory. -# NOTE: both tls_cert_file and tls_key_file must be present for CometBFT to create HTTPS server. -# Otherwise, HTTP server is run. -tls_key_file = "" - -# pprof listen address (https://golang.org/pkg/net/http/pprof) -pprof_laddr = "" - -####################################################### -### gRPC Server Configuration Options ### -####################################################### - -# -# Note that the gRPC server is exposed unauthenticated. It is critical that -# this server not be exposed directly to the public internet. If this service -# must be accessed via the public internet, please ensure that appropriate -# precautions are taken (e.g. fronting with a reverse proxy like nginx with TLS -# termination and authentication, using DDoS protection services like -# CloudFlare, etc.). -# - -[grpc] - -# TCP or UNIX socket address for the RPC server to listen on. If not specified, -# the gRPC server will be disabled. -laddr = "" - -# -# Each gRPC service can be turned on/off, and in some cases configured, -# individually. If the gRPC server is not enabled, all individual services' -# configurations are ignored. -# - -# The gRPC version service provides version information about the node and the -# protocols it uses. -[grpc.version_service] -enabled = true - -# The gRPC block service returns block information -[grpc.block_service] -enabled = true - -# The gRPC block results service returns block results for a given height. If no height -# is given, it will return the block results from the latest height. -[grpc.block_results_service] -enabled = true - -# -# Configuration for privileged gRPC endpoints, which should **never** be exposed -# to the public internet. -# -[grpc.privileged] -# The host/port on which to expose privileged gRPC endpoints. -laddr = "" - -# -# Configuration specifically for the gRPC pruning service, which is considered a -# privileged service. -# -[grpc.privileged.pruning_service] - -# Only controls whether the pruning service is accessible via the gRPC API - not -# whether a previously set pruning service retain height is honored by the -# node. See the [storage.pruning] section for control over pruning. -# -# Disabled by default. -enabled = false - -####################################################### -### P2P Configuration Options ### -####################################################### -[p2p] - -# Address to listen for incoming connections -laddr = "tcp://0.0.0.0:43471" - -# 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 to figure out the -# address. IP and port are required. Example: 159.89.10.97:26656 -external_address = "" - -# Comma separated list of seed nodes to connect to -seeds = "2f8ce8462cddc9ae865ab8ec1f05cc286f07c671@34.152.0.40:26656,3037b09eaa2eed5cd1b1d3d733ab8468bf4910ee@35.203.36.128:26656,add35d414bee9c0be3b10bcf8fbc12a059eb9a3b@35.246.180.53:26656,925221ce669017eb2fd386bc134f13c03c5471d4@34.159.151.132:26656,ae50b817fcb2f35da803aa0190a5e37f4f8bcdb5@34.64.62.166:26656,773b940b33dab98963486f0e5cbfc5ca8fc688b0@34.47.91.211:26656,977edf20575a0fc1d70fca035e5e53a02be80d9a@35.240.177.67:26656,5956d13b5285896a5c703ef6a6b28bf815f7bb22@34.124.148.177:26656,c28827cb96c14c905b127b92065a3fb4cd77d7f6@testnet-seeds.whispernode.com:25456,8a0fbd4a06050519b6bce88c03932bd0a57060bd@beacond-testnet.blacknodes.net:26656,d9903c2f9902243c88f2758fe2e81e305e737fb3@bera-testnet-seeds.nodeinfra.com:26656,9c50cc419880131ea02b6e2b92027cefe17941b9@139.59.151.125:26656,cf44af098820f50a1e96d51b7af6861bc961e706@berav2-seeds.staketab.org:5001,6b5040a0e1b29a2cca224b64829d8f3d8796a3e3@berachain-testnet-v2-2.seed.l0vd.com:21656,4f93da5553f0dfaafb620532901e082255ec3ad3@berachain-testnet-v2-1.seed.l0vd.com:61656,a62eefaa284eaede7460315d2f1d1f92988e01f1@135.125.188.10:26656" - -# Comma separated list of nodes to keep persistent connections to -persistent_peers = "2f8ce8462cddc9ae865ab8ec1f05cc286f07c671@34.152.0.40:26656,3037b09eaa2eed5cd1b1d3d733ab8468bf4910ee@35.203.36.128:26656,add35d414bee9c0be3b10bcf8fbc12a059eb9a3b@35.246.180.53:26656,925221ce669017eb2fd386bc134f13c03c5471d4@34.159.151.132:26656,ae50b817fcb2f35da803aa0190a5e37f4f8bcdb5@34.64.62.166:26656,773b940b33dab98963486f0e5cbfc5ca8fc688b0@34.47.91.211:26656,977edf20575a0fc1d70fca035e5e53a02be80d9a@35.240.177.67:26656,5956d13b5285896a5c703ef6a6b28bf815f7bb22@34.124.148.177:26656,c28827cb96c14c905b127b92065a3fb4cd77d7f6@testnet-seeds.whispernode.com:25456,8a0fbd4a06050519b6bce88c03932bd0a57060bd@beacond-testnet.blacknodes.net:26656,d9903c2f9902243c88f2758fe2e81e305e737fb3@bera-testnet-seeds.nodeinfra.com:26656,9c50cc419880131ea02b6e2b92027cefe17941b9@139.59.151.125:26656,cf44af098820f50a1e96d51b7af6861bc961e706@berav2-seeds.staketab.org:5001,6b5040a0e1b29a2cca224b64829d8f3d8796a3e3@berachain-testnet-v2-2.seed.l0vd.com:21656,4f93da5553f0dfaafb620532901e082255ec3ad3@berachain-testnet-v2-1.seed.l0vd.com:61656,a62eefaa284eaede7460315d2f1d1f92988e01f1@135.125.188.10:26656" - -# 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 = true - -# Maximum number of inbound peers -max_num_inbound_peers = 100 - -# Maximum number of outbound peers to connect to, excluding persistent peers -max_num_outbound_peers = 40 - -# 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 = "10ms" - -# 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] - -# The type of mempool for this node to use. -# -# Possible types: -# - "flood" : concurrent linked list mempool with flooding gossip protocol -# (default) -# - "nop" : nop-mempool (short for no operation; the ABCI app is responsible -# for storing, disseminating and proposing txs). "create_empty_blocks=false" is -# not supported. -type = "flood" - -# recheck (default: true) defines whether CometBFT should recheck the -# validity for all remaining transaction in the mempool after a block. -# Since a block affects the application state, some transactions in the -# mempool may become invalid. If this does not apply to your application, -# you can disable rechecking. -recheck = false - -# recheck_timeout is the time the application has during the rechecking process -# to return CheckTx responses, once all requests have been sent. Responses that -# arrive after the timeout expires are discarded. It only applies to -# non-local ABCI clients and when recheck is enabled. -recheck_timeout = "0s" - -# broadcast (default: true) defines whether the mempool should relay -# transactions to other peers. Setting this to false will stop the mempool -# from relaying transactions to other peers until they are included in a -# block. In other words, if Broadcast is disabled, only the peer you send -# the tx to will see it until it is included in a block. -broadcast = false - -# wal_dir (default: "") configures the location of the Write Ahead Log -# (WAL) for the mempool. The WAL is disabled by default. To enable, set -# wal_dir to where you want the WAL to be written (e.g. -# "data/mempool.wal"). -wal_dir = "" - -# Maximum number of transactions in the mempool -size = 0 - -# Maximum size in bytes of a single transaction accepted into the mempool. -max_tx_bytes = 1048576 - -# The maximum size in bytes of all transactions stored in the mempool. -# This is the raw, total transaction size. For example, given 1MB -# transactions and a 5MB maximum mempool byte size, the mempool will -# only accept five transactions. -max_txs_bytes = 67108864 - -# Size of the cache (used to filter transactions we saw earlier) in transactions -cache_size = 0 - -# Do not remove invalid transactions from the cache (default: false) -# Set to true if it's not possible for any invalid transaction to become valid -# again in the future. -keep-invalid-txs-in-cache = false - -# Experimental parameters to limit gossiping txs to up to the specified number of peers. -# We use two independent upper values for persistent and non-persistent peers. -# Unconditional peers are not affected by this feature. -# If we are connected to more than the specified number of persistent peers, only send txs to -# ExperimentalMaxGossipConnectionsToPersistentPeers of them. If one of those -# persistent peers disconnects, activate another persistent peer. -# Similarly for non-persistent peers, with an upper limit of -# ExperimentalMaxGossipConnectionsToNonPersistentPeers. -# If set to 0, the feature is disabled for the corresponding group of peers, that is, the -# number of active connections to that group of peers is not bounded. -# For non-persistent peers, if enabled, a value of 10 is recommended based on experimental -# performance results using the default P2P configuration. -experimental_max_gossip_connections_to_persistent_peers = 0 -experimental_max_gossip_connections_to_non_persistent_peers = 0 - -####################################################### -### State Sync Configuration Options ### -####################################################### -[statesync] -# State sync rapidly bootstraps a new node by discovering, fetching, and restoring a state machine -# snapshot from peers instead of fetching and replaying historical blocks. Requires some peers in -# the network to take and serve state machine snapshots. State sync is not attempted if the node -# has any local state (LastBlockHeight > 0). The node will have a truncated block history, -# starting from the height of the snapshot. -enable = false - -# RPC servers (comma-separated) for light client verification of the synced state machine and -# retrieval of state data for node bootstrapping. Also needs a trusted height and corresponding -# header hash obtained from a trusted source, and a period during which validators can be trusted. -# -# For Cosmos SDK-based chains, trust_period should usually be about 2/3 of the unbonding time (~2 -# weeks) during which they can be financially punished (slashed) for misbehavior. -rpc_servers = "" -trust_height = 0 -trust_hash = "" -trust_period = "168h0m0s" - -# Time to spend discovering snapshots before initiating a restore. -discovery_time = "15s" - -# Temporary directory for state sync snapshot chunks, defaults to the OS tempdir (typically /tmp). -# Will create a new, randomly named directory within, and remove it when done. -temp_dir = "" - -# The timeout duration before re-requesting a chunk, possibly from a different -# peer (default: 1 minute). -chunk_request_timeout = "10s" - -# The number of concurrent chunk fetchers to run (default: 1). -chunk_fetchers = "4" - -####################################################### -### Block Sync Configuration Options ### -####################################################### -[blocksync] - -# Block Sync version to use: -# -# In v0.37, v1 and v2 of the block sync protocols were deprecated. -# Please use v0 instead. -# -# 1) "v0" - the default block sync implementation -version = "v0" - -####################################################### -### Consensus Configuration Options ### -####################################################### -[consensus] - -wal_file = "data/cs.wal/wal" - -# How long we wait for a proposal block before prevoting nil -timeout_propose = "1s" -# How much timeout_propose increases with each round -timeout_propose_delta = "500ms" -# How long we wait after receiving +2/3 prevotes for “anything” (ie. not a single block or nil) -timeout_prevote = "1s" -# How much the timeout_prevote increases with each round -timeout_prevote_delta = "500ms" -# How long we wait after receiving +2/3 precommits for “anything” (ie. not a single block or nil) -timeout_precommit = "1s" -# How much the timeout_precommit increases with each round -timeout_precommit_delta = "500ms" -# How long we wait after committing a block, before starting on the new -# height (this gives us a chance to receive some more precommits, even -# though we already have +2/3). -# Set to 0 if you want to make progress as soon as the node has all the precommits. -timeout_commit = "500ms" - -# Deprecated: set `timeout_commit` to 0 instead. -skip_timeout_commit = false - -# How many blocks to look back to check existence of the node's consensus votes before joining consensus -# When non-zero, the node will panic upon restart -# if the same consensus key was used to sign {double_sign_check_height} last blocks. -# So, validators should stop the state machine, wait for some blocks, and then restart the state machine to avoid panic. -double_sign_check_height = 0 - -# EmptyBlocks mode and possible interval between empty blocks -create_empty_blocks = true -create_empty_blocks_interval = "0s" - -# Reactor sleep duration parameters -peer_gossip_sleep_duration = "100ms" -peer_gossip_intraloop_sleep_duration = "0s" -peer_query_maj23_sleep_duration = "2s" - -####################################################### -### Storage Configuration Options ### -####################################################### -[storage] - -# Set to true to discard ABCI responses from the state store, which can save a -# considerable amount of disk space. Set to false to ensure ABCI responses are -# persisted. ABCI responses are required for /block_results RPC queries, and to -# reindex events in the command-line tool. -discard_abci_responses = true - -# The representation of keys in the database. -# The current representation of keys in Comet's stores is considered to be v1 -# Users can experiment with a different layout by setting this field to v2. -# Note that this is an experimental feature and switching back from v2 to v1 -# is not supported by CometBFT. -# If the database was initially created with v1, it is necessary to migrate the DB -# before switching to v2. The migration is not done automatically. -# v1 - the legacy layout existing in Comet prior to v1. -# v2 - Order preserving representation ordering entries by height. -experimental_db_key_layout = "v1" - -# If set to true, CometBFT will force compaction to happen for databases that support this feature. -# and save on storage space. Setting this to true is most benefits when used in combination -# with pruning as it will physically delete the entries marked for deletion. -# false by default (forcing compaction is disabled). -compact = false - -# To avoid forcing compaction every time, this parameter instructs CometBFT to wait -# the given amount of blocks to be pruned before triggering compaction. -# It should be tuned depending on the number of items. If your retain height is 1 block, -# it is too much of an overhead to try compaction every block. But it should also not be a very -# large multiple of your retain height as it might occur bigger overheads. -compaction_interval = "1000" - -# Hash of the Genesis file (as hex string), passed to CometBFT via the command line. -# If this hash mismatches the hash that CometBFT computes on the genesis file, -# the node is not able to boot. -genesis_hash = "" - -[storage.pruning] - -# The time period between automated background pruning operations. -interval = "10s" - -# -# Storage pruning configuration relating only to the data companion. -# -[storage.pruning.data_companion] - -# Whether automatic pruning respects values set by the data companion. Disabled -# by default. All other parameters in this section are ignored when this is -# disabled. -# -# If disabled, only the application retain height will influence block pruning -# (but not block results pruning). Only enabling this at a later stage will -# potentially mean that blocks below the application-set retain height at the -# time will not be available to the data companion. -enabled = false - -# The initial value for the data companion block retain height if the data -# companion has not yet explicitly set one. If the data companion has already -# set a block retain height, this is ignored. -initial_block_retain_height = 0 - -# The initial value for the data companion block results retain height if the -# data companion has not yet explicitly set one. If the data companion has -# already set a block results retain height, this is ignored. -initial_block_results_retain_height = 0 - -####################################################### -### Transaction Indexer Configuration Options ### -####################################################### -[tx_index] - -# What indexer to use for transactions -# -# The application will set which txs to index. In some cases a node operator will be able -# to decide which txs to index based on configuration set in the application. -# -# Options: -# 1) "null" -# 2) "kv" (default) - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend). -# - When "kv" is chosen "tx.height" and "tx.hash" will always be indexed. -# 3) "psql" - the indexer services backed by PostgreSQL. -# When "kv" or "psql" is chosen "tx.height" and "tx.hash" will always be indexed. -indexer = "null" - -# The PostgreSQL connection configuration, the connection format: -# postgresql://:@:/? -psql-conn = "" - -####################################################### -### 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 = true - -# 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 = "cometbft" diff --git a/berachain/artio/config/genesis.json b/berachain/artio/config/genesis.json deleted file mode 100644 index ad723ea5..00000000 --- a/berachain/artio/config/genesis.json +++ /dev/null @@ -1,666 +0,0 @@ -{ - "app_name": "beacond", - "app_version": "v0.2.0-alpha.0", - "genesis_time": "2024-06-05T14:00:00Z", - "chain_id": "bartio-beacon-80084", - "initial_height": 1, - "app_hash": null, - "app_state": { - "beacon": { - "fork_version": "0x04000000", - "deposits": [ - { - "pubkey": "0xa00d992e629f49456481e48bf01d0c43ecaf8a8181e9d7115cd0644adbda6b1ed91dd43688e73dcd8145affb3f88f783", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x8dd0875e527b580b5e012fbd8f4e25daa4a31869fbd2ec8e2983711b5b2fe2482fb884a6ff0f4525b665fe364fe7d4521530b3cdfe980c2c8f1b72a9102d62b0f818eb2589b6c367f6b080987caf274fb07f3fb938a14b5dd30d86fefc9eda5d", - "index": 0 - }, - { - "pubkey": "0x802073a6a4c461797eab0e1992b7bcd1034d752bdc1bde7a1fd89d0227a5b3ec6bcfa575f3a46fed943796e77573ba99", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x85a1d1f7ff277b829aa72b5e5013ba0256bddc19b7d7b7a042e9cd372177f3984df6ed34d052d3cbecc6beb77668f11b1480f240b0b949f12008b41c6b384b928642e43896be740cbd1aaad160218ac2f9f6abc1ca83aa4496a465d302bcd1e2", - "index": 1 - }, - { - "pubkey": "0x803a740bde631dadb7bc1e7ebb097418929dd788a48febd457b36b68817856dfa39e100bb8b1c489d2ca6e22c2bc9e30", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb99437d33e39ededff49970b136d4d3a448573847df05cf390a0cc65f5fda739e028d369e2a2340d6b5fe1acb9d823070dbd6dcb3683f06656542b3adede2d0b35dbd2cd7f3790c90c12de3f7fe14c769cb3ac0ef9a5d237fef85d6d511cc513", - "index": 2 - }, - { - "pubkey": "0x803d890d50befa2a8000505b53c06de06a3a6ac2f67c76ff7e71b032cbfc13fe50a3caeb2797296b8049791c8d687a84", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x972ceb8e330319bb8cb949c4372f7913827fe8ce29f80817a7b6e1fbcb22a8c331f4f6fef117016f0725391f1848e67108952d7e244a512bf2cba8cee541343e81911e58378a36a63c8edab9024f4ffd08ec6ef37730293fb5326822930ba5ea", - "index": 3 - }, - { - "pubkey": "0x8116be9d2857834e9ba9656d170d3779f63af5dd61d72471234bb0e4e4bfadfe913a65bc316b69c39ee43c4df3bb48d8", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x8bb1298aec59a981dbce620d1f476f111416d6e0e28bfadd8937ba4154161c75934fc0e1d7513a4d270e7db71738963b053c3f6d3d885c07c4def44428b38637b1901e32e0ef047105969865a5fecf21e98c63e277fe815998192247c3e6795a", - "index": 4 - }, - { - "pubkey": "0x815970f90750dd5b0933b856a0c013106f6d5d256f5eaeba237c2cdb5360210ce6733f545fe13c1a3288357cda641ccc", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xaa9a459c5a6a8882e4acca33b169d71213fdf5bb8f8c0937c7dea9dbc1f900f57a9946f584b8950a4364c6b79c8a21821325b28cd5f4837746241591e69681caa05f3f65d762a93eef9210282166d9526c473da9592a00e6f96d18c76eacaaf1", - "index": 5 - }, - { - "pubkey": "0x820deef5483a6ae880d46602bbb63c88e93525431b8e2eba28aa52804f1245d9fe0b2683961e32799d9c2658e901a756", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb46c2d3db68084e4c67fd095e998f38bdf4242c7b75832afe309f1fbfb49ef8d7236dba1bec2c306d9672b76db4d33e319885104e13ae06cf993898f79a4902f3f316c395e8f8f80247f2567b24ea19bafb4d7d7da9be35c42bcfe4011b6da5d", - "index": 6 - }, - { - "pubkey": "0x8233d541c231bd62c66263ddfcec68968409f3367202c1aa2e381fa3cf7fe09b2b3c136ec05dea51c602d302cbb14a2e", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xa8a747f3822dc319e61739af38b83c582764c7ad7a1aa644d594147998c1a83058a720d6080685bd4debd309641333d512c0111bd68cf27d6aca4032381581065e28dce068841d7718c5fcae148ec4440fbe3f667c911b22708a06fd910d9449", - "index": 7 - }, - { - "pubkey": "0x82eab0c7f0c43dff6c79d8cac342f4bf2ba79c2699aa1414e498f797c600e4750cd7f41bd38260e7198bd662e22b1753", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x88a268b5c4d85f5bf82a220cb938c7c745444edd5f504a26b190e1773ed0db831d1be06cce4a572cd2eefb380ce4f02c0e9ac202755ea90283ab2cb79c279d4075ade5a9a165c49f8516752d19a84bf95e5985471a08897c94c3b135ebe81d01", - "index": 8 - }, - { - "pubkey": "0x82ec5e67683c71b308e54d453bc9c4dcf55a0d8ff6eb2703f97ec837b741cef8cb56a7ba5af11df7a1ca95d753996871", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x85ae7a57a6a7eec0c5f90190d69c12c609634e7fc946194d9244fda0804885b0f3ee564b98439dad614b5ea2a05c715404dfcdf6ffa79e1be3c3779386e096b6aced0056a9f77b1bd4f9ccc9fb8fcfdd58c3f593196539c1894bd791d1021c2a", - "index": 9 - }, - { - "pubkey": "0x83129767e19218d8fbb50336c069755e9971989ecfb2e463a0e3ce6b782e46ad445774f73ba529400bfab13074ed8d50", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb75c0e67010900ad3481d60d3f2672c83a2e6f0e68c5742c331fca01b754898abddc32c9f130c48e02b3cfeaf80d4dc416b175e1fd8e485085c2e6616eb4cf0daf502be9be8f70b1b735d748b23d8cad5b6ba241c481ea2efd9e8d9e429136d3", - "index": 10 - }, - { - "pubkey": "0x845fcaa8d94a17dfad3254ea642f1b09be1e192629532b75371fd6433031044c46127d0e2e6306469f067d6b6b173f4d", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x91d39f31a2f64f2b728ad1db3f7d8b05cae0c036998f33ffa4e9bbe44f5ec5e01b173d4481c046c78a5f6e2ff20ee28e1176d7bfcf154f3066f957815d46332a7cc66901d4b9a85736c5beb3577e0261d34fd38d3fb50cdd97b721d874c6c28b", - "index": 11 - }, - { - "pubkey": "0x86b49b23aa8daca82bf3454ec0a0f437b058d523d84c8c7b344873db0caafa4f83c5e99a174d7dadda2da3bcd800d5d4", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x9292d68379ecb22addb4cf1ee0bf8c07a9f5e5440bbbab5c7f9f4aa8c99f03f6cae645b29e3eaedcaf671c6c24e2cd2900e00ad09b6ce8a1868e3dbfeee4579398b3e50fd5e6eabdbf97269956064d4e9df40a5897e573d8d45775e06a02000c", - "index": 12 - }, - { - "pubkey": "0x8785427f42b3e8e5cf89febbc8dc9de5eadf5206274d6f7c1b23b6dd0e21ba973cf46d2990aecdae3f8c8fc90ba5e509", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x80ab9bfe6e287a44d81bae69b4d6f8854c24f5ea07b014385396b385a2cdb8d5175174fc75a129df6390106162788ff71880e612e554e1105bceb13c0fd518382c1c1422f1926aa6d87a4a5fb6f8ec1bd90da060f3e8f802e537f60622517829", - "index": 13 - }, - { - "pubkey": "0x88f5b4de4b5444fa6aa020bbf3ad21ef0c0f1db9fa8d7ec5c9cc6615081f6ba1c13519bc3b58998e692f9f9884c19ecd", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x86cbcdc41e0a391b648543c2a0507d5d1f534506d523e93a1ebdb6e62d93f4ffc8889f0feb4b8d89c97a99aa5124805f0e2ffb80beff1ac2b37ac4913e1f25cb243676bb6ddc13c3195ac52421efcfb27ed5f5358e246946fdb3bd5c801209d9", - "index": 14 - }, - { - "pubkey": "0x8945aed13d3647ecb17eb5d63006fd39dbbe589906858744366717f7b1835fd29b6e5928dac37b4cab6857a14411d1a0", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x8baa25e0f5d90151915bd951202bdeb160e42b2bf85124d261757ace1ceba1924f61e7178539742e844a9c8a13cf8b6d046598796c95dcafb0eb3fb973c325e3270f1f5c6e483e45110d5133cbbcc4bffd2886c60a6b11883b0989fa364ef4e7", - "index": 15 - }, - { - "pubkey": "0x894d77faba8a266b34d02914716a7c79c36bae1a3db6e2c392911644f196cf43162e98d7ca25499b9df11e119a9c4e5b", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xa7d86077f9b85db94abae6f5d2dace84b48a6f52098cdc694590af849647c72defbf34bcc622ca6a0c5dc4f8a5879ea2170d46dde42b9e48d92e6dbbbd974a371573adbc17a40685574125076b204f2071754f7d20e01fbabc8443e0624154a6", - "index": 16 - }, - { - "pubkey": "0x8980056000cbffafa03891b7e573f9fb89d207a8d60dcc66afe1717c7d242cabc914b6237726fb5099f5118e8cf74b2f", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xaebc84ff70d482ce60307e1a627b450cd4d788141ac3ef76f4b05cf2a48e325945b1989585e01616ffdfd932f19c8d5703f7dda2c184d3fe00f24f38ea69ad36eb4d3c58ea2f32fe02984b7a72815a4c245ead2593c2e3fd3361a30b2909bdf7", - "index": 17 - }, - { - "pubkey": "0x89b93d6c6f37bef27c57a889f93f1fe7aba8cf45aae00c0c8ef3c7390c13e88aaa26f558dd42fcf6fb1b96bf4af67654", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xaa1495a19ec7a9df493b50356b572d1a66c8698fa96ab2e5218aa52042bb041fceaf5b7ac09750875a326405151c801b108e348a691557b0cc688a3cd34436292a6824b47efe7a600f451254c78ea8ed21a0652b14eaec7b4df4274b30cd1848", - "index": 18 - }, - { - "pubkey": "0x8a59bfaca910387d86baa27f5f8d12297634b073f66f57659286323de2b722482377c08ec72db1593a7fdfb378d9dde2", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x8348da0fc164543ea2a06eefd408b51c0e895e943489d81a72c4de949fd3f975a1e22fb69cb9c20097ea2c89cc87ac491070995f39cc52ec562197117d95501889d2ddb7c5ae355972e5c999514821090b15c636d7053f4aa44a5da58adedc4f", - "index": 19 - }, - { - "pubkey": "0x8a80e8f9195233e6c010dae5b766e15ba6769019532aec010ae39de66e78b9f858dbcb58bc45c94fcbeebdfb23021496", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xa68d6dcfa58bf2caf3da4acc5a40aa74319a144358707b1f530d1484eb4f2895ba7302ff3415d26dbb5ca1fe1e2939c119facd32b4233b924efa19331451d5bff9cb7a3fbe2717062ffa39f6f1537b30f0e44d1c29c7dad8e4f2274215f91abe", - "index": 20 - }, - { - "pubkey": "0x8aa5063df652fe5f2b256d27cb775bb17055f90a213cf2e98720dd68b3743f239b5570bd0b59d24670bc5e4baa98ee60", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb494addf88cf6ceb945c4973344841e4c5acbb415474c7e472015d08ae0239e74b05ab3b059e08c6e298669e929a6c6416b4b5c6ca6dc2b6590b7bc53d48c97f725f0a4e2c9b1e0adc7bc95c563d1e7244196e1dd5683d40d990fd5d55a31729", - "index": 21 - }, - { - "pubkey": "0x8b6c74e44d028ab52b1c99eae2f6e5d1ff595f31c83e7d54a136ebfb0810547048a1ca17a96e5ce5f72ca4a2ef1c6c2d", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xab6567d609118802f7044278b6cd58695491d33372fc6fd3fe0af391a5964cf6e3965f45929d53760aa9d6bc5f2c696107773e798131c6a68648a0cff3d5d52c8d3cda547c2df847741437774d6efc210e8ef619b0fa2ee2dc570e4b18d1ffab", - "index": 22 - }, - { - "pubkey": "0x8c01db4831c9f79bab5b38008315cacf6cc3fc652aca72e42a87fd9e3d514cfac5f8f68b3480fb052bea0a6959968f26", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x93aa85957bea39107a21e61ac586c397ec7a30bd0c409b168ac40d4451551276087fe2be556f768817d57a614ca2db2611dd6d4745ce44c31cbc4ccedf1d1a1bd67ce2229cbd71576c31fcc8fdd88ce80fd98d38feed071433aeb0b0c68ebe9c", - "index": 23 - }, - { - "pubkey": "0x8c02daf8b39c68fa6988a357e9a4cfee6545551e0cd0b4ae2adc7956d3501bb78281cf061aa1bd29f35686a3167c9cfb", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb82d932e987368e07f947ded45a8ad40f0f5001681547185f19191d733614fd3fd994ec589b5ecdf0d421add37b65506128c7f81b827e3c4da6b4fb0141a1434b4041d6cd5fa97e2cb187139618ddb14ea299b7f5fddc63f170ade11efdcc902", - "index": 24 - }, - { - "pubkey": "0x8c3944ea6f448df21e313fd08b4da9ce11bf03071fe77157e7836749a5c8b0b1bcb4d03abdfc38b98b209b755e602eaa", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb2656a6aafbdfb9373e6b920dc01b8570e153c3a0fe2bacf11b8ae4b0f1ab2326b3846b596d9a775308ba928039387a3036cab6f1481b72d3e15c417d294e955908c94aaf7a512fb499d24c029116bf9c54587124824469da4ec2c0215a5d8f1", - "index": 25 - }, - { - "pubkey": "0x8c7b75dcb6d5201457230962ddab40c289258304e960d8aa1597f882fcc215834a24f83088cd2de518a0d42ad441d7d8", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x96ade279c914467adea97243f59f7bfba5145464a5c5ea6bf8059714db09a2bdd6fa35612fabbccec265f02a167df61a08502e99df3dc21563d5676ba4938cef54afff0b54abb3605b8337cc014328acf16973f7df65d18e68236c771e8a50ef", - "index": 26 - }, - { - "pubkey": "0x8cd19ae53d7366e684bb2cadff072da2030d43231da3d6ff9fd46fa13b1e46eca8bdde967a7d150f2641d279af01999c", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xa6842026a8f795cf875b30772b47d0b16c82bd97a9e38e730cbce0409786eb31a9853014421edb20d1108c850ed4a39115f187c809fb03e7fe538284ca6dfae58080eab9216b4c30c2d94ba36a2f183e715e15e62523f1a541a2b5e93162fa03", - "index": 27 - }, - { - "pubkey": "0x8d36cf3fd9dffc68d60be901a826c801fdba8461dd553204f2b0e77cb640c3c0af9ef93d001e8f36c151a6eef7d92181", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xaa0032edd910479da6726aaa3f8ed391d3e5819e340f068b1871d3306444a6a2a0d3fcbdbbf65e45c114d8d027a8afc107084d5f03bf9f7786023fe0ecc310c595a08269f04488f9f32e1841b4d5b445ee1ce722f9cc36df3d7e2d481f3761ec", - "index": 28 - }, - { - "pubkey": "0x8d6355b2617156c39d46f448fc0d79e9bef71abda7220289690e2bd99c747799b2c3f2c448cf4b877f1224cedbdd2cd9", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xade66581bf20c8d9f1a4f39968e0dc3517bb602eed940aaf45508e96c0aeb14652ecd70853fd2947e85d2630aed9bb3610f328becd1924a54d262ba47eb5136d01dee3a9696c3b4e3a0ca769cbae41054952e0e945dd5c923363199e7331b1c6", - "index": 29 - }, - { - "pubkey": "0x8df36841a147c771bb523866126d1638dba6040aa207ab71ef915099b485e1a266c7a70f575d8c132af173b029060125", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb69879a5b3a5f8a7c222a16ce17eab0ba8bd7b823d73b9b8d09936ab9bb3714da29a4d355e115bf4d5d475c63a8e38eb05aa92aef6f126113351316ee3a6c9f76e1a10e17bad567b6d34d7d522921dbc13875ebc35f0ca4a8cc33cdae05b4af1", - "index": 30 - }, - { - "pubkey": "0x8e16338b7b4410520e53455578ddb115fb38e969ac3f6b911d5548ab2bc1b65e49c0884272305ccce43e8a9a520fc1e8", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x892316fa06079b988d2718571d46c8d7f614bd7da3a00ecd02a0886f84cb300a98b110efbb986f8d4293a6771d5dd97606cc744f562bb7b933e29767bdd06c978f83284d941832d0b467071bdb7c956a2397ddb5cabb7420efa601f3f0ec9ef3", - "index": 31 - }, - { - "pubkey": "0x8e917ad449923347e4100270a63627ecd26366481128cbc4e47b27716e5471148593737c6c69af53529a9cd867991a5a", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xa1dee15196165a5b611000e8d0ef57672e16e4da0c65bc30d88cea8daf45ec1994afb8bdc58de4f1d7881ba0f7632e951969acc774e717f6424bbe5f3bc27d5f108065b5459cbaa05e60dc43e323adcb4a491e0f37ae062aea3503159076cf96", - "index": 32 - }, - { - "pubkey": "0x8f15e8ff419a03c2c43e342d8186fe996b21f13e66a60dc9979823111274aa9b9760d8b0e11175ea8f3091634a99148a", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xa12ff12735e78628c302c1ab061e387bc5a0392a8071d83a34c56f54ba98dc74780f921cdfa4ccb77af302cdf03566eb10516ea92f1e74efdba26d7643cb473fe5cb4da2a776b881e68a487926e52733c0d478f16b67b18d9ce5e5b3977bc87d", - "index": 33 - }, - { - "pubkey": "0x8ff1f07fa91f3ec32e85f6376e8d76d19f7f669ad800a0977da41d11d2465a00593eaab892baa26c802dc6f56d3d4a74", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x97a48a5e27d7c052b6ab021719e6892f222df05d41fd9a8d3102b90d2dc435dba4963b6287741aa4471a10ea644dabfa03f9872881464e96741f20a0c46836ebd8e53ca860c1b8dbb3c10889d38a293a4f4b77d4085c5d628ce430c960c170f0", - "index": 34 - }, - { - "pubkey": "0x90a9ae97b311cec6a235abbebe8807a4f13dadd44bf84796ecf17b11fabf0199ce739484fb8af4027c504c9d97cd139a", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb4d4b52301d12f6eb0ed5bdc25e302f8d454511ca608e2c5ac33a81e42629417b583ef574a1a30c7cf724d7a8a693654169b747c1f7978304252e2eecb4ef3265ebb6c283657c6b4c2f6fd1f68545703037ebd8d514bce4f3b849081a2b8faf8", - "index": 35 - }, - { - "pubkey": "0x90bbf8b3ecf771611126bdcae1999b5e5db75fb1e3dc26b7e544601e96b8eaf8632777e134e5f88eecbf9a1d1c1ec3ab", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x880c24ff5d9812c2f634e11bcc410896b4c74c9c3634baab663a096e58478bf24e0bc1e458f91390b2814ad374d09a11113f52777b87332db186e713629ec0c9653eda880386f74b0d770bfb2f82389b7ace45b270f8e04391d16e904ec38763", - "index": 36 - }, - { - "pubkey": "0x91516616fdf60487b1e2e1b0111c2a430d4c6fdcfc5c2f89eda7d55aeeb8bd742011c80ed51190805fe7ae28f93d491e", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xacf3957db7586a78b0ca7f7d6c0a58b6a46edc828c45e1ffe9a6ddf515b676e154db70930a2663adb4ae59f6843b88c412f743d33d514e7e0423ca549207c6a64e26c6f698d4ab5c3df8ff5496d78abe57633d3c937b43d224153bf83a010768", - "index": 37 - }, - { - "pubkey": "0x92cadee5fa6a0c55a86d3af68cd528ec7d6d0c6cad7dde4438c6ea7033ad43466c290a69be3d5d6cb40055280125ea36", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x98d28fd58b7c248cadf1d56e9e11fe4f8852ecaaadf7e8146b4d80bc10cf2948139a16c083527eef3c7e324e8b0bee17034dfd2582a903985997830cadc53bbffacc4bd7fa0c02127565e0a8127dcae038cd73a753ad950f8b1eeeb3fb1e9734", - "index": 38 - }, - { - "pubkey": "0x936e489ac2ecf49881e0c635e639b509b372204a8c527c5f9e192b5e92f7aae1b5e18e80b800672e6787cd495aed267b", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x81d6ec5ca667a1933185369253036f1fbb7cfd06e03bccb5572a6e09778f8b5884f2a736b118cc4c6ce65a6ec6ab1f0407a1c2b975cfb586b9c1a3907731f29c3f1a29492f0bbeae9242739f1102af9e0d4024a58cf2d341d016381ffadb6b8f", - "index": 39 - }, - { - "pubkey": "0x94010a0d8ca6510884225346b8a3ef54e0603faa7949aa98fffd2eb380bf4c1c5346c47224a4845d45dfbdc3f4ef9983", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x810267c2e025a1c2add4fcdef3c3e0f88d1f365e62094e8b15068b20e14aa7ce468b109a7dc90661f27b96b8eb1f31bb12711b5862aaf7f0248d06291c26b6a0fee5010bf1f12bdf7376e9288310ce78ace7e60b7e590d6f76f51d6960f838c6", - "index": 40 - }, - { - "pubkey": "0x9496bd4cff75ed423cde80393682ccfbd2bafce48297e7727ebc1db880b7a10e457a15124fbe3821d45a02fe11ea6d76", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x93a7feb94db606994d9aa0afbdfa6fae40ace80a115468a3ab58dd07a49ce74a4fcca7f526f09fab30e2dfe17621cd650c354b1e428fbf28d94b8a8df11a2b2716124e83f82743c31b9bf6132b65ac3885b2f9208e64aa308da04b8d1ca472f5", - "index": 41 - }, - { - "pubkey": "0x951ad45edfc43cb05d04aebb56f5e52b5fcf14b709c087c0087efad477ddae1f4c489b150d3d781deb99de282b8353a8", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x8031766e569cab37a2da1689a30f79085936e4689516f2ec89c0d12a1d598f1f958104973f71a9207ea0749f1e738a5d15b3eee43782e9c333b3f37dc5fb49120c9591895d08c24bc369a934c8c6519dd1c3dca479e2ad568c566db74ee54259", - "index": 42 - }, - { - "pubkey": "0x95d2117586b873324ce3ec7803aa841f97d5569bf8e711a66d3aa7c2c01d98ccc168e7e9901741eb6d200b4a18682ab8", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x98dd1e201aa923589cfbba8ce73417383204197b3fb66fd57d1d779539fef081f800e43da4cbd73add79effb33a2a49a16976cd5176b11a66dfb95f2e8e183345207f8d538f99a095aa928b33a3b4478ea68045e833f03b7b493dcdbba2047e6", - "index": 43 - }, - { - "pubkey": "0x9743ccf941e966bf16880485f9157298cc882b376284372014682bb915f03a060ddbdab6721a6b93a2ea45bf395fc691", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x95c75a4c0f6cb6f6adecd771ebe9c3ca8edfe27a7d0cc0a496cf7fec8599225c1d74963aa0f72589d2f1b1654d37608d003e1d793338b877ebcf505f3544212ab20768c4a83dfab9c34cb06591de6c547861d5e23e083aff03506098487683f1", - "index": 44 - }, - { - "pubkey": "0x98537be1fe74b3ba8cf7579c54d314e7b975d070820c494d684c4fdaf91d32cba1cf110c7edf5f7722b3645ff28b73c8", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xaaf39a8b485d17f301829df7152433b2c0832110e0d583edb9b441fc424e36280dd773e6bbde4bd63e5db6e450feb83414dcbb16f21de8ffdc56d90ecc2cf132de29d9022fdfb3723e75cb1426ac762198bba060b46db7e938379e3f44407f31", - "index": 45 - }, - { - "pubkey": "0x9942c15d2dbb78464628140d5cfeccf41cbdf5cb1cd4f0a3696c4085795f2441f1499b2a4779c288126f3729816fc3c2", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb2d23cd010668d15d357996aa36a7f5143f53e1c36074df5d5dbb981a3b101baeb3d283531b5a7120dc8ad106fc7b164074fc9f6eb0945054d22131e801ba77cdea9dd0bfb3cbc33319f26bded059439938487e1f6e6d1716397dfcdd2df86fc", - "index": 46 - }, - { - "pubkey": "0xa0b6aed48910d749025dcf7ff1e814261f4b970f099ca0cb785cd3e21e116a9574565efa57312fdfaab4e2fca8c6056d", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x8dda9d1b2912ef08e3277c6d1c5d382847d86d555157d9f7445f9aee7bcdd713469939bb1d9d18a47b6591e08bb6050c17ff836a3a4a5b4a1866b9da9d6dea2feb1e984fd75e89d885ae76ff2d27369d19a0a8b70e50b69aa9f3e8b08663bdea", - "index": 47 - }, - { - "pubkey": "0xa127450d48f95ad33eb34371a8e1bdbfb2eebce168c30409f303be94a93f648d0616b46688a20d8a5f87b9ad47fb6abf", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x9053bfd3e7e8042361c567c7d7d1b6d2594cb66b17f15a74b5426a5800bb515140dfc56310b69b2a87a6c9813bf66e4e107f49830cbbb61ce25f992dbb20a3aadea6f2e5e0d044f245738dabe051bef188578e22eb36314b5a434422e21820bc", - "index": 48 - }, - { - "pubkey": "0xa153ea400b3f723d476cfcdf708939b66431e294b39732419822357e34f078ee0bcaab8d75a70b8c5d34cd55fcc35aeb", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb430cb646dc94c3e4ffd6ba2112e972d4d8efa7acb69af55c8fea9a3671e7ba2df367dc709cc88b2e42dbfa4e47af1640a5b41dc74f0e12d10e9168b3add3cbdd7235356441de1c64de3285dfa7ad0d2142e5c206a2bc6e81ae68cd64236b9ef", - "index": 49 - }, - { - "pubkey": "0xa1ededc1c2b96395d70e27b6a27c04cc760d588848e48dfedbfc4b2cf11606051e8f1056e8067d3e1b18ab1bd781920a", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x835dda96c3483fc7b873c125d8fd1c214f1b3974f630cd5fa46d58037f987246f11a90f808901313e95a7810da89c894056016cbee00d019587c1dbf04d1034e7e0a2094ba9e8b6dad4414deafeb6ffe8ec66256fbc7be282369b7afaf15113d", - "index": 50 - }, - { - "pubkey": "0xa28b5823a440d12d624ee8513b9d93db6c13fc2f078d427fb76fabc199e8027b16d9ea76f278c4e13a1a6bbcafda4d40", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x8335142435b436f1929cc481e8adc3f13486a1985ed83b4bfd5e4941e40569a81e8e780e37c043886677a8bcb163671d0a939104e7eebc1c5eeca447f547175ac36a6f45d6754eb2650c01b6331a57cf9b2426b2935f6d05336b4e5c0317323d", - "index": 51 - }, - { - "pubkey": "0xa3073805176d977948a522b459d9e670b382e6f9e9747bc56c398667834b7f7ceea2f388569fdcc87781a8770d123b90", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x89689a56596d9d4355aae536c54c4986480081a604d1501315cb51348a56d6799ba7ab1a0f88afe5a987e2642cec7fea0dddb5b0f02d4627f9d7f1aedff7a74dd21d8818f49f43d26c60b7bb47a82d0b6471f465d1b9cd55c2d764fc0f4f5368", - "index": 52 - }, - { - "pubkey": "0xa38ecb34d118cd0972efe5070d35adb567d9e8331e0ec4a102bc12e13255b64800d99fbe86c58dd1c7e12ffe2b0d20a1", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x8a82f3620328c14943ded5e5fad75a20f036867d82acdca9a58ef398ba7d61c9cce36cf60bd4ec30893b5ffd00c03dbb0d8d4c9f6fe36b3f3ccb30fa6ad75790aa5742e9ce01ed3631c8ad86ee70cd276c413684ecae71ade4b6142d233537cd", - "index": 53 - }, - { - "pubkey": "0xa40863ec4cd0efd2f0dd7b5c1047dd84ddbdeb6102d749c6edbd4cdac447b698733193a30f91a03763c888cae3faf7db", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xa1556e179fb2053fe7e78c79278a79c66601ace3cf5c282036d69791bceb13d848e1501e63224aee50215e37448bdbf0161fcd5615897df8b1f27d40f0e5556766d6641e786b6feadc237299dc690aad88740307358f42e023d45f599621131d", - "index": 54 - }, - { - "pubkey": "0xa5571b311b0c20042eb1840017ceff5cebceaffe20e9e44760827ad389a2b78aecab27ed4e25a0ab1f435b3abb568216", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x86f18d2fca05bcdf9bd198c89caa78ad8d3512f1efa12155d8afaa435d10f3c0153cb2558d2480176718530e5948757d05e087a68d27c3ab1f4c82bb7a3c81058778a3f68b8126547ccf68eb2681c738237e06569c5168631bf1d19b17724436", - "index": 55 - }, - { - "pubkey": "0xa59fbb1a51e6970f296000fb4eb44e4efc0bda82424aaf24e5deeae137358bc56ffa4c200bb334c0314d80ea0e644622", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x824a925adb5987e1e06825c7c42f8b808e0005bdba47ef2754e0a4e53696221221b797c159f4bda07ff4b9762e8cec7f0be2649dd41afab55a901ab52ba994ece31a029ffaba509d100ca25d30740c406b54f8802a648a0a742f31599dbc046a", - "index": 56 - }, - { - "pubkey": "0xa74321193a4332fd3638ca33d7799e9283b689a463ac4634294baba4777b867d3bb4fc2d35f7c43badc9589aa0a018e2", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x86e74600f98dd93c19730ae6aaf74a5c612327095f0f179f47eaac66c4f32397bad7bea80d6824fbd32552e282847455172928288186d81df7fb5bfca959037d4b82d6be8c353b43027205ce8a7525eaea7847e2d2b6d57c245aeb7775a8fb97", - "index": 57 - }, - { - "pubkey": "0xa75883867c9a3882c7389ae1f7cafc6cb0ad082166ac29b3aa8ff4b0eedb6a53d797f9ad4b185f3c765dffa49d2a9bfc", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb228f0cbd928f22a17a7f6dfb41d3000ba5f615452b26eee31af6802cab9b998fce14f017a37f2d5b6d682153c9585f402356d01ecc83bf2f98001c25a678860751d0ce65e3d0cc138c151dcd7474fbeeb36ca302c59fa145e33750a5fb93e1c", - "index": 58 - }, - { - "pubkey": "0xa75ca5fe00723d5c6fae15ee153670415c3a702607a35c8cc8df3e0b5122c7e76dab1c53443315d9564f0300f6b776dc", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xa91d7d5f6a05de9d6f79419cbb544a55748b5dc57868cbd820d9626e9ec00eeb85c3cfec904bafc6a4f736af8b70872d0783e7b456c90aa699d75885172e5a40765dbbda2c96627045e6b63433d54af7b28fcd040e75105fb2cd492d8e9f88f4", - "index": 59 - }, - { - "pubkey": "0xa799b099df114e508278eda664ede2f1f50ffd741e90c1a56691b4b5cb86a0fbcec292162cb15874052486a53a0dffb2", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x8022070558ae35ad25e1b76a0d6c807ba7302e9f7245ee3bce25ae153fa21b60eef6e8fbc5781dbcf54aa55051b5690a0388a257dd51c46a7319f207c4e12e32da0b5680fcc59a2b63d400707a17468b6f40992da7b813eb6d5ab68669e85365", - "index": 60 - }, - { - "pubkey": "0xa7bb2ecf7686d2ba17d6a73e42f66c334f73b306af01457024c9f52e136f61196e79122e5f1f295c55b3614e8840cf80", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x8d403b7c21f264a67f4c60d28395f00cc0bc7b44d6e8b4bd1ae3a74f5d5cbbb0aedfcb7b18ab418f4cfb405304eba1630455ca0c2e832fb97006cfb9b4107acba869af7c80d326ffa9f5209ca73fb66fb566fa487159d3ebea548fd2f7e6d6c0", - "index": 61 - }, - { - "pubkey": "0xa842143757ba2d36e17dcd22659506b57fd566b6492d2dd7dceba27325ffcc6e477505f714cccc913d394b47e1106c07", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb6aa15a0b4972a52d21752781d5afdf92fc311d66f99bb417cae7c46569d647b8e88c699f2c8d1d23fdb605b7cd2166411a5a161a985add0dbb28711b1a52a24ed0f3d473308b06ef7c1b6d89d6e148da7268db034325369a5567c3fb02e159e", - "index": 62 - }, - { - "pubkey": "0xa971c4a3e9dda0e3b4c81aac43f68d10aae0e975402eec9d399a7d848cb875d49cc712d6cae7e05fa868ff113dd032b7", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xa3a1d14eeb2e6aa9a7a1d1f75112b487b38bd55c737c33271a2f9a0423a6a574f2d9bb592f4840bb85d487fe74c1337e1529818ec67642d505b9e2f0a6607386d59ca71941ec3133aff5f0efe791a767c798898ee9543fdb1780ebd15fd4a509", - "index": 63 - }, - { - "pubkey": "0xa97d60f5b0a4228dc0c79a1997ea589ca247c93c479d4ab4d300bdfc4db34274058ee79422df32bbc8f1af9d1d51f82f", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x9254dc53406d84789dcb9d758efecee2b9a33d424432758d08b526b8ec77501cc0e1e42a8e6389c5893d2f99cd793eb00978a66a5d6025a340c7ba232af3114b946441081ea67f464d905f22b5f6da527e735f23c855534643696a2965e6fef5", - "index": 64 - }, - { - "pubkey": "0xaa00c77c6547eaa51312d2abd4b3b6f9612e398012fc2ba8bac459414613015a467a3eb1dcfbac885040600f39c42f46", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xa3aebbbe74779be3bdfb9d787d779dc7ce29f42604963a65ef3ebf3a9f65ff47378575257719694f2c4b489be663725e06f2e99ad1915a318c2523500a47de786eb3f06a99da3194af894a216965985988c21a8caed2d562a2e380be24c54100", - "index": 65 - }, - { - "pubkey": "0xab0a5a29c4f330bc7f83e12cd73b74e4311d40a6ef83541ae1e10ed840ef9d702ade6d9d9723374be88a009f170d57ba", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb32c8abb60fab68d477184885ced185686089095b43580840d4e0b77317abcdc1885204fbebc919450bf969974237ffb11be22baf34225598c00af996e24b3b259e9bf01b2f6710d474e54b225c8c39cf6913087f863d1b4d8ad552ccb4b18f7", - "index": 66 - }, - { - "pubkey": "0xabc5e529fc95673bbf24e9d49d13715ea177eb3a6ac32be0fa5a4f8897cb2cb129e45b6251307804025af8f281dd1d0e", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb02e40d11f71801a44faaf9f5c1037295449aca79be7b549b1969ed0e6443131e8a2e9701f10df5be622b480a90eada6189c35fc6d00af9316c37435ce347d56a66f243f634fcc354b7c8f7d6669494d53978d803bad368018dd719fcc7489ef", - "index": 67 - }, - { - "pubkey": "0xac71aec361cf57b5213d97dcb3696f9f39e7ab0966f66a8d24c83596207905d3c139d63b256a8c98bccd37143750779e", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xa1249cf3b86d6765cbc079485de8df4552a6114fdf70d14b7e7ed81b14344fc03bfa0543ee0c830db8a87e79f5c23d6516aba22715a6e98887e1a9fec0e38c921da0e519fbb51c4c8ef3d3b24b3ab425052e09b060b6a47f7601fe032930be0b", - "index": 68 - }, - { - "pubkey": "0xaca4842fd1a36418a0dff760c2b4836544fdd5dc8b493c51e9eaa7a774b2a530fa93389f9aaa5dbe0723848852349464", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xa436e2cd3eb6d709d40986a03b95e934a29c578ff45c09e00b87b72bce8add8f8690707ff4a8467ee851aa7ace97b62a137655f9f534db5f2346e61828934831405a83da3af589c42a75ae457001704989d8df31bb1f51b074a708c97a712b5c", - "index": 69 - }, - { - "pubkey": "0xad8250f33e99bb30f857559dace212d26bb4ebf9fcf010a32c6cfd1b69c13ee11c9b12d88aa5c2bc68e9dace0b7d2a00", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x93b651dbfb5676b6474a5ed7f26bf7febc11323730e04a5186430a9e9bf0bc946fbad99acbe56f09883b80142d6219a0060a3da78aa9813440c9216f582deb0a9866a05997d715eb7769759c4dd0bfacc55aa41787d8d5678a33356d292b9e7a", - "index": 70 - }, - { - "pubkey": "0xae2f002a928aec5220cabcb5ddba8de29d796054a1c871f034bc88b55e06fec86abbb260453f8c160b48dbe7f991e6de", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x8946800e8aa7c6ba6a41cc4061a764a651a1dfbf766b8ae6ac70a73bd78d29f3ba9f823890e6eff9c92183a1005ccdeb0bce44f7d7abe3079711496c5bf6831c1a662717b5f151d148febfd4d14389d9f011304df2ff730664a10058e852e3c2", - "index": 71 - }, - { - "pubkey": "0xae45eefc1338eac27428be59064b7325d70cd125cc7d540faf341fed5331256cc03e905e557c7e119bf95ab6b4f613dd", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x94e2f6fb7d27cad63408bf15a5ebe21a2dda573e8638bfecaf061c07654e5c29848ea21dc67179c11d72a11041a25b45053b98b43a939873fd71a21c7b6ed995844394d037738c1a52c3224df6268dcb145064197e9e5f72bf36702482f691d6", - "index": 72 - }, - { - "pubkey": "0xb033dcab63a150f1d72e15b21f6bf5fbe6bc9d6ca33a39fbb816b2919fc46b3e755467622b2b1206d98655d594cd772a", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb146df7eb38ffb7dae502f63d867e4090d08f6c27b7ecdfffb08aa9565b0c32562e1b507ed965a8d6ef9cd5602eb90650a8e77191b6d83b844598a07468f9ea220b755dbd0c53c81af091f7dbb2da0101eab116c700c27a40db5af1d977b9d7d", - "index": 73 - }, - { - "pubkey": "0xb1559e72c8b49879592a74895d526b476b1145db07da9531c42f76af7f5f47d10420c9489ea633361cd2ad6704141b24", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb3c1d145409b1ad80f64e5193335474aa0681a817c6fd58af0e971c307366087c4c99923040f41a7f3586bc372e44f020a0dc141755ae934af2b4e769b3d8e12c686492429184432279ec996f8faab610ef92a6bdf44a131b58f8d154119d795", - "index": 74 - }, - { - "pubkey": "0xb34181753bac46a55909379bf384dd00cffabd526d84b9e999ef5b48bb8117290980ba27c34e01158f44285f8718b508", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x82ed1140bc3ddc15701fa89d451066b7622bdc1abdf10a3e32c0f32a8579ae722893915636e233771806fecda1f4bc10076c521a29b93c9a3a1c34f6972ade0d883ffef76afe9fa4cabb97e72019a4e89cbb776f36f906ee252c7742df824a9a", - "index": 75 - }, - { - "pubkey": "0xb399681d63eeff3a1c69807f7a0c0c3bc71b8d9920e9f4a908810466ea37d43a3d033caec35997620e746ecdd96eb916", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb3300a46535ca4d5a4769cc71e5b013c844425e4bf767e357c2102163ea843ff786637c9c12f1fb6ff7f5fad591124130bb837eb06e3d1c7789ad19cc963b841bb721f82939b169ead5a8519ccd7406872b5995471ceb9bacd4183fa5ff8016d", - "index": 76 - }, - { - "pubkey": "0xb50d5cf9948cca4623375f56bcae54de39c5228c0306c123b13c0b8a804b5c759f8b1cd52fb23380783704cb0c6a92cd", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x830ccf4cdcbe6e67a45f2c463a8c7903ea4bdb8bfb4caa14671c078bae4dfb0357303980f41f5564ff80c8cdf38f07070d7d037fff1bd950242b146a22ddd107f7b6acd7933ebf765eb5229ccc40233e6ef95dbf1a7a441a07c1ef4ba76d2f57", - "index": 77 - }, - { - "pubkey": "0xb57b4ff3fd8b5c75b79c6119e9227322faf7ef5b0715176a17f5d579e13cdd85d7e0d532bfa775951ea2b94187bb9480", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x979b209c0a776036629667baf7869e894fa6c775fa736728dddca07ceadda8e53fbca80846979493699f36408439a67905b575cff8ce05b70f7ae79b3d1cb9d49752a2feab99de3f19316200bf94642a3d1523b0b95c2723cfdbf617631c106c", - "index": 78 - }, - { - "pubkey": "0xb61f2a3f949319933e6181c1510fc11dc093c9c6544b502f1e3b5d32f6b7ccb31e7e5cc1f78424226a986735e8adf63f", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb3f041359dbeedccbf19bca0f06d1cd71269cc486388d8a777d579396071dd331d857eee8af69affb1bdfbcd4706effb0ff938d231591079beee08b8ee32d175a9b553ee38f269815c62bd8d08aa25fab5f63dbe7d457618bc926eb794b17c5b", - "index": 79 - }, - { - "pubkey": "0xb68502627b286b9450efa34af553f99559edb4951c463f62e7a2ea8ffd48551709b405ac8f8e5a4efb0169142f26a9fe", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb87aa198b6f063d9c4aef125c628b8ac7d1613847cf74a6ebae68f90c49918226c9470d5a3872c0d53b08de82be440f50127a2491f2c5f8f873b16b84562398c36d7829e2431ac57d31dbdf2ea7d41d5e4eb0f53f10ae503b3d3eaa82d39ba93", - "index": 80 - }, - { - "pubkey": "0xb6bcfced4d00ec09ddf684ea46777adac657efb02bd1d77e67b17aca557fca81d5b90b0fd810c546e21e1d175ff7ea35", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xaee612534ea4ab2f72ee10579a7494138a34dd3428eaf4d636d64196a53c31daef13b208a992982e4f504fd4fe72153d01ad36f2b9321d605f91b77cdaab881b08b0ced0c8639de4394a16da2d279811f864412b36afba303e9e73e27de0eaed", - "index": 81 - }, - { - "pubkey": "0xb6c4bdfa5c7274afd5b7f0f94d337cf28f521ed04e194031279824b64e3f11d8ee97e5dffe7cb98af93f9b327f12369c", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x831a5f689c4653092c2e749ebc980c0f3eaca431284eed4379bf9b65d3b3c2cbead6becc64fb7de6466927dfa62892630b533b741444dcac8b46eadf60ff8f73094be52d953ba151b6fffe995034d91248108969dbab77b0e0764b5a38ec7850", - "index": 82 - }, - { - "pubkey": "0xb7f0c16f9815de4186b1fa4fa15a7e5ed53b841aff9660b98df49bb16ddf668df8b9f1e551ae7b370697d8bc9c252294", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb08e917308673556dfa0a00f3efbce181b40b47bad741e911db649080b5b1439ebf423e7fda1c5fa0450b68a51cf24ec192ab2f4136da85dcb9cfd4faf98fb96eabd8a0206f997acdd7d090db9b44e0b39f07bb9adc10c8d4f6f5ac1f6f0601a", - "index": 83 - }, - { - "pubkey": "0xb65c4489fecc21865fc9c4eb5e657d2b5498a04fae4b4f0c87d4c00268526dc2e743f69e0c1517d7564fb4804cf9cf4a", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0xb8f63cc807899af85373d4b67cd05218abf71fdb5d735c1f2c4060119f9e0bfc4fcfbc319bea54bf5d580dcf20e4909400e6445e6da82ef05e9badc140cab5e2b83ecf98a2f3a71988b599880b10ccf36560a69564af81a063725de235f50956", - "index": 84 - }, - { - "pubkey": "0xb6be1624593603d640144173489b305a52fb939cfa773284822c17a0e6b97e5435043f514d10add206d2b13677babee9", - "credentials": "0x0100000000000000000000000000000000000000000000000000000000000000", - "amount": "0x773594000", - "signature": "0x8d81acca3b1caa9cb071f2e8c3ebb2df97329c1980c04fdf14d43ec8c5369960aaf1ef491460f3963c61c02b50b22b0912f2477bb4b49482c546247c3aa35c005aa545cd3dd6b00622c4216e1b269babd8e8dbe02195cb1326e8a7d4069915f1", - "index": 85 - } - ], - "execution_payload_header": { - "parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000", - "feeRecipient": "0x0000000000000000000000000000000000000000", - "stateRoot": "0x6baa63317ef13224ccbb368320b6270f08591c452773354384826e7018961c5e", - "receiptsRoot": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421", - "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "prevRandao": "0x0000000000000000000000000000000000000000000000000000000000000000", - "blockNumber": "0x0", - "gasLimit": "0x1c9c380", - "gasUsed": "0x0", - "timestamp": "0x66606f60", - "extraData": "0x", - "baseFeePerGas": "0x3b9aca00", - "blockHash": "0xa42850da28e09e0e7f75a76fe2b96c8b869a206bfadc9a4450ca345153b0c7d9", - "transactionsRoot": "0x7ffe241ea60187fdb0187bfa22de35d1f9bed7ab061d9401fd47e34a54fbede1", - "withdrawalsRoot": "0x792930bbd5baac43bcc798ee49aa8185ef76bb3b44ba62b91d86ae569e4bb535", - "blobGasUsed": "0x0", - "excessBlobGas": "0x0" - } - }, - "runtime": {} - }, - "consensus": { - "params": { - "block": { - "max_bytes": "4194304", - "max_gas": "10000000" - }, - "evidence": { - "max_age_num_blocks": "100000", - "max_age_duration": "172800000000000", - "max_bytes": "1048576" - }, - "validator": { - "pub_key_types": [ - "bls12_381" - ] - }, - "version": { - "app": "0" - }, - "synchrony": { - "precision": "500000000", - "message_delay": "2000000000" - }, - "feature": { - "vote_extensions_enable_height": "0", - "pbts_enable_height": "0" - } - } - } -} \ No newline at end of file