Example Configuration
The Juno binary uses reasonable defaults and can be used without configuration. +
Example Configuration
The Juno binary uses reasonable defaults and can be used without configuration.
For basic fine-tuning, the --db-path
and --http-port
options are usually sufficient.
All available options are in the YAML file below with their default values.
Provide the config using the --config <filename>
option (Juno looks in $XDG_CONFIG_HOME
by default).
Hardware Requirements
This outlines the hardware specifications required to run a Juno full node, including both minimal and recommended requirements.
+Hardware Requirements
This outlines the hardware specifications required to run a Juno full node, including both minimal and recommended requirements.
Minimal
- CPU: 2 cores diff --git a/0.11.0/index.html b/0.11.0/index.html index a8b986c1e7..8bc4777f63 100644 --- a/0.11.0/index.html +++ b/0.11.0/index.html @@ -4,11 +4,11 @@
- 💾 Tiny database size: ~156Gb on mainnet diff --git a/0.11.0/installing-on-gcp/index.html b/0.11.0/installing-on-gcp/index.html index 5515bb8c1a..eecf8b5dd6 100644 --- a/0.11.0/installing-on-gcp/index.html +++ b/0.11.0/installing-on-gcp/index.html @@ -4,11 +4,11 @@
-
diff --git a/0.11.8/configuring/index.html b/0.11.8/configuring/index.html
deleted file mode 100644
index d3615157d1..0000000000
--- a/0.11.8/configuring/index.html
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
Configuring Juno | Juno - - - - -- - \ No newline at end of file diff --git a/0.11.8/faq/index.html b/0.11.8/faq/index.html deleted file mode 100644 index c9575cdaff..0000000000 --- a/0.11.8/faq/index.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - -Version: 0.11.8 Configuring Juno ⚙
-Juno can be configured using several methods, with the following order of precedence:
- -Command line params
-Juno can be configured directly on the command line by prefixing
---
to each option name:-./build/juno --http --http-port 6060 --http-host 0.0.0.0
When using Docker, append the command line parameters after the image name to configure Juno:
--docker run nethermind/juno --http --http-port 6060 --http-host 0.0.0.0
-tipCommand line parameters override environment variables and configuration file.
Environment variables
-Juno can be configured through environment variables by prefixing the variable names with
-JUNO_
and using the configuration options in SCREAMING_SNAKE_CASE format.To set the
-http
,http-port
, andhttp-host
configurations, Juno should be run in this format:-JUNO_HTTP=true JUNO_HTTP_PORT=6060 JUNO_HTTP_HOST=0.0.0.0 ./build/juno
When using Docker, start Juno using the
--e
command option:-docker run \
-e "JUNO_HTTP=true JUNO_HTTP_PORT=6060 JUNO_HTTP_HOST=0.0.0.0" \
nethermind/juno-tipEnvironment variables rank second in configuration precedence. Command line parameters override environment variables.
Configuration file
-Juno can be configured using a YAML file:
--Sample YAML Filelog-level: info
network: mainnet
http: true
http-port: 6060
metrics: true
metrics-port: 9090To run Juno with a configuration file, use the
-config
option to specify the path of the configuration file:-# Standalone binary
./build/juno --config <CONFIG FILE PATH>
# Docker container
docker run nethermind/juno --config <CONFIG FILE PATH>-infoBy default, Juno looks for the configuration file in the
$XDG_CONFIG_HOME
directory.-tipConfiguration file rank third in configuration precedence. Command line parameters and environment variables override configuration file.
Configuration options
-To list all available command line options, you can use the
---help
parameter:-# Standalone binary
./build/juno --help
# Docker container
docker run nethermind/juno --helpBelow is a list of all configuration options available in Juno, along with their default values and descriptions:
- -Config Option Default Value Description cn-core-contract-address
Custom network core contract address cn-feeder-url
Custom network feeder URL cn-gateway-url
Custom network gateway URL cn-l1-chain-id
Custom network L1 chain id cn-l2-chain-id
Custom network L2 chain id cn-name
Custom network name cn-unverifiable-range
[]
Custom network range of blocks to skip hash verifications (e.g. 0,100
)colour
true
Use --colour=false
command to disable colourized outputs (ANSI Escape Codes)config
The YAML configuration file db-cache-size
8
Determines the amount of memory (in megabytes) allocated for caching data in the database db-max-handles
1024
A soft limit on the number of open files that can be used by the DB db-path
juno
Location of the database files eth-node
WebSocket endpoint of the Ethereum node. To verify the correctness of the L2 chain, Juno must connect to an Ethereum node and parse events in the Starknet contract grpc
false
Enable the HTTP gRPC server on the default port grpc-host
localhost
The interface on which the gRPC server will listen for requests grpc-port
6064
The port on which the gRPC server will listen for requests gw-api-key
API key for gateway endpoints to avoid throttling gw-timeout
5
Timeout for requests made to the gateway http
false
Enables the HTTP RPC server on the default port and interface http-host
localhost
The interface on which the HTTP RPC server will listen for requests http-port
6060
The port on which the HTTP server will listen for requests log-level
info
Options: trace, debug, info, warn, error max-vm-queue
2 * max-vms
Maximum number for requests to queue after reaching max-vms before starting to reject incoming requests max-vms
3 * CPU Cores
Maximum number for VM instances to be used for RPC calls concurrently metrics
false
Enables the Prometheus metrics endpoint on the default port metrics-host
localhost
The interface on which the Prometheus endpoint will listen for requests metrics-port
9090
The port on which the Prometheus endpoint will listen for requests network
mainnet
Options: mainnet, sepolia, sepolia-integration p2p
false
EXPERIMENTAL: Enables p2p server p2p-addr
EXPERIMENTAL: Specify p2p source address as multiaddr p2p-feeder-node
false
EXPERIMENTAL: Run juno as a feeder node which will only sync from feeder gateway and gossip the new blocks to the network p2p-peers
EXPERIMENTAL: Specify list of p2p peers split by a comma. These peers can be either Feeder or regular nodes p2p-private-key
EXPERIMENTAL: Hexadecimal representation of a private key on the Ed25519 elliptic curve pending-poll-interval
5
Sets how frequently pending block will be updated (0s will disable fetching of pending block) pprof
false
Enables the pprof endpoint on the default port pprof-host
localhost
The interface on which the pprof HTTP server will listen for requests pprof-port
6062
The port on which the pprof HTTP server will listen for requests remote-db
gRPC URL of a remote Juno node rpc-call-max-steps
4000000
Maximum number of steps to be executed in starknet_call requests. The upper limit is 4 million steps, and any higher value will still be capped at 4 million rpc-cors-enable
false
Enable CORS on RPC endpoints rpc-max-block-scan
18446744073709551615
Maximum number of blocks scanned in single starknet_getEvents call ws
false
Enables the WebSocket RPC server on the default port ws-host
localhost
The interface on which the WebSocket RPC server will listen for requests ws-port
6061
The port on which the WebSocket server will listen for requests Frequently Asked Questions | Juno - - - - -- - \ No newline at end of file diff --git a/0.11.8/hardware-requirements/index.html b/0.11.8/hardware-requirements/index.html deleted file mode 100644 index 08bc75471d..0000000000 --- a/0.11.8/hardware-requirements/index.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - -Version: 0.11.8 Frequently Asked Questions ❓
--What is Juno?
Juno is a Go implementation of a Starknet full-node client created by Nethermind to allow node operators to easily and reliably support the network and advance its decentralisation goals. Juno supports various node setups, from casual to production-grade indexers.
-How can I run Juno?
Check out the Running Juno guide to learn the simplest and fastest ways to run a Juno node. You can also check the Running Juno on GCP guide to learn how to run Juno on GCP.
-What are the hardware requirements for running Juno?
We recommend running Juno with at least 4GB of RAM and 250GB of SSD storage. Check out the Hardware Requirements for more information.
-How can I configure my Juno node?
You can configure Juno using command line parameters, environment variables, and a YAML configuration file. Check out the Configuring Juno guide to learn their usage and precedence.
-How can I update my Juno node?
Check out the Updating Juno guide for instructions on updating your node to the latest version.
-How can I interact with my Juno node?
-How can I monitor my Juno node?
Juno captures metrics data using Prometheus, and you can visualise them using Grafana. Check out the Monitoring Juno guide to get started.
-Do node operators receive any rewards, or is participation solely to support the network?
Presently, running a node does not come with direct rewards; its primary purpose is contributing to the network's functionality and stability. However, operating a node provides valuable educational benefits and deepens your knowledge of the network's operation.
-How can I view Juno logs from Docker?
You can view logs from the Docker container using the following command:
docker logs -f juno
-How can I get real-time updates of new blocks?
The WebSocket interface provides a
juno_subscribeNewHeads
method that emits an event when new blocks are added to the blockchain.-Does Juno provide snapshots to sync with Starknet quickly?
Yes, Juno provides snapshots for both the Starknet Mainnet and Sepolia networks. Check out the Database Snapshots guide to get started.
-How can I contribute to Juno?
You can contribute to Juno by running a node, starring on GitHub, reporting bugs, and suggesting new features. Check out the Contributions and Partnerships page for more information.
-I noticed a warning in my logs saying: Failed storing Block {"err": "unsupported block version"}. How should I proceed?
You can fix this problem by updating to the latest version of Juno. Check for updates and install them to maintain compatibility with the latest block versions.
-After updating Juno, I receive error while migrating DB. How should I proceed?
This error suggests your database is corrupted, likely due to the node being interrupted during migration. This can occur if there are insufficient system resources, such as RAM, to finish the process. The only solution is to resynchronise the node from the beginning. To avoid this issue in the future, ensure your system has adequate resources and that the node remains uninterrupted during upgrades.
-I receive Error: unable to verify latest block hash; are the database and --network option compatible? while running Juno. How should I proceed?
To resolve this issue, ensure that the
eth-node
configuration aligns with thenetwork
option for the Starknet network.I receive process <PID> killed and ./build/juno: invalid signature (code or signature have been modified) while running the binary on macOS. How should I proceed?
You need to re-sign the binary to resolve this issue using the following command:
codesign --sign - ./build/juno
Hardware Requirements | Juno - - - - -- - \ No newline at end of file diff --git a/0.11.8/index.html b/0.11.8/index.html deleted file mode 100644 index 553f633e8f..0000000000 --- a/0.11.8/index.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - - -Version: 0.11.8 Hardware Requirements 💻
-The following specifications outline the hardware required to run a Juno node. These specifications are categorised into minimal and recommended requirements for different usage scenarios.
-Minimal requirements
--
-
- CPU: At least 2 cores -
- RAM: 4GB or more -
- Storage: 250GB or more (SSD recommended; note: storage needs will grow over time) -
Recommended requirements
--
-
- CPU: High-performance CPU with 4 or more cores -
- RAM: 8GB or more -
- Storage: High-performance SSD with at least 250GB to accommodate future growth -
tipWe intend the above specifications as a guideline. The minimal requirements support basic node operations, and the recommended settings ensure optimal performance and scalability for future needs.
Introduction | Juno - - - - -- - \ No newline at end of file diff --git a/0.11.8/json-rpc/index.html b/0.11.8/json-rpc/index.html deleted file mode 100644 index 5d9ce64aab..0000000000 --- a/0.11.8/json-rpc/index.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - -Version: 0.11.8 Welcome to Juno 👋
-Juno is a Go implementation of a Starknet full-node client created by Nethermind to allow node operators to easily and reliably support the network and advance its decentralisation goals. Juno supports various node setups, from casual to production-grade indexers.
--
-
- 💿 Small database footprint: Approximately 182GB on mainnet. -
- ⚡ Ultra-fast synchronisation: Limited only by your hardware and the sequencer. -
- 💯 Complete JSON-RPC spec compliance: Everything Starknet, accessible from a single point. -
- 🔎 Minimal RPC response latency: Ensuring your applications run smoothly. -
- 🌐 Websocket interface: For seamless real-time updates of the network. -
Getting started
-Learn how to configure and manage your Juno node with the following resources:
- --Running a Juno NodeLearn how to set up and operate your own Juno node-Juno Configuration OptionsExplore various configuration options to customise your node-Interacting with JunoDiscover how to interact with Juno using the JSON-RPC and WebSocket interfaces-Download a Juno SnapshotDownload and use a snapshot to quickly sync your node with the network-tipYou can access the Nethermind Starknet RPC service for free at https://data.voyager.online.
Community and support
-Join our community for support, engaging discussions, and updates:
--
-
- Discord: Connect in real-time with the Juno team and community. -
- X (Twitter): Follow for the latest news and insights from Nethermind. -
- Telegram: Share ideas and stay informed with fellow Juno users. -
Contributions and partnerships
-We value community contributions and are eager to support your involvement. Here’s how you can contribute:
--
-
- 🚀 Run a Juno node to strengthen the Starknet network. -
- ⭐ Give Juno a star on GitHub. -
- 📝 Share your thoughts on X (Twitter). -
- 🐞 Report bugs or suggest new features. -
- 📣 Encourage others to explore and use Juno. -
-tipIf you're ready to make PRs but unsure where to start, join our Discord, and we'll guide you through some beginner-friendly issues.
If you're interested in forming a partnership with the Juno team or have any suggestions or special requests, please don't hesitate to contact us via juno@nethermind.io
JSON-RPC Interface | Juno - - - - -- - \ No newline at end of file diff --git a/0.11.8/monitoring/index.html b/0.11.8/monitoring/index.html deleted file mode 100644 index e148fcc318..0000000000 --- a/0.11.8/monitoring/index.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - - -Version: 0.11.8 JSON-RPC Interface 🌐
-Interacting with Juno requires sending requests to specific JSON-RPC API methods. Juno supports all of Starknet's Node API Endpoints over HTTP and WebSocket.
-Enable the JSON-RPC server
-To enable the JSON-RPC interface, use the following configuration options:
--
-
http
: Enables the HTTP RPC server on the default port and interface (disabled by default).
-http-host
: The interface on which the HTTP RPC server will listen for requests. If skipped, it defaults tolocalhost
.
-http-port
: The port on which the HTTP server will listen for requests. If skipped, it defaults to6060
.
-
-# Docker container
docker run -d \
--name juno \
-p 6060:6060 \
nethermind/juno \
--http \
--http-port 6060 \
--http-host 0.0.0.0
# Standalone binary
./build/juno --http --http-port 6060 --http-host 0.0.0.0Making JSON-RPC requests
-You can use any of Starknet's Node API Endpoints with Juno. Check the availability of Juno with the
- -juno_version
method:-- Raw
- cURL
- Response
{
"jsonrpc": "2.0",
"method": "juno_version",
"params": [],
"id": 1
}curl --location 'http://localhost:6060' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "juno_version",
"params": [],
"id": 1
}'{
"jsonrpc": "2.0",
"result": "v0.11.7",
"id": 1
}Get the most recent accepted block hash and number with the
-starknet_blockHashAndNumber
method:-- Raw
- cURL
- Starknet.js
- Starknet.go
- Starknet.rs
- Response
{
"jsonrpc": "2.0",
"method": "starknet_blockHashAndNumber",
"params": [],
"id": 1
}curl --location 'http://localhost:6060' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "starknet_blockHashAndNumber",
"params": [],
"id": 1
}'const { RpcProvider } = require("starknet");
const provider = new RpcProvider({
nodeUrl: "http://localhost:6060",
});
provider.getBlockLatestAccepted().then((blockHashAndNumber) => {
console.log(blockHashAndNumber);
});package main
import (
"context"
"fmt"
"log"
"github.com/NethermindEth/juno/core/felt"
"github.com/NethermindEth/starknet.go/rpc"
"github.com/NethermindEth/starknet.go/utils"
)
func main() {
rpcUrl := "http://localhost:6060"
client, err := rpc.NewClient(rpcUrl)
if err != nil {
log.Fatal(err)
}
provider := rpc.NewProvider(client)
result, err := provider.BlockHashAndNumber(context.Background())
if err != nil {
log.Fatal(err)
}
fmt.Println("BlockHashAndNumber:", result)
}use starknet::providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Provider, Url,
};
#[tokio::main]
async fn main() {
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("http://localhost:6060").unwrap(),
));
let result = provider.block_hash_and_number().await;
match result {
Ok(block_hash_and_number) => {
println!("{block_hash_and_number:#?}");
}
Err(err) => {
eprintln!("Error: {err}");
}
}
}{
"jsonrpc": "2.0",
"result": {
"block_hash": "0x637ae4d7468bb603c2f16ba7f9118d58c7d7c98a8210260372e83e7c9df443a",
"block_number": 640827
},
"id": 1
}Supported Starknet API versions
-Juno supports the following Starknet API versions:
--
-
- v0.7.0: Accessible via endpoints
/v0_7
,/rpc/v0_7
, or the default/
- - v0.6.0: Accessible via endpoints
/v0_6
or/rpc/v0_6
-
To use a specific API version, specify the version endpoint in your RPC calls:
-- Latest
- v0.7.0
- v0.6.0
curl --location 'http://localhost:6060' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "starknet_chainId",
"params": [],
"id": 1
}'curl --location 'http://localhost:6060/v0_7' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "starknet_chainId",
"params": [],
"id": 1
}'curl --location 'http://localhost:6060/v0_6' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "starknet_chainId",
"params": [],
"id": 1
}'Monitoring Juno | Juno - - - - -- - \ No newline at end of file diff --git a/0.11.8/running-juno/index.html b/0.11.8/running-juno/index.html deleted file mode 100644 index bfb89ccd30..0000000000 --- a/0.11.8/running-juno/index.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - -Version: 0.11.8 Monitoring Juno 📊
-Juno uses Prometheus to monitor and collect metrics data, which you can visualise with Grafana. You can use these insights to understand what is happening when Juno is running.
-Enable the metrics server
-To enable the metrics server, use the following configuration options:
--
-
metrics
: Enables the Prometheus metrics endpoint on the default port (disabled by default).
-metrics-host
: The interface on which the Prometheus endpoint will listen for requests. If skipped, it defaults tolocalhost
.
-metrics-port
: The port on which the Prometheus endpoint will listen for requests. If skipped, it defaults to9090
.
-
-# Docker container
docker run -d \
--name juno \
-p 9090:9090 \
nethermind/juno \
--metrics \
--metrics-port 9090 \
--metrics-host 0.0.0.0
# Standalone binary
./build/juno --metrics --metrics-port 9090 --metrics-host=0.0.0.0Configure Grafana dashboard
-1. Set up Grafana
--
-
- Follow the Set up Grafana guide to install Grafana. -
- Download and configure the Grafana dashboard file. -
2. Set up Prometheus
--
-
- Follow the First steps with Prometheus guide to install Prometheus. -
- Add the Juno metrics endpoint in the
prometheus.yml
configuration file:
-
-prometheus.ymlscrape_configs:
- job_name: "juno"
static_configs:
- targets: ["localhost:9090"]3. Set up Grafana Loki
--
-
- Follow the Get started with Grafana Loki guide to install Loki. -
- Configure Loki to collect logs from Juno. You might need to configure log paths or use Promtail (Loki's agent) to send logs to Loki: -
-Sample Loki Configurationscrape_configs:
- job_name: "juno-logs"
labels:
job: "juno"
__path__: "/path/to/juno/logs/*"-tipTo have Juno write logs to a file, use the command:
./build/juno >> /path/juno.log 2>&1
4. Configure the data sources
--
-
- Follow the Grafana data sources guide to add data sources. -
- Choose Prometheus as a data source: -
-
-
- Enter the URL where Prometheus is running, e.g.,
http://localhost:9090
.
- - Click the "Save & Test" button. -
-
-
- Choose Loki as a data source: -
-
-
- Enter the URL where Loki is running, e.g.,
http://localhost:3100
.
- - Click the "Save & Test" button. -
Running Juno | Juno - - - - -- - \ No newline at end of file diff --git a/0.11.8/running-on-gcp/index.html b/0.11.8/running-on-gcp/index.html deleted file mode 100644 index 4c6812f928..0000000000 --- a/0.11.8/running-on-gcp/index.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - -Version: 0.11.8 Running Juno 🚀
-You can run a Juno node using several methods:
- --tipYou can use a snapshot to quickly synchronise your node with the network. Check out the Database Snapshots guide to get started.
Docker container
-1. Get the Docker image
-Juno Docker images can be found at the nethermind/juno repository on Docker Hub. Download the latest image:
--docker pull nethermind/juno
You can also build the image locally:
--# Clone the Juno repository
git clone https://github.com/NethermindEth/juno
cd juno
# Build the Docker image
docker build -t nethermind/juno:latest .2. Run the Docker container
--# Prepare the snapshots directory
mkdir -p $HOME/snapshots
# Run the container
docker run -d \
--name juno \
-p 6060:6060 \
-v $HOME/snapshots/juno_mainnet:/snapshots/juno_mainnet \
nethermind/juno \
--http \
--http-port 6060 \
--http-host 0.0.0.0 \
--db-path /snapshots/juno_mainnetYou can view logs from the Docker container using the following command:
--docker logs -f juno
Standalone binary
-Download standalone binaries from Juno's GitHub Releases as ZIP archives for Linux (amd64 and arm64) and macOS (amd64). For macOS (arm64) or Windows users, consider running Juno using Docker.
--# Prepare the snapshots directory
mkdir -p $HOME/snapshots
# Run the binary
./juno \
--http \
--http-port 6060 \
--http-host 0.0.0.0 \
--db-path $HOME/snapshots/juno_mainnetBuilding from source
-You can build the Juno binary or Docker image from the source code to access the latest updates or specific versions.
-Prerequisites
--
-
- Golang 1.22 or later -
- Rust -
- C compiler:
gcc
orclang
- - jemalloc -
-- Ubuntu
- MacOS (Homebrew)
sudo apt-get install -y libjemalloc-dev
brew install jemalloc
1. Clone the repository
-Clone Juno's source code from our GitHub repository:
--git clone https://github.com/NethermindEth/juno
cd juno-tipYou can use
git tag -l
to view specific version tags.2. Build the binary or Docker image
--# Build the binary
make juno
# Build the Docker image
docker build -t nethermind/juno:latest .3. Run the binary
-Locate the standalone binary in the
-./build/
directory:-# Prepare the snapshots directory
mkdir -p $HOME/snapshots
# Run the binary
./build/juno \
--http \
--http-port 6060 \
--http-host 0.0.0.0 \
--db-path $HOME/snapshots/juno_mainnettipTo learn how to configure Juno, check out the Configuring Juno guide.
Running Juno on GCP | Juno - - - - -- - \ No newline at end of file diff --git a/0.11.8/running-p2p/index.html b/0.11.8/running-p2p/index.html deleted file mode 100644 index 90531052da..0000000000 --- a/0.11.8/running-p2p/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - -Version: 0.11.8 Running Juno on GCP ☁️
-To run Juno on the Google Cloud Platform (GCP), you can use the Starknet RPC Virtual Machine (VM) developed by Nethermind.
-1. Install the Starknet RPC Node
-Head to the Google Marketplace and search for "Starknet RPC Node". Then, click the "GET STARTED" button to begin the deployment process.
- -2. Configure the Juno client
-Choose the configuration settings for the Juno client and click the "DEPLOY" button.
- -3. Post-configuration and testing
- -4. Enable Juno during startup
--
-
- Click on the name of the newly created VM instance to view its details. -
- Click the "Edit" button. -
- Head to the "Automation" section and enter the following startup script:
--
#! /bin/bash
sudo /usr/local/bin/run_juno.sh
- - Click the "Save" button. -
- Restart the VM. -
5. Interact with the Juno node
-You can interact with Juno using its JSON-RPC Interface. Here's an example to check the availability of Juno:
- --- Request
- Response
curl --location 'http://localhost:6060' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "juno_version",
"params": [],
"id": 1
}'{
"jsonrpc": "2.0",
"result": "v0.11.7",
"id": 1
}tipTo learn how to configure Juno, check out the Configuring Juno guide.
Running a Juno P2P Node | Juno - - - - -- - \ No newline at end of file diff --git a/0.11.8/search-index.json b/0.11.8/search-index.json deleted file mode 100644 index 5805242f71..0000000000 --- a/0.11.8/search-index.json +++ /dev/null @@ -1 +0,0 @@ -[{"documents":[{"i":247,"t":"Configuring Juno ⚙","u":"/0.11.8/configuring","b":["Installation and Setup"]},{"i":257,"t":"Welcome to Juno 👋","u":"/0.11.8/","b":[]},{"i":265,"t":"Frequently Asked Questions ❓","u":"/0.11.8/faq","b":[]},{"i":267,"t":"Hardware Requirements 💻","u":"/0.11.8/hardware-requirements","b":["Installation and Setup"]},{"i":273,"t":"JSON-RPC Interface 🌐","u":"/0.11.8/json-rpc","b":["Interacting with Juno"]},{"i":281,"t":"Running Juno 🚀","u":"/0.11.8/running-juno","b":["Installation and Setup"]},{"i":300,"t":"Monitoring Juno 📊","u":"/0.11.8/monitoring","b":[]},{"i":313,"t":"Running a Juno P2P Node","u":"/0.11.8/running-p2p","b":[]},{"i":315,"t":"Running Juno on GCP ☁️","u":"/0.11.8/running-on-gcp","b":["Installation and Setup"]},{"i":326,"t":"Database Snapshots 📸","u":"/0.11.8/snapshots","b":[]},{"i":343,"t":"WebSocket Interface 🌐","u":"/0.11.8/websocket","b":["Interacting with Juno"]},{"i":355,"t":"Updating Juno 🔄","u":"/0.11.8/updating","b":["Installation and Setup"]}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/247",[0,2.314,1,0.589,2,0.131]],["t/257",[1,0.525,2,0.117,3,2.061,4,2.061]],["t/265",[2,0.117,5,2.061,6,2.061,7,2.061]],["t/267",[2,0.131,8,2.314,9,2.314]],["t/273",[2,0.117,10,2.061,11,2.061,12,1.574]],["t/281",[1,0.589,2,0.131,13,1.406]],["t/300",[1,0.589,2,0.131,14,2.314]],["t/313",[1,0.473,13,1.13,15,1.859,16,1.859,17,1.859]],["t/315",[1,0.473,2,0.106,13,1.13,18,1.859,19,1.859]],["t/326",[2,0.131,20,2.314,21,2.314]],["t/343",[2,0.131,12,1.766,22,2.314]],["t/355",[1,0.589,2,0.131,23,2.314]]],"invertedIndex":[["",{"_index":2,"t":{"247":{"position":[[17,1]]},"257":{"position":[[16,2]]},"265":{"position":[[27,1]]},"267":{"position":[[22,2]]},"273":{"position":[[19,2]]},"281":{"position":[[13,2]]},"300":{"position":[[16,2]]},"315":{"position":[[20,2]]},"326":{"position":[[19,2]]},"343":{"position":[[20,2]]},"355":{"position":[[14,2]]}}}],["a",{"_index":15,"t":{"313":{"position":[[8,1]]}}}],["ask",{"_index":6,"t":{"265":{"position":[[11,5]]}}}],["configur",{"_index":0,"t":{"247":{"position":[[0,11]]}}}],["databas",{"_index":20,"t":{"326":{"position":[[0,8]]}}}],["frequent",{"_index":5,"t":{"265":{"position":[[0,10]]}}}],["gcp",{"_index":19,"t":{"315":{"position":[[16,3]]}}}],["hardwar",{"_index":8,"t":{"267":{"position":[[0,8]]}}}],["interfac",{"_index":12,"t":{"273":{"position":[[9,9]]},"343":{"position":[[10,9]]}}}],["json",{"_index":10,"t":{"273":{"position":[[0,4]]}}}],["juno",{"_index":1,"t":{"247":{"position":[[12,4]]},"257":{"position":[[11,4]]},"281":{"position":[[8,4]]},"300":{"position":[[11,4]]},"313":{"position":[[10,4]]},"315":{"position":[[8,4]]},"355":{"position":[[9,4]]}}}],["monitor",{"_index":14,"t":{"300":{"position":[[0,10]]}}}],["node",{"_index":17,"t":{"313":{"position":[[19,4]]}}}],["on",{"_index":18,"t":{"315":{"position":[[13,2]]}}}],["p2p",{"_index":16,"t":{"313":{"position":[[15,3]]}}}],["question",{"_index":7,"t":{"265":{"position":[[17,9]]}}}],["requir",{"_index":9,"t":{"267":{"position":[[9,12]]}}}],["rpc",{"_index":11,"t":{"273":{"position":[[5,3]]}}}],["run",{"_index":13,"t":{"281":{"position":[[0,7]]},"313":{"position":[[0,7]]},"315":{"position":[[0,7]]}}}],["snapshot",{"_index":21,"t":{"326":{"position":[[9,9]]}}}],["to",{"_index":4,"t":{"257":{"position":[[8,2]]}}}],["updat",{"_index":23,"t":{"355":{"position":[[0,8]]}}}],["websocket",{"_index":22,"t":{"343":{"position":[[0,9]]}}}],["welcom",{"_index":3,"t":{"257":{"position":[[0,7]]}}}]],"pipeline":["stemmer"]}},{"documents":[{"i":249,"t":"Command line params","u":"/0.11.8/configuring","h":"#command-line-params","p":247},{"i":251,"t":"Environment variables","u":"/0.11.8/configuring","h":"#environment-variables","p":247},{"i":253,"t":"Configuration file","u":"/0.11.8/configuring","h":"#configuration-file","p":247},{"i":255,"t":"Configuration options","u":"/0.11.8/configuring","h":"#configuration-options","p":247},{"i":259,"t":"Getting started","u":"/0.11.8/","h":"#getting-started","p":257},{"i":261,"t":"Community and support","u":"/0.11.8/","h":"#community-and-support","p":257},{"i":263,"t":"Contributions and partnerships","u":"/0.11.8/","h":"#contributions-and-partnerships","p":257},{"i":269,"t":"Minimal requirements","u":"/0.11.8/hardware-requirements","h":"#minimal-requirements","p":267},{"i":271,"t":"Recommended requirements","u":"/0.11.8/hardware-requirements","h":"#recommended-requirements","p":267},{"i":275,"t":"Enable the JSON-RPC server","u":"/0.11.8/json-rpc","h":"#enable-the-json-rpc-server","p":273},{"i":277,"t":"Making JSON-RPC requests","u":"/0.11.8/json-rpc","h":"#making-json-rpc-requests","p":273},{"i":279,"t":"Supported Starknet API versions","u":"/0.11.8/json-rpc","h":"#supported-starknet-api-versions","p":273},{"i":283,"t":"Docker container","u":"/0.11.8/running-juno","h":"#docker-container","p":281},{"i":284,"t":"1. Get the Docker image","u":"/0.11.8/running-juno","h":"#1-get-the-docker-image","p":281},{"i":286,"t":"2. Run the Docker container","u":"/0.11.8/running-juno","h":"#2-run-the-docker-container","p":281},{"i":288,"t":"Standalone binary","u":"/0.11.8/running-juno","h":"#standalone-binary","p":281},{"i":290,"t":"Building from source","u":"/0.11.8/running-juno","h":"#building-from-source","p":281},{"i":292,"t":"Prerequisites","u":"/0.11.8/running-juno","h":"#prerequisites","p":281},{"i":294,"t":"1. Clone the repository","u":"/0.11.8/running-juno","h":"#1-clone-the-repository","p":281},{"i":296,"t":"2. Build the binary or Docker image","u":"/0.11.8/running-juno","h":"#2-build-the-binary-or-docker-image","p":281},{"i":298,"t":"3. Run the binary","u":"/0.11.8/running-juno","h":"#3-run-the-binary","p":281},{"i":302,"t":"Enable the metrics server","u":"/0.11.8/monitoring","h":"#enable-the-metrics-server","p":300},{"i":304,"t":"Configure Grafana dashboard","u":"/0.11.8/monitoring","h":"#configure-grafana-dashboard","p":300},{"i":305,"t":"1. Set up Grafana","u":"/0.11.8/monitoring","h":"#1-set-up-grafana","p":300},{"i":307,"t":"2. Set up Prometheus","u":"/0.11.8/monitoring","h":"#2-set-up-prometheus","p":300},{"i":309,"t":"3. Set up Grafana Loki","u":"/0.11.8/monitoring","h":"#3-set-up-grafana-loki","p":300},{"i":311,"t":"4. Configure the data sources","u":"/0.11.8/monitoring","h":"#4-configure-the-data-sources","p":300},{"i":317,"t":"1. Install the Starknet RPC Node","u":"/0.11.8/running-on-gcp","h":"#1-install-the-starknet-rpc-node","p":315},{"i":319,"t":"2. Configure the Juno client","u":"/0.11.8/running-on-gcp","h":"#2-configure-the-juno-client","p":315},{"i":321,"t":"3. Post-configuration and testing","u":"/0.11.8/running-on-gcp","h":"#3-post-configuration-and-testing","p":315},{"i":322,"t":"4. Enable Juno during startup","u":"/0.11.8/running-on-gcp","h":"#4-enable-juno-during-startup","p":315},{"i":324,"t":"5. Interact with the Juno node","u":"/0.11.8/running-on-gcp","h":"#5-interact-with-the-juno-node","p":315},{"i":328,"t":"Mainnet","u":"/0.11.8/snapshots","h":"#mainnet","p":326},{"i":330,"t":"Sepolia","u":"/0.11.8/snapshots","h":"#sepolia","p":326},{"i":332,"t":"Getting the size for each snapshot","u":"/0.11.8/snapshots","h":"#getting-the-size-for-each-snapshot","p":326},{"i":334,"t":"Run Juno with a snapshot","u":"/0.11.8/snapshots","h":"#run-juno-with-a-snapshot","p":326},{"i":335,"t":"1. Download the snapshot","u":"/0.11.8/snapshots","h":"#1-download-the-snapshot","p":326},{"i":337,"t":"2. Prepare a directory","u":"/0.11.8/snapshots","h":"#2-prepare-a-directory","p":326},{"i":339,"t":"3. Extract the snapshot","u":"/0.11.8/snapshots","h":"#3-extract-the-snapshot","p":326},{"i":341,"t":"4. Run Juno","u":"/0.11.8/snapshots","h":"#4-run-juno","p":326},{"i":345,"t":"Enable the WebSocket server","u":"/0.11.8/websocket","h":"#enable-the-websocket-server","p":343},{"i":347,"t":"Making WebSocket requests","u":"/0.11.8/websocket","h":"#making-websocket-requests","p":343},{"i":349,"t":"Subscribe to newly created blocks","u":"/0.11.8/websocket","h":"#subscribe-to-newly-created-blocks","p":343},{"i":351,"t":"Unsubscribe from newly created blocks","u":"/0.11.8/websocket","h":"#unsubscribe-from-newly-created-blocks","p":343},{"i":353,"t":"Testing the WebSocket connection","u":"/0.11.8/websocket","h":"#testing-the-websocket-connection","p":343},{"i":357,"t":"Docker container","u":"/0.11.8/updating","h":"#docker-container","p":355},{"i":358,"t":"1. Get the latest Docker image","u":"/0.11.8/updating","h":"#1-get-the-latest-docker-image","p":355},{"i":360,"t":"2. Stop and remove the current Juno container","u":"/0.11.8/updating","h":"#2-stop-and-remove-the-current-juno-container","p":355},{"i":362,"t":"3. Start a new container with the updated image","u":"/0.11.8/updating","h":"#3-start-a-new-container-with-the-updated-image","p":355},{"i":364,"t":"Standalone binary","u":"/0.11.8/updating","h":"#standalone-binary","p":355},{"i":366,"t":"Updating from source","u":"/0.11.8/updating","h":"#updating-from-source","p":355}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/249",[0,3.909,1,3.909,2,3.909]],["t/251",[3,4.423,4,4.423]],["t/253",[5,2.594,6,4.423]],["t/255",[5,2.594,7,4.423]],["t/259",[8,3.053,9,3.786]],["t/261",[10,3.909,11,2.698,12,3.346]],["t/263",[11,2.698,13,3.909,14,3.909]],["t/269",[15,4.423,16,3.786]],["t/271",[16,3.786,17,4.423]],["t/275",[18,2.189,19,0.877,20,2.715,21,2.414,22,2.414]],["t/277",[20,2.998,21,2.665,23,2.998,24,2.998]],["t/279",[12,2.998,25,2.998,26,3.502,27,3.502]],["t/283",[28,2.594,29,2.802]],["t/284",[8,2.189,19,0.877,28,1.86,30,1.86,31,2.189]],["t/286",[19,0.877,28,1.86,29,2.01,32,1.86,33,2.189]],["t/288",[34,3.786,35,3.053]],["t/290",[36,3.346,37,2.975,38,2.975]],["t/292",[39,5.092]],["t/294",[19,0.969,30,2.054,40,3.502,41,3.502]],["t/296",[19,0.738,28,1.565,31,1.842,32,1.565,35,1.842,36,2.284,42,2.669]],["t/298",[19,0.969,33,2.417,35,2.417,43,2.219]],["t/302",[18,2.417,19,0.969,22,2.665,44,3.502]],["t/304",[5,2.293,45,2.975,46,3.909]],["t/305",[30,2.054,45,2.665,47,2.665,48,2.665]],["t/307",[32,2.054,47,2.665,48,2.665,49,3.502]],["t/309",[43,2.01,45,2.414,47,2.414,48,2.414,50,3.172]],["t/311",[5,1.86,19,0.877,38,2.414,51,2.414,52,3.172]],["t/317",[19,0.802,21,2.206,25,2.481,30,1.7,53,2.899,54,2.481]],["t/319",[5,1.86,19,0.877,32,1.86,55,1.86,56,3.172]],["t/321",[5,1.86,11,2.189,43,2.01,57,3.172,58,2.715]],["t/322",[18,2.189,51,2.414,55,1.86,59,3.172,60,3.172]],["t/324",[19,0.802,54,2.481,55,1.7,61,2.899,62,2.899,63,2.206]],["t/328",[64,5.092]],["t/330",[65,5.092]],["t/332",[8,2.001,19,0.802,66,2.899,67,2.899,68,2.899,69,2.001]],["t/334",[33,2.189,55,1.86,63,2.414,69,2.189,70,2.414]],["t/335",[19,0.969,30,2.054,69,2.417,71,3.502]],["t/337",[32,2.054,70,2.665,72,3.502,73,3.502]],["t/339",[19,0.969,43,2.219,69,2.417,74,3.502]],["t/341",[33,2.698,51,2.975,55,2.293]],["t/345",[18,2.417,19,0.969,22,2.665,75,2.665]],["t/347",[23,3.346,24,3.346,75,2.975]],["t/349",[76,3.172,77,3.172,78,2.715,79,2.715,80,2.715]],["t/351",[37,2.414,78,2.715,79,2.715,80,2.715,81,3.172]],["t/353",[19,0.969,58,2.998,75,2.665,82,3.502]],["t/357",[28,2.594,29,2.802]],["t/358",[8,2.001,19,0.802,28,1.7,30,1.7,31,2.001,83,2.899]],["t/360",[11,1.707,19,0.684,29,1.567,32,1.45,55,1.45,84,2.473,85,2.473,86,2.473]],["t/362",[9,1.972,19,0.637,29,1.459,31,1.59,43,1.459,63,1.753,70,1.753,87,2.304,88,1.972]],["t/364",[34,3.786,35,3.053]],["t/366",[37,2.975,38,2.975,88,3.346]]],"invertedIndex":[["1",{"_index":30,"t":{"284":{"position":[[0,2]]},"294":{"position":[[0,2]]},"305":{"position":[[0,2]]},"317":{"position":[[0,2]]},"335":{"position":[[0,2]]},"358":{"position":[[0,2]]}}}],["2",{"_index":32,"t":{"286":{"position":[[0,2]]},"296":{"position":[[0,2]]},"307":{"position":[[0,2]]},"319":{"position":[[0,2]]},"337":{"position":[[0,2]]},"360":{"position":[[0,2]]}}}],["3",{"_index":43,"t":{"298":{"position":[[0,2]]},"309":{"position":[[0,2]]},"321":{"position":[[0,2]]},"339":{"position":[[0,2]]},"362":{"position":[[0,2]]}}}],["4",{"_index":51,"t":{"311":{"position":[[0,2]]},"322":{"position":[[0,2]]},"341":{"position":[[0,2]]}}}],["5",{"_index":61,"t":{"324":{"position":[[0,2]]}}}],["a",{"_index":70,"t":{"334":{"position":[[14,1]]},"337":{"position":[[11,1]]},"362":{"position":[[9,1]]}}}],["and",{"_index":11,"t":{"261":{"position":[[10,3]]},"263":{"position":[[14,3]]},"321":{"position":[[22,3]]},"360":{"position":[[8,3]]}}}],["api",{"_index":26,"t":{"279":{"position":[[19,3]]}}}],["binari",{"_index":35,"t":{"288":{"position":[[11,6]]},"296":{"position":[[13,6]]},"298":{"position":[[11,6]]},"364":{"position":[[11,6]]}}}],["block",{"_index":80,"t":{"349":{"position":[[27,6]]},"351":{"position":[[31,6]]}}}],["build",{"_index":36,"t":{"290":{"position":[[0,8]]},"296":{"position":[[3,5]]}}}],["client",{"_index":56,"t":{"319":{"position":[[22,6]]}}}],["clone",{"_index":40,"t":{"294":{"position":[[3,5]]}}}],["command",{"_index":0,"t":{"249":{"position":[[0,7]]}}}],["commun",{"_index":10,"t":{"261":{"position":[[0,9]]}}}],["configur",{"_index":5,"t":{"253":{"position":[[0,13]]},"255":{"position":[[0,13]]},"304":{"position":[[0,9]]},"311":{"position":[[3,9]]},"319":{"position":[[3,9]]},"321":{"position":[[8,13]]}}}],["connect",{"_index":82,"t":{"353":{"position":[[22,10]]}}}],["contain",{"_index":29,"t":{"283":{"position":[[7,9]]},"286":{"position":[[18,9]]},"357":{"position":[[7,9]]},"360":{"position":[[36,9]]},"362":{"position":[[15,9]]}}}],["contribut",{"_index":13,"t":{"263":{"position":[[0,13]]}}}],["creat",{"_index":79,"t":{"349":{"position":[[19,7]]},"351":{"position":[[23,7]]}}}],["current",{"_index":86,"t":{"360":{"position":[[23,7]]}}}],["dashboard",{"_index":46,"t":{"304":{"position":[[18,9]]}}}],["data",{"_index":52,"t":{"311":{"position":[[17,4]]}}}],["directori",{"_index":73,"t":{"337":{"position":[[13,9]]}}}],["docker",{"_index":28,"t":{"283":{"position":[[0,6]]},"284":{"position":[[11,6]]},"286":{"position":[[11,6]]},"296":{"position":[[23,6]]},"357":{"position":[[0,6]]},"358":{"position":[[18,6]]}}}],["download",{"_index":71,"t":{"335":{"position":[[3,8]]}}}],["dure",{"_index":59,"t":{"322":{"position":[[15,6]]}}}],["each",{"_index":68,"t":{"332":{"position":[[21,4]]}}}],["enabl",{"_index":18,"t":{"275":{"position":[[0,6]]},"302":{"position":[[0,6]]},"322":{"position":[[3,6]]},"345":{"position":[[0,6]]}}}],["environ",{"_index":3,"t":{"251":{"position":[[0,11]]}}}],["extract",{"_index":74,"t":{"339":{"position":[[3,7]]}}}],["file",{"_index":6,"t":{"253":{"position":[[14,4]]}}}],["for",{"_index":67,"t":{"332":{"position":[[17,3]]}}}],["from",{"_index":37,"t":{"290":{"position":[[9,4]]},"351":{"position":[[12,4]]},"366":{"position":[[9,4]]}}}],["get",{"_index":8,"t":{"259":{"position":[[0,7]]},"284":{"position":[[3,3]]},"332":{"position":[[0,7]]},"358":{"position":[[3,3]]}}}],["grafana",{"_index":45,"t":{"304":{"position":[[10,7]]},"305":{"position":[[10,7]]},"309":{"position":[[10,7]]}}}],["imag",{"_index":31,"t":{"284":{"position":[[18,5]]},"296":{"position":[[30,5]]},"358":{"position":[[25,5]]},"362":{"position":[[42,5]]}}}],["instal",{"_index":53,"t":{"317":{"position":[[3,7]]}}}],["interact",{"_index":62,"t":{"324":{"position":[[3,8]]}}}],["json",{"_index":20,"t":{"275":{"position":[[11,4]]},"277":{"position":[[7,4]]}}}],["juno",{"_index":55,"t":{"319":{"position":[[17,4]]},"322":{"position":[[10,4]]},"324":{"position":[[21,4]]},"334":{"position":[[4,4]]},"341":{"position":[[7,4]]},"360":{"position":[[31,4]]}}}],["latest",{"_index":83,"t":{"358":{"position":[[11,6]]}}}],["line",{"_index":1,"t":{"249":{"position":[[8,4]]}}}],["loki",{"_index":50,"t":{"309":{"position":[[18,4]]}}}],["mainnet",{"_index":64,"t":{"328":{"position":[[0,7]]}}}],["make",{"_index":23,"t":{"277":{"position":[[0,6]]},"347":{"position":[[0,6]]}}}],["metric",{"_index":44,"t":{"302":{"position":[[11,7]]}}}],["minim",{"_index":15,"t":{"269":{"position":[[0,7]]}}}],["new",{"_index":87,"t":{"362":{"position":[[11,3]]}}}],["newli",{"_index":78,"t":{"349":{"position":[[13,5]]},"351":{"position":[[17,5]]}}}],["node",{"_index":54,"t":{"317":{"position":[[28,4]]},"324":{"position":[[26,4]]}}}],["option",{"_index":7,"t":{"255":{"position":[[14,7]]}}}],["or",{"_index":42,"t":{"296":{"position":[[20,2]]}}}],["param",{"_index":2,"t":{"249":{"position":[[13,6]]}}}],["partnership",{"_index":14,"t":{"263":{"position":[[18,12]]}}}],["post",{"_index":57,"t":{"321":{"position":[[3,4]]}}}],["prepar",{"_index":72,"t":{"337":{"position":[[3,7]]}}}],["prerequisit",{"_index":39,"t":{"292":{"position":[[0,13]]}}}],["prometheu",{"_index":49,"t":{"307":{"position":[[10,10]]}}}],["recommend",{"_index":17,"t":{"271":{"position":[[0,11]]}}}],["remov",{"_index":85,"t":{"360":{"position":[[12,6]]}}}],["repositori",{"_index":41,"t":{"294":{"position":[[13,10]]}}}],["request",{"_index":24,"t":{"277":{"position":[[16,8]]},"347":{"position":[[17,8]]}}}],["requir",{"_index":16,"t":{"269":{"position":[[8,12]]},"271":{"position":[[12,12]]}}}],["rpc",{"_index":21,"t":{"275":{"position":[[16,3]]},"277":{"position":[[12,3]]},"317":{"position":[[24,3]]}}}],["run",{"_index":33,"t":{"286":{"position":[[3,3]]},"298":{"position":[[3,3]]},"334":{"position":[[0,3]]},"341":{"position":[[3,3]]}}}],["sepolia",{"_index":65,"t":{"330":{"position":[[0,7]]}}}],["server",{"_index":22,"t":{"275":{"position":[[20,6]]},"302":{"position":[[19,6]]},"345":{"position":[[21,6]]}}}],["set",{"_index":47,"t":{"305":{"position":[[3,3]]},"307":{"position":[[3,3]]},"309":{"position":[[3,3]]}}}],["size",{"_index":66,"t":{"332":{"position":[[12,4]]}}}],["snapshot",{"_index":69,"t":{"332":{"position":[[26,8]]},"334":{"position":[[16,8]]},"335":{"position":[[16,8]]},"339":{"position":[[15,8]]}}}],["sourc",{"_index":38,"t":{"290":{"position":[[14,6]]},"311":{"position":[[22,7]]},"366":{"position":[[14,6]]}}}],["standalon",{"_index":34,"t":{"288":{"position":[[0,10]]},"364":{"position":[[0,10]]}}}],["starknet",{"_index":25,"t":{"279":{"position":[[10,8]]},"317":{"position":[[15,8]]}}}],["start",{"_index":9,"t":{"259":{"position":[[8,7]]},"362":{"position":[[3,5]]}}}],["startup",{"_index":60,"t":{"322":{"position":[[22,7]]}}}],["stop",{"_index":84,"t":{"360":{"position":[[3,4]]}}}],["subscrib",{"_index":76,"t":{"349":{"position":[[0,9]]}}}],["support",{"_index":12,"t":{"261":{"position":[[14,7]]},"279":{"position":[[0,9]]}}}],["test",{"_index":58,"t":{"321":{"position":[[26,7]]},"353":{"position":[[0,7]]}}}],["the",{"_index":19,"t":{"275":{"position":[[7,3]]},"284":{"position":[[7,3]]},"286":{"position":[[7,3]]},"294":{"position":[[9,3]]},"296":{"position":[[9,3]]},"298":{"position":[[7,3]]},"302":{"position":[[7,3]]},"311":{"position":[[13,3]]},"317":{"position":[[11,3]]},"319":{"position":[[13,3]]},"324":{"position":[[17,3]]},"332":{"position":[[8,3]]},"335":{"position":[[12,3]]},"339":{"position":[[11,3]]},"345":{"position":[[7,3]]},"353":{"position":[[8,3]]},"358":{"position":[[7,3]]},"360":{"position":[[19,3]]},"362":{"position":[[30,3]]}}}],["to",{"_index":77,"t":{"349":{"position":[[10,2]]}}}],["unsubscrib",{"_index":81,"t":{"351":{"position":[[0,11]]}}}],["up",{"_index":48,"t":{"305":{"position":[[7,2]]},"307":{"position":[[7,2]]},"309":{"position":[[7,2]]}}}],["updat",{"_index":88,"t":{"362":{"position":[[34,7]]},"366":{"position":[[0,8]]}}}],["variabl",{"_index":4,"t":{"251":{"position":[[12,9]]}}}],["version",{"_index":27,"t":{"279":{"position":[[23,8]]}}}],["websocket",{"_index":75,"t":{"345":{"position":[[11,9]]},"347":{"position":[[7,9]]},"353":{"position":[[12,9]]}}}],["with",{"_index":63,"t":{"324":{"position":[[12,4]]},"334":{"position":[[9,4]]},"362":{"position":[[25,4]]}}}]],"pipeline":["stemmer"]}},{"documents":[{"i":248,"t":"Juno can be configured using several methods, with the following order of precedence: Command line parameters (flags) Environment variables Configuration file","s":"Configuring Juno ⚙","u":"/0.11.8/configuring","h":"","p":247},{"i":250,"t":"Juno can be configured directly on the command line by prefixing -- to each option name: ./build/juno --http --http-port 6060 --http-host 0.0.0.0 When using Docker, append the command line parameters after the image name to configure Juno: docker run nethermind/juno --http --http-port 6060 --http-host 0.0.0.0 tip Command line parameters override environment variables and configuration file.","s":"Command line params","u":"/0.11.8/configuring","h":"#command-line-params","p":247},{"i":252,"t":"Juno can be configured through environment variables by prefixing the variable names with JUNO_ and using the configuration options in SCREAMING_SNAKE_CASE format. To set the http, http-port, and http-host configurations, Juno should be run in this format: JUNO_HTTP=true JUNO_HTTP_PORT=6060 JUNO_HTTP_HOST=0.0.0.0 ./build/juno When using Docker, start Juno using the -e command option: docker run \\ -e \"JUNO_HTTP=true JUNO_HTTP_PORT=6060 JUNO_HTTP_HOST=0.0.0.0\" \\ nethermind/juno tip Environment variables rank second in configuration precedence. Command line parameters override environment variables.","s":"Environment variables","u":"/0.11.8/configuring","h":"#environment-variables","p":247},{"i":254,"t":"Juno can be configured using a YAML file: Sample YAML File log-level: info network: mainnet http: true http-port: 6060 metrics: true metrics-port: 9090 To run Juno with a configuration file, use the config option to specify the path of the configuration file: # Standalone binary ./build/juno --configVersion: 0.11.8 Running a Juno P2P Node
-Juno can be run as a peer-to-peer node for decentralised data synchronisation and to enhance the resilience and reliability of the Starknet network. Check out the Juno peer-to-peer launch guide to learn how it works.
-cautionThe P2P feature is currently under active development and is being tested on smaller Juno networks. As a result, syncing with non-Juno nodes may be unstable.
# Docker container docker run nethermind/juno --config info By default, Juno looks for the configuration file in the $XDG_CONFIG_HOME directory. tip Configuration file rank third in configuration precedence. Command line parameters and environment variables override configuration file.","s":"Configuration file","u":"/0.11.8/configuring","h":"#configuration-file","p":247},{"i":256,"t":"To list all available command line options, you can use the --help parameter: # Standalone binary ./build/juno --help # Docker container docker run nethermind/juno --help Below is a list of all configuration options available in Juno, along with their default values and descriptions: Config Option Default Value Description cn-core-contract-address Custom network core contract address cn-feeder-url Custom network feeder URL cn-gateway-url Custom network gateway URL cn-l1-chain-id Custom network L1 chain id cn-l2-chain-id Custom network L2 chain id cn-name Custom network name cn-unverifiable-range [] Custom network range of blocks to skip hash verifications (e.g. 0,100) colour true Use --colour=false command to disable colourized outputs (ANSI Escape Codes) config The YAML configuration file db-cache-size 8 Determines the amount of memory (in megabytes) allocated for caching data in the database db-max-handles 1024 A soft limit on the number of open files that can be used by the DB db-path juno Location of the database files eth-node WebSocket endpoint of the Ethereum node. To verify the correctness of the L2 chain, Juno must connect to an Ethereum node and parse events in the Starknet contract grpc false Enable the HTTP gRPC server on the default port grpc-host localhost The interface on which the gRPC server will listen for requests grpc-port 6064 The port on which the gRPC server will listen for requests gw-api-key API key for gateway endpoints to avoid throttling gw-timeout 5 Timeout for requests made to the gateway http false Enables the HTTP RPC server on the default port and interface http-host localhost The interface on which the HTTP RPC server will listen for requests http-port 6060 The port on which the HTTP server will listen for requests log-level info Options: trace, debug, info, warn, error max-vm-queue 2 * max-vms Maximum number for requests to queue after reaching max-vms before starting to reject incoming requests max-vms 3 * CPU Cores Maximum number for VM instances to be used for RPC calls concurrently metrics false Enables the Prometheus metrics endpoint on the default port metrics-host localhost The interface on which the Prometheus endpoint will listen for requests metrics-port 9090 The port on which the Prometheus endpoint will listen for requests network mainnet Options: mainnet, sepolia, sepolia-integration p2p false EXPERIMENTAL: Enables p2p server p2p-addr EXPERIMENTAL: Specify p2p source address as multiaddr p2p-feeder-node false EXPERIMENTAL: Run juno as a feeder node which will only sync from feeder gateway and gossip the new blocks to the network p2p-peers EXPERIMENTAL: Specify list of p2p peers split by a comma. These peers can be either Feeder or regular nodes p2p-private-key EXPERIMENTAL: Hexadecimal representation of a private key on the Ed25519 elliptic curve pending-poll-interval 5 Sets how frequently pending block will be updated (0s will disable fetching of pending block) pprof false Enables the pprof endpoint on the default port pprof-host localhost The interface on which the pprof HTTP server will listen for requests pprof-port 6062 The port on which the pprof HTTP server will listen for requests remote-db gRPC URL of a remote Juno node rpc-call-max-steps 4000000 Maximum number of steps to be executed in starknet_call requests. The upper limit is 4 million steps, and any higher value will still be capped at 4 million rpc-cors-enable false Enable CORS on RPC endpoints rpc-max-block-scan 18446744073709551615 Maximum number of blocks scanned in single starknet_getEvents call ws false Enables the WebSocket RPC server on the default port ws-host localhost The interface on which the WebSocket RPC server will listen for requests ws-port 6061 The port on which the WebSocket server will listen for requests","s":"Configuration options","u":"/0.11.8/configuring","h":"#configuration-options","p":247},{"i":258,"t":"Juno is a Go implementation of a Starknet full-node client created by Nethermind to allow node operators to easily and reliably support the network and advance its decentralisation goals. Juno supports various node setups, from casual to production-grade indexers. 💿 Small database footprint: Approximately 182GB on mainnet. ⚡ Ultra-fast synchronisation: Limited only by your hardware and the sequencer. 💯 Complete JSON-RPC spec compliance: Everything Starknet, accessible from a single point. 🔎 Minimal RPC response latency: Ensuring your applications run smoothly. 🌐 Websocket interface: For seamless real-time updates of the network.","s":"Welcome to Juno 👋","u":"/0.11.8/","h":"","p":257},{"i":260,"t":"Learn how to configure and manage your Juno node with the following resources: 🚀 Running a Juno Node Learn how to set up and operate your own Juno node ⚙️ Juno Configuration Options Explore various configuration options to customise your node 🌐 Interacting with Juno Discover how to interact with Juno using the JSON-RPC and WebSocket interfaces 📸 Download a Juno Snapshot Download and use a snapshot to quickly sync your node with the network tip You can access the Nethermind Starknet RPC service for free at https://data.voyager.online.","s":"Getting started","u":"/0.11.8/","h":"#getting-started","p":257},{"i":262,"t":"Join our community for support, engaging discussions, and updates: Discord: Connect in real-time with the Juno team and community. X (Twitter): Follow for the latest news and insights from Nethermind. Telegram: Share ideas and stay informed with fellow Juno users.","s":"Community and support","u":"/0.11.8/","h":"#community-and-support","p":257},{"i":264,"t":"We value community contributions and are eager to support your involvement. Here’s how you can contribute: 🚀 Run a Juno node to strengthen the Starknet network. ⭐ Give Juno a star on GitHub. 📝 Share your thoughts on X (Twitter). 🐞 Report bugs or suggest new features. 📣 Encourage others to explore and use Juno. tip If you're ready to make PRs but unsure where to start, join our Discord, and we'll guide you through some beginner-friendly issues. If you're interested in forming a partnership with the Juno team or have any suggestions or special requests, please don't hesitate to contact us via juno@nethermind.io","s":"Contributions and partnerships","u":"/0.11.8/","h":"#contributions-and-partnerships","p":257},{"i":266,"t":"What is Juno? Juno is a Go implementation of a Starknet full-node client created by Nethermind to allow node operators to easily and reliably support the network and advance its decentralisation goals. Juno supports various node setups, from casual to production-grade indexers. How can I run Juno? Check out the Running Juno guide to learn the simplest and fastest ways to run a Juno node. You can also check the Running Juno on GCP guide to learn how to run Juno on GCP. What are the hardware requirements for running Juno? We recommend running Juno with at least 4GB of RAM and 250GB of SSD storage. Check out the Hardware Requirements for more information. How can I configure my Juno node? You can configure Juno using command line parameters, environment variables, and a YAML configuration file. Check out the Configuring Juno guide to learn their usage and precedence. How can I update my Juno node? Check out the Updating Juno guide for instructions on updating your node to the latest version. How can I interact with my Juno node? You can interact with a running Juno node using the JSON-RPC and WebSocket interfaces. How can I monitor my Juno node? Juno captures metrics data using Prometheus, and you can visualise them using Grafana. Check out the Monitoring Juno guide to get started. Do node operators receive any rewards, or is participation solely to support the network? Presently, running a node does not come with direct rewards; its primary purpose is contributing to the network's functionality and stability. However, operating a node provides valuable educational benefits and deepens your knowledge of the network's operation. How can I view Juno logs from Docker? You can view logs from the Docker container using the following command: docker logs -f juno How can I get real-time updates of new blocks? The WebSocket interface provides a juno_subscribeNewHeads method that emits an event when new blocks are added to the blockchain. Does Juno provide snapshots to sync with Starknet quickly? Yes, Juno provides snapshots for both the Starknet Mainnet and Sepolia networks. Check out the Database Snapshots guide to get started. How can I contribute to Juno? You can contribute to Juno by running a node, starring on GitHub, reporting bugs, and suggesting new features. Check out the Contributions and Partnerships page for more information. I noticed a warning in my logs saying: Failed storing Block {\"err\": \"unsupported block version\"}. How should I proceed? You can fix this problem by updating to the latest version of Juno. Check for updates and install them to maintain compatibility with the latest block versions. After updating Juno, I receive error while migrating DB. How should I proceed? This error suggests your database is corrupted, likely due to the node being interrupted during migration. This can occur if there are insufficient system resources, such as RAM, to finish the process. The only solution is to resynchronise the node from the beginning. To avoid this issue in the future, ensure your system has adequate resources and that the node remains uninterrupted during upgrades. I receive Error: unable to verify latest block hash; are the database and --network option compatible? while running Juno. How should I proceed? To resolve this issue, ensure that the eth-node configuration aligns with the network option for the Starknet network. I receive process killed and ./build/juno: invalid signature (code or signature have been modified) while running the binary on macOS. How should I proceed? You need to re-sign the binary to resolve this issue using the following command: codesign --sign - ./build/juno","s":"Frequently Asked Questions ❓","u":"/0.11.8/faq","h":"","p":265},{"i":268,"t":"The following specifications outline the hardware required to run a Juno node. These specifications are categorised into minimal and recommended requirements for different usage scenarios.","s":"Hardware Requirements 💻","u":"/0.11.8/hardware-requirements","h":"","p":267},{"i":270,"t":"CPU: At least 2 cores RAM: 4GB or more Storage: 250GB or more (SSD recommended; note: storage needs will grow over time)","s":"Minimal requirements","u":"/0.11.8/hardware-requirements","h":"#minimal-requirements","p":267},{"i":272,"t":"CPU: High-performance CPU with 4 or more cores RAM: 8GB or more Storage: High-performance SSD with at least 250GB to accommodate future growth tip We intend the above specifications as a guideline. The minimal requirements support basic node operations, and the recommended settings ensure optimal performance and scalability for future needs.","s":"Recommended requirements","u":"/0.11.8/hardware-requirements","h":"#recommended-requirements","p":267},{"i":274,"t":"Interacting with Juno requires sending requests to specific JSON-RPC API methods. Juno supports all of Starknet's Node API Endpoints over HTTP and WebSocket.","s":"JSON-RPC Interface 🌐","u":"/0.11.8/json-rpc","h":"","p":273},{"i":276,"t":"To enable the JSON-RPC interface, use the following configuration options: http: Enables the HTTP RPC server on the default port and interface (disabled by default). http-host: The interface on which the HTTP RPC server will listen for requests. If skipped, it defaults to localhost. http-port: The port on which the HTTP server will listen for requests. If skipped, it defaults to 6060. # Docker container docker run -d \\ --name juno \\ -p 6060:6060 \\ nethermind/juno \\ --http \\ --http-port 6060 \\ --http-host 0.0.0.0 # Standalone binary ./build/juno --http --http-port 6060 --http-host 0.0.0.0","s":"Enable the JSON-RPC server","u":"/0.11.8/json-rpc","h":"#enable-the-json-rpc-server","p":273},{"i":278,"t":"You can use any of Starknet's Node API Endpoints with Juno. Check the availability of Juno with the juno_version method: Raw cURL Response { \"jsonrpc\": \"2.0\", \"method\": \"juno_version\", \"params\": [], \"id\": 1 } curl --location 'http://localhost:6060' \\ --header 'Content-Type: application/json' \\ --data '{ \"jsonrpc\": \"2.0\", \"method\": \"juno_version\", \"params\": [], \"id\": 1 }' { \"jsonrpc\": \"2.0\", \"result\": \"v0.11.7\", \"id\": 1 } Get the most recent accepted block hash and number with the starknet_blockHashAndNumber method: Raw cURL Starknet.js Starknet.go Starknet.rs Response { \"jsonrpc\": \"2.0\", \"method\": \"starknet_blockHashAndNumber\", \"params\": [], \"id\": 1 } curl --location 'http://localhost:6060' \\ --header 'Content-Type: application/json' \\ --data '{ \"jsonrpc\": \"2.0\", \"method\": \"starknet_blockHashAndNumber\", \"params\": [], \"id\": 1 }' const { RpcProvider } = require(\"starknet\"); const provider = new RpcProvider({ nodeUrl: \"http://localhost:6060\", }); provider.getBlockLatestAccepted().then((blockHashAndNumber) => { console.log(blockHashAndNumber); }); package main import ( \"context\" \"fmt\" \"log\" \"github.com/NethermindEth/juno/core/felt\" \"github.com/NethermindEth/starknet.go/rpc\" \"github.com/NethermindEth/starknet.go/utils\" ) func main() { rpcUrl := \"http://localhost:6060\" client, err := rpc.NewClient(rpcUrl) if err != nil { log.Fatal(err) } provider := rpc.NewProvider(client) result, err := provider.BlockHashAndNumber(context.Background()) if err != nil { log.Fatal(err) } fmt.Println(\"BlockHashAndNumber:\", result) } use starknet::providers::{ jsonrpc::{HttpTransport, JsonRpcClient}, Provider, Url, }; #[tokio::main] async fn main() { let provider = JsonRpcClient::new(HttpTransport::new( Url::parse(\"http://localhost:6060\").unwrap(), )); let result = provider.block_hash_and_number().await; match result { Ok(block_hash_and_number) => { println!(\"{block_hash_and_number:#?}\"); } Err(err) => { eprintln!(\"Error: {err}\"); } } } { \"jsonrpc\": \"2.0\", \"result\": { \"block_hash\": \"0x637ae4d7468bb603c2f16ba7f9118d58c7d7c98a8210260372e83e7c9df443a\", \"block_number\": 640827 }, \"id\": 1 }","s":"Making JSON-RPC requests","u":"/0.11.8/json-rpc","h":"#making-json-rpc-requests","p":273},{"i":280,"t":"Juno supports the following Starknet API versions: v0.7.0: Accessible via endpoints /v0_7, /rpc/v0_7, or the default / v0.6.0: Accessible via endpoints /v0_6 or /rpc/v0_6 To use a specific API version, specify the version endpoint in your RPC calls: Latest v0.7.0 v0.6.0 curl --location 'http://localhost:6060' \\ --header 'Content-Type: application/json' \\ --data '{ \"jsonrpc\": \"2.0\", \"method\": \"starknet_chainId\", \"params\": [], \"id\": 1 }' curl --location 'http://localhost:6060/v0_7' \\ --header 'Content-Type: application/json' \\ --data '{ \"jsonrpc\": \"2.0\", \"method\": \"starknet_chainId\", \"params\": [], \"id\": 1 }' curl --location 'http://localhost:6060/v0_6' \\ --header 'Content-Type: application/json' \\ --data '{ \"jsonrpc\": \"2.0\", \"method\": \"starknet_chainId\", \"params\": [], \"id\": 1 }'","s":"Supported Starknet API versions","u":"/0.11.8/json-rpc","h":"#supported-starknet-api-versions","p":273},{"i":282,"t":"You can run a Juno node using several methods: Docker container Standalone binary Building from source Google Cloud Platform (GCP) tip You can use a snapshot to quickly synchronise your node with the network. Check out the Database Snapshots guide to get started.","s":"Running Juno 🚀","u":"/0.11.8/running-juno","h":"","p":281},{"i":285,"t":"Juno Docker images can be found at the nethermind/juno repository on Docker Hub. Download the latest image: docker pull nethermind/juno You can also build the image locally: # Clone the Juno repository git clone https://github.com/NethermindEth/juno cd juno # Build the Docker image docker build -t nethermind/juno:latest .","s":"1. Get the Docker image","u":"/0.11.8/running-juno","h":"#1-get-the-docker-image","p":281},{"i":287,"t":"# Prepare the snapshots directory mkdir -p $HOME/snapshots # Run the container docker run -d \\ --name juno \\ -p 6060:6060 \\ -v $HOME/snapshots/juno_mainnet:/snapshots/juno_mainnet \\ nethermind/juno \\ --http \\ --http-port 6060 \\ --http-host 0.0.0.0 \\ --db-path /snapshots/juno_mainnet You can view logs from the Docker container using the following command: docker logs -f juno","s":"2. Run the Docker container","u":"/0.11.8/running-juno","h":"#2-run-the-docker-container","p":281},{"i":289,"t":"Download standalone binaries from Juno's GitHub Releases as ZIP archives for Linux (amd64 and arm64) and macOS (amd64). For macOS (arm64) or Windows users, consider running Juno using Docker. # Prepare the snapshots directory mkdir -p $HOME/snapshots # Run the binary ./juno \\ --http \\ --http-port 6060 \\ --http-host 0.0.0.0 \\ --db-path $HOME/snapshots/juno_mainnet","s":"Standalone binary","u":"/0.11.8/running-juno","h":"#standalone-binary","p":281},{"i":291,"t":"You can build the Juno binary or Docker image from the source code to access the latest updates or specific versions.","s":"Building from source","u":"/0.11.8/running-juno","h":"#building-from-source","p":281},{"i":293,"t":"Golang 1.22 or later Rust C compiler: gcc or clang jemalloc Ubuntu MacOS (Homebrew) sudo apt-get install -y libjemalloc-dev brew install jemalloc","s":"Prerequisites","u":"/0.11.8/running-juno","h":"#prerequisites","p":281},{"i":295,"t":"Clone Juno's source code from our GitHub repository: git clone https://github.com/NethermindEth/juno cd juno tip You can use git tag -l to view specific version tags.","s":"1. Clone the repository","u":"/0.11.8/running-juno","h":"#1-clone-the-repository","p":281},{"i":297,"t":"# Build the binary make juno # Build the Docker image docker build -t nethermind/juno:latest .","s":"2. Build the binary or Docker image","u":"/0.11.8/running-juno","h":"#2-build-the-binary-or-docker-image","p":281},{"i":299,"t":"Locate the standalone binary in the ./build/ directory: # Prepare the snapshots directory mkdir -p $HOME/snapshots # Run the binary ./build/juno \\ --http \\ --http-port 6060 \\ --http-host 0.0.0.0 \\ --db-path $HOME/snapshots/juno_mainnet tip To learn how to configure Juno, check out the Configuring Juno guide.","s":"3. Run the binary","u":"/0.11.8/running-juno","h":"#3-run-the-binary","p":281},{"i":301,"t":"Juno uses Prometheus to monitor and collect metrics data, which you can visualise with Grafana. You can use these insights to understand what is happening when Juno is running.","s":"Monitoring Juno 📊","u":"/0.11.8/monitoring","h":"","p":300},{"i":303,"t":"To enable the metrics server, use the following configuration options: metrics: Enables the Prometheus metrics endpoint on the default port (disabled by default). metrics-host: The interface on which the Prometheus endpoint will listen for requests. If skipped, it defaults to localhost. metrics-port: The port on which the Prometheus endpoint will listen for requests. If skipped, it defaults to 9090. # Docker container docker run -d \\ --name juno \\ -p 9090:9090 \\ nethermind/juno \\ --metrics \\ --metrics-port 9090 \\ --metrics-host 0.0.0.0 # Standalone binary ./build/juno --metrics --metrics-port 9090 --metrics-host=0.0.0.0","s":"Enable the metrics server","u":"/0.11.8/monitoring","h":"#enable-the-metrics-server","p":300},{"i":306,"t":"Follow the Set up Grafana guide to install Grafana. Download and configure the Grafana dashboard file.","s":"1. Set up Grafana","u":"/0.11.8/monitoring","h":"#1-set-up-grafana","p":300},{"i":308,"t":"Follow the First steps with Prometheus guide to install Prometheus. Add the Juno metrics endpoint in the prometheus.yml configuration file: prometheus.yml scrape_configs: - job_name: \"juno\" static_configs: - targets: [\"localhost:9090\"]","s":"2. Set up Prometheus","u":"/0.11.8/monitoring","h":"#2-set-up-prometheus","p":300},{"i":310,"t":"Follow the Get started with Grafana Loki guide to install Loki. Configure Loki to collect logs from Juno. You might need to configure log paths or use Promtail (Loki's agent) to send logs to Loki: Sample Loki Configuration scrape_configs: - job_name: \"juno-logs\" labels: job: \"juno\" __path__: \"/path/to/juno/logs/*\" tip To have Juno write logs to a file, use the command: ./build/juno >> /path/juno.log 2>&1","s":"3. Set up Grafana Loki","u":"/0.11.8/monitoring","h":"#3-set-up-grafana-loki","p":300},{"i":312,"t":"Follow the Grafana data sources guide to add data sources. Choose Prometheus as a data source: Enter the URL where Prometheus is running, e.g., http://localhost:9090. Click the \"Save & Test\" button. Choose Loki as a data source: Enter the URL where Loki is running, e.g., http://localhost:3100. Click the \"Save & Test\" button.","s":"4. Configure the data sources","u":"/0.11.8/monitoring","h":"#4-configure-the-data-sources","p":300},{"i":314,"t":"Juno can be run as a peer-to-peer node for decentralised data synchronisation and to enhance the resilience and reliability of the Starknet network. Check out the Juno peer-to-peer launch guide to learn how it works. caution The P2P feature is currently under active development and is being tested on smaller Juno networks. As a result, syncing with non-Juno nodes may be unstable.","s":"Running a Juno P2P Node","u":"/0.11.8/running-p2p","h":"","p":313},{"i":316,"t":"To run Juno on the Google Cloud Platform (GCP), you can use the Starknet RPC Virtual Machine (VM) developed by Nethermind.","s":"Running Juno on GCP ☁️","u":"/0.11.8/running-on-gcp","h":"","p":315},{"i":318,"t":"Head to the Google Marketplace and search for \"Starknet RPC Node\". Then, click the \"GET STARTED\" button to begin the deployment process.","s":"1. Install the Starknet RPC Node","u":"/0.11.8/running-on-gcp","h":"#1-install-the-starknet-rpc-node","p":315},{"i":320,"t":"Choose the configuration settings for the Juno client and click the \"DEPLOY\" button.","s":"2. Configure the Juno client","u":"/0.11.8/running-on-gcp","h":"#2-configure-the-juno-client","p":315},{"i":323,"t":"Click on the name of the newly created VM instance to view its details. Click the \"Edit\" button. Head to the \"Automation\" section and enter the following startup script: #! /bin/bash sudo /usr/local/bin/run_juno.sh Click the \"Save\" button. Restart the VM.","s":"4. Enable Juno during startup","u":"/0.11.8/running-on-gcp","h":"#4-enable-juno-during-startup","p":315},{"i":325,"t":"You can interact with Juno using its JSON-RPC Interface. Here's an example to check the availability of Juno: Request Response curl --location 'http://localhost:6060' \\ --header 'Content-Type: application/json' \\ --data '{ \"jsonrpc\": \"2.0\", \"method\": \"juno_version\", \"params\": [], \"id\": 1 }' { \"jsonrpc\": \"2.0\", \"result\": \"v0.11.7\", \"id\": 1 } tip To learn how to configure Juno, check out the Configuring Juno guide.","s":"5. Interact with the Juno node","u":"/0.11.8/running-on-gcp","h":"#5-interact-with-the-juno-node","p":315},{"i":327,"t":"You can download a snapshot of the Juno database to reduce the network syncing time. Only the blocks created after the snapshot will be synced when you run the node.","s":"Database Snapshots 📸","u":"/0.11.8/snapshots","h":"","p":326},{"i":329,"t":"Version Download Link >=v0.9.2 juno_mainnet.tar","s":"Mainnet","u":"/0.11.8/snapshots","h":"#mainnet","p":326},{"i":331,"t":"Version Download Link >=v0.9.2 juno_sepolia.tar","s":"Sepolia","u":"/0.11.8/snapshots","h":"#sepolia","p":326},{"i":333,"t":"$date Thu 1 Aug 2024 09:49:30 BST $curl -s -I -L https://juno-snapshots.nethermind.dev/files/mainnet/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf \"%.2f GB\\n\", $2/1024/1024/1024 }' 172.47 GB $curl -s -I -L https://juno-snapshots.nethermind.dev/files/sepolia/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf \"%.2f GB\\n\", $2/1024/1024/1024 }' 5.67 GB","s":"Getting the size for each snapshot","u":"/0.11.8/snapshots","h":"#getting-the-size-for-each-snapshot","p":326},{"i":336,"t":"First, download a snapshot from one of the provided URLs: wget -O juno_mainnet.tar https://juno-snapshots.nethermind.dev/files/mainnet/latest","s":"1. Download the snapshot","u":"/0.11.8/snapshots","h":"#1-download-the-snapshot","p":326},{"i":338,"t":"Ensure you have a directory to store the snapshots. We will use the $HOME/snapshots directory: mkdir -p $HOME/snapshots","s":"2. Prepare a directory","u":"/0.11.8/snapshots","h":"#2-prepare-a-directory","p":326},{"i":340,"t":"Extract the contents of the downloaded .tar file into the directory: tar -xvf juno_mainnet.tar -C $HOME/snapshots","s":"3. Extract the snapshot","u":"/0.11.8/snapshots","h":"#3-extract-the-snapshot","p":326},{"i":342,"t":"Run the Docker command to start Juno and provide the path to the snapshot using the db-path option: docker run -d \\ --name juno \\ -p 6060:6060 \\ -v $HOME/snapshots/juno_mainnet:/snapshots/juno_mainnet \\ nethermind/juno \\ --http \\ --http-port 6060 \\ --http-host 0.0.0.0 \\ --db-path /snapshots/juno_mainnet --eth-node info Replace with the WebSocket endpoint of your Ethereum node. For Infura users, your address should be: wss://mainnet.infura.io/ws/v3/your-infura-project-id. Ensure you use the WebSocket URL (ws/wss) instead of the HTTP URL (http/https).","s":"4. Run Juno","u":"/0.11.8/snapshots","h":"#4-run-juno","p":326},{"i":344,"t":"Juno provides a WebSocket RPC interface that supports all of Starknet's JSON-RPC API endpoints and allows you to subscribe to newly created blocks.","s":"WebSocket Interface 🌐","u":"/0.11.8/websocket","h":"","p":343},{"i":346,"t":"To enable the WebSocket RPC server, use the following configuration options: ws: Enables the Websocket RPC server on the default port (disabled by default). ws-host: The interface on which the Websocket RPC server will listen for requests. If skipped, it defaults to localhost. ws-port: The port on which the WebSocket server will listen for requests. If skipped, it defaults to 6061. # Docker container docker run -d \\ --name juno \\ -p 6061:6061 \\ nethermind/juno \\ --ws \\ --ws-port 6061 \\ --ws-host 0.0.0.0 # Standalone binary ./build/juno --ws --ws-port 6061 --ws-host 0.0.0.0","s":"Enable the WebSocket server","u":"/0.11.8/websocket","h":"#enable-the-websocket-server","p":343},{"i":348,"t":"You can use any of Starknet's Node API Endpoints with Juno. Check the availability of Juno with the juno_version method: Request Response { \"jsonrpc\": \"2.0\", \"method\": \"juno_version\", \"params\": [], \"id\": 1 } { \"jsonrpc\": \"2.0\", \"result\": \"v0.11.7\", \"id\": 1 } Get the most recent accepted block hash and number with the starknet_blockHashAndNumber method: Request Response { \"jsonrpc\": \"2.0\", \"method\": \"starknet_blockHashAndNumber\", \"params\": [], \"id\": 1 } { \"jsonrpc\": \"2.0\", \"result\": { \"block_hash\": \"0x637ae4d7468bb603c2f16ba7f9118d58c7d7c98a8210260372e83e7c9df443a\", \"block_number\": 640827 }, \"id\": 1 }","s":"Making WebSocket requests","u":"/0.11.8/websocket","h":"#making-websocket-requests","p":343},{"i":350,"t":"The WebSocket server provides a juno_subscribeNewHeads method that emits an event when new blocks are added to the blockchain: Request Response { \"jsonrpc\": \"2.0\", \"method\": \"juno_subscribeNewHeads\", \"params\": [], \"id\": 1 } { \"jsonrpc\": \"2.0\", \"result\": 16570962336122680234, \"id\": 1 } When a new block is added, you will receive a message like this: { \"jsonrpc\": \"2.0\", \"method\": \"juno_subscribeNewHeads\", \"params\": { \"result\": { \"block_hash\": \"0x840660a07a17ae6a55d39fb6d366698ecda11e02280ca3e9ca4b4f1bad741c\", \"parent_hash\": \"0x529ca67a127e4f40f3ae637fc54c7a56c853b2e085011c64364911af74c9a5c\", \"block_number\": 65644, \"new_root\": \"0x4e88ddf34b52091611b34d72849e230d329902888eb57c8e3c1b9cc180a426c\", \"timestamp\": 1715451809, \"sequencer_address\": \"0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8\", \"l1_gas_price\": { \"price_in_fri\": \"0x3727bcc63f1\", \"price_in_wei\": \"0x5f438c77\" }, \"l1_data_gas_price\": { \"price_in_fri\": \"0x230e40e8866c6e\", \"price_in_wei\": \"0x3c8c4a9ea51\" }, \"l1_da_mode\": \"BLOB\", \"starknet_version\": \"0.13.1.1\" }, \"subscription\": 16570962336122680234 } }","s":"Subscribe to newly created blocks","u":"/0.11.8/websocket","h":"#subscribe-to-newly-created-blocks","p":343},{"i":352,"t":"Use the juno_unsubscribe method with the result value from the subscription response or the subscription field from any new block event to stop receiving updates for new blocks: Request Response { \"jsonrpc\": \"2.0\", \"method\": \"juno_unsubscribe\", \"params\": { \"id\": 16570962336122680234 }, \"id\": 1 } { \"jsonrpc\": \"2.0\", \"result\": true, \"id\": 1 }","s":"Unsubscribe from newly created blocks","u":"/0.11.8/websocket","h":"#unsubscribe-from-newly-created-blocks","p":343},{"i":354,"t":"You can test your WebSocket connection using tools like wscat or websocat: # wscat $ wscat -c ws://localhost:6061 > {\"jsonrpc\": \"2.0\", \"method\": \"juno_version\", \"id\": 1} < {\"jsonrpc\": \"2.0\", \"result\": \"v0.11.7\", \"id\": 1} # websocat $ websocat -v ws://localhost:6061 [INFO websocat::lints] Auto-inserting the line mode [INFO websocat::stdio_threaded_peer] get_stdio_peer (threaded) [INFO websocat::ws_client_peer] get_ws_client_peer [INFO websocat::ws_client_peer] Connected to ws {\"jsonrpc\": \"2.0\", \"method\": \"juno_version\", \"id\": 1} {\"jsonrpc\": \"2.0\", \"result\": \"v0.11.7\", \"id\": 1}","s":"Testing the WebSocket connection","u":"/0.11.8/websocket","h":"#testing-the-websocket-connection","p":343},{"i":356,"t":"It is important to run the latest version of Juno as each update brings new features, security patches, and improvements over previous versions. Follow these steps to update Juno: Docker container Standalone binary Updating from source info When running an updated node, use the same db-path as before to avoid restarting the sync and use the already synced database.","s":"Updating Juno 🔄","u":"/0.11.8/updating","h":"","p":355},{"i":359,"t":"Download the latest Juno Docker image from the nethermind/juno repository: docker pull nethermind/juno:latest","s":"1. Get the latest Docker image","u":"/0.11.8/updating","h":"#1-get-the-latest-docker-image","p":355},{"i":361,"t":"Stop the currently running Juno container. If you're unsure of the container name, use docker ps to view all running containers: docker stop juno Remove the old container to prevent any conflicts with the new version: docker rm juno","s":"2. Stop and remove the current Juno container","u":"/0.11.8/updating","h":"#2-stop-and-remove-the-current-juno-container","p":355},{"i":363,"t":"Run a new container using the updated Docker image: # Prepare the snapshots directory mkdir -p $HOME/snapshots # Run the container docker run -d \\ --name juno \\ -p 6060:6060 \\ -v $HOME/snapshots/juno_mainnet:/snapshots/juno_mainnet \\ nethermind/juno \\ --http \\ --http-port 6060 \\ --http-host 0.0.0.0 \\ --db-path /snapshots/juno_mainnet Verify that the node is running correctly with the updated version: docker logs juno","s":"3. Start a new container with the updated image","u":"/0.11.8/updating","h":"#3-start-a-new-container-with-the-updated-image","p":355},{"i":365,"t":"Download the latest binary from the Juno GitHub Releases page and replace the existing one.","s":"Standalone binary","u":"/0.11.8/updating","h":"#standalone-binary","p":355},{"i":367,"t":"# Pull the latest updates to the codebase git pull # Rebuild the binary make juno # OR # Rebuild the Docker image docker build -t nethermind/juno:latest . tip To learn how to configure Juno, check out the Configuring Juno guide.","s":"Updating from source","u":"/0.11.8/updating","h":"#updating-from-source","p":355}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/248",[0,0.46,1,1.416,2,2.421,3,2.082,4,0.972,5,4.434,6,2.294,7,1.352,8,0.246,9,1.787,10,5.151,11,1.627,12,3.61,13,2.562,14,2.893,15,3.094,16,5.151,17,3.328,18,3.328,19,2.562]],["t/250",[0,0.475,1,1.088,2,1.86,3,1.985,4,0.747,8,0.287,13,2.983,14,3.369,15,3.191,17,2.557,18,2.557,19,1.968,20,3.958,21,1.513,22,1.86,23,3.407,24,0.581,25,3.407,26,1.86,27,2.366,28,1.86,29,3.065,30,2.245,31,2.642,32,2.366,33,2.642,34,2.223,35,1.529,36,3.958,37,2.774,38,2.223,39,0.904,40,1.673,41,1.673,42,3.045,43,0.863]],["t/252",[0,0.507,1,0.978,2,2.322,3,2.029,4,1.071,7,0.934,8,0.293,12,2.493,13,2.456,14,1.998,15,2.137,17,3.667,18,3.961,22,1.672,23,3.062,24,0.389,26,2.322,27,1.584,28,1.672,29,2.527,30,1.503,32,1.584,34,1.998,35,1.422,39,1.128,40,1.503,41,1.503,42,2.736,43,1.077,44,3.062,45,3.557,46,2.822,47,3.557,48,4.939,49,2.137,50,2.736,51,2.736,52,4.939,53,4.939,54,4.939,55,1.877,56,4.939,57,0.979,58,3.062,59,3.557]],["t/254",[0,0.482,1,0.892,2,1.526,3,2.205,4,0.874,7,0.852,8,0.298,11,1.025,12,2.275,13,1.615,14,1.824,15,1.95,17,2.098,18,2.098,19,3.448,22,1.526,24,0.506,26,1.526,28,1.526,29,2.063,30,1.957,31,1.615,35,1.333,39,1.058,40,1.372,41,1.372,42,2.497,43,0.708,46,2.303,57,0.918,58,2.795,60,1.396,61,3.563,62,2.795,63,1.824,64,2.795,65,2.993,66,1.615,67,2.275,68,3.563,69,2.782,70,2.497,71,5.359,72,2.497,73,2.685,74,1.615,75,1.241,76,1.446,77,1.95,78,3.246,79,1.074,80,3.246,81,1.824,82,3.246]],["t/256",[0,0.267,1,0.58,2,1.572,3,0.51,4,0.488,7,0.223,8,0.326,11,1.543,13,0.766,14,0.478,15,0.511,19,1.049,21,2.098,22,0.724,24,0.517,26,1.407,27,0.686,28,0.4,29,1.851,30,2.18,31,0.423,32,1.333,35,0.443,37,0.597,39,0.352,40,0.36,43,0.653,46,1.664,49,0.511,55,0.449,57,0.593,60,1.008,61,0.655,63,0.478,64,0.733,65,0.995,66,2.067,67,1.079,68,0.655,69,1.554,70,0.655,71,1.326,72,1.185,73,0.423,74,0.423,75,0.325,76,0.379,77,2.193,79,1.747,83,2.109,84,1.079,85,1.079,86,0.234,87,2.109,88,0.851,89,0.766,90,0.851,91,0.733,92,1.622,93,1.54,94,3.651,95,1.622,96,2.109,97,1.816,98,3.651,99,3.345,100,1.935,101,2.994,102,1.54,103,2.994,104,1.287,105,2.109,106,0.851,107,1.54,108,1.765,109,0.597,110,0.597,111,0.851,112,0.733,113,0.851,114,1.54,115,0.851,116,1.079,117,0.851,118,0.851,119,0.851,120,0.597,121,1.58,122,1.54,123,0.851,124,0.851,125,0.851,126,0.851,127,0.851,128,0.851,129,0.851,130,0.449,131,0.925,132,3.651,133,0.851,134,0.851,135,0.851,136,1.326,137,2.303,138,0.851,139,0.55,140,0.55,141,0.655,142,1.208,143,1.216,144,1.816,145,1.326,146,0.655,147,0.851,148,0.851,149,0.655,150,0.55,151,0.851,152,0.597,153,0.423,154,3.651,155,3.919,156,2.747,157,3.057,158,2.098,159,1.664,160,2.946,161,2.653,162,3.062,163,2.364,164,0.851,165,1.54,166,0.925,167,2.587,168,0.655,169,0.851,170,1.54,171,1.54,172,0.851,173,1.757,174,0.851,175,0.851,176,0.733,177,0.733,178,2.303,179,1.54,180,0.733,181,2.587,182,0.851,183,0.733,184,0.851,185,0.851,186,0.851,187,0.655,188,0.733,189,1.816,190,0.851,191,1.267,192,1.326,193,0.851,194,3.374,195,2.994,196,0.851,197,0.511,198,0.865,199,0.851,200,0.597,201,0.511,202,0.31,203,0.851,204,0.4,205,1.816,206,0.851,207,0.851,208,0.597,209,0.851,210,0.342,211,0.851,212,1.54,213,0.851,214,0.851,215,0.851,216,0.851,217,0.851,218,2.109,219,0.851,220,0.851,221,0.449,222,0.851,223,0.423,224,0.851,225,0.851,226,3.345,227,0.851,228,1.54,229,1.622,230,0.851,231,0.851,232,0.851,233,0.851,234,1.326,235,1.54,236,0.478,237,0.851,238,0.851,239,0.851,240,0.511,241,1.54,242,1.54,243,0.851,244,0.733,245,0.851,246,1.622,247,0.733]],["t/258",[0,0.411,8,0.257,11,1.452,21,1.228,22,2.161,24,0.587,39,0.734,43,1.17,57,1.229,60,1.619,66,2.287,67,2.252,79,1.064,89,1.598,131,1.93,136,2.766,142,1.777,143,1.511,153,2.287,159,1.598,173,1.943,200,2.252,202,1.674,223,1.598,244,2.766,248,2.766,249,2.766,250,2.766,251,2.252,252,2.076,253,2.076,254,2.472,255,2.252,256,2.766,257,2.472,258,2.426,259,2.766,260,1.598,261,2.472,262,2.766,263,2.472,264,2.766,265,2.766,266,2.766,267,2.766,268,2.766,269,3.213,270,3.213,271,3.213,272,3.213,273,3.213,274,3.213,275,2.472,276,2.426,277,2.472,278,3.213,279,3.213,280,1.805,281,3.213,282,3.213,283,3.213,284,2.252,285,3.213,286,2.472,287,1.93,288,3.213,289,2.076,290,3.213,291,3.213,292,3.213,293,2.472,294,2.076]],["t/260",[0,0.599,1,0.911,3,1.808,4,0.887,7,1.56,8,0.284,9,1.15,24,0.686,26,2.21,39,0.757,41,1.401,43,1.295,49,1.991,57,1.178,60,1.647,66,1.648,79,1.097,86,0.911,142,2.077,143,1.558,153,1.648,159,1.648,173,1.986,201,1.991,221,2.882,240,1.991,253,2.142,255,2.323,263,2.55,276,3.136,280,1.862,284,2.323,295,2.824,296,3.315,297,2.853,298,2.853,299,3.315,300,2.853,301,3.315,302,3.294,303,3.315,304,2.093,305,2.093,306,2.55,307,3.315,308,3.315,309,3.315]],["t/262",[0,0.511,7,1.502,8,0.274,9,1.537,43,1.46,46,2.203,79,1.894,149,3.407,202,1.612,204,2.082,223,2.203,253,2.862,258,2.337,293,3.407,294,2.862,310,3.813,311,3.407,312,4.926,313,4.429,314,4.429,315,3.813,316,3.813,317,3.813,318,3.813,319,2.203,320,3.813,321,4.429,322,3.813,323,4.429,324,4.429,325,3.813,326,4.429,327,3.407]],["t/264",[0,0.512,1,0.841,4,0.837,7,0.803,8,0.212,21,1.696,24,0.693,39,0.699,41,1.292,43,1.138,44,2.633,46,1.521,55,1.613,57,1.205,60,1.574,66,1.521,86,1.22,92,2.352,142,1.012,153,1.521,163,1.438,204,1.438,210,2.097,221,1.613,236,1.718,258,1.613,276,2.341,300,2.633,310,2.633,311,2.352,312,2.633,315,2.633,316,2.633,317,2.633,318,2.633,322,2.633,328,2.143,329,3.819,330,2.143,331,3.058,332,3.058,333,3.058,334,3.058,335,3.058,336,2.633,337,1.976,338,3.058,339,2.633,340,2.633,341,3.819,342,2.143,343,3.058,344,3.058,345,2.492,346,3.819,347,3.058,348,2.352,349,3.058,350,3.058,351,2.633,352,2.633,353,3.058,354,1.362,355,3.058,356,3.058,357,3.058,358,2.633,359,3.058,360,3.058,361,2.633,362,2.143,363,3.058,364,3.058,365,3.058,366,3.058,367,3.058,368,2.633,369,3.058]],["t/266",[0,0.566,1,1.482,2,0.423,3,1.03,4,0.654,6,0.401,7,0.991,8,0.318,9,0.562,11,1.095,12,0.63,13,1.098,14,0.505,15,0.54,17,0.581,18,0.581,19,0.447,21,1.189,22,1.038,24,0.681,26,0.761,28,0.761,34,0.505,35,0.635,37,0.63,39,1.108,43,1.198,46,0.805,50,2.075,51,2.667,55,0.854,60,1.355,61,0.692,63,1.515,66,1.724,67,0.63,69,0.54,75,0.619,76,0.401,79,1.249,86,1.112,89,1.724,91,0.774,108,1.829,110,0.63,120,0.63,121,0.475,130,0.475,131,1.326,139,1.426,141,0.692,142,1.852,143,0.761,146,0.692,150,0.581,152,0.63,153,1.341,159,0.805,168,0.692,173,0.38,176,0.774,177,1.9,191,0.54,192,0.774,198,0.505,200,0.63,201,0.54,202,0.982,204,1.038,210,0.65,221,2.641,223,1.877,236,0.505,240,0.54,248,0.774,249,0.774,250,0.774,251,0.63,252,0.581,253,0.581,254,0.692,255,1.89,256,0.774,257,0.692,258,1.165,259,0.774,260,0.805,261,0.692,262,0.774,263,0.692,264,0.774,265,0.774,266,0.774,267,0.774,268,0.774,276,1.423,277,1.245,280,0.505,289,1.046,293,0.692,294,0.581,295,1.326,297,1.394,302,1.135,305,0.983,306,0.692,319,1.341,325,1.394,328,0.63,329,2.322,330,1.89,336,0.774,337,0.581,339,0.774,340,0.774,341,1.394,342,0.63,345,0.505,354,1.544,358,1.9,361,0.774,362,0.63,370,1.394,371,4.64,372,2.259,373,2.268,374,0.9,375,0.9,376,0.9,377,0.774,378,1.245,379,1.135,380,0.63,381,0.692,382,0.774,383,1.245,384,0.692,385,0.692,386,0.692,387,1.245,388,3.112,389,0.774,390,0.9,391,1.341,392,1.394,393,0.9,394,0.774,395,1.619,396,0.581,397,1.24,398,0.9,399,2.075,400,1.619,401,0.9,402,0.9,403,0.9,404,1.619,405,0.9,406,0.9,407,0.9,408,0.9,409,0.9,410,1.619,411,0.9,412,0.9,413,0.9,414,1.62,415,0.9,416,0.9,417,0.9,418,0.9,419,0.9,420,1.046,421,0.774,422,0.774,423,0.774,424,0.774,425,0.774,426,0.9,427,0.9,428,0.774,429,0.9,430,0.9,431,0.9,432,0.774,433,0.774,434,0.9,435,2.697,436,0.9,437,0.9,438,0.581,439,0.9,440,1.619,441,2.207,442,1.619,443,0.9,444,0.692,445,0.9,446,0.9,447,1.619,448,0.9,449,0.9,450,0.9,451,1.619,452,0.9,453,0.9,454,1.394,455,0.9,456,0.9,457,0.774,458,0.774,459,0.9,460,0.9,461,0.9,462,0.9,463,0.9,464,0.9,465,1.619,466,0.9,467,0.9,468,0.9,469,0.9,470,1.619,471,0.9,472,0.9,473,0.692,474,0.63,475,0.9,476,1.619,477,0.9]],["t/268",[0,0.446,8,0.295,9,1.731,24,0.545,39,1.14,43,1.087,60,1.504,79,1.651,142,1.651,208,3.496,277,3.837,286,3.837,330,3.496,379,4.323,380,3.496,389,4.294,478,3.705,479,4.988,480,4.988,481,4.294,482,4.988,483,4.988]],["t/270",[95,3.93,161,2.696,180,4.399,187,3.93,210,2.514,240,3.069,294,3.302,380,3.581,381,3.93,382,4.399,383,3.93,384,3.93,385,3.93,386,4.815,387,4.815,474,3.581,484,5.109,485,5.109,486,3.93]],["t/272",[7,1.425,8,0.291,24,0.446,41,1.727,43,1.183,49,2.454,60,1.232,79,1.352,95,3.143,142,1.352,187,4.175,198,2.295,210,2.18,234,3.517,240,2.454,255,2.863,258,2.156,286,3.143,289,2.64,328,2.863,379,2.863,380,2.863,381,3.143,383,3.143,384,3.143,385,3.143,386,3.143,387,4.175,458,4.672,474,2.863,478,2.454,487,5.427,488,6.094,489,4.086,490,4.086,491,4.086,492,4.086,493,4.086,494,4.086,495,4.086,496,4.086,497,4.086]],["t/274",[0,0.554,6,2.239,7,1.32,11,1.588,24,0.549,29,2.239,43,1.096,84,3.524,142,1.664,143,2.364,144,2.501,163,2.364,166,3.723,173,2.125,258,2.653,280,2.824,302,3.524,379,3.524,478,3.02,486,3.868,498,4.329,499,3.524]],["t/276",[0,0.28,3,1.037,4,0.592,8,0.323,9,1.087,21,2.023,22,1.473,24,0.578,26,1.473,27,1.396,28,1.473,29,3.179,30,2.595,31,2.633,32,2.357,33,2.246,35,1.3,39,0.716,40,1.324,43,0.683,57,1.337,74,1.559,75,1.198,76,1.396,77,3.48,79,1.495,109,3.165,116,2.196,156,3.165,157,3.421,158,2.196,159,2.633,160,2.918,161,2.383,162,3.165,163,2.123,173,2.237,260,2.246,280,1.76,345,2.537,500,1.882,501,1.559,502,2.196]],["t/278",[0,0.279,1,0.532,4,0.589,6,2.352,7,1.03,8,0.215,11,0.986,43,0.422,57,1.518,63,1.087,85,1.356,86,0.532,100,1.25,104,2.627,108,1.021,110,1.356,130,1.647,137,1.488,140,2.017,142,0.64,144,0.962,166,1.162,204,0.91,236,1.087,251,1.356,287,1.875,345,1.754,372,1.021,397,1.087,414,2.705,433,4.254,499,1.356,503,2.751,504,3.122,505,3.156,506,2.967,507,2.967,508,2.705,509,2.787,510,3.464,511,2.402,512,2.017,513,2.402,514,2.402,515,2.967,516,1.356,517,1.666,518,1.666,519,1.666,520,3.379,521,1.935,522,1.935,523,1.935,524,3.122,525,3.122,526,1.935,527,1.935,528,1.935,529,1.935,530,1.935,531,3.925,532,1.666,533,1.935,534,1.935,535,1.935,536,1.935,537,1.935,538,1.935,539,1.935,540,1.935,541,3.122,542,3.122,543,1.935,544,1.935,545,1.935,546,1.935,547,1.935,548,1.935,549,1.935,550,1.935,551,1.935,552,3.122,553,1.935,554,1.935,555,1.935,556,1.935,557,1.935,558,1.935,559,1.935,560,1.935,561,1.488,562,1.666,563,1.488,564,1.666]],["t/280",[0,0.279,4,0.589,6,2.351,8,0.252,9,1.082,24,0.341,46,1.551,57,1.456,60,0.94,72,2.399,77,1.873,104,2.626,130,2.786,140,3.411,144,2.626,153,1.551,166,2.703,173,1.318,189,2.685,210,1.807,258,1.645,276,1.645,284,3.154,319,1.551,368,3.874,391,2.626,478,1.873,505,3.7,506,2.965,507,2.965,508,3.171,509,2.786,510,2.399,511,4.061,512,3.411,513,4.061,514,4.061,565,4.5,566,3.118,567,3.118,568,4.5,569,3.118,570,3.118,571,5.279,572,3.118,573,3.118]],["t/282",[0,0.39,1,1.559,4,1.07,5,3.76,6,1.945,7,1.147,8,0.271,24,0.62,35,1.257,39,0.998,41,1.846,55,2.305,60,1.71,66,2.172,74,2.172,75,1.669,76,1.945,86,1.559,131,2.624,142,1.877,197,2.624,202,1.59,275,3.36,276,2.305,305,2.525,306,3.36,354,1.945,372,2.305,373,2.624,378,3.36,397,2.454,574,2.624,575,3.36,576,3.76,577,3.76]],["t/285",[0,0.555,1,1.531,2,1.998,8,0.327,21,1.624,35,1.971,38,3.704,40,2.354,57,1.231,86,1.169,240,2.553,304,1.893,319,2.114,377,3.659,574,3.732,578,4.251,579,4.285,580,4.251,581,3.27,582,4.251,583,4.795,584,3.27,585,3.659,586,3.659,587,3.27,588,2.979]],["t/287",[0,0.479,1,1.102,4,0.757,8,0.308,9,1.391,13,1.993,27,1.785,29,2.688,30,1.694,31,1.993,32,1.785,33,1.993,35,1.737,39,1.224,40,1.694,57,1.453,63,3.01,73,1.993,76,2.386,81,2.251,86,1.102,121,2.115,202,1.459,305,1.785,420,2.59,421,3.45,500,2.408,501,2.665,502,2.809,589,2.809,590,2.59,591,2.408,592,2.59,593,3.083,594,3.083]],["t/289",[0,0.479,4,0.757,8,0.256,29,2.688,30,1.694,31,1.993,32,1.785,33,1.993,35,1.154,39,1.224,43,1.168,57,1.369,73,1.993,74,1.993,75,2.048,79,1.773,81,2.251,121,2.115,198,2.251,202,1.459,210,1.61,304,1.785,305,1.785,327,3.083,337,2.59,473,4.122,501,1.993,589,2.809,590,2.59,591,2.408,595,3.45,596,3.45,597,4.008,598,4.008,599,4.008,600,5.358,601,5.358,602,4.008,603,4.008,604,3.45]],["t/291",[0,0.46,1,1.416,8,0.325,24,0.563,35,1.483,38,2.893,75,1.969,86,1.416,120,3.61,197,3.094,202,1.875,210,2.527,223,2.562,284,3.61,319,2.562,391,2.562,478,3.094,574,3.094]],["t/293",[210,2.489,397,2.824,438,4.005,473,3.868,605,5.028,606,5.028,607,5.028,608,5.028,609,3.868,610,5.028,611,5.028,612,5.028,613,6.198,614,5.028,615,5.028,616,4.329,617,5.028,618,5.028,619,5.028,620,5.028,621,5.028]],["t/295",[0,0.446,1,1.371,4,0.942,24,0.545,41,2.108,86,1.371,120,3.496,197,2.996,202,1.816,311,3.837,337,3.223,391,2.481,420,3.223,478,2.996,579,3.837,583,5.31,584,4.745,585,4.294,586,4.294,595,4.294,622,6.168,623,4.294]],["t/297",[0,0.48,8,0.308,35,1.857,38,3.016,57,1.37,75,2.052,348,4.131,574,4.154,587,4.131,588,3.763]],["t/299",[0,0.495,3,1.835,8,0.327,24,0.606,28,1.985,29,2.758,30,1.784,31,2.1,32,1.88,33,2.1,39,0.965,41,1.784,46,2.1,57,1.389,73,2.1,74,2.1,75,2.12,81,3.115,121,2.228,140,2.728,221,2.228,295,2.536,305,1.88,354,1.88,372,2.228,373,2.536,501,2.1,574,2.536,589,2.959,590,2.728,591,2.536,604,3.635]],["t/301",[0,0.54,1,1.663,4,1.142,7,1.27,24,0.661,34,2.716,39,1.105,43,1.054,69,2.905,86,1.663,89,3.009,130,2.551,160,3.125,191,2.905,208,3.389,320,4.163,370,4.163,392,4.163,394,4.163,396,3.125,624,4.163,625,4.836,626,4.836]],["t/303",[0,0.287,3,1.064,4,0.607,8,0.325,9,1.115,21,2.052,22,1.511,24,0.587,26,1.511,27,1.431,28,1.511,30,2.621,32,2.048,33,1.598,35,1.324,39,0.734,40,1.358,57,1.346,69,4.266,70,4.13,74,1.598,75,1.228,76,1.431,77,3.52,79,1.522,109,3.222,116,2.252,144,2.67,156,3.222,157,2.076,158,2.252,159,1.598,160,2.971,161,2.426,162,3.222,163,2.161,191,3.225,260,2.287,345,2.583,500,1.93,501,1.598,627,3.213,628,3.213]],["t/306",[3,1.777,8,0.308,9,1.863,19,2.671,24,0.587,43,1.17,49,3.225,298,4.623,304,2.391,354,2.391,396,4.469,438,3.47,629,5.37]],["t/308",[0,0.546,3,1.625,7,1.289,8,0.318,9,1.704,19,2.442,24,0.537,46,2.442,69,2.95,144,2.442,191,3.669,229,3.778,354,2.187,438,3.173,630,4.228,631,4.228,632,6.109,633,4.228,634,4.228,635,4.911,636,4.911,637,4.911]],["t/310",[0,0.565,3,1.954,4,0.982,7,1.008,8,0.249,9,1.332,13,1.909,19,1.909,24,0.762,28,1.804,41,1.622,55,2.025,57,0.76,60,1.157,62,3.304,63,3.716,73,1.909,86,1.055,202,1.397,210,1.541,354,1.709,362,2.69,396,2.48,397,2.156,438,2.48,474,2.69,498,3.304,624,3.304,633,3.304,634,3.304,638,5.696,639,3.838,640,3.838,641,3.838,642,3.838,643,3.838,644,3.838,645,3.838,646,3.838,647,3.838,648,3.838,649,3.838]],["t/312",[8,0.324,9,1.427,24,0.449,39,1.245,57,1.08,60,1.643,89,2.711,100,3.522,112,4.692,130,3.434,191,3.274,197,3.91,198,3.061,352,4.692,354,1.831,396,2.657,631,3.54,638,4.692,650,4.692,651,4.692,652,4.112,653,3.82,654,4.692,655,4.193,656,3.82,657,4.112]],["t/314",[0,0.56,1,1.03,2,2.741,7,0.984,8,0.3,11,1.183,21,1.432,24,0.685,39,0.856,43,1.271,60,1.543,66,2.546,79,1.24,89,2.546,130,1.977,142,1.694,153,1.863,194,3.226,198,2.876,201,2.251,205,5.395,221,1.977,257,2.882,260,1.863,261,2.882,275,2.882,295,2.251,342,2.626,354,1.668,372,1.977,373,2.251,515,2.105,655,2.882,658,3.747,659,3.747,660,3.747,661,3.747,662,3.747,663,3.226,664,3.747,665,3.747,666,3.226,667,3.747,668,3.747,669,3.747,670,3.747]],["t/316",[0,0.46,1,1.416,4,0.972,8,0.301,21,1.969,22,2.421,24,0.563,39,1.177,86,1.416,153,2.562,173,2.177,178,3.962,253,3.328,378,3.962,575,3.962,576,4.434,577,4.434,666,4.434,671,5.151,672,5.151]],["t/318",[8,0.324,24,0.684,43,1.114,55,2.696,79,1.691,142,1.691,153,2.541,173,2.159,397,2.87,454,4.399,457,4.399,575,3.93,653,3.581,656,3.581,673,4.399,674,5.109,675,5.109,676,5.109,677,4.399]],["t/320",[0,0.492,3,1.824,8,0.334,43,1.201,49,3.31,79,1.824,251,3.862,650,4.744,653,3.862,656,3.862,677,4.744]],["t/323",[8,0.346,9,1.548,11,1.409,21,1.705,24,0.628,27,1.986,43,0.972,57,0.884,178,4.421,188,3.84,252,2.882,260,2.218,420,2.882,616,3.84,651,3.84,653,4.457,654,3.84,656,4.028,673,3.84,678,3.84,679,4.46,680,4.46,681,4.46,682,4.46,683,4.46,684,4.46,685,4.46,686,4.46,687,3.84]],["t/325",[0,0.567,1,1.061,3,1.729,4,0.729,6,1.719,7,1.014,8,0.25,11,1.219,24,0.647,41,1.632,57,1.385,85,2.706,86,1.061,104,2.599,130,2.037,140,2.495,150,2.495,159,1.92,163,1.815,173,1.632,221,2.037,260,1.92,280,2.169,287,2.319,295,2.319,302,2.706,354,1.719,372,2.757,373,2.319,503,2.706,505,2.706,506,2.935,507,2.935,508,2.319,509,2.757,510,2.97,511,2.97,512,2.495,513,2.97,514,2.97,515,2.169,516,2.706,688,3.861,689,3.861]],["t/327",[0,0.429,1,1.319,2,2.256,8,0.34,11,1.516,24,0.524,34,2.696,37,3.363,39,1.096,60,1.447,66,2.387,86,1.655,108,2.532,131,2.883,142,1.588,161,2.532,200,3.363,201,3.617,252,3.101,294,3.101,304,2.137,305,2.681,690,4.799]],["t/329",[304,2.638,391,2.946,691,5.099,692,5.099,693,4.556]],["t/331",[304,2.638,391,2.946,691,5.099,692,5.099,694,5.923]],["t/333",[57,1.392,371,4.795,505,3.904,509,2.243,512,3.599,592,3.599,623,4.795,695,4.251,696,4.251,697,4.251,698,4.251,699,4.251,700,4.251,701,5.57,702,4.795,703,3.659,704,5.57,705,5.57,706,5.57,707,5.57,708,5.57,709,5.57,710,5.57,711,4.251,712,5.57,713,4.251,714,4.251]],["t/336",[8,0.259,11,1.71,21,2.07,60,1.633,100,3.5,202,1.971,304,2.412,305,2.412,414,3.253,630,4.662,693,4.166,702,4.662,703,4.662,715,5.416,716,5.416]],["t/338",[4,0.997,8,0.305,24,0.577,60,1.592,81,3.587,86,1.452,161,2.786,289,3.412,305,2.351,328,3.7,362,3.7,432,4.546,501,2.626,590,3.412,591,3.836]],["t/340",[8,0.331,11,1.696,19,2.671,81,3.016,304,2.391,481,4.623,512,3.47,591,3.225,609,4.131,693,4.131,717,5.37,718,6.451,719,5.37]],["t/342",[0,0.42,2,1.558,4,0.887,7,0.87,8,0.32,11,1.485,13,1.648,24,0.514,26,1.558,27,1.476,29,2.646,30,1.401,31,1.648,32,1.476,33,1.648,35,1.353,39,1.074,40,1.401,43,0.722,50,2.55,55,1.749,57,1.357,65,2.142,73,2.716,79,1.097,86,0.911,97,2.853,100,3.037,104,1.648,121,2.48,141,4.202,142,1.967,143,2.21,144,1.648,145,2.853,276,3.136,289,2.142,305,1.476,327,2.55,414,1.991,500,1.991,501,1.648,502,2.323,592,2.142,593,2.55,594,2.55,720,2.853,721,4.701,722,3.315,723,3.315,724,3.315,725,3.315,726,3.315]],["t/344",[0,0.449,11,1.588,24,0.677,43,1.096,60,1.516,84,3.524,86,1.382,108,2.653,139,3.249,143,2.364,144,2.501,159,2.501,166,3.02,173,2.619,252,3.249,254,3.868,258,2.653,280,2.824,414,3.02,499,3.524,678,4.329,727,5.028]],["t/346",[0,0.283,3,1.048,4,0.597,8,0.323,9,1.098,21,2.035,22,1.488,24,0.582,26,1.488,27,1.409,28,1.488,30,2.605,32,2.371,33,2.262,35,1.309,39,0.723,40,1.338,57,1.341,74,1.574,75,1.21,76,1.409,77,3.496,79,1.505,109,3.188,116,2.218,143,2.736,156,3.188,157,3.761,158,2.218,159,1.574,160,2.939,161,2.4,162,3.188,163,2.138,173,2.25,246,5.3,247,4.583,260,2.262,345,2.555,500,1.901,501,1.574,728,3.165]],["t/348",[0,0.438,1,0.967,4,0.664,6,2.717,7,1.481,8,0.292,11,1.548,43,0.767,57,1.445,85,2.465,86,0.967,104,3.034,108,1.856,110,2.465,137,2.706,142,1.164,144,1.749,163,2.304,166,2.113,236,1.976,287,2.944,372,1.856,397,1.976,499,2.465,503,3.435,506,3.427,507,3.427,508,2.944,509,3.219,515,2.753,516,2.465,517,3.028,518,3.028,519,3.028,520,4.219,561,2.706,562,3.028,563,2.706,564,3.028]],["t/350",[6,2.384,8,0.219,24,0.349,34,2.573,51,2.46,57,1.453,60,1.614,86,0.879,89,1.59,104,2.278,108,2.417,139,2.066,143,1.503,150,2.066,152,2.241,157,2.066,161,1.687,163,1.503,204,2.154,287,1.921,330,2.241,399,2.46,414,1.921,422,4.609,423,2.752,424,3.944,425,2.752,444,2.46,506,3.007,507,3.007,508,2.752,509,2.417,515,2.573,561,2.46,563,2.46,729,3.944,730,3.197,731,3.197,732,3.197,733,3.197,734,3.197,735,3.197,736,3.197,737,3.197,738,3.197,739,3.197,740,3.197,741,3.197,742,4.581,743,3.197,744,4.581,745,3.197,746,3.197,747,3.197,748,3.197,749,3.197,750,3.197,751,3.197,752,3.197,753,2.752]],["t/352",[4,0.781,6,2.438,7,1.087,8,0.312,24,0.452,57,1.382,68,3.184,79,1.37,92,3.184,104,3.05,108,2.888,152,2.901,163,1.946,202,1.993,204,2.573,210,1.662,223,2.059,236,2.325,287,3.288,399,3.184,506,3.075,507,3.075,508,2.486,509,2.888,515,3.075,729,3.563,753,4.712,754,5.474,755,4.139,756,3.563]],["t/354",[1,1.018,4,0.699,6,2.261,8,0.177,14,2.08,24,0.405,57,1.337,65,4.03,86,1.018,104,3.101,143,1.741,149,3.906,210,1.487,246,2.848,276,1.954,444,2.848,503,3.559,506,3.503,507,3.503,509,3.29,515,2.852,516,3.559,592,2.393,609,2.848,655,2.848,757,3.703,758,5.796,759,5.796,760,5.078,761,3.703,762,3.703,763,3.703,764,3.703,765,3.703,766,3.703,767,3.703,768,5.078,769,3.703]],["t/356",[0,0.471,4,0.995,8,0.305,9,1.356,11,1.235,24,0.651,25,3.365,34,2.196,35,1.125,39,1.204,43,1.148,65,2.526,73,1.944,74,1.944,75,1.494,76,1.741,89,1.944,121,2.062,131,2.348,142,1.294,150,2.526,168,3.007,183,3.365,197,2.348,198,2.959,201,3.165,202,1.423,204,1.837,208,2.739,223,3.172,229,3.007,260,1.944,319,1.944,342,2.739,391,2.62,486,3.007,532,3.365,687,3.365,770,3.909,771,3.909,772,3.909,773,3.909,774,3.909,775,3.909,776,3.909]],["t/359",[0,0.492,8,0.313,35,1.886,38,3.095,40,2.329,202,2.006,304,2.454,319,2.74,579,4.239,581,4.239,588,3.862]],["t/361",[0,0.57,4,0.848,7,1.179,8,0.322,11,1.419,24,0.631,27,2,35,1.837,39,1.319,76,2.999,84,3.148,204,2.112,236,2.523,345,2.523,346,3.867,351,3.867,391,2.234,420,2.903,663,3.867,756,4.971,777,4.492,778,4.492,779,4.492,780,4.492,781,4.492,782,4.492]],["t/363",[0,0.465,4,0.724,7,1.008,8,0.316,27,1.709,29,2.629,30,1.622,31,1.909,32,1.709,33,1.909,35,1.7,38,2.156,39,1.446,40,1.622,57,1.442,60,1.157,63,2.156,73,1.909,76,2.317,81,2.156,89,1.909,121,2.025,139,2.48,142,1.27,146,2.952,204,1.804,223,2.588,305,1.709,391,1.909,500,2.305,501,2.588,502,2.69,589,2.69,590,2.48,591,2.305,592,2.48,593,2.952,594,2.952,783,3.838]],["t/365",[0,0.484,8,0.332,21,2.07,43,1.18,75,2.07,202,1.971,304,2.412,319,2.693,337,3.5,428,4.662,596,4.662,720,4.662,784,5.416]],["t/367",[0,0.566,3,1.894,8,0.332,24,0.693,35,1.647,38,2.488,41,1.872,57,1.374,75,1.693,210,1.779,221,2.337,223,2.203,295,2.661,319,2.203,348,3.407,354,1.972,372,2.337,373,2.661,574,2.661,581,4.401,584,3.407,587,3.407,588,3.104,785,4.429,786,5.722]]],"invertedIndex":[["",{"_index":57,"t":{"252":{"position":[[398,1],[463,1]]},"254":{"position":[[260,1],[321,1]]},"256":{"position":[[78,1],[118,1],[603,2],[1850,1],[1974,1]]},"258":{"position":[[265,2],[326,1],[405,2],[496,2],[570,2]]},"260":{"position":[[79,2],[153,2],[244,2],[348,2]]},"264":{"position":[[107,2],[162,1],[192,2],[231,2],[271,2]]},"276":{"position":[[388,1],[421,1],[435,1],[450,1],[468,1],[477,1],[496,1],[518,1]]},"278":{"position":[[139,1],[195,3],[207,1],[249,1],[293,1],[302,2],[359,3],[371,2],[374,1],[423,1],[575,1],[646,3],[658,1],[700,1],[744,1],[753,2],[825,3],[837,2],[846,1],[860,1],[862,1],[900,1],[954,3],[1018,2],[1021,1],[1056,3],[1080,1],[1234,1],[1248,1],[1257,2],[1296,2],[1328,2],[1335,1],[1352,1],[1363,2],[1402,2],[1462,2],[1469,1],[1486,1],[1531,1],[1616,2],[1650,1],[1665,1],[1752,3],[1767,1],[1822,1],[1850,2],[1853,1],[1895,1],[1906,2],[1909,1],[1938,1],[1940,1],[1942,1],[1944,1],[1974,1],[2082,2],[2093,1]]},"280":{"position":[[117,1],[311,1],[355,1],[364,2],[425,3],[437,2],[485,1],[529,1],[538,2],[599,3],[611,2],[659,1],[703,1],[712,2],[773,3],[785,2]]},"285":{"position":[[174,1],[258,1],[322,1]]},"287":{"position":[[0,1],[59,1],[93,1],[107,1],[122,1],[180,1],[198,1],[207,1],[226,1],[248,1]]},"289":{"position":[[192,1],[251,1],[275,1],[284,1],[303,1],[325,1]]},"297":{"position":[[0,1],[29,1],[93,1]]},"299":{"position":[[56,1],[115,1],[145,1],[154,1],[173,1],[195,1]]},"303":{"position":[[403,1],[436,1],[450,1],[465,1],[483,1],[495,1],[517,1],[542,1]]},"310":{"position":[[385,2]]},"312":{"position":[[183,1],[311,1]]},"323":{"position":[[170,2]]},"325":{"position":[[167,1],[211,1],[220,2],[277,3],[289,2],[292,1],[341,1]]},"333":{"position":[[108,1],[150,1],[190,2],[277,1],[319,1],[359,2]]},"342":{"position":[[114,1],[128,1],[143,1],[201,1],[219,1],[228,1],[247,1],[269,1]]},"346":{"position":[[385,1],[418,1],[432,1],[447,1],[465,1],[472,1],[489,1],[509,1]]},"348":{"position":[[138,1],[194,3],[206,1],[208,1],[257,1],[372,1],[443,3],[455,1],[457,1],[487,1],[595,2],[606,1]]},"350":{"position":[[144,1],[210,3],[222,1],[224,1],[284,1],[351,1],[417,1],[429,1],[832,1],[896,2],[920,1],[990,2],[1046,2],[1086,1],[1088,1]]},"352":{"position":[[195,1],[255,1],[284,2],[295,1],[297,1],[341,1]]},"354":{"position":[[75,1],[83,1],[114,1],[170,1],[221,1],[232,1]]},"363":{"position":[[52,1],[111,1],[145,1],[159,1],[174,1],[232,1],[250,1],[259,1],[278,1],[300,1]]},"367":{"position":[[0,1],[51,1],[82,1],[87,1],[153,1]]}}}],["0,100",{"_index":113,"t":{"256":{"position":[[670,6]]}}}],["0.0.0.0",{"_index":33,"t":{"250":{"position":[[138,7],[303,7]]},"276":{"position":[[510,7],[587,7]]},"287":{"position":[[240,7]]},"289":{"position":[[317,7]]},"299":{"position":[[187,7]]},"303":{"position":[[534,7]]},"342":{"position":[[261,7]]},"346":{"position":[[501,7],[572,7]]},"363":{"position":[[292,7]]}}}],["0.13.1.1",{"_index":752,"t":{"350":{"position":[[1035,10]]}}}],["09:49:30",{"_index":699,"t":{"333":{"position":[[21,8]]}}}],["0s",{"_index":224,"t":{"256":{"position":[[2919,3]]}}}],["0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8",{"_index":740,"t":{"350":{"position":[[747,68]]}}}],["0x230e40e8866c6",{"_index":747,"t":{"350":{"position":[[938,19]]}}}],["0x3727bcc63f1",{"_index":743,"t":{"350":{"position":[[850,16]]}}}],["0x3c8c4a9ea51",{"_index":748,"t":{"350":{"position":[[974,15]]}}}],["0x4e88ddf34b52091611b34d72849e230d329902888eb57c8e3c1b9cc180a426c",{"_index":736,"t":{"350":{"position":[[632,68]]}}}],["0x529ca67a127e4f40f3ae637fc54c7a56c853b2e085011c64364911af74c9a5c",{"_index":733,"t":{"350":{"position":[[528,68]]}}}],["0x5f438c77",{"_index":745,"t":{"350":{"position":[[883,12]]}}}],["0x637ae4d7468bb603c2f16ba7f9118d58c7d7c98a8210260372e83e7c9df443a",{"_index":562,"t":{"278":{"position":[[1990,68]]},"348":{"position":[[503,68]]}}}],["0x840660a07a17ae6a55d39fb6d366698ecda11e02280ca3e9ca4b4f1bad741c",{"_index":731,"t":{"350":{"position":[[445,67]]}}}],["1",{"_index":509,"t":{"278":{"position":[[205,1],[369,1],[421,1],[656,1],[835,1],[2091,1]]},"280":{"position":[[435,1],[609,1],[783,1]]},"325":{"position":[[287,1],[339,1]]},"333":{"position":[[10,1]]},"348":{"position":[[204,1],[255,1],[453,1],[604,1]]},"350":{"position":[[220,1],[282,1]]},"352":{"position":[[293,1],[339,1]]},"354":{"position":[[167,2],[218,2],[531,2],[580,2]]}}}],["1.22",{"_index":606,"t":{"293":{"position":[[7,4]]}}}],["1024",{"_index":134,"t":{"256":{"position":[[922,4]]}}}],["16570962336122680234",{"_index":729,"t":{"350":{"position":[[254,21],[1065,20]]},"352":{"position":[[263,20]]}}}],["1715451809",{"_index":738,"t":{"350":{"position":[[714,11]]}}}],["172.47",{"_index":711,"t":{"333":{"position":[[193,6]]}}}],["182gb",{"_index":272,"t":{"258":{"position":[[308,5]]}}}],["18446744073709551615",{"_index":243,"t":{"256":{"position":[[3489,20]]}}}],["2",{"_index":180,"t":{"256":{"position":[[1848,1]]},"270":{"position":[[14,1]]}}}],["2.0",{"_index":507,"t":{"278":{"position":[[152,6],[316,6],[387,6],[588,6],[767,6],[1957,6]]},"280":{"position":[[378,6],[552,6],[726,6]]},"325":{"position":[[234,6],[305,6]]},"348":{"position":[[151,6],[221,6],[385,6],[470,6]]},"350":{"position":[[157,6],[237,6],[364,6]]},"352":{"position":[[208,6],[310,6]]},"354":{"position":[[128,6],[184,6],[492,6],[546,6]]}}}],["2/1024/1024/1024",{"_index":710,"t":{"333":{"position":[[172,17],[341,17]]}}}],["2024",{"_index":698,"t":{"333":{"position":[[16,4]]}}}],["250gb",{"_index":384,"t":{"266":{"position":[[581,5]]},"270":{"position":[[48,5]]},"272":{"position":[[108,5]]}}}],["2>&1",{"_index":649,"t":{"310":{"position":[[403,4]]}}}],["2f",{"_index":708,"t":{"333":{"position":[[159,5],[328,5]]}}}],["3",{"_index":186,"t":{"256":{"position":[[1972,1]]}}}],["4",{"_index":234,"t":{"256":{"position":[[3347,1],[3409,1]]},"272":{"position":[[31,1]]}}}],["4000000",{"_index":230,"t":{"256":{"position":[[3254,7]]}}}],["4gb",{"_index":382,"t":{"266":{"position":[[566,3]]},"270":{"position":[[27,3]]}}}],["5",{"_index":171,"t":{"256":{"position":[[1501,1],[2867,1]]}}}],["5.67",{"_index":714,"t":{"333":{"position":[[362,4]]}}}],["6060",{"_index":31,"t":{"250":{"position":[[121,4],[286,4]]},"254":{"position":[[114,4]]},"256":{"position":[[1715,4]]},"276":{"position":[[382,5],[491,4],[570,4]]},"287":{"position":[[221,4]]},"289":{"position":[[298,4]]},"299":{"position":[[168,4]]},"342":{"position":[[242,4]]},"363":{"position":[[273,4]]}}}],["6060:6060",{"_index":502,"t":{"276":{"position":[[440,9]]},"287":{"position":[[112,9]]},"342":{"position":[[133,9]]},"363":{"position":[[164,9]]}}}],["6061",{"_index":247,"t":{"256":{"position":[[3738,4]]},"346":{"position":[[379,5],[484,4],[557,4]]}}}],["6061:6061",{"_index":728,"t":{"346":{"position":[[437,9]]}}}],["6062",{"_index":227,"t":{"256":{"position":[[3124,4]]}}}],["6064",{"_index":164,"t":{"256":{"position":[[1365,4]]}}}],["640827",{"_index":564,"t":{"278":{"position":[[2075,6]]},"348":{"position":[[588,6]]}}}],["65644",{"_index":734,"t":{"350":{"position":[[613,6]]}}}],["8",{"_index":124,"t":{"256":{"position":[[815,1]]}}}],["8gb",{"_index":489,"t":{"272":{"position":[[52,3]]}}}],["9090",{"_index":70,"t":{"254":{"position":[[147,4]]},"256":{"position":[[2238,4]]},"303":{"position":[[397,5],[512,4],[600,4]]}}}],["9090:9090",{"_index":627,"t":{"303":{"position":[[455,9]]}}}],["__path__",{"_index":645,"t":{"310":{"position":[[283,9]]}}}],["a",{"_index":60,"t":{"254":{"position":[[29,1],[169,1]]},"256":{"position":[[180,1],[927,1],[2527,1],[2682,1],[2801,1],[3216,1]]},"258":{"position":[[8,1],[31,1],[480,1]]},"260":{"position":[[90,1],[360,1],[393,1]]},"264":{"position":[[114,1],[174,1],[484,1]]},"266":{"position":[[22,1],[45,1],[378,1],[776,1],[1064,1],[1409,1],[1552,1],[1864,1],[2224,1],[2379,1]]},"268":{"position":[[66,1]]},"272":{"position":[[185,1]]},"280":{"position":[[178,1]]},"282":{"position":[[12,1],[147,1]]},"310":{"position":[[347,1]]},"312":{"position":[[80,1],[214,1]]},"314":{"position":[[19,1],[328,1]]},"327":{"position":[[17,1]]},"336":{"position":[[16,1]]},"338":{"position":[[16,1]]},"344":{"position":[[14,1]]},"350":{"position":[[30,1],[291,1],[330,1]]},"363":{"position":[[4,1]]}}}],["abov",{"_index":493,"t":{"272":{"position":[[161,5]]}}}],["accept",{"_index":519,"t":{"278":{"position":[[445,8]]},"348":{"position":[[279,8]]}}}],["access",{"_index":284,"t":{"258":{"position":[[464,10]]},"260":{"position":[[459,6]]},"280":{"position":[[59,10],[127,10]]},"291":{"position":[[70,6]]}}}],["accommod",{"_index":490,"t":{"272":{"position":[[117,11]]}}}],["activ",{"_index":665,"t":{"314":{"position":[[260,6]]}}}],["ad",{"_index":424,"t":{"266":{"position":[[1936,5]]},"350":{"position":[[102,5],[306,6]]}}}],["add",{"_index":631,"t":{"308":{"position":[[68,3]]},"312":{"position":[[41,3]]}}}],["addr",{"_index":196,"t":{"256":{"position":[[2420,4]]}}}],["address",{"_index":97,"t":{"256":{"position":[[342,7],[379,7],[2458,7]]},"342":{"position":[[435,7]]}}}],["adequ",{"_index":460,"t":{"266":{"position":[[3056,8]]}}}],["advanc",{"_index":259,"t":{"258":{"position":[[152,7]]},"266":{"position":[[166,7]]}}}],["after",{"_index":37,"t":{"250":{"position":[[200,5]]},"256":{"position":[[1897,5]]},"266":{"position":[[2650,5]]},"327":{"position":[[109,5]]}}}],["agent",{"_index":642,"t":{"310":{"position":[[168,6]]}}}],["align",{"_index":466,"t":{"266":{"position":[[3339,6]]}}}],["all",{"_index":84,"t":{"256":{"position":[[8,3],[190,3]]},"274":{"position":[[96,3]]},"344":{"position":[[54,3]]},"361":{"position":[[105,3]]}}}],["alloc",{"_index":129,"t":{"256":{"position":[[864,9]]}}}],["allow",{"_index":254,"t":{"258":{"position":[[84,5]]},"266":{"position":[[98,5]]},"344":{"position":[[99,6]]}}}],["along",{"_index":90,"t":{"256":{"position":[[235,5]]}}}],["alreadi",{"_index":776,"t":{"356":{"position":[[343,7]]}}}],["also",{"_index":377,"t":{"266":{"position":[[399,4]]},"285":{"position":[[144,4]]}}}],["amd64",{"_index":600,"t":{"289":{"position":[[83,6],[111,8]]}}}],["amount",{"_index":126,"t":{"256":{"position":[[832,6]]}}}],["an",{"_index":150,"t":{"256":{"position":[[1153,2]]},"266":{"position":[[1907,2]]},"325":{"position":[[64,2]]},"350":{"position":[[73,2]]},"356":{"position":[[254,2]]}}}],["and",{"_index":43,"t":{"250":{"position":[[370,3]]},"252":{"position":[[96,3],[192,3]]},"254":{"position":[[572,3]]},"256":{"position":[[267,3],[1170,3],[1603,3],[2582,3],[3364,3]]},"258":{"position":[[115,3],[148,3],[386,3]]},"260":{"position":[[23,3],[122,3],[323,3],[385,3]]},"262":{"position":[[54,3],[116,3],[171,3],[223,3]]},"264":{"position":[[33,3],[302,3],[393,3]]},"266":{"position":[[129,3],[162,3],[354,3],[577,3],[772,3],[861,3],[1103,3],[1206,3],[1518,3],[1598,3],[2079,3],[2268,3],[2325,3],[2575,3],[3075,3],[3202,3],[3427,3]]},"268":{"position":[[129,3]]},"272":{"position":[[254,3],[310,3]]},"274":{"position":[[143,3]]},"276":{"position":[[129,3]]},"278":{"position":[[465,3]]},"289":{"position":[[90,3],[101,3]]},"301":{"position":[[32,3]]},"306":{"position":[[61,3]]},"314":{"position":[[78,3],[108,3],[279,3]]},"318":{"position":[[31,3]]},"320":{"position":[[54,3]]},"323":{"position":[[130,3]]},"342":{"position":[[37,3]]},"344":{"position":[[95,3]]},"348":{"position":[[299,3]]},"356":{"position":[[104,3],[331,3]]},"365":{"position":[[62,3]]}}}],["ani",{"_index":236,"t":{"256":{"position":[[3368,3]]},"264":{"position":[[525,3]]},"266":{"position":[[1326,3]]},"278":{"position":[[12,3]]},"348":{"position":[[12,3]]},"352":{"position":[[116,3]]},"361":{"position":[[182,3]]}}}],["ansi",{"_index":118,"t":{"256":{"position":[[746,5]]}}}],["api",{"_index":166,"t":{"256":{"position":[[1432,3],[1440,3]]},"274":{"position":[[69,3],[119,3]]},"278":{"position":[[35,3]]},"280":{"position":[[37,3],[189,3]]},"344":{"position":[[81,3]]},"348":{"position":[[35,3]]}}}],["append",{"_index":36,"t":{"250":{"position":[[165,6]]}}}],["applic",{"_index":290,"t":{"258":{"position":[[543,12]]}}}],["application/json",{"_index":514,"t":{"278":{"position":[[275,17],[726,17]]},"280":{"position":[[337,17],[511,17],[685,17]]},"325":{"position":[[193,17]]}}}],["approxim",{"_index":271,"t":{"258":{"position":[[294,13]]}}}],["apt",{"_index":617,"t":{"293":{"position":[[89,3]]}}}],["ar",{"_index":330,"t":{"264":{"position":[[37,3]]},"266":{"position":[[478,3],[1932,3],[2860,3],[3185,3]]},"268":{"position":[[100,3]]},"350":{"position":[[98,3]]}}}],["archiv",{"_index":598,"t":{"289":{"position":[[64,8]]}}}],["arm64",{"_index":601,"t":{"289":{"position":[[94,6],[130,7]]}}}],["as",{"_index":198,"t":{"256":{"position":[[2466,2],[2524,2]]},"266":{"position":[[2900,2]]},"272":{"position":[[182,2]]},"289":{"position":[[57,2]]},"312":{"position":[[77,2],[211,2]]},"314":{"position":[[16,2],[325,2]]},"356":{"position":[[50,2],[292,2]]}}}],["async",{"_index":550,"t":{"278":{"position":[[1634,5]]}}}],["at",{"_index":240,"t":{"256":{"position":[[3406,2]]},"260":{"position":[[511,2]]},"266":{"position":[[557,2]]},"270":{"position":[[5,2]]},"272":{"position":[[99,2]]},"285":{"position":[[32,2]]}}}],["aug",{"_index":697,"t":{"333":{"position":[[12,3]]}}}],["auto",{"_index":762,"t":{"354":{"position":[[289,4]]}}}],["autom",{"_index":681,"t":{"323":{"position":[[109,12]]}}}],["avail",{"_index":85,"t":{"256":{"position":[[12,9],[216,9]]},"278":{"position":[[70,12]]},"325":{"position":[[88,12]]},"348":{"position":[[70,12]]}}}],["avoid",{"_index":168,"t":{"256":{"position":[[1473,5]]},"266":{"position":[[3001,5]]},"356":{"position":[[305,5]]}}}],["basic",{"_index":495,"t":{"272":{"position":[[231,5]]}}}],["be",{"_index":2,"t":{"248":{"position":[[9,2]]},"250":{"position":[[9,2]]},"252":{"position":[[9,2],[234,2]]},"254":{"position":[[9,2]]},"256":{"position":[[977,2],[2021,2],[2707,2],[2908,2],[3289,2],[3396,2]]},"266":{"position":[[2800,5]]},"285":{"position":[[23,2]]},"314":{"position":[[9,2],[286,5],[370,2]]},"327":{"position":[[133,2]]},"342":{"position":[[450,3]]}}}],["been",{"_index":471,"t":{"266":{"position":[[3487,4]]}}}],["befor",{"_index":183,"t":{"256":{"position":[[1920,6]]},"356":{"position":[[295,6]]}}}],["begin",{"_index":457,"t":{"266":{"position":[[2987,10]]},"318":{"position":[[107,5]]}}}],["beginn",{"_index":356,"t":{"264":{"position":[[426,8]]}}}],["below",{"_index":88,"t":{"256":{"position":[[171,5]]}}}],["benefit",{"_index":417,"t":{"266":{"position":[[1589,8]]}}}],["bin/bash",{"_index":685,"t":{"323":{"position":[[173,9]]}}}],["binari",{"_index":75,"t":{"254":{"position":[[273,6]]},"256":{"position":[[91,6]]},"266":{"position":[[3520,6],[3583,6]]},"276":{"position":[[531,6]]},"282":{"position":[[75,6]]},"289":{"position":[[20,8],[261,6]]},"291":{"position":[[23,6]]},"297":{"position":[[12,6]]},"299":{"position":[[22,6],[125,6]]},"303":{"position":[[555,6]]},"346":{"position":[[522,6]]},"356":{"position":[[208,6]]},"365":{"position":[[20,6]]},"367":{"position":[[65,6]]}}}],["blob",{"_index":750,"t":{"350":{"position":[[1007,7]]}}}],["block",{"_index":108,"t":{"256":{"position":[[630,6],[2601,6],[2897,5],[2956,6],[3478,5],[3528,6]]},"266":{"position":[[1823,7],[1925,6],[2423,5],[2450,5],[2634,5],[3173,5]]},"278":{"position":[[454,5]]},"327":{"position":[[94,6]]},"344":{"position":[[140,7]]},"348":{"position":[[288,5]]},"350":{"position":[[91,6],[297,5]]},"352":{"position":[[124,5],[170,7]]}}}],["block_hash",{"_index":561,"t":{"278":{"position":[[1976,13]]},"348":{"position":[[489,13]]},"350":{"position":[[431,13]]}}}],["block_numb",{"_index":563,"t":{"278":{"position":[[2059,15]]},"348":{"position":[[572,15]]},"350":{"position":[[597,15]]}}}],["blockchain",{"_index":425,"t":{"266":{"position":[[1949,11]]},"350":{"position":[[115,11]]}}}],["both",{"_index":427,"t":{"266":{"position":[[2053,4]]}}}],["brew",{"_index":621,"t":{"293":{"position":[[124,4]]}}}],["bring",{"_index":770,"t":{"356":{"position":[[65,6]]}}}],["bst",{"_index":700,"t":{"333":{"position":[[30,3]]}}}],["bug",{"_index":340,"t":{"264":{"position":[[241,4]]},"266":{"position":[[2262,5]]}}}],["build",{"_index":574,"t":{"282":{"position":[[82,8]]},"285":{"position":[[149,5],[260,5],[290,5]]},"291":{"position":[[8,5]]},"297":{"position":[[2,5],[31,5],[61,5]]},"299":{"position":[[36,8]]},"367":{"position":[[121,5]]}}}],["build/juno",{"_index":28,"t":{"250":{"position":[[89,12]]},"252":{"position":[[315,12]]},"254":{"position":[[280,12]]},"256":{"position":[[98,12]]},"266":{"position":[[3431,13],[3659,12]]},"276":{"position":[[538,12]]},"299":{"position":[[132,12]]},"303":{"position":[[562,12]]},"310":{"position":[[372,12]]},"346":{"position":[[529,12]]}}}],["but",{"_index":350,"t":{"264":{"position":[[348,3]]}}}],["button",{"_index":656,"t":{"312":{"position":[[191,7],[319,7]]},"318":{"position":[[97,6]]},"320":{"position":[[77,7]]},"323":{"position":[[89,7],[232,7]]}}}],["by",{"_index":22,"t":{"250":{"position":[[52,2]]},"252":{"position":[[53,2]]},"254":{"position":[[400,2]]},"256":{"position":[[985,2],[2679,2]]},"258":{"position":[[67,2],[369,2]]},"266":{"position":[[81,2],[2213,2],[2514,2]]},"276":{"position":[[153,2]]},"303":{"position":[[150,2]]},"316":{"position":[[108,2]]},"346":{"position":[[144,2]]}}}],["c",{"_index":609,"t":{"293":{"position":[[26,1]]},"340":{"position":[[96,1]]},"354":{"position":[[92,1]]}}}],["cach",{"_index":122,"t":{"256":{"position":[[804,5],[878,7]]}}}],["call",{"_index":189,"t":{"256":{"position":[[2037,5],[3239,4],[3572,4]]},"280":{"position":[[243,6]]}}}],["can",{"_index":1,"t":{"248":{"position":[[5,3]]},"250":{"position":[[5,3]]},"252":{"position":[[5,3]]},"254":{"position":[[5,3]]},"256":{"position":[[48,3],[973,3],[2703,3]]},"260":{"position":[[455,3]]},"264":{"position":[[91,3]]},"266":{"position":[[283,3],[395,3],[665,3],[699,3],[881,3],[1008,3],[1046,3],[1133,3],[1214,3],[1657,3],[1695,3],[1788,3],[2160,3],[2190,3],[2493,3],[2841,3]]},"278":{"position":[[4,3]]},"282":{"position":[[4,3],[139,3]]},"285":{"position":[[19,3],[140,3]]},"287":{"position":[[288,3]]},"291":{"position":[[4,3]]},"295":{"position":[[117,3]]},"301":{"position":[[68,3],[100,3]]},"314":{"position":[[5,3]]},"316":{"position":[[52,3]]},"325":{"position":[[4,3]]},"327":{"position":[[4,3]]},"348":{"position":[[4,3]]},"354":{"position":[[4,3]]}}}],["cap",{"_index":239,"t":{"256":{"position":[[3399,6]]}}}],["captur",{"_index":393,"t":{"266":{"position":[[1166,8]]}}}],["casual",{"_index":265,"t":{"258":{"position":[[228,6]]},"266":{"position":[[242,6]]}}}],["categoris",{"_index":480,"t":{"268":{"position":[[104,11]]}}}],["caution",{"_index":662,"t":{"314":{"position":[[217,7]]}}}],["cd",{"_index":586,"t":{"285":{"position":[[250,2]]},"295":{"position":[[101,2]]}}}],["chain",{"_index":103,"t":{"256":{"position":[[475,5],[502,5],[517,5],[544,5],[1125,6]]}}}],["check",{"_index":372,"t":{"266":{"position":[[299,5],[404,5],[603,5],[803,5],[908,5],[1248,5],[2101,5],[2297,5],[2557,5]]},"278":{"position":[[60,5]]},"282":{"position":[[209,5]]},"299":{"position":[[272,5]]},"314":{"position":[[149,5]]},"325":{"position":[[78,5],[379,5]]},"348":{"position":[[60,5]]},"367":{"position":[[191,5]]}}}],["choos",{"_index":650,"t":{"312":{"position":[[59,6],[199,6]]},"320":{"position":[[0,6]]}}}],["clang",{"_index":612,"t":{"293":{"position":[[45,5]]}}}],["click",{"_index":653,"t":{"312":{"position":[[167,5],[295,5]]},"318":{"position":[[73,5]]},"320":{"position":[[58,5]]},"323":{"position":[[0,5],[72,5],[215,5]]}}}],["client",{"_index":251,"t":{"258":{"position":[[52,6]]},"266":{"position":[[66,6]]},"278":{"position":[[1284,7]]},"320":{"position":[[47,6]]}}}],["clone",{"_index":583,"t":{"285":{"position":[[176,5],[206,5]]},"295":{"position":[[0,5],[57,5]]}}}],["cloud",{"_index":576,"t":{"282":{"position":[[110,5]]},"316":{"position":[[26,5]]}}}],["cn",{"_index":94,"t":{"256":{"position":[[325,2],[387,2],[427,2],[469,2],[511,2],[553,2],[581,2]]}}}],["code",{"_index":120,"t":{"256":{"position":[[759,6]]},"266":{"position":[[3463,5]]},"291":{"position":[[62,4]]},"295":{"position":[[20,4]]}}}],["codebas",{"_index":785,"t":{"367":{"position":[[33,8]]}}}],["codesign",{"_index":477,"t":{"266":{"position":[[3641,8]]}}}],["collect",{"_index":624,"t":{"301":{"position":[[36,7]]},"310":{"position":[[82,7]]}}}],["colour",{"_index":114,"t":{"256":{"position":[[677,6],[727,10]]}}}],["colour=fals",{"_index":115,"t":{"256":{"position":[[695,12]]}}}],["come",{"_index":406,"t":{"266":{"position":[[1425,4]]}}}],["comma",{"_index":207,"t":{"256":{"position":[[2684,6]]}}}],["command",{"_index":13,"t":{"248":{"position":[[86,7]]},"250":{"position":[[39,7],[176,7],[315,7]]},"252":{"position":[[371,7],[548,7]]},"254":{"position":[[548,7]]},"256":{"position":[[22,7],[708,7]]},"266":{"position":[[724,7],[1755,8],[3632,8]]},"287":{"position":[[348,8]]},"310":{"position":[[363,8]]},"342":{"position":[[15,7]]}}}],["commun",{"_index":312,"t":{"262":{"position":[[9,9],[120,10]]},"264":{"position":[[9,9]]}}}],["compat",{"_index":440,"t":{"266":{"position":[[2604,13],[3223,11]]}}}],["compil",{"_index":610,"t":{"293":{"position":[[28,9]]}}}],["complet",{"_index":279,"t":{"258":{"position":[[408,8]]}}}],["complianc",{"_index":282,"t":{"258":{"position":[[431,11]]}}}],["concurr",{"_index":190,"t":{"256":{"position":[[2043,12]]}}}],["config",{"_index":71,"t":{"254":{"position":[[199,6],[295,6],[302,7],[369,6],[376,7]]},"256":{"position":[[285,6],[766,6]]}}}],["configur",{"_index":3,"t":{"248":{"position":[[12,10],[140,13]]},"250":{"position":[[12,10],[224,9],[374,13]]},"252":{"position":[[12,10],[110,13],[206,15],[522,13]]},"254":{"position":[[12,10],[171,13],[240,13],[431,13],[489,13],[522,13],[607,13]]},"256":{"position":[[194,13],[782,13]]},"260":{"position":[[13,9],[161,13],[199,13]]},"266":{"position":[[671,9],[703,9],[783,13],[817,11],[3325,13]]},"276":{"position":[[52,13]]},"299":{"position":[[256,9],[286,11]]},"303":{"position":[[48,13]]},"306":{"position":[[65,9]]},"308":{"position":[[120,13]]},"310":{"position":[[64,9],[124,9],[209,13]]},"320":{"position":[[11,13]]},"325":{"position":[[363,9],[393,11]]},"346":{"position":[[54,13]]},"367":{"position":[[175,9],[205,11]]}}}],["conflict",{"_index":781,"t":{"361":{"position":[[186,9]]}}}],["connect",{"_index":149,"t":{"256":{"position":[[1142,7]]},"262":{"position":[[76,7]]},"354":{"position":[[28,10],[464,9]]}}}],["consid",{"_index":603,"t":{"289":{"position":[[156,8]]}}}],["console.log(blockhashandnumb",{"_index":529,"t":{"278":{"position":[[1023,32]]}}}],["const",{"_index":524,"t":{"278":{"position":[[840,5],[885,5]]}}}],["contact",{"_index":367,"t":{"264":{"position":[[587,7]]}}}],["contain",{"_index":76,"t":{"254":{"position":[[330,9]]},"256":{"position":[[127,9]]},"266":{"position":[[1725,9]]},"276":{"position":[[397,9]]},"282":{"position":[[54,9]]},"287":{"position":[[69,9],[318,9]]},"303":{"position":[[412,9]]},"346":{"position":[[394,9]]},"356":{"position":[[187,9]]},"361":{"position":[[32,10],[67,9],[117,11],[161,9]]},"363":{"position":[[10,9],[121,9]]}}}],["content",{"_index":512,"t":{"278":{"position":[[260,8],[711,8]]},"280":{"position":[[322,8],[496,8],[670,8]]},"325":{"position":[[178,8]]},"333":{"position":[[131,10],[300,10]]},"340":{"position":[[12,8]]}}}],["context",{"_index":533,"t":{"278":{"position":[[1082,9]]}}}],["contract",{"_index":96,"t":{"256":{"position":[[333,8],[370,8],[1203,8]]}}}],["contribut",{"_index":329,"t":{"264":{"position":[[19,13],[95,11]]},"266":{"position":[[1474,12],[2166,10],[2194,10],[2311,13]]}}}],["cor",{"_index":241,"t":{"256":{"position":[[3423,4],[3448,4]]}}}],["core",{"_index":95,"t":{"256":{"position":[[328,4],[365,4],[1980,5]]},"270":{"position":[[16,5]]},"272":{"position":[[41,5]]}}}],["correct",{"_index":147,"t":{"256":{"position":[[1103,11]]}}}],["correctli",{"_index":783,"t":{"363":{"position":[[368,9]]}}}],["corrupt",{"_index":443,"t":{"266":{"position":[[2766,10]]}}}],["cpu",{"_index":187,"t":{"256":{"position":[[1976,3]]},"270":{"position":[[0,4]]},"272":{"position":[[0,4],[22,3]]}}}],["creat",{"_index":252,"t":{"258":{"position":[[59,7]]},"266":{"position":[[73,7]]},"323":{"position":[[31,7]]},"327":{"position":[[101,7]]},"344":{"position":[[132,7]]}}}],["curl",{"_index":505,"t":{"278":{"position":[[125,4],[209,4],[525,4],[660,4]]},"280":{"position":[[271,4],[440,4],[614,4]]},"325":{"position":[[127,4]]},"333":{"position":[[34,5],[203,5]]}}}],["current",{"_index":663,"t":{"314":{"position":[[244,9]]},"361":{"position":[[9,9]]}}}],["curv",{"_index":217,"t":{"256":{"position":[[2839,5]]}}}],["custom",{"_index":98,"t":{"256":{"position":[[350,6],[401,6],[442,6],[484,6],[526,6],[561,6],[606,6]]}}}],["customis",{"_index":301,"t":{"260":{"position":[[224,9]]}}}],["d",{"_index":500,"t":{"276":{"position":[[419,1]]},"287":{"position":[[91,1]]},"303":{"position":[[434,1]]},"342":{"position":[[112,1]]},"346":{"position":[[416,1]]},"363":{"position":[[143,1]]}}}],["dashboard",{"_index":629,"t":{"306":{"position":[[87,9]]}}}],["data",{"_index":130,"t":{"256":{"position":[[886,4]]},"266":{"position":[[1183,4]]},"278":{"position":[[297,4],[748,4]]},"280":{"position":[[359,4],[533,4],[707,4]]},"301":{"position":[[52,5]]},"312":{"position":[[19,4],[45,4],[82,4],[216,4]]},"314":{"position":[[57,4]]},"325":{"position":[[215,4]]}}}],["databas",{"_index":131,"t":{"256":{"position":[[898,8],[1024,8]]},"258":{"position":[[274,8]]},"266":{"position":[[2115,8],[2754,8],[3193,8]]},"282":{"position":[[223,8]]},"327":{"position":[[40,8]]},"356":{"position":[[358,9]]}}}],["date",{"_index":695,"t":{"333":{"position":[[0,5]]}}}],["db",{"_index":121,"t":{"256":{"position":[[801,2],[907,2],[992,2],[995,2],[3201,2]]},"266":{"position":[[2703,3]]},"287":{"position":[[252,2]]},"289":{"position":[[329,2]]},"299":{"position":[[199,2]]},"342":{"position":[[84,2],[273,2]]},"356":{"position":[[284,2]]},"363":{"position":[[304,2]]}}}],["debug",{"_index":175,"t":{"256":{"position":[[1810,6]]}}}],["decentralis",{"_index":261,"t":{"258":{"position":[[164,16]]},"266":{"position":[[178,16]]},"314":{"position":[[43,13]]}}}],["deepen",{"_index":418,"t":{"266":{"position":[[1602,7]]}}}],["default",{"_index":77,"t":{"254":{"position":[[403,8]]},"256":{"position":[[252,7],[299,7],[1258,7],[1590,7],[2117,7],[3009,7],[3626,7]]},"276":{"position":[[116,7],[156,9],[261,8],[370,8]]},"280":{"position":[[109,7]]},"303":{"position":[[127,7],[153,9],[265,8],[385,8]]},"346":{"position":[[121,7],[147,9],[255,8],[367,8]]}}}],["deploy",{"_index":677,"t":{"318":{"position":[[117,10]]},"320":{"position":[[68,8]]}}}],["descript",{"_index":93,"t":{"256":{"position":[[271,13],[313,11]]}}}],["detail",{"_index":679,"t":{"323":{"position":[[63,8]]}}}],["determin",{"_index":125,"t":{"256":{"position":[[817,10]]}}}],["dev",{"_index":620,"t":{"293":{"position":[[120,3]]}}}],["develop",{"_index":666,"t":{"314":{"position":[[267,11]]},"316":{"position":[[98,9]]}}}],["differ",{"_index":482,"t":{"268":{"position":[[162,9]]}}}],["direct",{"_index":407,"t":{"266":{"position":[[1435,6]]}}}],["directli",{"_index":20,"t":{"250":{"position":[[23,8]]}}}],["directori",{"_index":81,"t":{"254":{"position":[[474,10]]},"287":{"position":[[24,9]]},"289":{"position":[[216,9]]},"299":{"position":[[45,10],[80,9]]},"338":{"position":[[18,9],[84,10]]},"340":{"position":[[58,10]]},"363":{"position":[[76,9]]}}}],["disabl",{"_index":116,"t":{"256":{"position":[[719,7],[2928,7]]},"276":{"position":[[143,9]]},"303":{"position":[[140,9]]},"346":{"position":[[134,9]]}}}],["discord",{"_index":315,"t":{"262":{"position":[[67,8]]},"264":{"position":[[384,8]]}}}],["discov",{"_index":303,"t":{"260":{"position":[[269,8]]}}}],["discuss",{"_index":314,"t":{"262":{"position":[[41,12]]}}}],["do",{"_index":398,"t":{"266":{"position":[[1300,2]]}}}],["docker",{"_index":35,"t":{"250":{"position":[[157,7],[240,6]]},"252":{"position":[[339,7],[387,6]]},"254":{"position":[[323,6],[340,6]]},"256":{"position":[[120,6],[137,6]]},"266":{"position":[[1683,7],[1718,6],[1764,6]]},"276":{"position":[[390,6],[407,6]]},"282":{"position":[[47,6]]},"285":{"position":[[5,6],[69,6],[108,6],[270,6],[283,6]]},"287":{"position":[[79,6],[311,6],[357,6]]},"289":{"position":[[184,7]]},"291":{"position":[[33,6]]},"297":{"position":[[41,6],[54,6]]},"303":{"position":[[405,6],[422,6]]},"342":{"position":[[8,6],[100,6]]},"346":{"position":[[387,6],[404,6]]},"356":{"position":[[180,6]]},"359":{"position":[[25,6],[75,6]]},"361":{"position":[[87,6],[129,6],[218,6]]},"363":{"position":[[38,6],[131,6],[404,6]]},"367":{"position":[[101,6],[114,6]]}}}],["doe",{"_index":404,"t":{"266":{"position":[[1416,4],[1961,4]]}}}],["don't",{"_index":365,"t":{"264":{"position":[[569,5]]}}}],["download",{"_index":304,"t":{"260":{"position":[[351,8],[376,8]]},"285":{"position":[[81,8]]},"289":{"position":[[0,8]]},"306":{"position":[[52,8]]},"327":{"position":[[8,8]]},"329":{"position":[[8,8]]},"331":{"position":[[8,8]]},"336":{"position":[[7,8]]},"340":{"position":[[28,10]]},"359":{"position":[[0,8]]},"365":{"position":[[0,8]]}}}],["due",{"_index":445,"t":{"266":{"position":[[2784,3]]}}}],["dure",{"_index":447,"t":{"266":{"position":[[2818,6],[3115,6]]}}}],["e",{"_index":56,"t":{"252":{"position":[[369,1],[401,1]]}}}],["e.g",{"_index":112,"t":{"256":{"position":[[664,5]]},"312":{"position":[[138,5],[266,5]]}}}],["each",{"_index":25,"t":{"250":{"position":[[71,4]]},"356":{"position":[[53,4]]}}}],["eager",{"_index":331,"t":{"264":{"position":[[41,5]]}}}],["easili",{"_index":256,"t":{"258":{"position":[[108,6]]},"266":{"position":[[122,6]]}}}],["ed25519",{"_index":215,"t":{"256":{"position":[[2822,7]]}}}],["edit",{"_index":680,"t":{"323":{"position":[[82,6]]}}}],["educ",{"_index":416,"t":{"266":{"position":[[1577,11]]}}}],["either",{"_index":209,"t":{"256":{"position":[[2710,6]]}}}],["ellipt",{"_index":216,"t":{"256":{"position":[[2830,8]]}}}],["emit",{"_index":423,"t":{"266":{"position":[[1901,5]]},"350":{"position":[[67,5]]}}}],["enabl",{"_index":156,"t":{"256":{"position":[[1223,6],[1555,7],[2070,7],[2397,7],[2975,7],[3428,6],[3441,6],[3586,7]]},"276":{"position":[[3,6],[81,7]]},"303":{"position":[[3,6],[80,7]]},"346":{"position":[[3,6],[81,7]]}}}],["encourag",{"_index":343,"t":{"264":{"position":[[274,9]]}}}],["endpoint",{"_index":144,"t":{"256":{"position":[[1058,8],[1460,9],[2101,8],[2191,8],[2276,8],[2993,8],[3460,9]]},"274":{"position":[[123,9]]},"278":{"position":[[39,9]]},"280":{"position":[[74,9],[142,9],[222,8]]},"303":{"position":[[111,8],[215,8],[335,8]]},"308":{"position":[[89,8]]},"342":{"position":[[380,8]]},"344":{"position":[[85,9]]},"348":{"position":[[39,9]]}}}],["engag",{"_index":313,"t":{"262":{"position":[[32,8]]}}}],["enhanc",{"_index":658,"t":{"314":{"position":[[85,7]]}}}],["ensur",{"_index":289,"t":{"258":{"position":[[529,8]]},"266":{"position":[[3033,6],[3300,6]]},"272":{"position":[[283,6]]},"338":{"position":[[0,6]]},"342":{"position":[[508,6]]}}}],["enter",{"_index":651,"t":{"312":{"position":[[95,5],[229,5]]},"323":{"position":[[134,5]]}}}],["environ",{"_index":17,"t":{"248":{"position":[[118,11]]},"250":{"position":[[348,11]]},"252":{"position":[[31,11],[485,11],[581,11]]},"254":{"position":[[576,11]]},"266":{"position":[[749,11]]}}}],["eprintln!(\"error",{"_index":560,"t":{"278":{"position":[[1911,17]]}}}],["err",{"_index":433,"t":{"266":{"position":[[2429,7]]},"278":{"position":[[1292,3],[1324,3],[1398,3],[1458,3],[1929,8]]}}}],["err(err",{"_index":559,"t":{"278":{"position":[[1897,8]]}}}],["error",{"_index":177,"t":{"256":{"position":[[1829,5]]},"266":{"position":[[2681,5],[2734,5],[3142,6]]}}}],["escap",{"_index":119,"t":{"256":{"position":[[752,6]]}}}],["eth",{"_index":141,"t":{"256":{"position":[[1039,3]]},"266":{"position":[[3316,3]]},"342":{"position":[[307,3],[322,3],[351,3]]}}}],["ethereum",{"_index":145,"t":{"256":{"position":[[1074,8],[1156,8]]},"342":{"position":[[397,8]]}}}],["event",{"_index":152,"t":{"256":{"position":[[1180,6]]},"266":{"position":[[1910,5]]},"350":{"position":[[76,5]]},"352":{"position":[[130,5]]}}}],["everyth",{"_index":283,"t":{"258":{"position":[[443,10]]}}}],["exampl",{"_index":689,"t":{"325":{"position":[[67,7]]}}}],["execut",{"_index":231,"t":{"256":{"position":[[3292,8]]}}}],["exist",{"_index":784,"t":{"365":{"position":[[78,8]]}}}],["experiment",{"_index":195,"t":{"256":{"position":[[2383,13],[2425,13],[2501,13],[2633,13],[2757,13]]}}}],["explor",{"_index":300,"t":{"260":{"position":[[183,7]]},"264":{"position":[[294,7]]}}}],["extract",{"_index":717,"t":{"340":{"position":[[0,7]]}}}],["f",{"_index":421,"t":{"266":{"position":[[1777,1]]},"287":{"position":[[370,1]]}}}],["fail",{"_index":431,"t":{"266":{"position":[[2408,6]]}}}],["fals",{"_index":155,"t":{"256":{"position":[[1217,5],[1549,5],[2064,5],[2377,5],[2495,5],[2969,5],[3435,5],[3580,5]]}}}],["fast",{"_index":274,"t":{"258":{"position":[[334,4]]}}}],["fastest",{"_index":375,"t":{"266":{"position":[[358,7]]}}}],["featur",{"_index":342,"t":{"264":{"position":[[261,9]]},"266":{"position":[[2287,9]]},"314":{"position":[[233,7]]},"356":{"position":[[76,9]]}}}],["feeder",{"_index":99,"t":{"256":{"position":[[390,6],[416,6],[2483,6],[2529,6],[2567,6],[2717,6]]}}}],["fellow",{"_index":326,"t":{"262":{"position":[[246,6]]}}}],["fetch",{"_index":225,"t":{"256":{"position":[[2936,8]]}}}],["field",{"_index":755,"t":{"352":{"position":[[105,5]]}}}],["file",{"_index":19,"t":{"248":{"position":[[154,4]]},"250":{"position":[[388,5]]},"254":{"position":[[36,5],[54,4],[185,5],[254,5],[310,4],[384,4],[445,4],[503,4],[621,5]]},"256":{"position":[[796,4],[962,5],[1033,5]]},"266":{"position":[[797,5]]},"306":{"position":[[97,5]]},"308":{"position":[[134,5]]},"310":{"position":[[349,5]]},"340":{"position":[[44,4]]}}}],["finish",{"_index":453,"t":{"266":{"position":[[2911,6]]}}}],["first",{"_index":630,"t":{"308":{"position":[[11,5]]},"336":{"position":[[0,6]]}}}],["fix",{"_index":436,"t":{"266":{"position":[[2497,3]]}}}],["flag",{"_index":16,"t":{"248":{"position":[[110,7]]}}}],["fmt",{"_index":534,"t":{"278":{"position":[[1092,5]]}}}],["fmt.println(\"blockhashandnumb",{"_index":545,"t":{"278":{"position":[[1488,34]]}}}],["fn",{"_index":551,"t":{"278":{"position":[[1640,2]]}}}],["follow",{"_index":9,"t":{"248":{"position":[[55,9]]},"260":{"position":[[58,9]]},"262":{"position":[[144,6]]},"266":{"position":[[1745,9],[3622,9]]},"268":{"position":[[4,9]]},"276":{"position":[[42,9]]},"280":{"position":[[18,9]]},"287":{"position":[[338,9]]},"303":{"position":[[38,9]]},"306":{"position":[[0,6]]},"308":{"position":[[0,6]]},"310":{"position":[[0,6]]},"312":{"position":[[0,6]]},"323":{"position":[[144,9]]},"346":{"position":[[44,9]]},"356":{"position":[[145,6]]}}}],["footprint",{"_index":270,"t":{"258":{"position":[[283,10]]}}}],["for",{"_index":79,"t":{"254":{"position":[[423,3]]},"256":{"position":[[874,3],[1342,3],[1416,3],[1448,3],[1511,3],[1692,3],[1766,3],[1875,3],[2001,3],[2029,3],[2212,3],[2297,3],[3100,3],[3181,3],[3717,3],[3794,3]]},"258":{"position":[[594,3]]},"260":{"position":[[502,3]]},"262":{"position":[[19,3],[151,3]]},"266":{"position":[[508,3],[639,3],[942,3],[2049,3],[2347,3],[2563,3],[3370,3]]},"268":{"position":[[158,3]]},"272":{"position":[[326,3]]},"276":{"position":[[232,3],[341,3]]},"289":{"position":[[73,3],[120,3]]},"303":{"position":[[236,3],[356,3]]},"314":{"position":[[39,3]]},"318":{"position":[[42,3]]},"320":{"position":[[34,3]]},"342":{"position":[[412,3]]},"346":{"position":[[226,3],[338,3]]},"352":{"position":[[162,3]]}}}],["form",{"_index":360,"t":{"264":{"position":[[476,7]]}}}],["format",{"_index":48,"t":{"252":{"position":[[156,7],[249,7]]}}}],["found",{"_index":578,"t":{"285":{"position":[[26,5]]}}}],["free",{"_index":308,"t":{"260":{"position":[[506,4]]}}}],["frequent",{"_index":222,"t":{"256":{"position":[[2878,10]]}}}],["friendli",{"_index":357,"t":{"264":{"position":[[435,8]]}}}],["from",{"_index":202,"t":{"256":{"position":[[2562,4]]},"258":{"position":[[223,4],[475,4]]},"262":{"position":[[184,4]]},"266":{"position":[[237,4],[1678,4],[1709,4],[2978,4]]},"282":{"position":[[91,4]]},"287":{"position":[[302,4]]},"289":{"position":[[29,4]]},"291":{"position":[[46,4]]},"295":{"position":[[25,4]]},"310":{"position":[[95,4]]},"336":{"position":[[27,4]]},"352":{"position":[[54,4],[111,4]]},"356":{"position":[[224,4]]},"359":{"position":[[38,4]]},"365":{"position":[[27,4]]}}}],["full",{"_index":250,"t":{"258":{"position":[[42,4]]},"266":{"position":[[56,4]]}}}],["func",{"_index":538,"t":{"278":{"position":[[1236,4]]}}}],["function",{"_index":411,"t":{"266":{"position":[[1504,13]]}}}],["futur",{"_index":458,"t":{"266":{"position":[[3025,7]]},"272":{"position":[[129,6],[330,6]]}}}],["gateway",{"_index":101,"t":{"256":{"position":[[430,7],[457,7],[1452,7],[1536,7],[2574,7]]}}}],["gawk",{"_index":704,"t":{"333":{"position":[[110,4],[279,4]]}}}],["gb",{"_index":712,"t":{"333":{"position":[[200,2],[367,2]]}}}],["gb\\n",{"_index":709,"t":{"333":{"position":[[165,6],[334,6]]}}}],["gcc",{"_index":611,"t":{"293":{"position":[[38,3]]}}}],["gcp",{"_index":378,"t":{"266":{"position":[[430,3],[468,4]]},"282":{"position":[[125,5]]},"316":{"position":[[41,6]]}}}],["get",{"_index":397,"t":{"266":{"position":[[1287,3],[1794,3],[2143,3]]},"278":{"position":[[425,3]]},"282":{"position":[[251,3]]},"293":{"position":[[93,3]]},"310":{"position":[[11,3]]},"318":{"position":[[83,4]]},"348":{"position":[[259,3]]}}}],["get_stdio_p",{"_index":766,"t":{"354":{"position":[[355,14]]}}}],["get_ws_client_p",{"_index":769,"t":{"354":{"position":[[413,18]]}}}],["git",{"_index":584,"t":{"285":{"position":[[202,3]]},"295":{"position":[[53,3],[125,3]]},"367":{"position":[[42,3]]}}}],["github",{"_index":337,"t":{"264":{"position":[[184,7]]},"266":{"position":[[2244,7]]},"289":{"position":[[41,6]]},"295":{"position":[[34,6]]},"365":{"position":[[41,6]]}}}],["github.com/nethermindeth/juno/core/felt",{"_index":535,"t":{"278":{"position":[[1104,41]]}}}],["github.com/nethermindeth/starknet.go/rpc",{"_index":536,"t":{"278":{"position":[[1146,42]]}}}],["github.com/nethermindeth/starknet.go/util",{"_index":537,"t":{"278":{"position":[[1189,44]]}}}],["give",{"_index":335,"t":{"264":{"position":[[164,4]]}}}],["go",{"_index":248,"t":{"258":{"position":[[10,2]]},"266":{"position":[[24,2]]}}}],["goal",{"_index":262,"t":{"258":{"position":[[181,6]]},"266":{"position":[[195,6]]}}}],["golang",{"_index":605,"t":{"293":{"position":[[0,6]]}}}],["googl",{"_index":575,"t":{"282":{"position":[[103,6]]},"316":{"position":[[19,6]]},"318":{"position":[[12,6]]}}}],["gossip",{"_index":203,"t":{"256":{"position":[[2586,6]]}}}],["grade",{"_index":267,"t":{"258":{"position":[[249,5]]},"266":{"position":[[263,5]]}}}],["grafana",{"_index":396,"t":{"266":{"position":[[1239,8]]},"301":{"position":[[87,8]]},"306":{"position":[[18,7],[43,8],[79,7]]},"310":{"position":[[28,7]]},"312":{"position":[[11,7]]}}}],["grow",{"_index":485,"t":{"270":{"position":[[105,4]]}}}],["growth",{"_index":491,"t":{"272":{"position":[[136,6]]}}}],["grpc",{"_index":154,"t":{"256":{"position":[[1212,4],[1239,4],[1271,4],[1318,4],[1355,4],[1392,4],[3204,4]]}}}],["guid",{"_index":354,"t":{"264":{"position":[[403,5]]},"266":{"position":[[326,5],[434,5],[834,5],[936,5],[1278,5],[2134,5]]},"282":{"position":[[242,5]]},"299":{"position":[[303,6]]},"306":{"position":[[26,5]]},"308":{"position":[[39,5]]},"310":{"position":[[41,5]]},"312":{"position":[[32,5]]},"314":{"position":[[188,5]]},"325":{"position":[[410,6]]},"367":{"position":[[222,6]]}}}],["guidelin",{"_index":494,"t":{"272":{"position":[[187,10]]}}}],["gw",{"_index":165,"t":{"256":{"position":[[1429,2],[1490,2]]}}}],["ha",{"_index":459,"t":{"266":{"position":[[3052,3]]}}}],["handl",{"_index":133,"t":{"256":{"position":[[914,7]]}}}],["happen",{"_index":626,"t":{"301":{"position":[[145,9]]}}}],["hardwar",{"_index":277,"t":{"258":{"position":[[377,8]]},"266":{"position":[[486,8],[617,8]]},"268":{"position":[[41,8]]}}}],["hash",{"_index":110,"t":{"256":{"position":[[645,4]]},"266":{"position":[[3179,5]]},"278":{"position":[[460,4]]},"348":{"position":[[294,4]]}}}],["have",{"_index":362,"t":{"264":{"position":[[520,4]]},"266":{"position":[[3482,4]]},"310":{"position":[[323,4]]},"338":{"position":[[11,4]]}}}],["head",{"_index":673,"t":{"318":{"position":[[0,4]]},"323":{"position":[[97,4]]}}}],["header",{"_index":511,"t":{"278":{"position":[[253,6],[704,6]]},"280":{"position":[[315,6],[489,6],[663,6]]},"325":{"position":[[171,6]]}}}],["help",{"_index":87,"t":{"256":{"position":[[62,4],[113,4],[166,4]]}}}],["here'",{"_index":688,"t":{"325":{"position":[[57,6]]}}}],["here’",{"_index":333,"t":{"264":{"position":[[76,6]]}}}],["hesit",{"_index":366,"t":{"264":{"position":[[575,8]]}}}],["hexadecim",{"_index":213,"t":{"256":{"position":[[2771,11]]}}}],["high",{"_index":487,"t":{"272":{"position":[[5,4],[73,4]]}}}],["higher",{"_index":237,"t":{"256":{"position":[[3372,6]]}}}],["home/snapshot",{"_index":591,"t":{"287":{"position":[[43,15]]},"289":{"position":[[235,15]]},"299":{"position":[[99,15]]},"338":{"position":[[68,15],[104,15]]},"340":{"position":[[98,15]]},"363":{"position":[[95,15]]}}}],["home/snapshots/juno_mainnet",{"_index":604,"t":{"289":{"position":[[337,28]]},"299":{"position":[[207,28]]}}}],["home/snapshots/juno_mainnet:/snapshots/juno_mainnet",{"_index":593,"t":{"287":{"position":[[127,52]]},"342":{"position":[[148,52]]},"363":{"position":[[179,52]]}}}],["homebrew",{"_index":615,"t":{"293":{"position":[[73,10]]}}}],["host",{"_index":32,"t":{"250":{"position":[[133,4],[298,4]]},"252":{"position":[[201,4]]},"256":{"position":[[1276,4],[1622,4],[2138,4],[3028,4],[3642,4]]},"276":{"position":[[171,5],[505,4],[582,4]]},"287":{"position":[[235,4]]},"289":{"position":[[312,4]]},"299":{"position":[[182,4]]},"303":{"position":[[171,5],[529,4]]},"342":{"position":[[256,4]]},"346":{"position":[[160,5],[496,4],[567,4]]},"363":{"position":[[287,4]]}}}],["host=0.0.0.0",{"_index":628,"t":{"303":{"position":[[615,12]]}}}],["how",{"_index":221,"t":{"256":{"position":[[2874,3]]},"260":{"position":[[6,3],[108,3],[278,3]]},"264":{"position":[[83,3]]},"266":{"position":[[279,3],[449,3],[661,3],[877,3],[1004,3],[1129,3],[1653,3],[1784,3],[2156,3],[2467,3],[2707,3],[3255,3],[3537,3]]},"299":{"position":[[249,3]]},"314":{"position":[[203,3]]},"325":{"position":[[356,3]]},"367":{"position":[[168,3]]}}}],["howev",{"_index":413,"t":{"266":{"position":[[1533,8]]}}}],["http",{"_index":29,"t":{"250":{"position":[[104,4],[111,4],[128,4],[269,4],[276,4],[293,4]]},"252":{"position":[[175,5],[181,4],[196,4]]},"254":{"position":[[92,5],[103,4]]},"256":{"position":[[1234,4],[1544,4],[1567,4],[1617,4],[1664,4],[1705,4],[1742,4],[3076,4],[3157,4]]},"274":{"position":[[138,4]]},"276":{"position":[[75,5],[93,4],[166,4],[204,4],[284,4],[317,4],[472,4],[481,4],[500,4],[553,4],[560,4],[577,4]]},"287":{"position":[[202,4],[211,4],[230,4]]},"289":{"position":[[279,4],[288,4],[307,4]]},"299":{"position":[[149,4],[158,4],[177,4]]},"342":{"position":[[223,4],[232,4],[251,4],[565,4]]},"363":{"position":[[254,4],[263,4],[282,4]]}}}],["http/http",{"_index":726,"t":{"342":{"position":[[574,13]]}}}],["http://localhost:3100",{"_index":657,"t":{"312":{"position":[[272,22]]}}}],["http://localhost:6060",{"_index":510,"t":{"278":{"position":[[225,23],[676,23],[929,24],[1260,23]]},"280":{"position":[[287,23]]},"325":{"position":[[143,23]]}}}],["http://localhost:6060/v0_6",{"_index":573,"t":{"280":{"position":[[630,28]]}}}],["http://localhost:6060/v0_7",{"_index":572,"t":{"280":{"position":[[456,28]]}}}],["http://localhost:9090",{"_index":652,"t":{"312":{"position":[[144,22]]}}}],["https://data.voyager.onlin",{"_index":309,"t":{"260":{"position":[[514,28]]}}}],["https://github.com/nethermindeth/juno",{"_index":585,"t":{"285":{"position":[[212,37]]},"295":{"position":[[63,37]]}}}],["https://juno",{"_index":702,"t":{"333":{"position":[[49,12],[218,12]]},"336":{"position":[[83,12]]}}}],["hub",{"_index":580,"t":{"285":{"position":[[76,4]]}}}],["i",{"_index":371,"t":{"266":{"position":[[287,1],[669,1],[885,1],[1012,1],[1137,1],[1661,1],[1792,1],[2164,1],[2369,1],[2478,1],[2671,1],[2718,1],[3132,1],[3266,1],[3396,1],[3548,1]]},"333":{"position":[[44,1],[213,1]]}}}],["id",{"_index":104,"t":{"256":{"position":[[481,2],[508,2],[523,2],[550,2]]},"278":{"position":[[199,5],[363,5],[415,5],[650,5],[829,5],[2085,5]]},"280":{"position":[[429,5],[603,5],[777,5]]},"325":{"position":[[281,5],[333,5]]},"342":{"position":[[504,3]]},"348":{"position":[[198,5],[249,5],[447,5],[598,5]]},"350":{"position":[[214,5],[276,5]]},"352":{"position":[[257,5],[287,5],[333,5]]},"354":{"position":[[161,5],[212,5],[525,5],[574,5]]}}}],["idea",{"_index":323,"t":{"262":{"position":[[217,5]]}}}],["if",{"_index":345,"t":{"264":{"position":[[320,2],[452,2]]},"266":{"position":[[2851,2]]},"276":{"position":[[246,2],[355,2]]},"278":{"position":[[1321,2],[1455,2]]},"303":{"position":[[250,2],[370,2]]},"346":{"position":[[240,2],[352,2]]},"361":{"position":[[43,2]]}}}],["ignorecase=1",{"_index":705,"t":{"333":{"position":[[118,12],[287,12]]}}}],["imag",{"_index":38,"t":{"250":{"position":[[210,5]]},"285":{"position":[[12,6],[101,6],[159,5],[277,5]]},"291":{"position":[[40,5]]},"297":{"position":[[48,5]]},"359":{"position":[[32,5]]},"363":{"position":[[45,6]]},"367":{"position":[[108,5]]}}}],["implement",{"_index":249,"t":{"258":{"position":[[13,14]]},"266":{"position":[[27,14]]}}}],["import",{"_index":532,"t":{"278":{"position":[[1073,6]]},"356":{"position":[[6,9]]}}}],["improv",{"_index":773,"t":{"356":{"position":[[108,12]]}}}],["in",{"_index":46,"t":{"252":{"position":[[132,2],[241,2],[519,2]]},"254":{"position":[[450,2],[519,2]]},"256":{"position":[[226,2],[849,3],[891,2],[1187,2],[3301,2],[3543,2]]},"262":{"position":[[84,2]]},"264":{"position":[[473,2]]},"266":{"position":[[2389,2],[3018,2]]},"280":{"position":[[231,2]]},"299":{"position":[[29,2]]},"308":{"position":[[98,2]]}}}],["incom",{"_index":185,"t":{"256":{"position":[[1946,8]]}}}],["index",{"_index":268,"t":{"258":{"position":[[255,9]]},"266":{"position":[[269,9]]}}}],["info",{"_index":65,"t":{"254":{"position":[[70,4],[395,4]]},"256":{"position":[[1789,4],[1817,5]]},"342":{"position":[[332,4]]},"354":{"position":[[266,5],[318,5],[381,5],[432,5]]},"356":{"position":[[236,4]]}}}],["inform",{"_index":325,"t":{"262":{"position":[[232,8]]},"266":{"position":[[648,12],[2356,12]]}}}],["infura",{"_index":721,"t":{"342":{"position":[[416,6],[489,6]]}}}],["insert",{"_index":763,"t":{"354":{"position":[[294,9]]}}}],["insight",{"_index":320,"t":{"262":{"position":[[175,8]]},"301":{"position":[[114,8]]}}}],["instal",{"_index":438,"t":{"266":{"position":[[2579,7]]},"293":{"position":[[97,7],[129,7]]},"306":{"position":[[35,7]]},"308":{"position":[[48,7]]},"310":{"position":[[50,7]]}}}],["instanc",{"_index":188,"t":{"256":{"position":[[2008,9]]},"323":{"position":[[42,8]]}}}],["instead",{"_index":725,"t":{"342":{"position":[[550,7]]}}}],["instruct",{"_index":390,"t":{"266":{"position":[[946,12]]}}}],["insuffici",{"_index":450,"t":{"266":{"position":[[2864,12]]}}}],["integr",{"_index":193,"t":{"256":{"position":[[2361,11]]}}}],["intend",{"_index":492,"t":{"272":{"position":[[150,6]]}}}],["interact",{"_index":302,"t":{"260":{"position":[[247,11],[285,8]]},"266":{"position":[[1014,8],[1050,8]]},"274":{"position":[[0,11]]},"325":{"position":[[8,8]]}}}],["interest",{"_index":359,"t":{"264":{"position":[[462,10]]}}}],["interfac",{"_index":159,"t":{"256":{"position":[[1295,9],[1607,9],[1641,9],[2157,9],[3047,9],[3661,9]]},"258":{"position":[[583,10]]},"260":{"position":[[337,10]]},"266":{"position":[[1117,11],[1845,9]]},"276":{"position":[[23,10],[133,9],[181,9]]},"303":{"position":[[181,9]]},"325":{"position":[[46,10]]},"344":{"position":[[30,9]]},"346":{"position":[[170,9]]}}}],["interrupt",{"_index":446,"t":{"266":{"position":[[2806,11]]}}}],["interv",{"_index":220,"t":{"256":{"position":[[2858,8]]}}}],["into",{"_index":481,"t":{"268":{"position":[[116,4]]},"340":{"position":[[49,4]]}}}],["invalid",{"_index":469,"t":{"266":{"position":[[3445,7]]}}}],["involv",{"_index":332,"t":{"264":{"position":[[63,12]]}}}],["is",{"_index":89,"t":{"256":{"position":[[177,2],[3344,2]]},"258":{"position":[[5,2]]},"266":{"position":[[5,2],[19,2],[1342,2],[1471,2],[2763,2],[2949,2]]},"301":{"position":[[142,2],[165,2]]},"312":{"position":[[126,2],[254,2]]},"314":{"position":[[241,2],[283,2]]},"350":{"position":[[303,2]]},"356":{"position":[[3,2]]},"363":{"position":[[357,2]]}}}],["issu",{"_index":358,"t":{"264":{"position":[[444,7]]},"266":{"position":[[3012,5],[3293,6],[3606,5]]}}}],["it",{"_index":260,"t":{"258":{"position":[[160,3]]},"266":{"position":[[174,3],[1451,3]]},"276":{"position":[[258,2],[367,2]]},"303":{"position":[[262,2],[382,2]]},"314":{"position":[[207,2]]},"323":{"position":[[59,3]]},"325":{"position":[[33,3]]},"346":{"position":[[252,2],[364,2]]},"356":{"position":[[0,2]]}}}],["jemalloc",{"_index":613,"t":{"293":{"position":[[51,8],[137,8]]}}}],["job",{"_index":644,"t":{"310":{"position":[[271,4]]}}}],["job_nam",{"_index":634,"t":{"308":{"position":[[173,9]]},"310":{"position":[[241,9]]}}}],["join",{"_index":310,"t":{"262":{"position":[[0,4]]},"264":{"position":[[375,4]]}}}],["json",{"_index":280,"t":{"258":{"position":[[417,4]]},"260":{"position":[[314,4]]},"266":{"position":[[1094,4]]},"274":{"position":[[60,4]]},"276":{"position":[[14,4]]},"325":{"position":[[37,4]]},"344":{"position":[[72,4]]}}}],["jsonrpc",{"_index":506,"t":{"278":{"position":[[141,10],[305,10],[376,10],[577,10],[756,10],[1946,10]]},"280":{"position":[[367,10],[541,10],[715,10]]},"325":{"position":[[223,10],[294,10]]},"348":{"position":[[140,10],[210,10],[374,10],[459,10]]},"350":{"position":[[146,10],[226,10],[353,10]]},"352":{"position":[[197,10],[299,10]]},"354":{"position":[[116,11],[172,11],[480,11],[534,11]]}}}],["jsonrpc::{httptransport",{"_index":547,"t":{"278":{"position":[[1560,24]]}}}],["jsonrpcclient",{"_index":548,"t":{"278":{"position":[[1585,15]]}}}],["jsonrpcclient::new(httptransport::new",{"_index":553,"t":{"278":{"position":[[1667,38]]}}}],["juno",{"_index":0,"t":{"248":{"position":[[0,4]]},"250":{"position":[[0,4],[234,5]]},"252":{"position":[[0,4],[222,4],[353,4]]},"254":{"position":[[0,4],[159,4],[412,4]]},"256":{"position":[[229,5],[1003,4],[1132,4],[2519,4],[3225,4]]},"258":{"position":[[0,4],[188,4]]},"260":{"position":[[39,4],[92,4],[143,4],[156,4],[264,4],[299,4],[362,4]]},"262":{"position":[[106,4],[253,4]]},"264":{"position":[[116,4],[169,4],[310,5],[507,4]]},"266":{"position":[[8,5],[14,4],[202,4],[293,5],[321,4],[380,4],[422,4],[460,4],[520,5],[547,4],[684,4],[713,4],[829,4],[897,4],[931,4],[1031,4],[1074,4],[1150,4],[1161,4],[1273,4],[1668,4],[1779,4],[1966,4],[2025,4],[2180,5],[2208,4],[2551,5],[2665,5],[3249,5]]},"268":{"position":[[68,4]]},"274":{"position":[[17,4],[82,4]]},"276":{"position":[[430,4]]},"278":{"position":[[54,5],[86,4]]},"280":{"position":[[0,4]]},"282":{"position":[[14,4]]},"285":{"position":[[0,4],[186,4],[253,4]]},"287":{"position":[[102,4],[372,4]]},"289":{"position":[[173,4],[268,6]]},"291":{"position":[[18,4]]},"295":{"position":[[104,4]]},"297":{"position":[[24,4]]},"299":{"position":[[266,5],[298,4]]},"301":{"position":[[0,4],[160,4]]},"303":{"position":[[445,4]]},"308":{"position":[[76,4],[183,6]]},"310":{"position":[[100,5],[251,5],[276,6],[328,4]]},"314":{"position":[[0,4],[163,4],[310,4],[355,4]]},"316":{"position":[[7,4]]},"320":{"position":[[42,4]]},"325":{"position":[[22,4],[104,5],[373,5],[405,4]]},"327":{"position":[[35,4]]},"342":{"position":[[32,4],[123,4]]},"344":{"position":[[0,4]]},"346":{"position":[[427,4]]},"348":{"position":[[54,5],[86,4]]},"356":{"position":[[45,4],[174,5]]},"359":{"position":[[20,4]]},"361":{"position":[[27,4],[141,4],[228,4]]},"363":{"position":[[154,4],[416,4]]},"365":{"position":[[36,4]]},"367":{"position":[[77,4],[185,5],[217,4]]}}}],["juno'",{"_index":595,"t":{"289":{"position":[[34,6]]},"295":{"position":[[6,6]]}}}],["juno@nethermind.io",{"_index":369,"t":{"264":{"position":[[602,18]]}}}],["juno_",{"_index":45,"t":{"252":{"position":[[90,5]]}}}],["juno_http=tru",{"_index":52,"t":{"252":{"position":[[257,14],[403,15]]}}}],["juno_http_host=0.0.0.0",{"_index":54,"t":{"252":{"position":[[292,22],[439,23]]}}}],["juno_http_port=6060",{"_index":53,"t":{"252":{"position":[[272,19],[419,19]]}}}],["juno_mainnet.tar",{"_index":693,"t":{"329":{"position":[[31,16]]},"336":{"position":[[66,16]]},"340":{"position":[[78,16]]}}}],["juno_sepolia.tar",{"_index":694,"t":{"331":{"position":[[31,16]]}}}],["juno_subscribenewhead",{"_index":422,"t":{"266":{"position":[[1866,22]]},"350":{"position":[[32,22],[174,25],[381,25]]}}}],["juno_unsubscrib",{"_index":754,"t":{"352":{"position":[[8,16],[225,19]]}}}],["juno_vers",{"_index":503,"t":{"278":{"position":[[100,12],[169,15],[333,15]]},"325":{"position":[[251,15]]},"348":{"position":[[100,12],[168,15]]},"354":{"position":[[145,15],[509,15]]}}}],["key",{"_index":167,"t":{"256":{"position":[[1436,3],[1444,3],[2753,3],[2811,3]]}}}],["kill",{"_index":468,"t":{"266":{"position":[[3420,6]]}}}],["knowledg",{"_index":419,"t":{"266":{"position":[[1615,9]]}}}],["l",{"_index":623,"t":{"295":{"position":[[134,1]]},"333":{"position":[[47,1],[216,1]]}}}],["l1",{"_index":102,"t":{"256":{"position":[[472,2],[499,2]]}}}],["l1_da_mod",{"_index":749,"t":{"350":{"position":[[993,13]]}}}],["l1_data_gas_pric",{"_index":746,"t":{"350":{"position":[[899,20]]}}}],["l1_gas_pric",{"_index":741,"t":{"350":{"position":[[816,15]]}}}],["l2",{"_index":105,"t":{"256":{"position":[[514,2],[541,2],[1122,2]]}}}],["label",{"_index":643,"t":{"310":{"position":[[263,7]]}}}],["latenc",{"_index":288,"t":{"258":{"position":[[520,8]]}}}],["later",{"_index":607,"t":{"293":{"position":[[15,5]]}}}],["latest",{"_index":319,"t":{"262":{"position":[[159,6]]},"266":{"position":[[988,6],[2533,6],[2627,6],[3166,6]]},"280":{"position":[[250,6]]},"285":{"position":[[94,6]]},"291":{"position":[[81,6]]},"356":{"position":[[27,6]]},"359":{"position":[[13,6]]},"365":{"position":[[13,6]]},"367":{"position":[[11,6]]}}}],["launch",{"_index":660,"t":{"314":{"position":[[181,6]]}}}],["learn",{"_index":295,"t":{"260":{"position":[[0,5],[102,5]]},"266":{"position":[[335,5],[443,5],[843,5]]},"299":{"position":[[243,5]]},"314":{"position":[[197,5]]},"325":{"position":[[350,5]]},"367":{"position":[[162,5]]}}}],["least",{"_index":381,"t":{"266":{"position":[[560,5]]},"270":{"position":[[8,5]]},"272":{"position":[[102,5]]}}}],["length",{"_index":706,"t":{"333":{"position":[[142,7],[311,7]]}}}],["let",{"_index":552,"t":{"278":{"position":[[1652,3],[1756,3]]}}}],["level",{"_index":64,"t":{"254":{"position":[[63,6]]},"256":{"position":[[1783,5]]}}}],["libjemalloc",{"_index":619,"t":{"293":{"position":[[108,11]]}}}],["like",{"_index":444,"t":{"266":{"position":[[2777,6]]},"350":{"position":[[340,4]]},"354":{"position":[[51,4]]}}}],["limit",{"_index":136,"t":{"256":{"position":[[934,5],[3338,5]]},"258":{"position":[[356,7]]}}}],["line",{"_index":14,"t":{"248":{"position":[[94,4]]},"250":{"position":[[47,4],[184,4],[323,4]]},"252":{"position":[[556,4]]},"254":{"position":[[556,4]]},"256":{"position":[[30,4]]},"266":{"position":[[732,4]]},"354":{"position":[[308,4]]}}}],["link",{"_index":691,"t":{"329":{"position":[[17,4]]},"331":{"position":[[17,4]]}}}],["linux",{"_index":599,"t":{"289":{"position":[[77,5]]}}}],["list",{"_index":83,"t":{"256":{"position":[[3,4],[182,4],[2655,4]]}}}],["listen",{"_index":162,"t":{"256":{"position":[[1335,6],[1409,6],[1685,6],[1759,6],[2205,6],[2290,6],[3093,6],[3174,6],[3710,6],[3787,6]]},"276":{"position":[[225,6],[334,6]]},"303":{"position":[[229,6],[349,6]]},"346":{"position":[[219,6],[331,6]]}}}],["local",{"_index":582,"t":{"285":{"position":[[165,8]]}}}],["localhost",{"_index":158,"t":{"256":{"position":[[1281,9],[1627,9],[2143,9],[3033,9],[3647,9]]},"276":{"position":[[273,10]]},"303":{"position":[[277,10]]},"346":{"position":[[267,10]]}}}],["localhost:9090",{"_index":637,"t":{"308":{"position":[[217,18]]}}}],["locat",{"_index":140,"t":{"256":{"position":[[1008,8]]},"278":{"position":[[216,8],[667,8]]},"280":{"position":[[278,8],[447,8],[621,8]]},"299":{"position":[[0,6]]},"325":{"position":[[134,8]]}}}],["log",{"_index":63,"t":{"254":{"position":[[59,3]]},"256":{"position":[[1779,3]]},"266":{"position":[[1673,4],[1704,4],[1771,4],[2395,4]]},"278":{"position":[[1098,5]]},"287":{"position":[[297,4],[364,4]]},"310":{"position":[[90,4],[134,3],[183,4],[257,5],[339,4]]},"363":{"position":[[411,4]]}}}],["log.fatal(err",{"_index":542,"t":{"278":{"position":[[1337,14],[1471,14]]}}}],["loki",{"_index":638,"t":{"310":{"position":[[36,4],[58,5],[74,4],[191,5],[204,4]]},"312":{"position":[[206,4],[249,4]]}}}],["loki'",{"_index":641,"t":{"310":{"position":[[160,7]]}}}],["look",{"_index":78,"t":{"254":{"position":[[417,5]]}}}],["machin",{"_index":672,"t":{"316":{"position":[[85,7]]}}}],["maco",{"_index":473,"t":{"266":{"position":[[3530,6]]},"289":{"position":[[105,5],[124,5]]},"293":{"position":[[67,5]]}}}],["made",{"_index":172,"t":{"256":{"position":[[1524,4]]}}}],["main",{"_index":531,"t":{"278":{"position":[[1068,4],[1241,6],[1643,6]]}}}],["mainnet",{"_index":67,"t":{"254":{"position":[[84,7]]},"256":{"position":[[2318,7],[2335,8]]},"258":{"position":[[317,8]]},"266":{"position":[[2071,7]]}}}],["maintain",{"_index":439,"t":{"266":{"position":[[2595,8]]}}}],["make",{"_index":348,"t":{"264":{"position":[[339,4]]},"297":{"position":[[19,4]]},"367":{"position":[[72,4]]}}}],["manag",{"_index":296,"t":{"260":{"position":[[27,6]]}}}],["marketplac",{"_index":674,"t":{"318":{"position":[[19,11]]}}}],["match",{"_index":556,"t":{"278":{"position":[[1809,5]]}}}],["max",{"_index":132,"t":{"256":{"position":[[910,3],[1835,3],[1852,3],[1912,3],[1964,3],[3244,3],[3474,3]]}}}],["maximum",{"_index":181,"t":{"256":{"position":[[1860,7],[1986,7],[3262,7],[3510,7]]}}}],["may",{"_index":669,"t":{"314":{"position":[[366,3]]}}}],["megabyt",{"_index":128,"t":{"256":{"position":[[853,10]]}}}],["memori",{"_index":127,"t":{"256":{"position":[[842,6]]}}}],["messag",{"_index":730,"t":{"350":{"position":[[332,7]]}}}],["method",{"_index":6,"t":{"248":{"position":[[37,8]]},"266":{"position":[[1889,6]]},"274":{"position":[[73,8]]},"278":{"position":[[113,7],[159,9],[323,9],[513,7],[595,9],[774,9]]},"280":{"position":[[385,9],[559,9],[733,9]]},"282":{"position":[[38,8]]},"325":{"position":[[241,9]]},"348":{"position":[[113,7],[158,9],[347,7],[392,9]]},"350":{"position":[[55,6],[164,9],[371,9]]},"352":{"position":[[25,6],[215,9]]},"354":{"position":[[135,9],[499,9]]}}}],["metric",{"_index":69,"t":{"254":{"position":[[119,8],[133,7]]},"256":{"position":[[2056,7],[2093,7],[2130,7],[2225,7]]},"266":{"position":[[1175,7]]},"301":{"position":[[44,7]]},"303":{"position":[[14,7],[71,8],[103,7],[163,7],[288,7],[487,7],[499,7],[521,7],[577,7],[587,7],[607,7]]},"308":{"position":[[81,7]]}}}],["might",{"_index":639,"t":{"310":{"position":[[110,5]]}}}],["migrat",{"_index":442,"t":{"266":{"position":[[2693,9],[2825,10]]}}}],["million",{"_index":235,"t":{"256":{"position":[[3349,7],[3411,7]]}}}],["minim",{"_index":286,"t":{"258":{"position":[[499,7]]},"268":{"position":[[121,7]]},"272":{"position":[[202,7]]}}}],["mkdir",{"_index":590,"t":{"287":{"position":[[34,5]]},"289":{"position":[[226,5]]},"299":{"position":[[90,5]]},"338":{"position":[[95,5]]},"363":{"position":[[86,5]]}}}],["mode",{"_index":764,"t":{"354":{"position":[[313,4]]}}}],["modifi",{"_index":472,"t":{"266":{"position":[[3492,9]]}}}],["monitor",{"_index":392,"t":{"266":{"position":[[1139,7],[1262,10]]},"301":{"position":[[24,7]]}}}],["more",{"_index":387,"t":{"266":{"position":[[643,4],[2351,4]]},"270":{"position":[[34,4],[57,4]]},"272":{"position":[[36,4],[59,4]]}}}],["most",{"_index":517,"t":{"278":{"position":[[433,4]]},"348":{"position":[[267,4]]}}}],["multiaddr",{"_index":199,"t":{"256":{"position":[[2469,9]]}}}],["must",{"_index":148,"t":{"256":{"position":[[1137,4]]}}}],["my",{"_index":388,"t":{"266":{"position":[[681,2],[894,2],[1028,2],[1147,2],[2392,2]]}}}],["name",{"_index":27,"t":{"250":{"position":[[83,5],[216,4]]},"252":{"position":[[79,5]]},"256":{"position":[[556,4],[576,4]]},"276":{"position":[[425,4]]},"287":{"position":[[97,4]]},"303":{"position":[[440,4]]},"323":{"position":[[13,4]]},"342":{"position":[[118,4]]},"346":{"position":[[422,4]]},"361":{"position":[[77,5]]},"363":{"position":[[149,4]]}}}],["need",{"_index":474,"t":{"266":{"position":[[3563,4]]},"270":{"position":[[94,5]]},"272":{"position":[[337,6]]},"310":{"position":[[116,4]]}}}],["nethermind",{"_index":253,"t":{"258":{"position":[[70,10]]},"260":{"position":[[470,10]]},"262":{"position":[[189,11]]},"266":{"position":[[84,10]]},"316":{"position":[[111,11]]}}}],["nethermind/juno",{"_index":40,"t":{"250":{"position":[[251,15]]},"252":{"position":[[465,15]]},"254":{"position":[[351,15]]},"256":{"position":[[148,15]]},"276":{"position":[[452,15]]},"285":{"position":[[39,15],[120,15]]},"287":{"position":[[182,15]]},"303":{"position":[[467,15]]},"342":{"position":[[203,15]]},"346":{"position":[[449,15]]},"359":{"position":[[47,15]]},"363":{"position":[[234,15]]}}}],["nethermind/juno:latest",{"_index":588,"t":{"285":{"position":[[299,22]]},"297":{"position":[[70,22]]},"359":{"position":[[87,22]]},"367":{"position":[[130,22]]}}}],["network",{"_index":66,"t":{"254":{"position":[[75,8]]},"256":{"position":[[357,7],[408,7],[449,7],[491,7],[533,7],[568,7],[613,7],[2310,7],[2615,7]]},"258":{"position":[[140,7],[632,8]]},"260":{"position":[[439,7]]},"264":{"position":[[153,8]]},"266":{"position":[[154,7],[1381,8],[2091,9],[3208,7],[3355,7],[3387,8]]},"282":{"position":[[200,8]]},"314":{"position":[[140,8],[315,9]]},"327":{"position":[[63,7]]}}}],["network'",{"_index":410,"t":{"266":{"position":[[1494,9],[1632,9]]}}}],["new",{"_index":204,"t":{"256":{"position":[[2597,3]]},"262":{"position":[[166,4]]},"264":{"position":[[257,3]]},"266":{"position":[[1819,3],[1921,3],[2283,3]]},"278":{"position":[[902,3]]},"350":{"position":[[87,3],[293,3]]},"352":{"position":[[120,3],[166,3]]},"356":{"position":[[72,3]]},"361":{"position":[[205,3]]},"363":{"position":[[6,3]]}}}],["new_root",{"_index":735,"t":{"350":{"position":[[620,11]]}}}],["newli",{"_index":678,"t":{"323":{"position":[[25,5]]},"344":{"position":[[126,5]]}}}],["nil",{"_index":541,"t":{"278":{"position":[[1331,3],[1465,3]]}}}],["node",{"_index":142,"t":{"256":{"position":[[1043,4],[1083,5],[1165,4],[2490,4],[2536,4],[2735,5],[3230,4]]},"258":{"position":[[47,4],[90,4],[210,4]]},"260":{"position":[[44,4],[97,4],[148,4],[239,4],[425,4]]},"264":{"position":[[121,4]]},"266":{"position":[[61,4],[104,4],[224,4],[385,5],[689,5],[902,5],[976,4],[1036,5],[1079,4],[1155,5],[1303,4],[1411,4],[1554,4],[2226,5],[2795,4],[2973,4],[3088,4],[3320,4]]},"268":{"position":[[73,5]]},"272":{"position":[[237,4]]},"274":{"position":[[114,4]]},"278":{"position":[[30,4]]},"282":{"position":[[19,4],[186,4]]},"314":{"position":[[34,4],[360,5]]},"318":{"position":[[60,6]]},"327":{"position":[[160,5]]},"342":{"position":[[311,4],[326,5],[355,5],[406,5]]},"348":{"position":[[30,4]]},"356":{"position":[[265,5]]},"363":{"position":[[352,4]]}}}],["nodeurl",{"_index":527,"t":{"278":{"position":[[920,8]]}}}],["non",{"_index":668,"t":{"314":{"position":[[351,3]]}}}],["not",{"_index":405,"t":{"266":{"position":[[1421,3]]}}}],["note",{"_index":484,"t":{"270":{"position":[[80,5]]}}}],["notic",{"_index":429,"t":{"266":{"position":[[2371,7]]}}}],["number",{"_index":137,"t":{"256":{"position":[[947,6],[1868,6],[1994,6],[3270,6],[3518,6]]},"278":{"position":[[469,6]]},"348":{"position":[[303,6]]}}}],["o",{"_index":716,"t":{"336":{"position":[[64,1]]}}}],["occur",{"_index":448,"t":{"266":{"position":[[2845,5]]}}}],["of",{"_index":11,"t":{"248":{"position":[[71,2]]},"254":{"position":[[233,2]]},"256":{"position":[[187,2],[627,2],[839,2],[954,2],[1017,2],[1067,2],[1115,2],[2660,2],[2798,2],[2945,2],[3213,2],[3277,2],[3525,2]]},"258":{"position":[[28,2],[625,2]]},"266":{"position":[[42,2],[570,2],[587,2],[1625,2],[1816,2],[2548,2]]},"274":{"position":[[100,2]]},"278":{"position":[[16,2],[83,2]]},"314":{"position":[[124,2]]},"323":{"position":[[18,2]]},"325":{"position":[[101,2]]},"327":{"position":[[28,2]]},"336":{"position":[[36,2]]},"340":{"position":[[21,2]]},"342":{"position":[[389,2],[558,2]]},"344":{"position":[[58,2]]},"348":{"position":[[16,2],[83,2]]},"356":{"position":[[42,2]]},"361":{"position":[[60,2]]}}}],["ok(block_hash_and_numb",{"_index":557,"t":{"278":{"position":[[1824,25]]}}}],["old",{"_index":779,"t":{"361":{"position":[[157,3]]}}}],["on",{"_index":21,"t":{"250":{"position":[[32,2]]},"256":{"position":[[940,2],[1251,2],[1305,2],[1379,2],[1583,2],[1651,2],[1729,2],[2110,2],[2167,2],[2252,2],[2815,2],[3002,2],[3057,2],[3138,2],[3453,2],[3619,2],[3671,2],[3752,2]]},"258":{"position":[[314,2]]},"264":{"position":[[181,2],[215,2]]},"266":{"position":[[427,2],[465,2],[959,2],[2241,2],[3527,2]]},"276":{"position":[[109,2],[191,2],[304,2]]},"285":{"position":[[66,2]]},"303":{"position":[[120,2],[191,2],[311,2]]},"314":{"position":[[299,2]]},"316":{"position":[[12,2]]},"323":{"position":[[6,2]]},"336":{"position":[[32,3]]},"346":{"position":[[114,2],[180,2],[296,2]]},"365":{"position":[[87,4]]}}}],["onli",{"_index":200,"t":{"256":{"position":[[2552,4]]},"258":{"position":[[364,4]]},"266":{"position":[[2935,4]]},"327":{"position":[[85,4]]}}}],["open",{"_index":138,"t":{"256":{"position":[[957,4]]}}}],["oper",{"_index":255,"t":{"258":{"position":[[95,9]]},"260":{"position":[[126,7]]},"266":{"position":[[109,9],[1308,9],[1542,9],[1642,10]]},"272":{"position":[[242,11]]}}}],["optim",{"_index":496,"t":{"272":{"position":[[290,7]]}}}],["option",{"_index":26,"t":{"250":{"position":[[76,6]]},"252":{"position":[[124,7],[379,7]]},"254":{"position":[[206,6]]},"256":{"position":[[35,8],[208,7],[292,6],[1794,8],[2326,8]]},"260":{"position":[[175,7],[213,7]]},"266":{"position":[[3216,6],[3363,6]]},"276":{"position":[[66,8]]},"303":{"position":[[62,8]]},"342":{"position":[[92,7]]},"346":{"position":[[68,8]]}}}],["or",{"_index":210,"t":{"256":{"position":[[2724,2]]},"264":{"position":[[246,2],[517,2],[541,2]]},"266":{"position":[[1339,2],[3469,2]]},"270":{"position":[[31,2],[54,2]]},"272":{"position":[[33,2],[56,2]]},"280":{"position":[[102,2],[158,2]]},"289":{"position":[[138,2]]},"291":{"position":[[30,2],[96,2]]},"293":{"position":[[12,2],[42,2]]},"310":{"position":[[144,2]]},"352":{"position":[[85,2]]},"354":{"position":[[62,2]]},"367":{"position":[[84,2]]}}}],["order",{"_index":10,"t":{"248":{"position":[[65,5]]}}}],["other",{"_index":344,"t":{"264":{"position":[[284,6]]}}}],["our",{"_index":311,"t":{"262":{"position":[[5,3]]},"264":{"position":[[380,3]]},"295":{"position":[[30,3]]}}}],["out",{"_index":373,"t":{"266":{"position":[[305,3],[609,3],[809,3],[914,3],[1254,3],[2107,3],[2303,3]]},"282":{"position":[[215,3]]},"299":{"position":[[278,3]]},"314":{"position":[[155,3]]},"325":{"position":[[385,3]]},"367":{"position":[[197,3]]}}}],["outlin",{"_index":479,"t":{"268":{"position":[[29,7]]}}}],["output",{"_index":117,"t":{"256":{"position":[[738,7]]}}}],["over",{"_index":486,"t":{"270":{"position":[[110,4]]},"274":{"position":[[133,4]]},"356":{"position":[[121,4]]}}}],["overrid",{"_index":42,"t":{"250":{"position":[[339,8]]},"252":{"position":[[572,8]]},"254":{"position":[[598,8]]}}}],["own",{"_index":299,"t":{"260":{"position":[[139,3]]}}}],["p",{"_index":501,"t":{"276":{"position":[[438,1]]},"287":{"position":[[41,1],[110,1]]},"289":{"position":[[233,1]]},"299":{"position":[[97,1]]},"303":{"position":[[453,1]]},"338":{"position":[[102,1]]},"342":{"position":[[131,1]]},"346":{"position":[[435,1]]},"363":{"position":[[93,1],[162,1]]}}}],["p2p",{"_index":194,"t":{"256":{"position":[[2373,3],[2405,3],[2416,3],[2447,3],[2479,3],[2623,3],[2663,3],[2741,3]]},"314":{"position":[[229,3]]}}}],["packag",{"_index":530,"t":{"278":{"position":[[1060,7]]}}}],["page",{"_index":428,"t":{"266":{"position":[[2342,4]]},"365":{"position":[[57,4]]}}}],["param",{"_index":508,"t":{"278":{"position":[[185,9],[349,9],[636,9],[815,9]]},"280":{"position":[[415,9],[589,9],[763,9]]},"325":{"position":[[267,9]]},"348":{"position":[[184,9],[433,9]]},"350":{"position":[[200,9],[407,9]]},"352":{"position":[[245,9]]}}}],["paramet",{"_index":15,"t":{"248":{"position":[[99,10]]},"250":{"position":[[189,10],[328,10]]},"252":{"position":[[561,10]]},"254":{"position":[[561,10]]},"256":{"position":[[67,10]]},"266":{"position":[[737,11]]}}}],["parent_hash",{"_index":732,"t":{"350":{"position":[[513,14]]}}}],["pars",{"_index":151,"t":{"256":{"position":[[1174,5]]}}}],["particip",{"_index":401,"t":{"266":{"position":[[1345,13]]}}}],["partnership",{"_index":361,"t":{"264":{"position":[[486,11]]},"266":{"position":[[2329,12]]}}}],["patch",{"_index":772,"t":{"356":{"position":[[95,8]]}}}],["path",{"_index":73,"t":{"254":{"position":[[228,4],[315,5],[389,5]]},"256":{"position":[[998,4]]},"287":{"position":[[255,4]]},"289":{"position":[[332,4]]},"299":{"position":[[202,4]]},"310":{"position":[[138,5]]},"342":{"position":[[53,4],[87,4],[276,4]]},"356":{"position":[[287,4]]},"363":{"position":[[307,4]]}}}],["path/juno.log",{"_index":648,"t":{"310":{"position":[[388,14]]}}}],["path/to/juno/log",{"_index":646,"t":{"310":{"position":[[293,22]]}}}],["peer",{"_index":205,"t":{"256":{"position":[[2627,5],[2667,5],[2697,5]]},"314":{"position":[[21,4],[29,4],[168,4],[176,4]]}}}],["pend",{"_index":218,"t":{"256":{"position":[[2845,7],[2889,7],[2948,7]]}}}],["perform",{"_index":488,"t":{"272":{"position":[[10,11],[78,11],[298,11]]}}}],["pid",{"_index":467,"t":{"266":{"position":[[3414,5]]}}}],["platform",{"_index":577,"t":{"282":{"position":[[116,8]]},"316":{"position":[[32,8]]}}}],["pleas",{"_index":364,"t":{"264":{"position":[[562,6]]}}}],["point",{"_index":285,"t":{"258":{"position":[[489,6]]}}}],["poll",{"_index":219,"t":{"256":{"position":[[2853,4]]}}}],["port",{"_index":30,"t":{"250":{"position":[[116,4],[281,4]]},"252":{"position":[[186,5]]},"254":{"position":[[108,5],[141,5]]},"256":{"position":[[1266,4],[1360,4],[1374,4],[1598,4],[1710,4],[1724,4],[2125,4],[2233,4],[2247,4],[3017,4],[3119,4],[3133,4],[3634,4],[3733,4],[3747,4]]},"276":{"position":[[124,4],[289,5],[299,4],[486,4],[565,4]]},"287":{"position":[[216,4]]},"289":{"position":[[293,4]]},"299":{"position":[[163,4]]},"303":{"position":[[135,4],[296,5],[306,4],[507,4],[595,4]]},"342":{"position":[[237,4]]},"346":{"position":[[129,4],[281,5],[291,4],[479,4],[552,4]]},"363":{"position":[[268,4]]}}}],["pprof",{"_index":226,"t":{"256":{"position":[[2963,5],[2987,5],[3022,5],[3070,5],[3113,5],[3151,5]]}}}],["pr",{"_index":349,"t":{"264":{"position":[[344,3]]}}}],["preced",{"_index":12,"t":{"248":{"position":[[74,11]]},"252":{"position":[[536,11]]},"254":{"position":[[536,11]]},"266":{"position":[[865,11]]}}}],["prefix",{"_index":23,"t":{"250":{"position":[[55,9]]},"252":{"position":[[56,9]]}}}],["prepar",{"_index":589,"t":{"287":{"position":[[2,7]]},"289":{"position":[[194,7]]},"299":{"position":[[58,7]]},"363":{"position":[[54,7]]}}}],["present",{"_index":403,"t":{"266":{"position":[[1390,10]]}}}],["prevent",{"_index":780,"t":{"361":{"position":[[174,7]]}}}],["previou",{"_index":774,"t":{"356":{"position":[[126,8]]}}}],["price_in_fri",{"_index":742,"t":{"350":{"position":[[834,15],[922,15]]}}}],["price_in_wei",{"_index":744,"t":{"350":{"position":[[867,15],[958,15]]}}}],["primari",{"_index":408,"t":{"266":{"position":[[1455,7]]}}}],["printf",{"_index":707,"t":{"333":{"position":[[152,6],[321,6]]}}}],["println!(\"{block_hash_and_numb",{"_index":558,"t":{"278":{"position":[[1855,39]]}}}],["privat",{"_index":212,"t":{"256":{"position":[[2745,7],[2803,7]]}}}],["problem",{"_index":437,"t":{"266":{"position":[[2506,7]]}}}],["proce",{"_index":435,"t":{"266":{"position":[[2480,8],[2720,8],[3268,8],[3550,8]]}}}],["process",{"_index":454,"t":{"266":{"position":[[2922,8],[3406,7]]},"318":{"position":[[128,8]]}}}],["product",{"_index":266,"t":{"258":{"position":[[238,10]]},"266":{"position":[[252,10]]}}}],["project",{"_index":723,"t":{"342":{"position":[[496,7]]}}}],["prometheu",{"_index":191,"t":{"256":{"position":[[2082,10],[2180,10],[2265,10]]},"266":{"position":[[1194,11]]},"301":{"position":[[10,10]]},"303":{"position":[[92,10],[204,10],[324,10]]},"308":{"position":[[28,10],[56,11]]},"312":{"position":[[66,10],[115,10]]}}}],["prometheus.yml",{"_index":632,"t":{"308":{"position":[[105,14],[140,14]]}}}],["promtail",{"_index":640,"t":{"310":{"position":[[151,8]]}}}],["provid",{"_index":414,"t":{"266":{"position":[[1559,8],[1855,8],[1971,7],[2030,8]]},"278":{"position":[[891,8],[1354,8],[1601,9],[1656,8]]},"336":{"position":[[43,8]]},"342":{"position":[[41,7]]},"344":{"position":[[5,8]]},"350":{"position":[[21,8]]}}}],["provider.block_hash_and_number().await",{"_index":555,"t":{"278":{"position":[[1769,39]]}}}],["provider.blockhashandnumber(context.background",{"_index":544,"t":{"278":{"position":[[1405,49]]}}}],["provider.getblocklatestaccepted().then((blockhashandnumb",{"_index":528,"t":{"278":{"position":[[958,59]]}}}],["ps",{"_index":777,"t":{"361":{"position":[[94,2]]}}}],["pull",{"_index":581,"t":{"285":{"position":[[115,4]]},"359":{"position":[[82,4]]},"367":{"position":[[2,4],[46,4]]}}}],["purpos",{"_index":409,"t":{"266":{"position":[[1463,7]]}}}],["queue",{"_index":179,"t":{"256":{"position":[[1842,5],[1891,5]]}}}],["quickli",{"_index":306,"t":{"260":{"position":[[407,7]]},"266":{"position":[[2011,8]]},"282":{"position":[[161,7]]}}}],["ram",{"_index":383,"t":{"266":{"position":[[573,3],[2903,4]]},"270":{"position":[[22,4]]},"272":{"position":[[47,4]]}}}],["rang",{"_index":107,"t":{"256":{"position":[[597,5],[621,5]]}}}],["rank",{"_index":58,"t":{"252":{"position":[[507,4]]},"254":{"position":[[508,4]]}}}],["raw",{"_index":504,"t":{"278":{"position":[[121,3],[521,3]]}}}],["re",{"_index":475,"t":{"266":{"position":[[3571,2]]}}}],["reach",{"_index":182,"t":{"256":{"position":[[1903,8]]}}}],["readi",{"_index":347,"t":{"264":{"position":[[330,5]]}}}],["real",{"_index":293,"t":{"258":{"position":[[607,4]]},"262":{"position":[[87,4]]},"266":{"position":[[1798,4]]}}}],["rebuild",{"_index":786,"t":{"367":{"position":[[53,7],[89,7]]}}}],["receiv",{"_index":399,"t":{"266":{"position":[[1318,7],[2673,7],[3134,7],[3398,7]]},"350":{"position":[[322,7]]},"352":{"position":[[144,9]]}}}],["recent",{"_index":518,"t":{"278":{"position":[[438,6]]},"348":{"position":[[272,6]]}}}],["recommend",{"_index":380,"t":{"266":{"position":[[529,9]]},"268":{"position":[[133,11]]},"270":{"position":[[67,12]]},"272":{"position":[[262,11]]}}}],["reduc",{"_index":690,"t":{"327":{"position":[[52,6]]}}}],["regular",{"_index":211,"t":{"256":{"position":[[2727,7]]}}}],["reject",{"_index":184,"t":{"256":{"position":[[1939,6]]}}}],["releas",{"_index":596,"t":{"289":{"position":[[48,8]]},"365":{"position":[[48,8]]}}}],["reliabl",{"_index":257,"t":{"258":{"position":[[119,8]]},"266":{"position":[[133,8]]},"314":{"position":[[112,11]]}}}],["remain",{"_index":461,"t":{"266":{"position":[[3093,7]]}}}],["remot",{"_index":228,"t":{"256":{"position":[[3194,6],[3218,6]]}}}],["remov",{"_index":778,"t":{"361":{"position":[[146,6]]}}}],["replac",{"_index":720,"t":{"342":{"position":[[337,7]]},"365":{"position":[[66,7]]}}}],["report",{"_index":339,"t":{"264":{"position":[[234,6]]},"266":{"position":[[2252,9]]}}}],["repositori",{"_index":579,"t":{"285":{"position":[[55,10],[191,10]]},"295":{"position":[[41,11]]},"359":{"position":[[63,11]]}}}],["represent",{"_index":214,"t":{"256":{"position":[[2783,14]]}}}],["request",{"_index":163,"t":{"256":{"position":[[1346,8],[1420,8],[1515,8],[1696,8],[1770,8],[1879,8],[1955,8],[2216,8],[2301,8],[3104,8],[3185,8],[3318,9],[3721,8],[3798,8]]},"264":{"position":[[552,9]]},"274":{"position":[[39,8]]},"276":{"position":[[236,9],[345,9]]},"303":{"position":[[240,9],[360,9]]},"325":{"position":[[110,7]]},"346":{"position":[[230,9],[342,9]]},"348":{"position":[[121,7],[355,7]]},"350":{"position":[[127,7]]},"352":{"position":[[178,7]]}}}],["requir",{"_index":379,"t":{"266":{"position":[[495,12],[626,12]]},"268":{"position":[[50,8],[145,12]]},"272":{"position":[[210,12]]},"274":{"position":[[22,8]]}}}],["require(\"starknet",{"_index":526,"t":{"278":{"position":[[864,20]]}}}],["resili",{"_index":659,"t":{"314":{"position":[[97,10]]}}}],["resolv",{"_index":465,"t":{"266":{"position":[[3280,7],[3593,7]]}}}],["resourc",{"_index":297,"t":{"260":{"position":[[68,10]]},"266":{"position":[[2884,10],[3065,9]]}}}],["respons",{"_index":287,"t":{"258":{"position":[[511,8]]},"278":{"position":[[130,8],[566,8]]},"325":{"position":[[118,8]]},"348":{"position":[[129,8],[363,8]]},"350":{"position":[[135,8]]},"352":{"position":[[76,8],[186,8]]}}}],["restart",{"_index":687,"t":{"323":{"position":[[240,7]]},"356":{"position":[[311,10]]}}}],["result",{"_index":515,"t":{"278":{"position":[[394,9],[1390,7],[1523,7],[1760,6],[1815,6],[1964,9]]},"314":{"position":[[330,7]]},"325":{"position":[[312,9]]},"348":{"position":[[228,9],[477,9]]},"350":{"position":[[244,9],[419,9]]},"352":{"position":[[41,6],[317,9]]},"354":{"position":[[191,9],[553,9]]}}}],["resynchronis",{"_index":456,"t":{"266":{"position":[[2955,13]]}}}],["reward",{"_index":400,"t":{"266":{"position":[[1330,8],[1442,8]]}}}],["rm",{"_index":782,"t":{"361":{"position":[[225,2]]}}}],["rpc",{"_index":173,"t":{"256":{"position":[[1572,3],[1669,3],[2033,3],[3235,3],[3419,3],[3456,3],[3470,3],[3608,3],[3694,3]]},"258":{"position":[[422,3],[507,3]]},"260":{"position":[[319,3],[490,3]]},"266":{"position":[[1099,3]]},"274":{"position":[[65,3]]},"276":{"position":[[19,3],[98,3],[209,3]]},"280":{"position":[[239,3]]},"316":{"position":[[73,3]]},"318":{"position":[[56,3]]},"325":{"position":[[42,3]]},"344":{"position":[[26,3],[77,3]]},"346":{"position":[[24,3],[103,3],[203,3]]}}}],["rpc.newclient(rpcurl",{"_index":540,"t":{"278":{"position":[[1299,21]]}}}],["rpc.newprovider(cli",{"_index":543,"t":{"278":{"position":[[1366,23]]}}}],["rpc/v0_6",{"_index":570,"t":{"280":{"position":[[161,9]]}}}],["rpc/v0_7",{"_index":567,"t":{"280":{"position":[[91,10]]}}}],["rpcprovid",{"_index":525,"t":{"278":{"position":[[848,11],[906,13]]}}}],["rpcurl",{"_index":539,"t":{"278":{"position":[[1250,6]]}}}],["run",{"_index":39,"t":{"250":{"position":[[247,3]]},"252":{"position":[[237,3],[394,3]]},"254":{"position":[[155,3],[347,3]]},"256":{"position":[[144,3],[2515,3]]},"258":{"position":[[556,3]]},"260":{"position":[[82,7]]},"264":{"position":[[110,3]]},"266":{"position":[[289,3],[313,7],[374,3],[414,7],[456,3],[512,7],[539,7],[1066,7],[1401,7],[2216,7],[3241,7],[3508,7]]},"268":{"position":[[62,3]]},"276":{"position":[[414,3]]},"282":{"position":[[8,3]]},"287":{"position":[[61,3],[86,3]]},"289":{"position":[[165,7],[253,3]]},"299":{"position":[[117,3]]},"301":{"position":[[168,8]]},"303":{"position":[[429,3]]},"312":{"position":[[129,8],[257,8]]},"314":{"position":[[12,3]]},"316":{"position":[[3,3]]},"327":{"position":[[152,3]]},"342":{"position":[[0,3],[107,3]]},"346":{"position":[[411,3]]},"356":{"position":[[19,3],[246,7]]},"361":{"position":[[19,7],[109,7]]},"363":{"position":[[0,3],[113,3],[138,3],[360,7]]}}}],["rust",{"_index":608,"t":{"293":{"position":[[21,4]]}}}],["s",{"_index":701,"t":{"333":{"position":[[41,1],[210,1]]}}}],["same",{"_index":775,"t":{"356":{"position":[[279,4]]}}}],["sampl",{"_index":62,"t":{"254":{"position":[[42,6]]},"310":{"position":[[197,6]]}}}],["save",{"_index":654,"t":{"312":{"position":[[177,5],[305,5]]},"323":{"position":[[225,6]]}}}],["say",{"_index":430,"t":{"266":{"position":[[2400,7]]}}}],["scalabl",{"_index":497,"t":{"272":{"position":[[314,11]]}}}],["scan",{"_index":242,"t":{"256":{"position":[[3484,4],[3535,7]]}}}],["scenario",{"_index":483,"t":{"268":{"position":[[178,10]]}}}],["scrape_config",{"_index":633,"t":{"308":{"position":[[155,15]]},"310":{"position":[[223,15]]}}}],["screaming_snake_cas",{"_index":47,"t":{"252":{"position":[[135,20]]}}}],["script",{"_index":684,"t":{"323":{"position":[[162,7]]}}}],["seamless",{"_index":292,"t":{"258":{"position":[[598,8]]}}}],["search",{"_index":675,"t":{"318":{"position":[[35,6]]}}}],["second",{"_index":59,"t":{"252":{"position":[[512,6]]}}}],["section",{"_index":682,"t":{"323":{"position":[[122,7]]}}}],["secur",{"_index":771,"t":{"356":{"position":[[86,8]]}}}],["send",{"_index":498,"t":{"274":{"position":[[31,7]]},"310":{"position":[[178,4]]}}}],["sepolia",{"_index":192,"t":{"256":{"position":[[2344,8],[2353,7]]},"266":{"position":[[2083,7]]}}}],["sequenc",{"_index":278,"t":{"258":{"position":[[394,10]]}}}],["sequencer_address",{"_index":739,"t":{"350":{"position":[[726,20]]}}}],["server",{"_index":157,"t":{"256":{"position":[[1244,6],[1323,6],[1397,6],[1576,6],[1673,6],[1747,6],[2409,6],[3081,6],[3162,6],[3612,6],[3698,6],[3775,6]]},"276":{"position":[[102,6],[213,6],[322,6]]},"303":{"position":[[22,7]]},"346":{"position":[[28,7],[107,6],[207,6],[319,6]]},"350":{"position":[[14,6]]}}}],["servic",{"_index":307,"t":{"260":{"position":[[494,7]]}}}],["set",{"_index":49,"t":{"252":{"position":[[167,3]]},"256":{"position":[[2869,4]]},"260":{"position":[[115,3]]},"272":{"position":[[274,8]]},"306":{"position":[[11,3]]},"320":{"position":[[25,8]]}}}],["setup",{"_index":264,"t":{"258":{"position":[[215,7]]},"266":{"position":[[229,7]]}}}],["sever",{"_index":5,"t":{"248":{"position":[[29,7]]},"282":{"position":[[30,7]]}}}],["share",{"_index":322,"t":{"262":{"position":[[211,5]]},"264":{"position":[[195,5]]}}}],["should",{"_index":50,"t":{"252":{"position":[[227,6]]},"266":{"position":[[2471,6],[2711,6],[3259,6],[3541,6]]},"342":{"position":[[443,6]]}}}],["sign",{"_index":476,"t":{"266":{"position":[[3574,4],[3652,4]]}}}],["signatur",{"_index":470,"t":{"266":{"position":[[3453,9],[3472,9]]}}}],["simplest",{"_index":374,"t":{"266":{"position":[[345,8]]}}}],["singl",{"_index":244,"t":{"256":{"position":[[3546,6]]},"258":{"position":[[482,6]]}}}],["size",{"_index":123,"t":{"256":{"position":[[810,4]]}}}],["skip",{"_index":109,"t":{"256":{"position":[[640,4]]},"276":{"position":[[249,8],[358,8]]},"303":{"position":[[253,8],[373,8]]},"346":{"position":[[243,8],[355,8]]}}}],["small",{"_index":269,"t":{"258":{"position":[[268,5]]}}}],["smaller",{"_index":667,"t":{"314":{"position":[[302,7]]}}}],["smoothli",{"_index":291,"t":{"258":{"position":[[560,9]]}}}],["snapshot",{"_index":305,"t":{"260":{"position":[[367,8],[395,8]]},"266":{"position":[[1979,9],[2039,9],[2124,9]]},"282":{"position":[[149,8],[232,9]]},"287":{"position":[[14,9]]},"289":{"position":[[206,9]]},"299":{"position":[[70,9]]},"327":{"position":[[19,8],[119,8]]},"336":{"position":[[18,8]]},"338":{"position":[[41,10]]},"342":{"position":[[65,8]]},"363":{"position":[[66,9]]}}}],["snapshots.nethermind.dev/files/mainnet/latest",{"_index":703,"t":{"333":{"position":[[62,45]]},"336":{"position":[[96,45]]}}}],["snapshots.nethermind.dev/files/sepolia/latest",{"_index":713,"t":{"333":{"position":[[231,45]]}}}],["snapshots/juno_mainnet",{"_index":594,"t":{"287":{"position":[[260,23]]},"342":{"position":[[281,23]]},"363":{"position":[[312,23]]}}}],["soft",{"_index":135,"t":{"256":{"position":[[929,4]]}}}],["sole",{"_index":402,"t":{"266":{"position":[[1359,6]]}}}],["solut",{"_index":455,"t":{"266":{"position":[[2940,8]]}}}],["some",{"_index":355,"t":{"264":{"position":[[421,4]]}}}],["sourc",{"_index":197,"t":{"256":{"position":[[2451,6]]},"282":{"position":[[96,6]]},"291":{"position":[[55,6]]},"295":{"position":[[13,6]]},"312":{"position":[[24,7],[50,8],[87,7],[221,7]]},"356":{"position":[[229,6]]}}}],["spec",{"_index":281,"t":{"258":{"position":[[426,4]]}}}],["special",{"_index":363,"t":{"264":{"position":[[544,7]]}}}],["specif",{"_index":478,"t":{"268":{"position":[[14,14],[85,14]]},"272":{"position":[[167,14]]},"274":{"position":[[51,8]]},"280":{"position":[[180,8]]},"291":{"position":[[99,8]]},"295":{"position":[[144,8]]}}}],["specifi",{"_index":72,"t":{"254":{"position":[[216,7]]},"256":{"position":[[2439,7],[2647,7]]},"280":{"position":[[202,7]]}}}],["split",{"_index":206,"t":{"256":{"position":[[2673,5]]}}}],["ssd",{"_index":385,"t":{"266":{"position":[[590,3]]},"270":{"position":[[62,4]]},"272":{"position":[[90,3]]}}}],["stabil",{"_index":412,"t":{"266":{"position":[[1522,10]]}}}],["standalon",{"_index":74,"t":{"254":{"position":[[262,10]]},"256":{"position":[[80,10]]},"276":{"position":[[520,10]]},"282":{"position":[[64,10]]},"289":{"position":[[9,10]]},"299":{"position":[[11,10]]},"303":{"position":[[544,10]]},"346":{"position":[[511,10]]},"356":{"position":[[197,10]]}}}],["star",{"_index":336,"t":{"264":{"position":[[176,4]]},"266":{"position":[[2232,8]]}}}],["starknet",{"_index":153,"t":{"256":{"position":[[1194,8]]},"258":{"position":[[33,8],[454,9]]},"260":{"position":[[481,8]]},"264":{"position":[[144,8]]},"266":{"position":[[47,8],[2002,8],[2062,8],[3378,8]]},"280":{"position":[[28,8]]},"314":{"position":[[131,8]]},"316":{"position":[[64,8]]},"318":{"position":[[46,9]]}}}],["starknet'",{"_index":499,"t":{"274":{"position":[[103,10]]},"278":{"position":[[19,10]]},"344":{"position":[[61,10]]},"348":{"position":[[19,10]]}}}],["starknet.go",{"_index":522,"t":{"278":{"position":[[542,11]]}}}],["starknet.j",{"_index":521,"t":{"278":{"position":[[530,11]]}}}],["starknet.r",{"_index":523,"t":{"278":{"position":[[554,11]]}}}],["starknet::provid",{"_index":546,"t":{"278":{"position":[[1537,22]]}}}],["starknet_blockhashandnumb",{"_index":520,"t":{"278":{"position":[[485,27],[605,30],[784,30]]},"348":{"position":[[319,27],[402,30]]}}}],["starknet_cal",{"_index":232,"t":{"256":{"position":[[3304,13]]}}}],["starknet_chainid",{"_index":571,"t":{"280":{"position":[[395,19],[569,19],[743,19]]}}}],["starknet_getev",{"_index":245,"t":{"256":{"position":[[3553,18]]}}}],["starknet_vers",{"_index":751,"t":{"350":{"position":[[1015,19]]}}}],["start",{"_index":55,"t":{"252":{"position":[[347,5]]},"256":{"position":[[1927,8]]},"264":{"position":[[368,6]]},"266":{"position":[[1291,8],[2147,8]]},"282":{"position":[[255,8]]},"310":{"position":[[15,7]]},"318":{"position":[[88,8]]},"342":{"position":[[26,5]]}}}],["startup",{"_index":683,"t":{"323":{"position":[[154,7]]}}}],["static_config",{"_index":635,"t":{"308":{"position":[[190,15]]}}}],["stay",{"_index":324,"t":{"262":{"position":[[227,4]]}}}],["step",{"_index":229,"t":{"256":{"position":[[3248,5],[3280,5],[3357,6]]},"308":{"position":[[17,5]]},"356":{"position":[[158,5]]}}}],["still",{"_index":238,"t":{"256":{"position":[[3390,5]]}}}],["stop",{"_index":756,"t":{"352":{"position":[[139,4]]},"361":{"position":[[0,4],[136,4]]}}}],["storag",{"_index":386,"t":{"266":{"position":[[594,8]]},"270":{"position":[[39,8],[86,7]]},"272":{"position":[[64,8]]}}}],["store",{"_index":432,"t":{"266":{"position":[[2415,7]]},"338":{"position":[[31,5]]}}}],["strengthen",{"_index":334,"t":{"264":{"position":[[129,10]]}}}],["subscrib",{"_index":727,"t":{"344":{"position":[[113,9]]}}}],["subscript",{"_index":753,"t":{"350":{"position":[[1049,15]]},"352":{"position":[[63,12],[92,12]]}}}],["such",{"_index":452,"t":{"266":{"position":[[2895,4]]}}}],["sudo",{"_index":616,"t":{"293":{"position":[[84,4]]},"323":{"position":[[183,4]]}}}],["suggest",{"_index":341,"t":{"264":{"position":[[249,7],[529,11]]},"266":{"position":[[2272,10],[2740,8]]}}}],["support",{"_index":258,"t":{"258":{"position":[[128,7],[193,8]]},"262":{"position":[[23,8]]},"264":{"position":[[50,7]]},"266":{"position":[[142,7],[207,8],[1369,7]]},"272":{"position":[[223,7]]},"274":{"position":[[87,8]]},"280":{"position":[[5,8]]},"344":{"position":[[45,8]]}}}],["sync",{"_index":201,"t":{"256":{"position":[[2557,4]]},"260":{"position":[[415,4]]},"266":{"position":[[1992,4]]},"314":{"position":[[338,7]]},"327":{"position":[[71,7],[136,6]]},"356":{"position":[[326,4],[351,6]]}}}],["synchronis",{"_index":275,"t":{"258":{"position":[[339,16]]},"282":{"position":[[169,11]]},"314":{"position":[[62,15]]}}}],["system",{"_index":451,"t":{"266":{"position":[[2877,6],[3045,6]]}}}],["t",{"_index":587,"t":{"285":{"position":[[297,1]]},"297":{"position":[[68,1]]},"367":{"position":[[128,1]]}}}],["tag",{"_index":622,"t":{"295":{"position":[[129,3],[161,5]]}}}],["tar",{"_index":718,"t":{"340":{"position":[[39,4],[69,3]]}}}],["target",{"_index":636,"t":{"308":{"position":[[208,8]]}}}],["team",{"_index":316,"t":{"262":{"position":[[111,4]]},"264":{"position":[[512,4]]}}}],["telegram",{"_index":321,"t":{"262":{"position":[[201,9]]}}}],["test",{"_index":655,"t":{"312":{"position":[[185,5],[313,5]]},"314":{"position":[[292,6]]},"354":{"position":[[8,4]]}}}],["that",{"_index":139,"t":{"256":{"position":[[968,4]]},"266":{"position":[[1896,4],[3079,4],[3307,4]]},"344":{"position":[[40,4]]},"350":{"position":[[62,4]]},"363":{"position":[[343,4]]}}}],["the",{"_index":8,"t":{"248":{"position":[[51,3]]},"250":{"position":[[35,3],[172,3],[206,3]]},"252":{"position":[[66,3],[106,3],[171,3],[364,3]]},"254":{"position":[[195,3],[224,3],[236,3],[427,3],[453,3]]},"256":{"position":[[56,3],[773,3],[828,3],[894,3],[943,3],[988,3],[1020,3],[1070,3],[1099,3],[1118,3],[1190,3],[1230,3],[1254,3],[1291,3],[1314,3],[1370,3],[1388,3],[1532,3],[1563,3],[1586,3],[1637,3],[1660,3],[1720,3],[1738,3],[2078,3],[2113,3],[2153,3],[2176,3],[2243,3],[2261,3],[2593,3],[2611,3],[2818,3],[2983,3],[3005,3],[3043,3],[3066,3],[3129,3],[3147,3],[3328,3],[3594,3],[3622,3],[3657,3],[3680,3],[3743,3],[3761,3]]},"258":{"position":[[136,3],[390,3],[628,3]]},"260":{"position":[[54,3],[310,3],[435,3],[466,3]]},"262":{"position":[[102,3],[155,3]]},"264":{"position":[[140,3],[503,3]]},"266":{"position":[[150,3],[309,3],[341,3],[410,3],[482,3],[613,3],[813,3],[918,3],[984,3],[1090,3],[1258,3],[1377,3],[1490,3],[1628,3],[1714,3],[1741,3],[1831,3],[1945,3],[2058,3],[2111,3],[2307,3],[2529,3],[2623,3],[2791,3],[2918,3],[2931,3],[2969,3],[2983,3],[3021,3],[3084,3],[3189,3],[3312,3],[3351,3],[3374,3],[3516,3],[3579,3],[3618,3]]},"268":{"position":[[0,3],[37,3]]},"272":{"position":[[157,3],[198,3],[258,3]]},"276":{"position":[[10,3],[38,3],[89,3],[112,3],[177,3],[200,3],[295,3],[313,3]]},"278":{"position":[[66,3],[96,3],[429,3],[481,3]]},"280":{"position":[[14,3],[105,3],[210,3]]},"282":{"position":[[196,3],[219,3]]},"285":{"position":[[35,3],[90,3],[155,3],[182,3],[266,3]]},"287":{"position":[[10,3],[65,3],[307,3],[334,3]]},"289":{"position":[[202,3],[257,3]]},"291":{"position":[[14,3],[51,3],[77,3]]},"297":{"position":[[8,3],[37,3]]},"299":{"position":[[7,3],[32,3],[66,3],[121,3],[282,3]]},"303":{"position":[[10,3],[34,3],[88,3],[123,3],[177,3],[200,3],[302,3],[320,3]]},"306":{"position":[[7,3],[75,3]]},"308":{"position":[[7,3],[72,3],[101,3]]},"310":{"position":[[7,3],[359,3]]},"312":{"position":[[7,3],[101,3],[173,3],[235,3],[301,3]]},"314":{"position":[[93,3],[127,3],[159,3],[225,3]]},"316":{"position":[[15,3],[60,3]]},"318":{"position":[[8,3],[79,3],[113,3]]},"320":{"position":[[7,3],[38,3],[64,3]]},"323":{"position":[[9,3],[21,3],[78,3],[105,3],[140,3],[221,3],[248,3]]},"325":{"position":[[84,3],[389,3]]},"327":{"position":[[31,3],[59,3],[90,3],[115,3],[156,3]]},"336":{"position":[[39,3]]},"338":{"position":[[37,3],[64,3]]},"340":{"position":[[8,3],[24,3],[54,3]]},"342":{"position":[[4,3],[49,3],[61,3],[80,3],[366,3],[523,3],[561,3]]},"346":{"position":[[10,3],[40,3],[89,3],[117,3],[166,3],[189,3],[287,3],[305,3]]},"348":{"position":[[66,3],[96,3],[263,3],[315,3]]},"350":{"position":[[0,3],[111,3]]},"352":{"position":[[4,3],[37,3],[59,3],[88,3]]},"354":{"position":[[304,3]]},"356":{"position":[[23,3],[275,3],[322,3],[339,3]]},"359":{"position":[[9,3],[43,3]]},"361":{"position":[[5,3],[63,3],[153,3],[201,3]]},"363":{"position":[[26,3],[62,3],[117,3],[348,3],[383,3]]},"365":{"position":[[9,3],[32,3],[74,3]]},"367":{"position":[[7,3],[29,3],[61,3],[97,3],[201,3]]}}}],["their",{"_index":91,"t":{"256":{"position":[[246,5]]},"266":{"position":[[849,5]]}}}],["them",{"_index":395,"t":{"266":{"position":[[1228,4],[2587,4]]}}}],["then",{"_index":676,"t":{"318":{"position":[[67,5]]}}}],["there",{"_index":449,"t":{"266":{"position":[[2854,5]]}}}],["these",{"_index":208,"t":{"256":{"position":[[2691,5]]},"268":{"position":[[79,5]]},"301":{"position":[[108,5]]},"356":{"position":[[152,5]]}}}],["thi",{"_index":51,"t":{"252":{"position":[[244,4]]},"266":{"position":[[2501,4],[2729,4],[2836,4],[3007,4],[3288,4],[3601,4]]},"350":{"position":[[345,5]]}}}],["third",{"_index":82,"t":{"254":{"position":[[513,5]]}}}],["thought",{"_index":338,"t":{"264":{"position":[[206,8]]}}}],["thread",{"_index":767,"t":{"354":{"position":[[370,10]]}}}],["throttl",{"_index":169,"t":{"256":{"position":[[1479,10]]}}}],["through",{"_index":44,"t":{"252":{"position":[[23,7]]},"264":{"position":[[413,7]]}}}],["thu",{"_index":696,"t":{"333":{"position":[[6,3]]}}}],["time",{"_index":294,"t":{"258":{"position":[[612,4]]},"262":{"position":[[92,4]]},"266":{"position":[[1803,4]]},"270":{"position":[[115,5]]},"327":{"position":[[79,5]]}}}],["timeout",{"_index":170,"t":{"256":{"position":[[1493,7],[1503,7]]}}}],["timestamp",{"_index":737,"t":{"350":{"position":[[701,12]]}}}],["tip",{"_index":41,"t":{"250":{"position":[[311,3]]},"252":{"position":[[481,3]]},"254":{"position":[[485,3]]},"260":{"position":[[447,3]]},"264":{"position":[[316,3]]},"272":{"position":[[143,3]]},"282":{"position":[[131,3]]},"295":{"position":[[109,3]]},"299":{"position":[[236,3]]},"310":{"position":[[316,3]]},"325":{"position":[[343,3]]},"367":{"position":[[155,3]]}}}],["to",{"_index":24,"t":{"250":{"position":[[68,2],[221,2]]},"252":{"position":[[164,2]]},"254":{"position":[[152,2],[213,2]]},"256":{"position":[[0,2],[637,2],[716,2],[1089,2],[1150,2],[1470,2],[1529,2],[1888,2],[1936,2],[2018,2],[2608,2],[3286,2]]},"258":{"position":[[81,2],[105,2],[235,2]]},"260":{"position":[[10,2],[112,2],[221,2],[282,2],[404,2]]},"264":{"position":[[47,2],[126,2],[291,2],[336,2],[365,2],[584,2]]},"266":{"position":[[95,2],[119,2],[249,2],[332,2],[371,2],[440,2],[453,2],[840,2],[981,2],[1284,2],[1366,2],[1487,2],[1942,2],[1989,2],[2140,2],[2177,2],[2205,2],[2526,2],[2592,2],[2788,2],[2908,2],[2952,2],[2998,2],[3156,2],[3277,2],[3568,2],[3590,2]]},"268":{"position":[[59,2]]},"272":{"position":[[114,2]]},"274":{"position":[[48,2]]},"276":{"position":[[0,2],[270,2],[379,2]]},"280":{"position":[[171,2]]},"282":{"position":[[158,2],[248,2]]},"291":{"position":[[67,2]]},"295":{"position":[[136,2]]},"299":{"position":[[240,2],[253,2]]},"301":{"position":[[21,2],[123,2]]},"303":{"position":[[0,2],[274,2],[394,2]]},"306":{"position":[[32,2]]},"308":{"position":[[45,2]]},"310":{"position":[[47,2],[79,2],[121,2],[175,2],[188,2],[320,2],[344,2]]},"312":{"position":[[38,2]]},"314":{"position":[[26,2],[82,2],[173,2],[194,2]]},"316":{"position":[[0,2]]},"318":{"position":[[5,2],[104,2]]},"323":{"position":[[51,2],[102,2]]},"325":{"position":[[75,2],[347,2],[360,2]]},"327":{"position":[[49,2]]},"338":{"position":[[28,2]]},"342":{"position":[[23,2],[58,2]]},"344":{"position":[[110,2],[123,2]]},"346":{"position":[[0,2],[264,2],[376,2]]},"350":{"position":[[108,2]]},"352":{"position":[[136,2]]},"354":{"position":[[474,2]]},"356":{"position":[[16,2],[164,2],[302,2]]},"361":{"position":[[97,2],[171,2]]},"367":{"position":[[26,2],[159,2],[172,2]]}}}],["tokio::main",{"_index":549,"t":{"278":{"position":[[1619,14]]}}}],["tool",{"_index":757,"t":{"354":{"position":[[45,5]]}}}],["trace",{"_index":174,"t":{"256":{"position":[[1803,6]]}}}],["true",{"_index":68,"t":{"254":{"position":[[98,4],[128,4]]},"256":{"position":[[684,4]]},"352":{"position":[[327,5]]}}}],["twitter",{"_index":318,"t":{"262":{"position":[[133,10]]},"264":{"position":[[220,10]]}}}],["type",{"_index":513,"t":{"278":{"position":[[269,5],[720,5]]},"280":{"position":[[331,5],[505,5],[679,5]]},"325":{"position":[[187,5]]}}}],["ubuntu",{"_index":614,"t":{"293":{"position":[[60,6]]}}}],["ultra",{"_index":273,"t":{"258":{"position":[[328,5]]}}}],["unabl",{"_index":464,"t":{"266":{"position":[[3149,6]]}}}],["under",{"_index":664,"t":{"314":{"position":[[254,5]]}}}],["understand",{"_index":625,"t":{"301":{"position":[[126,10]]}}}],["uninterrupt",{"_index":462,"t":{"266":{"position":[[3101,13]]}}}],["unstabl",{"_index":670,"t":{"314":{"position":[[373,9]]}}}],["unsupport",{"_index":434,"t":{"266":{"position":[[2437,12]]}}}],["unsur",{"_index":351,"t":{"264":{"position":[[352,6]]},"361":{"position":[[53,6]]}}}],["unverifi",{"_index":106,"t":{"256":{"position":[[584,12]]}}}],["up",{"_index":298,"t":{"260":{"position":[[119,2]]},"306":{"position":[[15,2]]}}}],["updat",{"_index":223,"t":{"256":{"position":[[2911,7]]},"258":{"position":[[617,7]]},"262":{"position":[[58,8]]},"266":{"position":[[887,6],[922,8],[962,8],[1808,7],[2517,8],[2567,7],[2656,8]]},"291":{"position":[[88,7]]},"352":{"position":[[154,7]]},"356":{"position":[[58,6],[167,6],[215,8],[257,7]]},"363":{"position":[[30,7],[387,7]]},"367":{"position":[[18,7]]}}}],["upgrad",{"_index":463,"t":{"266":{"position":[[3122,9]]}}}],["upper",{"_index":233,"t":{"256":{"position":[[3332,5]]}}}],["url",{"_index":100,"t":{"256":{"position":[[397,3],[423,3],[438,3],[465,3],[3209,3]]},"278":{"position":[[1611,4]]},"312":{"position":[[105,3],[239,3]]},"336":{"position":[[52,5]]},"342":{"position":[[537,3],[570,3]]}}}],["url::parse(\"http://localhost:6060\").unwrap",{"_index":554,"t":{"278":{"position":[[1706,45]]}}}],["us",{"_index":4,"t":{"248":{"position":[[23,5]]},"250":{"position":[[151,5]]},"252":{"position":[[100,5],[333,5],[358,5]]},"254":{"position":[[23,5],[191,3]]},"256":{"position":[[52,3],[689,3],[980,4],[2024,4]]},"260":{"position":[[304,5],[389,3]]},"264":{"position":[[306,3],[595,2]]},"266":{"position":[[718,5],[1084,5],[1188,5],[1233,5],[1735,5],[3612,5]]},"276":{"position":[[34,3]]},"278":{"position":[[8,3],[1533,3]]},"280":{"position":[[174,3]]},"282":{"position":[[24,5],[143,3]]},"287":{"position":[[328,5]]},"289":{"position":[[178,5]]},"295":{"position":[[121,3]]},"301":{"position":[[5,4],[104,3]]},"303":{"position":[[30,3]]},"310":{"position":[[147,3],[355,3]]},"316":{"position":[[56,3]]},"325":{"position":[[27,5]]},"338":{"position":[[60,3]]},"342":{"position":[[74,5],[519,3]]},"346":{"position":[[36,3]]},"348":{"position":[[8,3]]},"352":{"position":[[0,3]]},"354":{"position":[[39,5]]},"356":{"position":[[271,3],[335,3]]},"361":{"position":[[83,3]]},"363":{"position":[[20,5]]}}}],["usag",{"_index":389,"t":{"266":{"position":[[855,5]]},"268":{"position":[[172,5]]}}}],["user",{"_index":327,"t":{"262":{"position":[[258,6]]},"289":{"position":[[149,6]]},"342":{"position":[[423,6]]}}}],["usr/local/bin/run_juno.sh",{"_index":686,"t":{"323":{"position":[[188,26]]}}}],["v",{"_index":592,"t":{"287":{"position":[[125,1]]},"333":{"position":[[116,1],[285,1]]},"342":{"position":[[146,1]]},"354":{"position":[[244,1]]},"363":{"position":[[177,1]]}}}],["v0.11.7",{"_index":516,"t":{"278":{"position":[[404,10]]},"325":{"position":[[322,10]]},"348":{"position":[[238,10]]},"354":{"position":[[201,10],[563,10]]}}}],["v0.6.0",{"_index":568,"t":{"280":{"position":[[119,7],[264,6]]}}}],["v0.7.0",{"_index":565,"t":{"280":{"position":[[51,7],[257,6]]}}}],["v0.9.2",{"_index":692,"t":{"329":{"position":[[22,8]]},"331":{"position":[[22,8]]}}}],["v0_6",{"_index":569,"t":{"280":{"position":[[152,5]]}}}],["v0_7",{"_index":566,"t":{"280":{"position":[[84,6]]}}}],["valu",{"_index":92,"t":{"256":{"position":[[260,6],[307,5],[3379,5]]},"264":{"position":[[3,5]]},"352":{"position":[[48,5]]}}}],["valuabl",{"_index":415,"t":{"266":{"position":[[1568,8]]}}}],["variabl",{"_index":18,"t":{"248":{"position":[[130,9]]},"250":{"position":[[360,9]]},"252":{"position":[[43,9],[70,8],[497,9],[593,10]]},"254":{"position":[[588,9]]},"266":{"position":[[761,10]]}}}],["variou",{"_index":263,"t":{"258":{"position":[[202,7]]},"260":{"position":[[191,7]]},"266":{"position":[[216,7]]}}}],["verif",{"_index":111,"t":{"256":{"position":[[650,13]]}}}],["verifi",{"_index":146,"t":{"256":{"position":[[1092,6]]},"266":{"position":[[3159,6]]},"363":{"position":[[336,6]]}}}],["version",{"_index":391,"t":{"266":{"position":[[995,8],[2456,10],[2540,7],[2640,9]]},"280":{"position":[[41,9],[193,8],[214,7]]},"291":{"position":[[108,9]]},"295":{"position":[[153,7]]},"329":{"position":[[0,7]]},"331":{"position":[[0,7]]},"356":{"position":[[34,7],[135,9]]},"361":{"position":[[209,8]]},"363":{"position":[[395,8]]}}}],["via",{"_index":368,"t":{"264":{"position":[[598,3]]},"280":{"position":[[70,3],[138,3]]}}}],["view",{"_index":420,"t":{"266":{"position":[[1663,4],[1699,4]]},"287":{"position":[[292,4]]},"295":{"position":[[139,4]]},"323":{"position":[[54,4]]},"361":{"position":[[100,4]]}}}],["virtual",{"_index":671,"t":{"316":{"position":[[77,7]]}}}],["visualis",{"_index":394,"t":{"266":{"position":[[1218,9]]},"301":{"position":[[72,9]]}}}],["vm",{"_index":178,"t":{"256":{"position":[[1839,2],[1856,3],[1916,3],[1968,3],[2005,2]]},"316":{"position":[[93,4]]},"323":{"position":[[39,2],[252,3]]}}}],["warn",{"_index":176,"t":{"256":{"position":[[1823,5]]},"266":{"position":[[2381,7]]}}}],["way",{"_index":376,"t":{"266":{"position":[[366,4]]}}}],["we",{"_index":328,"t":{"264":{"position":[[0,2]]},"266":{"position":[[526,2]]},"272":{"position":[[147,2]]},"338":{"position":[[52,2]]}}}],["we'll",{"_index":353,"t":{"264":{"position":[[397,5]]}}}],["websocat",{"_index":759,"t":{"354":{"position":[[65,9],[223,8],[234,8]]}}}],["websocat::lint",{"_index":761,"t":{"354":{"position":[[272,16]]}}}],["websocat::stdio_threaded_p",{"_index":765,"t":{"354":{"position":[[324,30]]}}}],["websocat::ws_client_p",{"_index":768,"t":{"354":{"position":[[387,25],[438,25]]}}}],["websocket",{"_index":143,"t":{"256":{"position":[[1048,9],[3598,9],[3684,9],[3765,9]]},"258":{"position":[[573,9]]},"260":{"position":[[327,9]]},"266":{"position":[[1107,9],[1835,9]]},"274":{"position":[[147,10]]},"342":{"position":[[370,9],[527,9]]},"344":{"position":[[16,9]]},"346":{"position":[[14,9],[93,9],[193,9],[309,9]]},"350":{"position":[[4,9]]},"354":{"position":[[18,9]]}}}],["wget",{"_index":715,"t":{"336":{"position":[[58,4]]}}}],["what",{"_index":370,"t":{"266":{"position":[[0,4],[473,4]]},"301":{"position":[[137,4]]}}}],["when",{"_index":34,"t":{"250":{"position":[[146,4]]},"252":{"position":[[328,4]]},"266":{"position":[[1916,4]]},"301":{"position":[[155,4]]},"327":{"position":[[143,4]]},"350":{"position":[[82,4],[286,4]]},"356":{"position":[[241,4]]}}}],["where",{"_index":352,"t":{"264":{"position":[[359,5]]},"312":{"position":[[109,5],[243,5]]}}}],["which",{"_index":160,"t":{"256":{"position":[[1308,5],[1382,5],[1654,5],[1732,5],[2170,5],[2255,5],[2541,5],[3060,5],[3141,5],[3674,5],[3755,5]]},"276":{"position":[[194,5],[307,5]]},"301":{"position":[[58,5]]},"303":{"position":[[194,5],[314,5]]},"346":{"position":[[183,5],[299,5]]}}}],["while",{"_index":441,"t":{"266":{"position":[[2687,5],[3235,5],[3502,5]]}}}],["will",{"_index":161,"t":{"256":{"position":[[1330,4],[1404,4],[1680,4],[1754,4],[2200,4],[2285,4],[2547,4],[2903,4],[2923,4],[3088,4],[3169,4],[3385,4],[3705,4],[3782,4]]},"270":{"position":[[100,4]]},"276":{"position":[[220,4],[329,4]]},"303":{"position":[[224,4],[344,4]]},"327":{"position":[[128,4]]},"338":{"position":[[55,4]]},"346":{"position":[[214,4],[326,4]]},"350":{"position":[[317,4]]}}}],["window",{"_index":602,"t":{"289":{"position":[[141,7]]}}}],["with",{"_index":7,"t":{"248":{"position":[[46,4]]},"252":{"position":[[85,4]]},"254":{"position":[[164,4]]},"256":{"position":[[241,4]]},"260":{"position":[[49,4],[259,4],[294,4],[430,4]]},"262":{"position":[[97,4],[241,4]]},"264":{"position":[[498,4]]},"266":{"position":[[552,4],[1023,4],[1059,4],[1430,4],[1997,4],[2618,4],[3346,4]]},"272":{"position":[[26,4],[94,4]]},"274":{"position":[[12,4]]},"278":{"position":[[49,4],[91,4],[476,4]]},"282":{"position":[[191,4]]},"301":{"position":[[82,4]]},"308":{"position":[[23,4]]},"310":{"position":[[23,4]]},"314":{"position":[[346,4]]},"325":{"position":[[17,4]]},"342":{"position":[[361,4]]},"348":{"position":[[49,4],[91,4],[310,4]]},"352":{"position":[[32,4]]},"361":{"position":[[196,4]]},"363":{"position":[[378,4]]}}}],["work",{"_index":661,"t":{"314":{"position":[[210,6]]}}}],["write",{"_index":647,"t":{"310":{"position":[[333,5]]}}}],["ws",{"_index":246,"t":{"256":{"position":[[3577,2],[3639,2],[3730,2]]},"346":{"position":[[77,3],[157,2],[278,2],[469,2],[476,2],[493,2],[544,2],[549,2],[564,2]]},"354":{"position":[[477,2]]}}}],["ws/wss",{"_index":724,"t":{"342":{"position":[[541,8]]}}}],["ws://localhost:6061",{"_index":760,"t":{"354":{"position":[[94,19],[246,19]]}}}],["wscat",{"_index":758,"t":{"354":{"position":[[56,5],[77,5],[85,5]]}}}],["wss://mainnet.infura.io/ws/v3/your",{"_index":722,"t":{"342":{"position":[[454,34]]}}}],["x",{"_index":317,"t":{"262":{"position":[[131,1]]},"264":{"position":[[218,1]]}}}],["xdg_config_hom",{"_index":80,"t":{"254":{"position":[[457,16]]}}}],["xvf",{"_index":719,"t":{"340":{"position":[[74,3]]}}}],["y",{"_index":618,"t":{"293":{"position":[[106,1]]}}}],["yaml",{"_index":61,"t":{"254":{"position":[[31,4],[49,4]]},"256":{"position":[[777,4]]},"266":{"position":[[778,4]]}}}],["ye",{"_index":426,"t":{"266":{"position":[[2020,4]]}}}],["you",{"_index":86,"t":{"256":{"position":[[44,3]]},"260":{"position":[[451,3]]},"264":{"position":[[87,3],[409,3]]},"266":{"position":[[391,3],[695,3],[1042,3],[1210,3],[1691,3],[2186,3],[2489,3],[3559,3]]},"278":{"position":[[0,3]]},"282":{"position":[[0,3],[135,3]]},"285":{"position":[[136,3]]},"287":{"position":[[284,3]]},"291":{"position":[[0,3]]},"295":{"position":[[113,3]]},"301":{"position":[[64,3],[96,3]]},"310":{"position":[[106,3]]},"316":{"position":[[48,3]]},"325":{"position":[[0,3]]},"327":{"position":[[0,3],[148,3]]},"338":{"position":[[7,3]]},"342":{"position":[[515,3]]},"344":{"position":[[106,3]]},"348":{"position":[[0,3]]},"350":{"position":[[313,3]]},"354":{"position":[[0,3]]}}}],["you'r",{"_index":346,"t":{"264":{"position":[[323,6],[455,6]]},"361":{"position":[[46,6]]}}}],["your",{"_index":276,"t":{"258":{"position":[[372,4],[538,4]]},"260":{"position":[[34,4],[134,4],[234,4],[420,4]]},"264":{"position":[[58,4],[201,4]]},"266":{"position":[[971,4],[1610,4],[2749,4],[3040,4]]},"280":{"position":[[234,4]]},"282":{"position":[[181,4]]},"342":{"position":[[316,5],[345,5],[392,4],[430,4]]},"354":{"position":[[13,4]]}}}],["zip",{"_index":597,"t":{"289":{"position":[[60,3]]}}}]],"pipeline":["stemmer"]}}] \ No newline at end of file diff --git a/0.11.8/snapshots/index.html b/0.11.8/snapshots/index.html deleted file mode 100644 index cf99fa3e44..0000000000 --- a/0.11.8/snapshots/index.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - Database Snapshots | Juno - - - - -- - \ No newline at end of file diff --git a/0.11.8/updating/index.html b/0.11.8/updating/index.html deleted file mode 100644 index dfd5389e16..0000000000 --- a/0.11.8/updating/index.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - -Version: 0.11.8 Database Snapshots 📸
-You can download a snapshot of the Juno database to reduce the network syncing time. Only the blocks created after the snapshot will be synced when you run the node.
-Mainnet
-
-Version Download Link >=v0.9.2 juno_mainnet.tar Sepolia
-
-Version Download Link >=v0.9.2 juno_sepolia.tar Getting the size for each snapshot
--$date
Thu 1 Aug 2024 09:49:30 BST
$curl -s -I -L https://juno-snapshots.nethermind.dev/files/mainnet/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
172.47 GB
$curl -s -I -L https://juno-snapshots.nethermind.dev/files/sepolia/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
5.67 GBRun Juno with a snapshot
-1. Download the snapshot
-First, download a snapshot from one of the provided URLs:
--wget -O juno_mainnet.tar https://juno-snapshots.nethermind.dev/files/mainnet/latest
2. Prepare a directory
-Ensure you have a directory to store the snapshots. We will use the
-$HOME/snapshots
directory:-mkdir -p $HOME/snapshots
3. Extract the snapshot
-Extract the contents of the downloaded
-.tar
file into the directory:-tar -xvf juno_mainnet.tar -C $HOME/snapshots
4. Run Juno
-Run the Docker command to start Juno and provide the path to the snapshot using the
-db-path
option:-docker run -d \
--name juno \
-p 6060:6060 \
-v $HOME/snapshots/juno_mainnet:/snapshots/juno_mainnet \
nethermind/juno \
--http \
--http-port 6060 \
--http-host 0.0.0.0 \
--db-path /snapshots/juno_mainnet
--eth-node <YOUR ETH NODE>infoReplace <YOUR ETH NODE> with the WebSocket endpoint of your Ethereum node. For Infura users, your address should be:
wss://mainnet.infura.io/ws/v3/your-infura-project-id
. Ensure you use the WebSocket URL (ws
/wss
) instead of the HTTP URL (http
/https
).Updating Juno | Juno - - - - -- - \ No newline at end of file diff --git a/0.11.8/websocket/index.html b/0.11.8/websocket/index.html deleted file mode 100644 index c74f5649d3..0000000000 --- a/0.11.8/websocket/index.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - -Version: 0.11.8 Updating Juno 🔄
-It is important to run the latest version of Juno as each update brings new features, security patches, and improvements over previous versions. Follow these steps to update Juno:
- --infoWhen running an updated node, use the same
db-path
as before to avoid restarting the sync and use the already synced database.Docker container
-1. Get the latest Docker image
-Download the latest Juno Docker image from the nethermind/juno repository:
--docker pull nethermind/juno:latest
2. Stop and remove the current Juno container
-Stop the currently running Juno container. If you're unsure of the container name, use
-docker ps
to view all running containers:-docker stop juno
Remove the old container to prevent any conflicts with the new version:
--docker rm juno
3. Start a new container with the updated image
-Run a new container using the updated Docker image:
--# Prepare the snapshots directory
mkdir -p $HOME/snapshots
# Run the container
docker run -d \
--name juno \
-p 6060:6060 \
-v $HOME/snapshots/juno_mainnet:/snapshots/juno_mainnet \
nethermind/juno \
--http \
--http-port 6060 \
--http-host 0.0.0.0 \
--db-path /snapshots/juno_mainnetVerify that the node is running correctly with the updated version:
--docker logs juno
Standalone binary
-Download the latest binary from the Juno GitHub Releases page and replace the existing one.
-Updating from source
--# Pull the latest updates to the codebase
git pull
# Rebuild the binary
make juno
# OR
# Rebuild the Docker image
docker build -t nethermind/juno:latest .tipTo learn how to configure Juno, check out the Configuring Juno guide.
WebSocket Interface | Juno - - - - -- - \ No newline at end of file diff --git a/0.6.3/config/index.html b/0.6.3/config/index.html index d1e7857cca..55c4b9a07e 100644 --- a/0.6.3/config/index.html +++ b/0.6.3/config/index.html @@ -4,11 +4,11 @@Version: 0.11.8 WebSocket Interface 🌐
-Juno provides a WebSocket RPC interface that supports all of Starknet's JSON-RPC API endpoints and allows you to subscribe to newly created blocks.
-Enable the WebSocket server
-To enable the WebSocket RPC server, use the following configuration options:
--
-
ws
: Enables the Websocket RPC server on the default port (disabled by default).
-ws-host
: The interface on which the Websocket RPC server will listen for requests. If skipped, it defaults tolocalhost
.
-ws-port
: The port on which the WebSocket server will listen for requests. If skipped, it defaults to6061
.
-
-# Docker container
docker run -d \
--name juno \
-p 6061:6061 \
nethermind/juno \
--ws \
--ws-port 6061 \
--ws-host 0.0.0.0
# Standalone binary
./build/juno --ws --ws-port 6061 --ws-host 0.0.0.0Making WebSocket requests
-You can use any of Starknet's Node API Endpoints with Juno. Check the availability of Juno with the
- -juno_version
method:-- Request
- Response
{
"jsonrpc": "2.0",
"method": "juno_version",
"params": [],
"id": 1
}{
"jsonrpc": "2.0",
"result": "v0.11.7",
"id": 1
}Get the most recent accepted block hash and number with the
-starknet_blockHashAndNumber
method:-- Request
- Response
{
"jsonrpc": "2.0",
"method": "starknet_blockHashAndNumber",
"params": [],
"id": 1
}{
"jsonrpc": "2.0",
"result": {
"block_hash": "0x637ae4d7468bb603c2f16ba7f9118d58c7d7c98a8210260372e83e7c9df443a",
"block_number": 640827
},
"id": 1
}Subscribe to newly created blocks
-The WebSocket server provides a
-juno_subscribeNewHeads
method that emits an event when new blocks are added to the blockchain:-- Request
- Response
{
"jsonrpc": "2.0",
"method": "juno_subscribeNewHeads",
"params": [],
"id": 1
}{
"jsonrpc": "2.0",
"result": 16570962336122680234,
"id": 1
}When a new block is added, you will receive a message like this:
--{
"jsonrpc": "2.0",
"method": "juno_subscribeNewHeads",
"params": {
"result": {
"block_hash": "0x840660a07a17ae6a55d39fb6d366698ecda11e02280ca3e9ca4b4f1bad741c",
"parent_hash": "0x529ca67a127e4f40f3ae637fc54c7a56c853b2e085011c64364911af74c9a5c",
"block_number": 65644,
"new_root": "0x4e88ddf34b52091611b34d72849e230d329902888eb57c8e3c1b9cc180a426c",
"timestamp": 1715451809,
"sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8",
"l1_gas_price": {
"price_in_fri": "0x3727bcc63f1",
"price_in_wei": "0x5f438c77"
},
"l1_data_gas_price": {
"price_in_fri": "0x230e40e8866c6e",
"price_in_wei": "0x3c8c4a9ea51"
},
"l1_da_mode": "BLOB",
"starknet_version": "0.13.1.1"
},
"subscription": 16570962336122680234
}
}Unsubscribe from newly created blocks
-Use the
-juno_unsubscribe
method with theresult
value from the subscription response or thesubscription
field from any new block event to stop receiving updates for new blocks:-- Request
- Response
{
"jsonrpc": "2.0",
"method": "juno_unsubscribe",
"params": {
"id": 16570962336122680234
},
"id": 1
}{
"jsonrpc": "2.0",
"result": true,
"id": 1
}Testing the WebSocket connection
-You can test your WebSocket connection using tools like wscat or websocat:
-# wscat
$ wscat -c ws://localhost:6061
> {"jsonrpc": "2.0", "method": "juno_version", "id": 1}
< {"jsonrpc": "2.0", "result": "v0.11.7", "id": 1}
# websocat
$ websocat -v ws://localhost:6061
[INFO websocat::lints] Auto-inserting the line mode
[INFO websocat::stdio_threaded_peer] get_stdio_peer (threaded)
[INFO websocat::ws_client_peer] get_ws_client_peer
[INFO websocat::ws_client_peer] Connected to ws
{"jsonrpc": "2.0", "method": "juno_version", "id": 1}
{"jsonrpc": "2.0", "result": "v0.11.7", "id": 1}Example Configuration | Juno - - + + -Version: 0.6.3 Example Configuration
The Juno binary uses reasonable defaults and can be used without configuration. +
Version: 0.6.3 Example Configuration
The Juno binary uses reasonable defaults and can be used without configuration. For basic fine-tuning, the
--db-path
and--http-port
options are usually sufficient.All available options are in the YAML file below with their default values. Provide the config using the
diff --git a/0.6.3/index.html b/0.6.3/index.html index 9f7dd73461..117d2fc57e 100644 --- a/0.6.3/index.html +++ b/0.6.3/index.html @@ -4,11 +4,11 @@--config <filename>
option (Juno looks in$XDG_CONFIG_HOME
by default).Quick Start | Juno - - + + -Version: 0.6.3 Juno is your fast and featureful Starknet client implementation.
+Version: 0.6.3 Juno is your fast and featureful Starknet client implementation.
Suitable for casual setups, production-grade indexers, and everything in between.
- 💾 Tiny database size: ~71Gb on mainnet diff --git a/0.6.3/search-index.json b/0.6.3/search-index.json index ee44d11ac2..1463d20bfc 100644 --- a/0.6.3/search-index.json +++ b/0.6.3/search-index.json @@ -1 +1 @@ -[{"documents":[{"i":468,"t":"Sync Starknet in Two Commands","u":"/0.6.3/","b":[]},{"i":474,"t":"Database Snapshots","u":"/0.6.3/snapshots","b":[]},{"i":484,"t":"Example Configuration","u":"/0.6.3/config","b":[]}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/468",[0,0.771,1,0.771,2,0.771,3,0.771,4,0.771]],["t/474",[5,1.136,6,1.136]],["t/484",[7,1.136,8,1.136]]],"invertedIndex":[["command",{"_index":4,"t":{"468":{"position":[[21,8]]}}}],["configur",{"_index":8,"t":{"484":{"position":[[8,13]]}}}],["databas",{"_index":5,"t":{"474":{"position":[[0,8]]}}}],["exampl",{"_index":7,"t":{"484":{"position":[[0,7]]}}}],["in",{"_index":2,"t":{"468":{"position":[[14,2]]}}}],["snapshot",{"_index":6,"t":{"474":{"position":[[9,9]]}}}],["starknet",{"_index":1,"t":{"468":{"position":[[5,8]]}}}],["sync",{"_index":0,"t":{"468":{"position":[[0,4]]}}}],["two",{"_index":3,"t":{"468":{"position":[[17,3]]}}}]],"pipeline":["stemmer"]}},{"documents":[{"i":470,"t":"Looking for a Starknet RPC Provider?","u":"/0.6.3/","h":"","p":468},{"i":472,"t":"Questions, Discussions, Community","u":"/0.6.3/","h":"","p":468},{"i":476,"t":"Mainnet","u":"/0.6.3/snapshots","h":"#mainnet","p":474},{"i":478,"t":"Goerli","u":"/0.6.3/snapshots","h":"#goerli","p":474},{"i":480,"t":"Goerli2","u":"/0.6.3/snapshots","h":"#goerli2","p":474},{"i":482,"t":"Run Juno Using Snapshot","u":"/0.6.3/snapshots","h":"#run-juno-using-snapshot","p":474}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/470",[0,1.019,1,1.019,2,1.019,3,1.019,4,1.019,5,1.019]],["t/472",[6,1.466,7,1.466,8,1.466]],["t/476",[9,2.07]],["t/478",[10,2.07]],["t/480",[11,2.07]],["t/482",[12,1.279,13,1.279,14,1.279,15,1.279]]],"invertedIndex":[["a",{"_index":2,"t":{"470":{"position":[[12,1]]}}}],["commun",{"_index":8,"t":{"472":{"position":[[24,9]]}}}],["discuss",{"_index":7,"t":{"472":{"position":[[11,12]]}}}],["for",{"_index":1,"t":{"470":{"position":[[8,3]]}}}],["goerli",{"_index":10,"t":{"478":{"position":[[0,6]]}}}],["goerli2",{"_index":11,"t":{"480":{"position":[[0,7]]}}}],["juno",{"_index":13,"t":{"482":{"position":[[4,4]]}}}],["look",{"_index":0,"t":{"470":{"position":[[0,7]]}}}],["mainnet",{"_index":9,"t":{"476":{"position":[[0,7]]}}}],["provid",{"_index":5,"t":{"470":{"position":[[27,9]]}}}],["question",{"_index":6,"t":{"472":{"position":[[0,10]]}}}],["rpc",{"_index":4,"t":{"470":{"position":[[23,3]]}}}],["run",{"_index":12,"t":{"482":{"position":[[0,3]]}}}],["snapshot",{"_index":15,"t":{"482":{"position":[[15,8]]}}}],["starknet",{"_index":3,"t":{"470":{"position":[[14,8]]}}}],["us",{"_index":14,"t":{"482":{"position":[[9,5]]}}}]],"pipeline":["stemmer"]}},{"documents":[{"i":469,"t":"# Juno's database directory. Can be any directory on the machine. mkdir -p junodb # Juno's HTTP server listens on port 6060. docker run -d --name juno -p 6060:6060 -v junodb:/var/lib/juno nethermind/juno:latest --db-path /var/lib/juno --http For a complete list of options and their explanations, see the Example Configuration or run: docker run nethermind/juno --help","s":"Sync Starknet in Two Commands","u":"/0.6.3/","h":"","p":468},{"i":471,"t":"If you are looking for a Starknet RPC provider, Nethermind will offer a Starknet RPC service before the upcoming feeder gateway deprecation. You can register your interest on this Google Form.","s":"Looking for a Starknet RPC Provider?","u":"/0.6.3/","h":"","p":468},{"i":473,"t":"Find active Juno team members and users in the following places. GitHub Discord Telegram","s":"Questions, Discussions, Community","u":"/0.6.3/","h":"","p":468},{"i":475,"t":"To decrease sync times, users may opt to download a Juno database snapshot. After downloading a snapshot and starting a Juno node, only recent blocks must be synced.","s":"Database Snapshots","u":"/0.6.3/snapshots","h":"","p":474},{"i":477,"t":"Version Size Block Download Link >=v0.6.0 76 GB 247401 juno_mainnet_247401.tar","s":"Mainnet","u":"/0.6.3/snapshots","h":"#mainnet","p":474},{"i":479,"t":"Version Size Block Download Link >=v0.6.0 36 GB 850192 juno_goerli_850192.tar","s":"Goerli","u":"/0.6.3/snapshots","h":"#goerli","p":474},{"i":481,"t":"Version Size Block Download Link >=v0.6.0 4.6 GB 139043 juno_goerli2_135973.tar","s":"Goerli2","u":"/0.6.3/snapshots","h":"#goerli2","p":474},{"i":483,"t":"Download Snapshot Fetch a snapshot from one of the provided URLs: curl -o juno_mainnet_247401.tar https://juno-snapshots.nethermind.dev/mainnet/juno_mainnet_v0.6.3_247401.tar Prepare Directory Ensure you have a directory where you will store the snapshots. We will use $HOME/snapshots. mkdir -p $HOME/snapshots Extract Tarball Extract the contents of the .tar file: tar -xvf juno_mainnet_247401.tar -C $HOME/snapshots Run Juno Execute the Docker command to run Juno, ensuring that you're using the correct snapshot path $HOME/snapshots/juno_mainnet: docker run -d \\ --name juno \\ -p 6060:6060 \\ -v $HOME/snapshots/juno_mainnet:/var/lib/juno \\ nethermind/juno \\ --http \\ --http-port 6060 \\ --http-host 0.0.0.0 \\ --db-path /var/lib/juno After following these steps, Juno should be up and running on your machine, utilizing the provided snapshot.","s":"Run Juno Using Snapshot","u":"/0.6.3/snapshots","h":"#run-juno-using-snapshot","p":474},{"i":485,"t":"The Juno binary uses reasonable defaults and can be used without configuration. For basic fine-tuning, the --db-path and --http-port options are usually sufficient. All available options are in the YAML file below with their default values. Provide the config using the --config
option (Juno looks in $XDG_CONFIG_HOME by default). Juno can also be configured using command line params by prepending -- to the option name (e.g., --log-level info). Command line params override values in the configuration file. # Enable colored logs colour: true # Path to the database. # Juno uses `$XDG_DATA_HOME/juno` by default, which is usually something like the value below on Linux. db-path: /home/ /.local/share/juno # Websocket endpoint of the Ethereum node used to verify the L2 chain. # If using Infura, it looks something like `wss://mainnet.infura.io/ws/v3/your-infura-project-id` eth-node: \"\" # Enables the HTTP RPC server. http: false # Interface on which the HTTP RPC server will listen for requests. http-host: localhost # Port on which the HTTP RPC server will listen for requests. http-port: 6060 # The options below are similar to the HTTP RPC options above. ws: false # Websocket RPC server ws-host: localhost ws-port: 6061 pprof: false pprof-host: localhost pprof-port: 6062 metrics: false metrics-host: localhost metrics-port: 9090 grpc: false grpc-host: localhost grpc-port: 6064 # Options: debug, info, warn, error log-level: info # Options: mainnet, goerli, goerli2, integration network: mainnet # How often to fetch the pending block when synced to the head of the chain. # Provide a duration like 5s (five seconds) or 10m (10 minutes). # Disabled by default. pending-poll-interval: 0s # Experimental p2p options; there is currently no standardized Starknet p2p testnet. p2p: false # Enable the p2p server p2p-addr: \"\" # Source address p2p-boot-peers: \"\" # Boot nodes","s":"Example Configuration","u":"/0.6.3/config","h":"","p":484}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/469",[0,1.506,1,2.722,2,1.117,3,1.989,4,1.117,5,0.85,6,2.019,7,1.146,8,0.858,9,1.476,10,1.476,11,1.989,12,2.019,13,1.506,14,1.476,15,1.476,16,1.117,17,1.117,18,1.989,19,2.25,20,1.476,21,1.117,22,0.636,23,1.476,24,1.476,25,2.019,26,2.019,27,1.117,28,1.117,29,1.476,30,1.117,31,0.636,32,2.019,33,2.019,34,1.117,35,1.476,36,0.636,37,1.476,38,2.019,39,2.019,40,2.019,41,1.476,42,1.476,43,1.476,44,2.019]],["t/471",[4,1.333,7,1.014,8,0.759,30,1.333,31,0.963,45,1.761,46,2.233,47,1.761,48,1.761,49,2.233,50,2.233,51,1.333,52,2.409,53,1.333,54,2.409,55,2.409,56,2.409,57,2.409,58,2.409,59,2.409,60,2.409,61,2.409,62,1.761,63,2.409,64,2.409,65,2.409,66,2.409]],["t/473",[8,0.88,22,0.88,36,0.88,67,2.791,68,2.791,69,2.791,70,2.791,71,2.04,72,2.04,73,2.04,74,2.791,75,2.791,76,2.791,77,2.791]],["t/475",[2,1.366,5,1.039,22,0.978,31,1.069,36,0.778,71,1.804,78,1.717,79,2.469,80,2.267,81,2.469,82,2.469,83,2.469,84,0.978,85,2.267,86,1.804,87,2.469,88,1.804,89,2.469,90,2.469,91,0.778,92,2.469]],["t/477",[84,0.914,91,0.914,93,1.605,94,1.605,95,1.605,96,1.605,97,2.9,98,1.605,99,2.9,100,2.119]],["t/479",[84,0.914,91,0.914,93,1.605,94,1.605,95,1.605,96,1.605,98,1.605,101,2.9,102,2.9,103,2.9]],["t/481",[84,0.914,91,0.914,93,1.605,94,1.605,95,1.605,96,1.605,98,1.605,104,2.9,105,2.9,106,2.9]],["t/483",[0,1.871,3,1.574,5,0.611,7,0.907,8,1.037,9,1.061,10,1.061,11,1.574,13,1.421,16,0.803,17,0.803,18,1.574,19,2.076,20,1.061,21,0.803,22,0.895,23,1.061,24,1.061,27,0.803,28,1.192,29,1.061,31,0.679,34,1.192,36,0.457,43,1.061,46,1.574,51,1.192,53,1.192,62,1.061,73,1.061,78,0.803,84,0.457,85,2.218,86,1.061,100,1.574,107,1.061,108,1.452,109,1.452,110,1.452,111,1.452,112,1.452,113,1.452,114,1.452,115,2.154,116,1.452,117,1.452,118,1.452,119,1.452,120,1.574,121,2.568,122,2.154,123,1.452,124,1.452,125,2.154,126,1.061,127,1.452,128,1.452,129,1.452,130,1.061,131,1.452,132,1.452,133,1.452,134,1.452,135,1.452,136,1.061,137,1.452,138,1.452,139,1.452,140,1.452,141,1.452,142,1.452]],["t/485",[0,1.909,2,0.411,4,0.698,5,0.531,7,0.691,8,1.068,13,1.464,14,1.585,15,0.921,16,1.391,17,0.411,21,0.411,22,0.61,27,0.698,28,0.909,30,0.909,31,0.234,34,0.698,35,2.015,36,0.397,37,0.542,41,1.2,42,0.542,45,0.542,47,1.2,48,0.921,49,0.542,50,1.585,51,0.698,53,0.698,72,1.2,78,1.305,80,0.542,88,1.2,91,0.234,107,0.542,120,1.837,126,0.921,130,0.921,136,1.585,143,0.742,144,0.742,145,2.169,146,0.742,147,0.742,148,0.742,149,0.742,150,1.261,151,0.742,152,0.742,153,0.742,154,0.742,155,1.643,156,0.742,157,1.643,158,1.261,159,0.742,160,0.742,161,1.936,162,0.742,163,1.261,164,1.261,165,0.742,166,0.742,167,1.643,168,1.261,169,1.643,170,0.742,171,1.643,172,0.742,173,0.742,174,0.742,175,0.742,176,1.643,177,1.261,178,1.261,179,1.643,180,0.742,181,0.742,182,1.261,183,0.742,184,0.742,185,0.742,186,0.742,187,1.261,188,1.261,189,0.742,190,0.742,191,0.742,192,0.742,193,0.742,194,2.358,195,0.742,196,1.261,197,2.169,198,0.742,199,0.742,200,1.643,201,0.742,202,1.643,203,0.742,204,1.643,205,0.742,206,1.643,207,0.742,208,0.742,209,0.742,210,0.742,211,1.261,212,0.742,213,0.742,214,0.742,215,0.742,216,0.742,217,0.742,218,1.261,219,0.742,220,0.742,221,0.742,222,0.742,223,0.742,224,0.742,225,0.742,226,0.742,227,0.742,228,0.742,229,0.742,230,0.742,231,0.742,232,0.742,233,2.358,234,0.742,235,0.742,236,0.742,237,0.742,238,0.742,239,0.742,240,0.742,241,0.742,242,1.261,243,0.742]]],"invertedIndex":[["",{"_index":0,"t":{"469":{"position":[[0,1],[82,1]]},"483":{"position":[[564,1],[578,1],[593,1],[641,1],[659,1],[668,1],[687,1],[709,1]]},"485":{"position":[[521,1],[556,1],[580,1],[724,1],[795,1],[903,2],[906,1],[949,1],[1037,1],[1115,1],[1188,1],[1403,1],[1455,1],[1521,1],[1598,1],[1663,1],[1712,1],[1808,1],[1842,2],[1845,1],[1878,2],[1881,1]]}}}],["0.0.0.0",{"_index":137,"t":{"483":{"position":[[701,7]]}}}],["0s",{"_index":231,"t":{"485":{"position":[[1709,2]]}}}],["10",{"_index":226,"t":{"485":{"position":[[1649,3]]}}}],["10m",{"_index":225,"t":{"485":{"position":[[1645,3]]}}}],["139043",{"_index":105,"t":{"481":{"position":[[49,6]]}}}],["247401",{"_index":99,"t":{"477":{"position":[[48,6]]}}}],["36",{"_index":101,"t":{"479":{"position":[[42,2]]}}}],["4.6",{"_index":104,"t":{"481":{"position":[[42,3]]}}}],["5s",{"_index":222,"t":{"485":{"position":[[1624,2]]}}}],["6060",{"_index":17,"t":{"469":{"position":[[119,5]]},"483":{"position":[[682,4]]},"485":{"position":[[1110,4]]}}}],["6060:6060",{"_index":23,"t":{"469":{"position":[[154,9]]},"483":{"position":[[583,9]]}}}],["6061",{"_index":201,"t":{"485":{"position":[[1239,4]]}}}],["6062",{"_index":203,"t":{"485":{"position":[[1291,4]]}}}],["6064",{"_index":207,"t":{"485":{"position":[[1398,4]]}}}],["76",{"_index":97,"t":{"477":{"position":[[42,2]]}}}],["850192",{"_index":102,"t":{"479":{"position":[[48,6]]}}}],["9090",{"_index":205,"t":{"485":{"position":[[1349,4]]}}}],["a",{"_index":31,"t":{"469":{"position":[[246,1]]},"471":{"position":[[23,1],[70,1]]},"475":{"position":[[50,1],[94,1],[118,1]]},"483":{"position":[[24,1],[209,1]]},"485":{"position":[[1608,1]]}}}],["abov",{"_index":199,"t":{"485":{"position":[[1171,6]]}}}],["activ",{"_index":68,"t":{"473":{"position":[[5,6]]}}}],["addr",{"_index":239,"t":{"485":{"position":[[1836,5]]}}}],["address",{"_index":241,"t":{"485":{"position":[[1854,7]]}}}],["after",{"_index":86,"t":{"475":{"position":[[76,5]]},"483":{"position":[[735,5]]}}}],["all",{"_index":152,"t":{"485":{"position":[[165,3]]}}}],["also",{"_index":162,"t":{"485":{"position":[[351,4]]}}}],["and",{"_index":36,"t":{"469":{"position":[[273,3]]},"473":{"position":[[30,3]]},"475":{"position":[[105,3]]},"483":{"position":[[782,3]]},"485":{"position":[[41,3],[117,3]]}}}],["ani",{"_index":6,"t":{"469":{"position":[[36,3]]}}}],["ar",{"_index":47,"t":{"471":{"position":[[7,3]]},"485":{"position":[[141,3],[187,3],[1135,3]]}}}],["avail",{"_index":153,"t":{"485":{"position":[[169,9]]}}}],["basic",{"_index":147,"t":{"485":{"position":[[84,5]]}}}],["be",{"_index":5,"t":{"469":{"position":[[33,2]]},"475":{"position":[[155,2]]},"483":{"position":[[776,2]]},"485":{"position":[[49,2],[356,2]]}}}],["befor",{"_index":56,"t":{"471":{"position":[[93,6]]}}}],["below",{"_index":155,"t":{"485":{"position":[[208,5],[668,5],[1129,5]]}}}],["binari",{"_index":143,"t":{"485":{"position":[[9,6]]}}}],["block",{"_index":91,"t":{"475":{"position":[[143,6]]},"477":{"position":[[13,5]]},"479":{"position":[[13,5]]},"481":{"position":[[13,5]]},"485":{"position":[[1554,5]]}}}],["boot",{"_index":242,"t":{"485":{"position":[[1866,4],[1883,4]]}}}],["by",{"_index":161,"t":{"485":{"position":[[329,2],[396,2],[614,2],[1674,2]]}}}],["c",{"_index":128,"t":{"483":{"position":[[400,1]]}}}],["can",{"_index":4,"t":{"469":{"position":[[29,3]]},"471":{"position":[[145,3]]},"485":{"position":[[45,3],[347,3]]}}}],["chain",{"_index":187,"t":{"485":{"position":[[788,6],[1591,6]]}}}],["color",{"_index":172,"t":{"485":{"position":[[530,7]]}}}],["colour",{"_index":173,"t":{"485":{"position":[[543,7]]}}}],["command",{"_index":130,"t":{"483":{"position":[[446,7]]},"485":{"position":[[376,7],[458,7]]}}}],["complet",{"_index":32,"t":{"469":{"position":[[248,8]]}}}],["config",{"_index":158,"t":{"485":{"position":[[253,6],[272,6]]}}}],["configur",{"_index":41,"t":{"469":{"position":[[313,13]]},"485":{"position":[[65,14],[359,10],[501,13]]}}}],["content",{"_index":124,"t":{"483":{"position":[[339,8]]}}}],["correct",{"_index":133,"t":{"483":{"position":[[498,7]]}}}],["curl",{"_index":110,"t":{"483":{"position":[[66,4]]}}}],["current",{"_index":235,"t":{"485":{"position":[[1749,9]]}}}],["d",{"_index":20,"t":{"469":{"position":[[137,1]]},"483":{"position":[[562,1]]}}}],["databas",{"_index":2,"t":{"469":{"position":[[9,8]]},"475":{"position":[[57,8]]},"485":{"position":[[570,9]]}}}],["db",{"_index":27,"t":{"469":{"position":[[213,2]]},"483":{"position":[[713,2]]},"485":{"position":[[109,2],[684,2]]}}}],["debug",{"_index":208,"t":{"485":{"position":[[1414,6]]}}}],["decreas",{"_index":79,"t":{"475":{"position":[[3,8]]}}}],["default",{"_index":145,"t":{"485":{"position":[[32,8],[225,7],[332,9],[617,8],[1677,8]]}}}],["deprec",{"_index":60,"t":{"471":{"position":[[128,12]]}}}],["directori",{"_index":3,"t":{"469":{"position":[[18,10],[40,9]]},"483":{"position":[[183,9],[211,9]]}}}],["disabl",{"_index":228,"t":{"485":{"position":[[1665,8]]}}}],["discord",{"_index":76,"t":{"473":{"position":[[72,7]]}}}],["docker",{"_index":18,"t":{"469":{"position":[[125,6],[335,6]]},"483":{"position":[[439,6],[550,6]]}}}],["download",{"_index":84,"t":{"475":{"position":[[41,8],[82,11]]},"477":{"position":[[19,8]]},"479":{"position":[[19,8]]},"481":{"position":[[19,8]]},"483":{"position":[[0,8]]}}}],["durat",{"_index":221,"t":{"485":{"position":[[1610,8]]}}}],["e.g",{"_index":166,"t":{"485":{"position":[[432,6]]}}}],["enabl",{"_index":171,"t":{"485":{"position":[[523,6],[908,7],[1810,6]]}}}],["endpoint",{"_index":183,"t":{"485":{"position":[[736,8]]}}}],["ensur",{"_index":115,"t":{"483":{"position":[[193,6],[467,8]]}}}],["error",{"_index":210,"t":{"485":{"position":[[1433,5]]}}}],["eth",{"_index":193,"t":{"485":{"position":[[893,3]]}}}],["ethereum",{"_index":184,"t":{"485":{"position":[[752,8]]}}}],["exampl",{"_index":40,"t":{"469":{"position":[[305,7]]}}}],["execut",{"_index":129,"t":{"483":{"position":[[427,7]]}}}],["experiment",{"_index":232,"t":{"485":{"position":[[1714,12]]}}}],["explan",{"_index":38,"t":{"469":{"position":[[283,13]]}}}],["extract",{"_index":122,"t":{"483":{"position":[[311,7],[327,7]]}}}],["fals",{"_index":194,"t":{"485":{"position":[[943,5],[1182,5],[1251,5],[1305,5],[1360,5],[1802,5]]}}}],["feeder",{"_index":58,"t":{"471":{"position":[[113,6]]}}}],["fetch",{"_index":107,"t":{"483":{"position":[[18,5]]},"485":{"position":[[1536,5]]}}}],["file",{"_index":126,"t":{"483":{"position":[[360,5]]},"485":{"position":[[203,4],[515,5]]}}}],["filenam",{"_index":159,"t":{"485":{"position":[[279,10]]}}}],["find",{"_index":67,"t":{"473":{"position":[[0,4]]}}}],["fine",{"_index":148,"t":{"485":{"position":[[90,4]]}}}],["five",{"_index":223,"t":{"485":{"position":[[1627,5]]}}}],["follow",{"_index":73,"t":{"473":{"position":[[47,9]]},"483":{"position":[[741,9]]}}}],["for",{"_index":30,"t":{"469":{"position":[[242,3]]},"471":{"position":[[19,3]]},"485":{"position":[[80,3],[1002,3],[1085,3]]}}}],["form",{"_index":66,"t":{"471":{"position":[[187,5]]}}}],["from",{"_index":108,"t":{"483":{"position":[[35,4]]}}}],["gateway",{"_index":59,"t":{"471":{"position":[[120,7]]}}}],["gb",{"_index":98,"t":{"477":{"position":[[45,2]]},"479":{"position":[[45,2]]},"481":{"position":[[46,2]]}}}],["github",{"_index":75,"t":{"473":{"position":[[65,6]]}}}],["goerli",{"_index":212,"t":{"485":{"position":[[1475,7]]}}}],["goerli2",{"_index":213,"t":{"485":{"position":[[1483,8]]}}}],["googl",{"_index":65,"t":{"471":{"position":[[180,6]]}}}],["grpc",{"_index":206,"t":{"485":{"position":[[1354,5],[1366,4],[1387,4]]}}}],["have",{"_index":116,"t":{"483":{"position":[[204,4]]}}}],["head",{"_index":220,"t":{"485":{"position":[[1579,4]]}}}],["help",{"_index":44,"t":{"469":{"position":[[364,4]]}}}],["home/ /.local/share/juno",{"_index":181,"t":{"485":{"position":[[693,30]]}}}],["home/snapshot",{"_index":121,"t":{"483":{"position":[[269,16],[295,15],[402,15]]}}}],["home/snapshots/juno_mainnet",{"_index":134,"t":{"483":{"position":[[520,29]]}}}],["home/snapshots/juno_mainnet:/var/lib/juno",{"_index":135,"t":{"483":{"position":[[598,42]]}}}],["host",{"_index":136,"t":{"483":{"position":[[696,4]]},"485":{"position":[[1021,5],[1214,5],[1263,5],[1319,5],[1371,5]]}}}],["how",{"_index":216,"t":{"485":{"position":[[1523,3]]}}}],["http",{"_index":13,"t":{"469":{"position":[[91,4],[237,4]]},"483":{"position":[[663,4],[672,4],[691,4]]},"485":{"position":[[123,4],[920,4],[937,5],[974,4],[1016,4],[1057,4],[1099,4],[1154,4]]}}}],["https://juno",{"_index":112,"t":{"483":{"position":[[98,12]]}}}],["id",{"_index":192,"t":{"485":{"position":[[889,3]]}}}],["if",{"_index":45,"t":{"471":{"position":[[0,2]]},"485":{"position":[[797,2]]}}}],["in",{"_index":72,"t":{"473":{"position":[[40,2]]},"485":{"position":[[191,2],[309,2],[494,2]]}}}],["info",{"_index":169,"t":{"485":{"position":[[451,6],[1421,5],[1450,4]]}}}],["infura",{"_index":188,"t":{"485":{"position":[[806,7],[874,6]]}}}],["integr",{"_index":214,"t":{"485":{"position":[[1492,11]]}}}],["interest",{"_index":63,"t":{"471":{"position":[[163,8]]}}}],["interfac",{"_index":195,"t":{"485":{"position":[[951,9]]}}}],["interv",{"_index":230,"t":{"485":{"position":[[1699,9]]}}}],["is",{"_index":177,"t":{"485":{"position":[[632,2],[1746,2]]}}}],["it",{"_index":189,"t":{"485":{"position":[[814,2]]}}}],["juno",{"_index":22,"t":{"469":{"position":[[146,4]]},"473":{"position":[[12,4]]},"475":{"position":[[52,4],[120,4]]},"483":{"position":[[422,4],[461,5],[573,4],[764,4]]},"485":{"position":[[4,4],[297,5],[342,4],[582,4]]}}}],["juno'",{"_index":1,"t":{"469":{"position":[[2,6],[84,6]]}}}],["juno_goerli2_135973.tar",{"_index":106,"t":{"481":{"position":[[56,23]]}}}],["juno_goerli_850192.tar",{"_index":103,"t":{"479":{"position":[[55,22]]}}}],["juno_mainnet_247401.tar",{"_index":100,"t":{"477":{"position":[[55,23]]},"483":{"position":[[74,23],[375,23]]}}}],["junodb",{"_index":12,"t":{"469":{"position":[[75,6]]}}}],["junodb:/var/lib/juno",{"_index":25,"t":{"469":{"position":[[167,20]]}}}],["l2",{"_index":186,"t":{"485":{"position":[[785,2]]}}}],["level",{"_index":168,"t":{"485":{"position":[[445,5],[1443,6]]}}}],["like",{"_index":179,"t":{"485":{"position":[[653,4],[833,4],[1619,4]]}}}],["line",{"_index":163,"t":{"485":{"position":[[384,4],[466,4]]}}}],["link",{"_index":95,"t":{"477":{"position":[[28,4]]},"479":{"position":[[28,4]]},"481":{"position":[[28,4]]}}}],["linux",{"_index":180,"t":{"485":{"position":[[677,6]]}}}],["list",{"_index":33,"t":{"469":{"position":[[257,4]]}}}],["listen",{"_index":15,"t":{"469":{"position":[[103,7]]},"485":{"position":[[995,6],[1078,6]]}}}],["localhost",{"_index":197,"t":{"485":{"position":[[1027,9],[1220,9],[1269,9],[1325,9],[1377,9]]}}}],["log",{"_index":167,"t":{"485":{"position":[[441,3],[538,4],[1439,3]]}}}],["look",{"_index":48,"t":{"471":{"position":[[11,7]]},"485":{"position":[[303,5],[817,5]]}}}],["machin",{"_index":9,"t":{"469":{"position":[[57,8]]},"483":{"position":[[802,8]]}}}],["mainnet",{"_index":211,"t":{"485":{"position":[[1466,8],[1513,7]]}}}],["may",{"_index":82,"t":{"475":{"position":[[30,3]]}}}],["member",{"_index":70,"t":{"473":{"position":[[22,7]]}}}],["metric",{"_index":204,"t":{"485":{"position":[[1296,8],[1311,7],[1335,7]]}}}],["minut",{"_index":227,"t":{"485":{"position":[[1653,9]]}}}],["mkdir",{"_index":10,"t":{"469":{"position":[[66,5]]},"483":{"position":[[286,5]]}}}],["must",{"_index":92,"t":{"475":{"position":[[150,4]]}}}],["name",{"_index":21,"t":{"469":{"position":[[141,4]]},"483":{"position":[[568,4]]},"485":{"position":[[427,4]]}}}],["nethermind",{"_index":52,"t":{"471":{"position":[[48,10]]}}}],["nethermind/juno",{"_index":43,"t":{"469":{"position":[[346,15]]},"483":{"position":[[643,15]]}}}],["nethermind/juno:latest",{"_index":26,"t":{"469":{"position":[[188,22]]}}}],["network",{"_index":215,"t":{"485":{"position":[[1504,8]]}}}],["no",{"_index":236,"t":{"485":{"position":[[1759,2]]}}}],["node",{"_index":88,"t":{"475":{"position":[[125,5]]},"485":{"position":[[761,4],[897,5],[1888,5]]}}}],["o",{"_index":111,"t":{"483":{"position":[[72,1]]}}}],["of",{"_index":34,"t":{"469":{"position":[[262,2]]},"483":{"position":[[44,2],[348,2]]},"485":{"position":[[745,2],[1584,2]]}}}],["offer",{"_index":54,"t":{"471":{"position":[[64,5]]}}}],["often",{"_index":217,"t":{"485":{"position":[[1527,5]]}}}],["on",{"_index":7,"t":{"469":{"position":[[50,2],[111,2]]},"471":{"position":[[172,2]]},"483":{"position":[[40,3],[794,2]]},"485":{"position":[[674,2],[961,2],[1044,2]]}}}],["onli",{"_index":89,"t":{"475":{"position":[[131,4]]}}}],["opt",{"_index":83,"t":{"475":{"position":[[34,3]]}}}],["option",{"_index":35,"t":{"469":{"position":[[265,7]]},"485":{"position":[[133,7],[179,7],[290,6],[420,6],[1121,7],[1163,7],[1405,8],[1457,8],[1731,8]]}}}],["or",{"_index":42,"t":{"469":{"position":[[327,2]]},"485":{"position":[[1642,2]]}}}],["overrid",{"_index":170,"t":{"485":{"position":[[478,8]]}}}],["p",{"_index":11,"t":{"469":{"position":[[73,1],[152,1]]},"483":{"position":[[293,1],[581,1]]}}}],["p2p",{"_index":233,"t":{"485":{"position":[[1727,3],[1784,3],[1797,4],[1821,3],[1832,3],[1862,3]]}}}],["param",{"_index":164,"t":{"485":{"position":[[389,6],[471,6]]}}}],["path",{"_index":28,"t":{"469":{"position":[[216,4]]},"483":{"position":[[515,4],[716,4]]},"485":{"position":[[112,4],[558,4],[687,5]]}}}],["peer",{"_index":243,"t":{"485":{"position":[[1871,6]]}}}],["pend",{"_index":218,"t":{"485":{"position":[[1546,7],[1686,7]]}}}],["place",{"_index":74,"t":{"473":{"position":[[57,7]]}}}],["poll",{"_index":229,"t":{"485":{"position":[[1694,4]]}}}],["port",{"_index":16,"t":{"469":{"position":[[114,4]]},"483":{"position":[[677,4]]},"485":{"position":[[128,4],[1039,4],[1104,5],[1233,5],[1285,5],[1343,5],[1392,5]]}}}],["pprof",{"_index":202,"t":{"485":{"position":[[1244,6],[1257,5],[1279,5]]}}}],["prepar",{"_index":114,"t":{"483":{"position":[[175,7]]}}}],["prepend",{"_index":165,"t":{"485":{"position":[[399,10]]}}}],["project",{"_index":191,"t":{"485":{"position":[[881,7]]}}}],["provid",{"_index":51,"t":{"471":{"position":[[38,9]]},"483":{"position":[[51,8],[825,8]]},"485":{"position":[[241,7],[1600,7]]}}}],["reason",{"_index":144,"t":{"485":{"position":[[21,10]]}}}],["recent",{"_index":90,"t":{"475":{"position":[[136,6]]}}}],["regist",{"_index":61,"t":{"471":{"position":[[149,8]]}}}],["request",{"_index":196,"t":{"485":{"position":[[1006,9],[1089,9]]}}}],["rpc",{"_index":50,"t":{"471":{"position":[[34,3],[81,3]]},"485":{"position":[[925,3],[979,3],[1062,3],[1159,3],[1200,3]]}}}],["run",{"_index":19,"t":{"469":{"position":[[132,3],[330,4],[342,3]]},"483":{"position":[[418,3],[457,3],[557,3],[786,7]]}}}],["second",{"_index":224,"t":{"485":{"position":[[1633,8]]}}}],["see",{"_index":39,"t":{"469":{"position":[[297,3]]}}}],["server",{"_index":14,"t":{"469":{"position":[[96,6]]},"485":{"position":[[929,7],[983,6],[1066,6],[1204,6],[1825,6]]}}}],["servic",{"_index":55,"t":{"471":{"position":[[85,7]]}}}],["should",{"_index":140,"t":{"483":{"position":[[769,6]]}}}],["similar",{"_index":198,"t":{"485":{"position":[[1139,7]]}}}],["size",{"_index":94,"t":{"477":{"position":[[8,4]]},"479":{"position":[[8,4]]},"481":{"position":[[8,4]]}}}],["snapshot",{"_index":85,"t":{"475":{"position":[[66,9],[96,8]]},"483":{"position":[[9,8],[26,8],[246,10],[506,8],[834,9]]}}}],["snapshots.nethermind.dev/mainnet/juno_mainnet_v0.6.3_247401.tar",{"_index":113,"t":{"483":{"position":[[111,63]]}}}],["someth",{"_index":178,"t":{"485":{"position":[[643,9],[823,9]]}}}],["sourc",{"_index":240,"t":{"485":{"position":[[1847,6]]}}}],["standard",{"_index":237,"t":{"485":{"position":[[1762,12]]}}}],["starknet",{"_index":49,"t":{"471":{"position":[[25,8],[72,8]]},"485":{"position":[[1775,8]]}}}],["start",{"_index":87,"t":{"475":{"position":[[109,8]]}}}],["step",{"_index":139,"t":{"483":{"position":[[757,6]]}}}],["store",{"_index":118,"t":{"483":{"position":[[236,5]]}}}],["suffici",{"_index":151,"t":{"485":{"position":[[153,11]]}}}],["sync",{"_index":80,"t":{"475":{"position":[[12,4],[158,7]]},"485":{"position":[[1565,6]]}}}],["tar",{"_index":125,"t":{"483":{"position":[[355,4],[366,3]]}}}],["tarbal",{"_index":123,"t":{"483":{"position":[[319,7]]}}}],["team",{"_index":69,"t":{"473":{"position":[[17,4]]}}}],["telegram",{"_index":77,"t":{"473":{"position":[[80,8]]}}}],["testnet",{"_index":238,"t":{"485":{"position":[[1788,8]]}}}],["that",{"_index":131,"t":{"483":{"position":[[476,4]]}}}],["the",{"_index":8,"t":{"469":{"position":[[53,3],[301,3]]},"471":{"position":[[100,3]]},"473":{"position":[[43,3]]},"483":{"position":[[47,3],[242,3],[335,3],[351,3],[435,3],[494,3],[821,3]]},"485":{"position":[[0,3],[103,3],[194,3],[249,3],[266,3],[416,3],[497,3],[566,3],[658,3],[748,3],[781,3],[916,3],[970,3],[1053,3],[1117,3],[1150,3],[1542,3],[1575,3],[1587,3],[1817,3]]}}}],["their",{"_index":37,"t":{"469":{"position":[[277,5]]},"485":{"position":[[219,5]]}}}],["there",{"_index":234,"t":{"485":{"position":[[1740,5]]}}}],["these",{"_index":138,"t":{"483":{"position":[[751,5]]}}}],["thi",{"_index":64,"t":{"471":{"position":[[175,4]]}}}],["time",{"_index":81,"t":{"475":{"position":[[17,6]]}}}],["to",{"_index":78,"t":{"475":{"position":[[0,2],[38,2]]},"483":{"position":[[454,2]]},"485":{"position":[[413,2],[563,2],[771,2],[1147,2],[1533,2],[1572,2]]}}}],["true",{"_index":174,"t":{"485":{"position":[[551,4]]}}}],["tune",{"_index":149,"t":{"485":{"position":[[95,7]]}}}],["up",{"_index":141,"t":{"483":{"position":[[779,2]]}}}],["upcom",{"_index":57,"t":{"471":{"position":[[104,8]]}}}],["url",{"_index":109,"t":{"483":{"position":[[60,5]]}}}],["us",{"_index":120,"t":{"483":{"position":[[265,3],[488,5]]},"485":{"position":[[16,4],[52,4],[260,5],[370,5],[587,4],[766,4],[800,5]]}}}],["user",{"_index":71,"t":{"473":{"position":[[34,5]]},"475":{"position":[[24,5]]}}}],["usual",{"_index":150,"t":{"485":{"position":[[145,7],[635,7]]}}}],["util",{"_index":142,"t":{"483":{"position":[[811,9]]}}}],["v",{"_index":24,"t":{"469":{"position":[[165,1]]},"483":{"position":[[596,1]]}}}],["v0.6.0",{"_index":96,"t":{"477":{"position":[[33,8]]},"479":{"position":[[33,8]]},"481":{"position":[[33,8]]}}}],["valu",{"_index":157,"t":{"485":{"position":[[233,7],[487,6],[662,5]]}}}],["var/lib/juno",{"_index":29,"t":{"469":{"position":[[221,13]]},"483":{"position":[[721,13]]}}}],["verifi",{"_index":185,"t":{"485":{"position":[[774,6]]}}}],["version",{"_index":93,"t":{"477":{"position":[[0,7]]},"479":{"position":[[0,7]]},"481":{"position":[[0,7]]}}}],["warn",{"_index":209,"t":{"485":{"position":[[1427,5]]}}}],["we",{"_index":119,"t":{"483":{"position":[[257,2]]}}}],["websocket",{"_index":182,"t":{"485":{"position":[[726,9],[1190,9]]}}}],["when",{"_index":219,"t":{"485":{"position":[[1560,4]]}}}],["where",{"_index":117,"t":{"483":{"position":[[221,5]]}}}],["which",{"_index":176,"t":{"485":{"position":[[626,5],[964,5],[1047,5]]}}}],["will",{"_index":53,"t":{"471":{"position":[[59,4]]},"483":{"position":[[231,4],[260,4]]},"485":{"position":[[990,4],[1073,4]]}}}],["with",{"_index":156,"t":{"485":{"position":[[214,4]]}}}],["without",{"_index":146,"t":{"485":{"position":[[57,7]]}}}],["ws",{"_index":200,"t":{"485":{"position":[[1178,3],[1211,2],[1230,2]]}}}],["wss://mainnet.infura.io/ws/v3/your",{"_index":190,"t":{"485":{"position":[[838,35]]}}}],["xdg_config_hom",{"_index":160,"t":{"485":{"position":[[312,16]]}}}],["xdg_data_home/juno",{"_index":175,"t":{"485":{"position":[[592,21]]}}}],["xvf",{"_index":127,"t":{"483":{"position":[[371,3]]}}}],["yaml",{"_index":154,"t":{"485":{"position":[[198,4]]}}}],["you",{"_index":46,"t":{"471":{"position":[[3,3],[141,3]]},"483":{"position":[[200,3],[227,3]]}}}],["you'r",{"_index":132,"t":{"483":{"position":[[481,6]]}}}],["your",{"_index":62,"t":{"471":{"position":[[158,4]]},"483":{"position":[[797,4]]}}}]],"pipeline":["stemmer"]}}] \ No newline at end of file +[{"documents":[{"i":345,"t":"Sync Starknet in Two Commands","u":"/0.6.3/","b":[]},{"i":351,"t":"Database Snapshots","u":"/0.6.3/snapshots","b":[]},{"i":361,"t":"Example Configuration","u":"/0.6.3/config","b":[]}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/345",[0,0.771,1,0.771,2,0.771,3,0.771,4,0.771]],["t/351",[5,1.136,6,1.136]],["t/361",[7,1.136,8,1.136]]],"invertedIndex":[["command",{"_index":4,"t":{"345":{"position":[[21,8]]}}}],["configur",{"_index":8,"t":{"361":{"position":[[8,13]]}}}],["databas",{"_index":5,"t":{"351":{"position":[[0,8]]}}}],["exampl",{"_index":7,"t":{"361":{"position":[[0,7]]}}}],["in",{"_index":2,"t":{"345":{"position":[[14,2]]}}}],["snapshot",{"_index":6,"t":{"351":{"position":[[9,9]]}}}],["starknet",{"_index":1,"t":{"345":{"position":[[5,8]]}}}],["sync",{"_index":0,"t":{"345":{"position":[[0,4]]}}}],["two",{"_index":3,"t":{"345":{"position":[[17,3]]}}}]],"pipeline":["stemmer"]}},{"documents":[{"i":347,"t":"Looking for a Starknet RPC Provider?","u":"/0.6.3/","h":"","p":345},{"i":349,"t":"Questions, Discussions, Community","u":"/0.6.3/","h":"","p":345},{"i":353,"t":"Mainnet","u":"/0.6.3/snapshots","h":"#mainnet","p":351},{"i":355,"t":"Goerli","u":"/0.6.3/snapshots","h":"#goerli","p":351},{"i":357,"t":"Goerli2","u":"/0.6.3/snapshots","h":"#goerli2","p":351},{"i":359,"t":"Run Juno Using Snapshot","u":"/0.6.3/snapshots","h":"#run-juno-using-snapshot","p":351}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/347",[0,1.019,1,1.019,2,1.019,3,1.019,4,1.019,5,1.019]],["t/349",[6,1.466,7,1.466,8,1.466]],["t/353",[9,2.07]],["t/355",[10,2.07]],["t/357",[11,2.07]],["t/359",[12,1.279,13,1.279,14,1.279,15,1.279]]],"invertedIndex":[["a",{"_index":2,"t":{"347":{"position":[[12,1]]}}}],["commun",{"_index":8,"t":{"349":{"position":[[24,9]]}}}],["discuss",{"_index":7,"t":{"349":{"position":[[11,12]]}}}],["for",{"_index":1,"t":{"347":{"position":[[8,3]]}}}],["goerli",{"_index":10,"t":{"355":{"position":[[0,6]]}}}],["goerli2",{"_index":11,"t":{"357":{"position":[[0,7]]}}}],["juno",{"_index":13,"t":{"359":{"position":[[4,4]]}}}],["look",{"_index":0,"t":{"347":{"position":[[0,7]]}}}],["mainnet",{"_index":9,"t":{"353":{"position":[[0,7]]}}}],["provid",{"_index":5,"t":{"347":{"position":[[27,9]]}}}],["question",{"_index":6,"t":{"349":{"position":[[0,10]]}}}],["rpc",{"_index":4,"t":{"347":{"position":[[23,3]]}}}],["run",{"_index":12,"t":{"359":{"position":[[0,3]]}}}],["snapshot",{"_index":15,"t":{"359":{"position":[[15,8]]}}}],["starknet",{"_index":3,"t":{"347":{"position":[[14,8]]}}}],["us",{"_index":14,"t":{"359":{"position":[[9,5]]}}}]],"pipeline":["stemmer"]}},{"documents":[{"i":346,"t":"# Juno's database directory. Can be any directory on the machine. mkdir -p junodb # Juno's HTTP server listens on port 6060. docker run -d --name juno -p 6060:6060 -v junodb:/var/lib/juno nethermind/juno:latest --db-path /var/lib/juno --http For a complete list of options and their explanations, see the Example Configuration or run: docker run nethermind/juno --help","s":"Sync Starknet in Two Commands","u":"/0.6.3/","h":"","p":345},{"i":348,"t":"If you are looking for a Starknet RPC provider, Nethermind will offer a Starknet RPC service before the upcoming feeder gateway deprecation. You can register your interest on this Google Form.","s":"Looking for a Starknet RPC Provider?","u":"/0.6.3/","h":"","p":345},{"i":350,"t":"Find active Juno team members and users in the following places. GitHub Discord Telegram","s":"Questions, Discussions, Community","u":"/0.6.3/","h":"","p":345},{"i":352,"t":"To decrease sync times, users may opt to download a Juno database snapshot. After downloading a snapshot and starting a Juno node, only recent blocks must be synced.","s":"Database Snapshots","u":"/0.6.3/snapshots","h":"","p":351},{"i":354,"t":"Version Size Block Download Link >=v0.6.0 76 GB 247401 juno_mainnet_247401.tar","s":"Mainnet","u":"/0.6.3/snapshots","h":"#mainnet","p":351},{"i":356,"t":"Version Size Block Download Link >=v0.6.0 36 GB 850192 juno_goerli_850192.tar","s":"Goerli","u":"/0.6.3/snapshots","h":"#goerli","p":351},{"i":358,"t":"Version Size Block Download Link >=v0.6.0 4.6 GB 139043 juno_goerli2_135973.tar","s":"Goerli2","u":"/0.6.3/snapshots","h":"#goerli2","p":351},{"i":360,"t":"Download Snapshot Fetch a snapshot from one of the provided URLs: curl -o juno_mainnet_247401.tar https://juno-snapshots.nethermind.dev/mainnet/juno_mainnet_v0.6.3_247401.tar Prepare Directory Ensure you have a directory where you will store the snapshots. We will use $HOME/snapshots. mkdir -p $HOME/snapshots Extract Tarball Extract the contents of the .tar file: tar -xvf juno_mainnet_247401.tar -C $HOME/snapshots Run Juno Execute the Docker command to run Juno, ensuring that you're using the correct snapshot path $HOME/snapshots/juno_mainnet: docker run -d \\ --name juno \\ -p 6060:6060 \\ -v $HOME/snapshots/juno_mainnet:/var/lib/juno \\ nethermind/juno \\ --http \\ --http-port 6060 \\ --http-host 0.0.0.0 \\ --db-path /var/lib/juno After following these steps, Juno should be up and running on your machine, utilizing the provided snapshot.","s":"Run Juno Using Snapshot","u":"/0.6.3/snapshots","h":"#run-juno-using-snapshot","p":351},{"i":362,"t":"The Juno binary uses reasonable defaults and can be used without configuration. For basic fine-tuning, the --db-path and --http-port options are usually sufficient. All available options are in the YAML file below with their default values. Provide the config using the --config option (Juno looks in $XDG_CONFIG_HOME by default). Juno can also be configured using command line params by prepending -- to the option name (e.g., --log-level info). Command line params override values in the configuration file. # Enable colored logs colour: true # Path to the database. # Juno uses `$XDG_DATA_HOME/juno` by default, which is usually something like the value below on Linux. db-path: /home/ /.local/share/juno # Websocket endpoint of the Ethereum node used to verify the L2 chain. # If using Infura, it looks something like `wss://mainnet.infura.io/ws/v3/your-infura-project-id` eth-node: \"\" # Enables the HTTP RPC server. http: false # Interface on which the HTTP RPC server will listen for requests. http-host: localhost # Port on which the HTTP RPC server will listen for requests. http-port: 6060 # The options below are similar to the HTTP RPC options above. ws: false # Websocket RPC server ws-host: localhost ws-port: 6061 pprof: false pprof-host: localhost pprof-port: 6062 metrics: false metrics-host: localhost metrics-port: 9090 grpc: false grpc-host: localhost grpc-port: 6064 # Options: debug, info, warn, error log-level: info # Options: mainnet, goerli, goerli2, integration network: mainnet # How often to fetch the pending block when synced to the head of the chain. # Provide a duration like 5s (five seconds) or 10m (10 minutes). # Disabled by default. pending-poll-interval: 0s # Experimental p2p options; there is currently no standardized Starknet p2p testnet. p2p: false # Enable the p2p server p2p-addr: \"\" # Source address p2p-boot-peers: \"\" # Boot nodes","s":"Example Configuration","u":"/0.6.3/config","h":"","p":361}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/346",[0,1.506,1,2.722,2,1.117,3,1.989,4,1.117,5,0.85,6,2.019,7,1.146,8,0.858,9,1.476,10,1.476,11,1.989,12,2.019,13,1.506,14,1.476,15,1.476,16,1.117,17,1.117,18,1.989,19,2.25,20,1.476,21,1.117,22,0.636,23,1.476,24,1.476,25,2.019,26,2.019,27,1.117,28,1.117,29,1.476,30,1.117,31,0.636,32,2.019,33,2.019,34,1.117,35,1.476,36,0.636,37,1.476,38,2.019,39,2.019,40,2.019,41,1.476,42,1.476,43,1.476,44,2.019]],["t/348",[4,1.333,7,1.014,8,0.759,30,1.333,31,0.963,45,1.761,46,2.233,47,1.761,48,1.761,49,2.233,50,2.233,51,1.333,52,2.409,53,1.333,54,2.409,55,2.409,56,2.409,57,2.409,58,2.409,59,2.409,60,2.409,61,2.409,62,1.761,63,2.409,64,2.409,65,2.409,66,2.409]],["t/350",[8,0.88,22,0.88,36,0.88,67,2.791,68,2.791,69,2.791,70,2.791,71,2.04,72,2.04,73,2.04,74,2.791,75,2.791,76,2.791,77,2.791]],["t/352",[2,1.366,5,1.039,22,0.978,31,1.069,36,0.778,71,1.804,78,1.717,79,2.469,80,2.267,81,2.469,82,2.469,83,2.469,84,0.978,85,2.267,86,1.804,87,2.469,88,1.804,89,2.469,90,2.469,91,0.778,92,2.469]],["t/354",[84,0.914,91,0.914,93,1.605,94,1.605,95,1.605,96,1.605,97,2.9,98,1.605,99,2.9,100,2.119]],["t/356",[84,0.914,91,0.914,93,1.605,94,1.605,95,1.605,96,1.605,98,1.605,101,2.9,102,2.9,103,2.9]],["t/358",[84,0.914,91,0.914,93,1.605,94,1.605,95,1.605,96,1.605,98,1.605,104,2.9,105,2.9,106,2.9]],["t/360",[0,1.871,3,1.574,5,0.611,7,0.907,8,1.037,9,1.061,10,1.061,11,1.574,13,1.421,16,0.803,17,0.803,18,1.574,19,2.076,20,1.061,21,0.803,22,0.895,23,1.061,24,1.061,27,0.803,28,1.192,29,1.061,31,0.679,34,1.192,36,0.457,43,1.061,46,1.574,51,1.192,53,1.192,62,1.061,73,1.061,78,0.803,84,0.457,85,2.218,86,1.061,100,1.574,107,1.061,108,1.452,109,1.452,110,1.452,111,1.452,112,1.452,113,1.452,114,1.452,115,2.154,116,1.452,117,1.452,118,1.452,119,1.452,120,1.574,121,2.568,122,2.154,123,1.452,124,1.452,125,2.154,126,1.061,127,1.452,128,1.452,129,1.452,130,1.061,131,1.452,132,1.452,133,1.452,134,1.452,135,1.452,136,1.061,137,1.452,138,1.452,139,1.452,140,1.452,141,1.452,142,1.452]],["t/362",[0,1.909,2,0.411,4,0.698,5,0.531,7,0.691,8,1.068,13,1.464,14,1.585,15,0.921,16,1.391,17,0.411,21,0.411,22,0.61,27,0.698,28,0.909,30,0.909,31,0.234,34,0.698,35,2.015,36,0.397,37,0.542,41,1.2,42,0.542,45,0.542,47,1.2,48,0.921,49,0.542,50,1.585,51,0.698,53,0.698,72,1.2,78,1.305,80,0.542,88,1.2,91,0.234,107,0.542,120,1.837,126,0.921,130,0.921,136,1.585,143,0.742,144,0.742,145,2.169,146,0.742,147,0.742,148,0.742,149,0.742,150,1.261,151,0.742,152,0.742,153,0.742,154,0.742,155,1.643,156,0.742,157,1.643,158,1.261,159,0.742,160,0.742,161,1.936,162,0.742,163,1.261,164,1.261,165,0.742,166,0.742,167,1.643,168,1.261,169,1.643,170,0.742,171,1.643,172,0.742,173,0.742,174,0.742,175,0.742,176,1.643,177,1.261,178,1.261,179,1.643,180,0.742,181,0.742,182,1.261,183,0.742,184,0.742,185,0.742,186,0.742,187,1.261,188,1.261,189,0.742,190,0.742,191,0.742,192,0.742,193,0.742,194,2.358,195,0.742,196,1.261,197,2.169,198,0.742,199,0.742,200,1.643,201,0.742,202,1.643,203,0.742,204,1.643,205,0.742,206,1.643,207,0.742,208,0.742,209,0.742,210,0.742,211,1.261,212,0.742,213,0.742,214,0.742,215,0.742,216,0.742,217,0.742,218,1.261,219,0.742,220,0.742,221,0.742,222,0.742,223,0.742,224,0.742,225,0.742,226,0.742,227,0.742,228,0.742,229,0.742,230,0.742,231,0.742,232,0.742,233,2.358,234,0.742,235,0.742,236,0.742,237,0.742,238,0.742,239,0.742,240,0.742,241,0.742,242,1.261,243,0.742]]],"invertedIndex":[["",{"_index":0,"t":{"346":{"position":[[0,1],[82,1]]},"360":{"position":[[564,1],[578,1],[593,1],[641,1],[659,1],[668,1],[687,1],[709,1]]},"362":{"position":[[521,1],[556,1],[580,1],[724,1],[795,1],[903,2],[906,1],[949,1],[1037,1],[1115,1],[1188,1],[1403,1],[1455,1],[1521,1],[1598,1],[1663,1],[1712,1],[1808,1],[1842,2],[1845,1],[1878,2],[1881,1]]}}}],["0.0.0.0",{"_index":137,"t":{"360":{"position":[[701,7]]}}}],["0s",{"_index":231,"t":{"362":{"position":[[1709,2]]}}}],["10",{"_index":226,"t":{"362":{"position":[[1649,3]]}}}],["10m",{"_index":225,"t":{"362":{"position":[[1645,3]]}}}],["139043",{"_index":105,"t":{"358":{"position":[[49,6]]}}}],["247401",{"_index":99,"t":{"354":{"position":[[48,6]]}}}],["36",{"_index":101,"t":{"356":{"position":[[42,2]]}}}],["4.6",{"_index":104,"t":{"358":{"position":[[42,3]]}}}],["5s",{"_index":222,"t":{"362":{"position":[[1624,2]]}}}],["6060",{"_index":17,"t":{"346":{"position":[[119,5]]},"360":{"position":[[682,4]]},"362":{"position":[[1110,4]]}}}],["6060:6060",{"_index":23,"t":{"346":{"position":[[154,9]]},"360":{"position":[[583,9]]}}}],["6061",{"_index":201,"t":{"362":{"position":[[1239,4]]}}}],["6062",{"_index":203,"t":{"362":{"position":[[1291,4]]}}}],["6064",{"_index":207,"t":{"362":{"position":[[1398,4]]}}}],["76",{"_index":97,"t":{"354":{"position":[[42,2]]}}}],["850192",{"_index":102,"t":{"356":{"position":[[48,6]]}}}],["9090",{"_index":205,"t":{"362":{"position":[[1349,4]]}}}],["a",{"_index":31,"t":{"346":{"position":[[246,1]]},"348":{"position":[[23,1],[70,1]]},"352":{"position":[[50,1],[94,1],[118,1]]},"360":{"position":[[24,1],[209,1]]},"362":{"position":[[1608,1]]}}}],["abov",{"_index":199,"t":{"362":{"position":[[1171,6]]}}}],["activ",{"_index":68,"t":{"350":{"position":[[5,6]]}}}],["addr",{"_index":239,"t":{"362":{"position":[[1836,5]]}}}],["address",{"_index":241,"t":{"362":{"position":[[1854,7]]}}}],["after",{"_index":86,"t":{"352":{"position":[[76,5]]},"360":{"position":[[735,5]]}}}],["all",{"_index":152,"t":{"362":{"position":[[165,3]]}}}],["also",{"_index":162,"t":{"362":{"position":[[351,4]]}}}],["and",{"_index":36,"t":{"346":{"position":[[273,3]]},"350":{"position":[[30,3]]},"352":{"position":[[105,3]]},"360":{"position":[[782,3]]},"362":{"position":[[41,3],[117,3]]}}}],["ani",{"_index":6,"t":{"346":{"position":[[36,3]]}}}],["ar",{"_index":47,"t":{"348":{"position":[[7,3]]},"362":{"position":[[141,3],[187,3],[1135,3]]}}}],["avail",{"_index":153,"t":{"362":{"position":[[169,9]]}}}],["basic",{"_index":147,"t":{"362":{"position":[[84,5]]}}}],["be",{"_index":5,"t":{"346":{"position":[[33,2]]},"352":{"position":[[155,2]]},"360":{"position":[[776,2]]},"362":{"position":[[49,2],[356,2]]}}}],["befor",{"_index":56,"t":{"348":{"position":[[93,6]]}}}],["below",{"_index":155,"t":{"362":{"position":[[208,5],[668,5],[1129,5]]}}}],["binari",{"_index":143,"t":{"362":{"position":[[9,6]]}}}],["block",{"_index":91,"t":{"352":{"position":[[143,6]]},"354":{"position":[[13,5]]},"356":{"position":[[13,5]]},"358":{"position":[[13,5]]},"362":{"position":[[1554,5]]}}}],["boot",{"_index":242,"t":{"362":{"position":[[1866,4],[1883,4]]}}}],["by",{"_index":161,"t":{"362":{"position":[[329,2],[396,2],[614,2],[1674,2]]}}}],["c",{"_index":128,"t":{"360":{"position":[[400,1]]}}}],["can",{"_index":4,"t":{"346":{"position":[[29,3]]},"348":{"position":[[145,3]]},"362":{"position":[[45,3],[347,3]]}}}],["chain",{"_index":187,"t":{"362":{"position":[[788,6],[1591,6]]}}}],["color",{"_index":172,"t":{"362":{"position":[[530,7]]}}}],["colour",{"_index":173,"t":{"362":{"position":[[543,7]]}}}],["command",{"_index":130,"t":{"360":{"position":[[446,7]]},"362":{"position":[[376,7],[458,7]]}}}],["complet",{"_index":32,"t":{"346":{"position":[[248,8]]}}}],["config",{"_index":158,"t":{"362":{"position":[[253,6],[272,6]]}}}],["configur",{"_index":41,"t":{"346":{"position":[[313,13]]},"362":{"position":[[65,14],[359,10],[501,13]]}}}],["content",{"_index":124,"t":{"360":{"position":[[339,8]]}}}],["correct",{"_index":133,"t":{"360":{"position":[[498,7]]}}}],["curl",{"_index":110,"t":{"360":{"position":[[66,4]]}}}],["current",{"_index":235,"t":{"362":{"position":[[1749,9]]}}}],["d",{"_index":20,"t":{"346":{"position":[[137,1]]},"360":{"position":[[562,1]]}}}],["databas",{"_index":2,"t":{"346":{"position":[[9,8]]},"352":{"position":[[57,8]]},"362":{"position":[[570,9]]}}}],["db",{"_index":27,"t":{"346":{"position":[[213,2]]},"360":{"position":[[713,2]]},"362":{"position":[[109,2],[684,2]]}}}],["debug",{"_index":208,"t":{"362":{"position":[[1414,6]]}}}],["decreas",{"_index":79,"t":{"352":{"position":[[3,8]]}}}],["default",{"_index":145,"t":{"362":{"position":[[32,8],[225,7],[332,9],[617,8],[1677,8]]}}}],["deprec",{"_index":60,"t":{"348":{"position":[[128,12]]}}}],["directori",{"_index":3,"t":{"346":{"position":[[18,10],[40,9]]},"360":{"position":[[183,9],[211,9]]}}}],["disabl",{"_index":228,"t":{"362":{"position":[[1665,8]]}}}],["discord",{"_index":76,"t":{"350":{"position":[[72,7]]}}}],["docker",{"_index":18,"t":{"346":{"position":[[125,6],[335,6]]},"360":{"position":[[439,6],[550,6]]}}}],["download",{"_index":84,"t":{"352":{"position":[[41,8],[82,11]]},"354":{"position":[[19,8]]},"356":{"position":[[19,8]]},"358":{"position":[[19,8]]},"360":{"position":[[0,8]]}}}],["durat",{"_index":221,"t":{"362":{"position":[[1610,8]]}}}],["e.g",{"_index":166,"t":{"362":{"position":[[432,6]]}}}],["enabl",{"_index":171,"t":{"362":{"position":[[523,6],[908,7],[1810,6]]}}}],["endpoint",{"_index":183,"t":{"362":{"position":[[736,8]]}}}],["ensur",{"_index":115,"t":{"360":{"position":[[193,6],[467,8]]}}}],["error",{"_index":210,"t":{"362":{"position":[[1433,5]]}}}],["eth",{"_index":193,"t":{"362":{"position":[[893,3]]}}}],["ethereum",{"_index":184,"t":{"362":{"position":[[752,8]]}}}],["exampl",{"_index":40,"t":{"346":{"position":[[305,7]]}}}],["execut",{"_index":129,"t":{"360":{"position":[[427,7]]}}}],["experiment",{"_index":232,"t":{"362":{"position":[[1714,12]]}}}],["explan",{"_index":38,"t":{"346":{"position":[[283,13]]}}}],["extract",{"_index":122,"t":{"360":{"position":[[311,7],[327,7]]}}}],["fals",{"_index":194,"t":{"362":{"position":[[943,5],[1182,5],[1251,5],[1305,5],[1360,5],[1802,5]]}}}],["feeder",{"_index":58,"t":{"348":{"position":[[113,6]]}}}],["fetch",{"_index":107,"t":{"360":{"position":[[18,5]]},"362":{"position":[[1536,5]]}}}],["file",{"_index":126,"t":{"360":{"position":[[360,5]]},"362":{"position":[[203,4],[515,5]]}}}],["filenam",{"_index":159,"t":{"362":{"position":[[279,10]]}}}],["find",{"_index":67,"t":{"350":{"position":[[0,4]]}}}],["fine",{"_index":148,"t":{"362":{"position":[[90,4]]}}}],["five",{"_index":223,"t":{"362":{"position":[[1627,5]]}}}],["follow",{"_index":73,"t":{"350":{"position":[[47,9]]},"360":{"position":[[741,9]]}}}],["for",{"_index":30,"t":{"346":{"position":[[242,3]]},"348":{"position":[[19,3]]},"362":{"position":[[80,3],[1002,3],[1085,3]]}}}],["form",{"_index":66,"t":{"348":{"position":[[187,5]]}}}],["from",{"_index":108,"t":{"360":{"position":[[35,4]]}}}],["gateway",{"_index":59,"t":{"348":{"position":[[120,7]]}}}],["gb",{"_index":98,"t":{"354":{"position":[[45,2]]},"356":{"position":[[45,2]]},"358":{"position":[[46,2]]}}}],["github",{"_index":75,"t":{"350":{"position":[[65,6]]}}}],["goerli",{"_index":212,"t":{"362":{"position":[[1475,7]]}}}],["goerli2",{"_index":213,"t":{"362":{"position":[[1483,8]]}}}],["googl",{"_index":65,"t":{"348":{"position":[[180,6]]}}}],["grpc",{"_index":206,"t":{"362":{"position":[[1354,5],[1366,4],[1387,4]]}}}],["have",{"_index":116,"t":{"360":{"position":[[204,4]]}}}],["head",{"_index":220,"t":{"362":{"position":[[1579,4]]}}}],["help",{"_index":44,"t":{"346":{"position":[[364,4]]}}}],["home/ /.local/share/juno",{"_index":181,"t":{"362":{"position":[[693,30]]}}}],["home/snapshot",{"_index":121,"t":{"360":{"position":[[269,16],[295,15],[402,15]]}}}],["home/snapshots/juno_mainnet",{"_index":134,"t":{"360":{"position":[[520,29]]}}}],["home/snapshots/juno_mainnet:/var/lib/juno",{"_index":135,"t":{"360":{"position":[[598,42]]}}}],["host",{"_index":136,"t":{"360":{"position":[[696,4]]},"362":{"position":[[1021,5],[1214,5],[1263,5],[1319,5],[1371,5]]}}}],["how",{"_index":216,"t":{"362":{"position":[[1523,3]]}}}],["http",{"_index":13,"t":{"346":{"position":[[91,4],[237,4]]},"360":{"position":[[663,4],[672,4],[691,4]]},"362":{"position":[[123,4],[920,4],[937,5],[974,4],[1016,4],[1057,4],[1099,4],[1154,4]]}}}],["https://juno",{"_index":112,"t":{"360":{"position":[[98,12]]}}}],["id",{"_index":192,"t":{"362":{"position":[[889,3]]}}}],["if",{"_index":45,"t":{"348":{"position":[[0,2]]},"362":{"position":[[797,2]]}}}],["in",{"_index":72,"t":{"350":{"position":[[40,2]]},"362":{"position":[[191,2],[309,2],[494,2]]}}}],["info",{"_index":169,"t":{"362":{"position":[[451,6],[1421,5],[1450,4]]}}}],["infura",{"_index":188,"t":{"362":{"position":[[806,7],[874,6]]}}}],["integr",{"_index":214,"t":{"362":{"position":[[1492,11]]}}}],["interest",{"_index":63,"t":{"348":{"position":[[163,8]]}}}],["interfac",{"_index":195,"t":{"362":{"position":[[951,9]]}}}],["interv",{"_index":230,"t":{"362":{"position":[[1699,9]]}}}],["is",{"_index":177,"t":{"362":{"position":[[632,2],[1746,2]]}}}],["it",{"_index":189,"t":{"362":{"position":[[814,2]]}}}],["juno",{"_index":22,"t":{"346":{"position":[[146,4]]},"350":{"position":[[12,4]]},"352":{"position":[[52,4],[120,4]]},"360":{"position":[[422,4],[461,5],[573,4],[764,4]]},"362":{"position":[[4,4],[297,5],[342,4],[582,4]]}}}],["juno'",{"_index":1,"t":{"346":{"position":[[2,6],[84,6]]}}}],["juno_goerli2_135973.tar",{"_index":106,"t":{"358":{"position":[[56,23]]}}}],["juno_goerli_850192.tar",{"_index":103,"t":{"356":{"position":[[55,22]]}}}],["juno_mainnet_247401.tar",{"_index":100,"t":{"354":{"position":[[55,23]]},"360":{"position":[[74,23],[375,23]]}}}],["junodb",{"_index":12,"t":{"346":{"position":[[75,6]]}}}],["junodb:/var/lib/juno",{"_index":25,"t":{"346":{"position":[[167,20]]}}}],["l2",{"_index":186,"t":{"362":{"position":[[785,2]]}}}],["level",{"_index":168,"t":{"362":{"position":[[445,5],[1443,6]]}}}],["like",{"_index":179,"t":{"362":{"position":[[653,4],[833,4],[1619,4]]}}}],["line",{"_index":163,"t":{"362":{"position":[[384,4],[466,4]]}}}],["link",{"_index":95,"t":{"354":{"position":[[28,4]]},"356":{"position":[[28,4]]},"358":{"position":[[28,4]]}}}],["linux",{"_index":180,"t":{"362":{"position":[[677,6]]}}}],["list",{"_index":33,"t":{"346":{"position":[[257,4]]}}}],["listen",{"_index":15,"t":{"346":{"position":[[103,7]]},"362":{"position":[[995,6],[1078,6]]}}}],["localhost",{"_index":197,"t":{"362":{"position":[[1027,9],[1220,9],[1269,9],[1325,9],[1377,9]]}}}],["log",{"_index":167,"t":{"362":{"position":[[441,3],[538,4],[1439,3]]}}}],["look",{"_index":48,"t":{"348":{"position":[[11,7]]},"362":{"position":[[303,5],[817,5]]}}}],["machin",{"_index":9,"t":{"346":{"position":[[57,8]]},"360":{"position":[[802,8]]}}}],["mainnet",{"_index":211,"t":{"362":{"position":[[1466,8],[1513,7]]}}}],["may",{"_index":82,"t":{"352":{"position":[[30,3]]}}}],["member",{"_index":70,"t":{"350":{"position":[[22,7]]}}}],["metric",{"_index":204,"t":{"362":{"position":[[1296,8],[1311,7],[1335,7]]}}}],["minut",{"_index":227,"t":{"362":{"position":[[1653,9]]}}}],["mkdir",{"_index":10,"t":{"346":{"position":[[66,5]]},"360":{"position":[[286,5]]}}}],["must",{"_index":92,"t":{"352":{"position":[[150,4]]}}}],["name",{"_index":21,"t":{"346":{"position":[[141,4]]},"360":{"position":[[568,4]]},"362":{"position":[[427,4]]}}}],["nethermind",{"_index":52,"t":{"348":{"position":[[48,10]]}}}],["nethermind/juno",{"_index":43,"t":{"346":{"position":[[346,15]]},"360":{"position":[[643,15]]}}}],["nethermind/juno:latest",{"_index":26,"t":{"346":{"position":[[188,22]]}}}],["network",{"_index":215,"t":{"362":{"position":[[1504,8]]}}}],["no",{"_index":236,"t":{"362":{"position":[[1759,2]]}}}],["node",{"_index":88,"t":{"352":{"position":[[125,5]]},"362":{"position":[[761,4],[897,5],[1888,5]]}}}],["o",{"_index":111,"t":{"360":{"position":[[72,1]]}}}],["of",{"_index":34,"t":{"346":{"position":[[262,2]]},"360":{"position":[[44,2],[348,2]]},"362":{"position":[[745,2],[1584,2]]}}}],["offer",{"_index":54,"t":{"348":{"position":[[64,5]]}}}],["often",{"_index":217,"t":{"362":{"position":[[1527,5]]}}}],["on",{"_index":7,"t":{"346":{"position":[[50,2],[111,2]]},"348":{"position":[[172,2]]},"360":{"position":[[40,3],[794,2]]},"362":{"position":[[674,2],[961,2],[1044,2]]}}}],["onli",{"_index":89,"t":{"352":{"position":[[131,4]]}}}],["opt",{"_index":83,"t":{"352":{"position":[[34,3]]}}}],["option",{"_index":35,"t":{"346":{"position":[[265,7]]},"362":{"position":[[133,7],[179,7],[290,6],[420,6],[1121,7],[1163,7],[1405,8],[1457,8],[1731,8]]}}}],["or",{"_index":42,"t":{"346":{"position":[[327,2]]},"362":{"position":[[1642,2]]}}}],["overrid",{"_index":170,"t":{"362":{"position":[[478,8]]}}}],["p",{"_index":11,"t":{"346":{"position":[[73,1],[152,1]]},"360":{"position":[[293,1],[581,1]]}}}],["p2p",{"_index":233,"t":{"362":{"position":[[1727,3],[1784,3],[1797,4],[1821,3],[1832,3],[1862,3]]}}}],["param",{"_index":164,"t":{"362":{"position":[[389,6],[471,6]]}}}],["path",{"_index":28,"t":{"346":{"position":[[216,4]]},"360":{"position":[[515,4],[716,4]]},"362":{"position":[[112,4],[558,4],[687,5]]}}}],["peer",{"_index":243,"t":{"362":{"position":[[1871,6]]}}}],["pend",{"_index":218,"t":{"362":{"position":[[1546,7],[1686,7]]}}}],["place",{"_index":74,"t":{"350":{"position":[[57,7]]}}}],["poll",{"_index":229,"t":{"362":{"position":[[1694,4]]}}}],["port",{"_index":16,"t":{"346":{"position":[[114,4]]},"360":{"position":[[677,4]]},"362":{"position":[[128,4],[1039,4],[1104,5],[1233,5],[1285,5],[1343,5],[1392,5]]}}}],["pprof",{"_index":202,"t":{"362":{"position":[[1244,6],[1257,5],[1279,5]]}}}],["prepar",{"_index":114,"t":{"360":{"position":[[175,7]]}}}],["prepend",{"_index":165,"t":{"362":{"position":[[399,10]]}}}],["project",{"_index":191,"t":{"362":{"position":[[881,7]]}}}],["provid",{"_index":51,"t":{"348":{"position":[[38,9]]},"360":{"position":[[51,8],[825,8]]},"362":{"position":[[241,7],[1600,7]]}}}],["reason",{"_index":144,"t":{"362":{"position":[[21,10]]}}}],["recent",{"_index":90,"t":{"352":{"position":[[136,6]]}}}],["regist",{"_index":61,"t":{"348":{"position":[[149,8]]}}}],["request",{"_index":196,"t":{"362":{"position":[[1006,9],[1089,9]]}}}],["rpc",{"_index":50,"t":{"348":{"position":[[34,3],[81,3]]},"362":{"position":[[925,3],[979,3],[1062,3],[1159,3],[1200,3]]}}}],["run",{"_index":19,"t":{"346":{"position":[[132,3],[330,4],[342,3]]},"360":{"position":[[418,3],[457,3],[557,3],[786,7]]}}}],["second",{"_index":224,"t":{"362":{"position":[[1633,8]]}}}],["see",{"_index":39,"t":{"346":{"position":[[297,3]]}}}],["server",{"_index":14,"t":{"346":{"position":[[96,6]]},"362":{"position":[[929,7],[983,6],[1066,6],[1204,6],[1825,6]]}}}],["servic",{"_index":55,"t":{"348":{"position":[[85,7]]}}}],["should",{"_index":140,"t":{"360":{"position":[[769,6]]}}}],["similar",{"_index":198,"t":{"362":{"position":[[1139,7]]}}}],["size",{"_index":94,"t":{"354":{"position":[[8,4]]},"356":{"position":[[8,4]]},"358":{"position":[[8,4]]}}}],["snapshot",{"_index":85,"t":{"352":{"position":[[66,9],[96,8]]},"360":{"position":[[9,8],[26,8],[246,10],[506,8],[834,9]]}}}],["snapshots.nethermind.dev/mainnet/juno_mainnet_v0.6.3_247401.tar",{"_index":113,"t":{"360":{"position":[[111,63]]}}}],["someth",{"_index":178,"t":{"362":{"position":[[643,9],[823,9]]}}}],["sourc",{"_index":240,"t":{"362":{"position":[[1847,6]]}}}],["standard",{"_index":237,"t":{"362":{"position":[[1762,12]]}}}],["starknet",{"_index":49,"t":{"348":{"position":[[25,8],[72,8]]},"362":{"position":[[1775,8]]}}}],["start",{"_index":87,"t":{"352":{"position":[[109,8]]}}}],["step",{"_index":139,"t":{"360":{"position":[[757,6]]}}}],["store",{"_index":118,"t":{"360":{"position":[[236,5]]}}}],["suffici",{"_index":151,"t":{"362":{"position":[[153,11]]}}}],["sync",{"_index":80,"t":{"352":{"position":[[12,4],[158,7]]},"362":{"position":[[1565,6]]}}}],["tar",{"_index":125,"t":{"360":{"position":[[355,4],[366,3]]}}}],["tarbal",{"_index":123,"t":{"360":{"position":[[319,7]]}}}],["team",{"_index":69,"t":{"350":{"position":[[17,4]]}}}],["telegram",{"_index":77,"t":{"350":{"position":[[80,8]]}}}],["testnet",{"_index":238,"t":{"362":{"position":[[1788,8]]}}}],["that",{"_index":131,"t":{"360":{"position":[[476,4]]}}}],["the",{"_index":8,"t":{"346":{"position":[[53,3],[301,3]]},"348":{"position":[[100,3]]},"350":{"position":[[43,3]]},"360":{"position":[[47,3],[242,3],[335,3],[351,3],[435,3],[494,3],[821,3]]},"362":{"position":[[0,3],[103,3],[194,3],[249,3],[266,3],[416,3],[497,3],[566,3],[658,3],[748,3],[781,3],[916,3],[970,3],[1053,3],[1117,3],[1150,3],[1542,3],[1575,3],[1587,3],[1817,3]]}}}],["their",{"_index":37,"t":{"346":{"position":[[277,5]]},"362":{"position":[[219,5]]}}}],["there",{"_index":234,"t":{"362":{"position":[[1740,5]]}}}],["these",{"_index":138,"t":{"360":{"position":[[751,5]]}}}],["thi",{"_index":64,"t":{"348":{"position":[[175,4]]}}}],["time",{"_index":81,"t":{"352":{"position":[[17,6]]}}}],["to",{"_index":78,"t":{"352":{"position":[[0,2],[38,2]]},"360":{"position":[[454,2]]},"362":{"position":[[413,2],[563,2],[771,2],[1147,2],[1533,2],[1572,2]]}}}],["true",{"_index":174,"t":{"362":{"position":[[551,4]]}}}],["tune",{"_index":149,"t":{"362":{"position":[[95,7]]}}}],["up",{"_index":141,"t":{"360":{"position":[[779,2]]}}}],["upcom",{"_index":57,"t":{"348":{"position":[[104,8]]}}}],["url",{"_index":109,"t":{"360":{"position":[[60,5]]}}}],["us",{"_index":120,"t":{"360":{"position":[[265,3],[488,5]]},"362":{"position":[[16,4],[52,4],[260,5],[370,5],[587,4],[766,4],[800,5]]}}}],["user",{"_index":71,"t":{"350":{"position":[[34,5]]},"352":{"position":[[24,5]]}}}],["usual",{"_index":150,"t":{"362":{"position":[[145,7],[635,7]]}}}],["util",{"_index":142,"t":{"360":{"position":[[811,9]]}}}],["v",{"_index":24,"t":{"346":{"position":[[165,1]]},"360":{"position":[[596,1]]}}}],["v0.6.0",{"_index":96,"t":{"354":{"position":[[33,8]]},"356":{"position":[[33,8]]},"358":{"position":[[33,8]]}}}],["valu",{"_index":157,"t":{"362":{"position":[[233,7],[487,6],[662,5]]}}}],["var/lib/juno",{"_index":29,"t":{"346":{"position":[[221,13]]},"360":{"position":[[721,13]]}}}],["verifi",{"_index":185,"t":{"362":{"position":[[774,6]]}}}],["version",{"_index":93,"t":{"354":{"position":[[0,7]]},"356":{"position":[[0,7]]},"358":{"position":[[0,7]]}}}],["warn",{"_index":209,"t":{"362":{"position":[[1427,5]]}}}],["we",{"_index":119,"t":{"360":{"position":[[257,2]]}}}],["websocket",{"_index":182,"t":{"362":{"position":[[726,9],[1190,9]]}}}],["when",{"_index":219,"t":{"362":{"position":[[1560,4]]}}}],["where",{"_index":117,"t":{"360":{"position":[[221,5]]}}}],["which",{"_index":176,"t":{"362":{"position":[[626,5],[964,5],[1047,5]]}}}],["will",{"_index":53,"t":{"348":{"position":[[59,4]]},"360":{"position":[[231,4],[260,4]]},"362":{"position":[[990,4],[1073,4]]}}}],["with",{"_index":156,"t":{"362":{"position":[[214,4]]}}}],["without",{"_index":146,"t":{"362":{"position":[[57,7]]}}}],["ws",{"_index":200,"t":{"362":{"position":[[1178,3],[1211,2],[1230,2]]}}}],["wss://mainnet.infura.io/ws/v3/your",{"_index":190,"t":{"362":{"position":[[838,35]]}}}],["xdg_config_hom",{"_index":160,"t":{"362":{"position":[[312,16]]}}}],["xdg_data_home/juno",{"_index":175,"t":{"362":{"position":[[592,21]]}}}],["xvf",{"_index":127,"t":{"360":{"position":[[371,3]]}}}],["yaml",{"_index":154,"t":{"362":{"position":[[198,4]]}}}],["you",{"_index":46,"t":{"348":{"position":[[3,3],[141,3]]},"360":{"position":[[200,3],[227,3]]}}}],["you'r",{"_index":132,"t":{"360":{"position":[[481,6]]}}}],["your",{"_index":62,"t":{"348":{"position":[[158,4]]},"360":{"position":[[797,4]]}}}]],"pipeline":["stemmer"]}}] \ No newline at end of file diff --git a/0.6.3/snapshots/index.html b/0.6.3/snapshots/index.html index 4d9838c928..8c09b70043 100644 --- a/0.6.3/snapshots/index.html +++ b/0.6.3/snapshots/index.html @@ -4,11 +4,11 @@ Database Snapshots | Juno - - + + -Version: 0.6.3 Database Snapshots
To decrease sync times, users may opt to download a Juno database snapshot. +
Version: 0.6.3 Database Snapshots
To decrease sync times, users may opt to download a Juno database snapshot. After downloading a snapshot and starting a Juno node, only recent blocks must be synced.
Mainnet
diff --git a/0.7.0/config/index.html b/0.7.0/config/index.html index d9f840133a..aa74fb6bd4 100644 --- a/0.7.0/config/index.html +++ b/0.7.0/config/index.html @@ -4,11 +4,11 @@Version Size Block Download Link >=v0.6.0 76 GB 247401 juno_mainnet_247401.tar Example Configuration | Juno - - + + -Version: 0.7.0 Example Configuration
The Juno binary uses reasonable defaults and can be used without configuration. +
Version: 0.7.0 Example Configuration
The Juno binary uses reasonable defaults and can be used without configuration. For basic fine-tuning, the
--db-path
and--http-port
options are usually sufficient.All available options are in the YAML file below with their default values. Provide the config using the
diff --git a/0.7.0/index.html b/0.7.0/index.html index 6c24f3aa99..82ba31f0db 100644 --- a/0.7.0/index.html +++ b/0.7.0/index.html @@ -4,11 +4,11 @@--config <filename>
option (Juno looks in$XDG_CONFIG_HOME
by default).Quick Start | Juno - - + + -
Juno is your fast and featureful Starknet client implementation.
+Juno is your fast and featureful Starknet client implementation.
Suitable for casual setups, production-grade indexers, and everything in between.
Installing on the GCP
To install the Starknet RPC Node on the Google Cloud Platform, you can use the Juno RPC virtual machine developed by Nethermind.
+Installing on the GCP
To install the Starknet RPC Node on the Google Cloud Platform, you can use the Juno RPC virtual machine developed by Nethermind.
Juno is a golang Starknet node implementation by Nethermind with the aim of decentralizing Starknet.
Installing Starkent RPC Juno Node VM
To quickly set up a Starkent RPC Juno Node VM environment on the Google Cloud Platform, follow these steps:
diff --git a/0.11.0/search-index.json b/0.11.0/search-index.json index bb6eef141f..fa11ecf724 100644 --- a/0.11.0/search-index.json +++ b/0.11.0/search-index.json @@ -1 +1 @@ -[{"documents":[{"i":368,"t":"Sync Starknet in Two Commands","u":"/0.11.0/","b":[]},{"i":376,"t":"Example Configuration","u":"/0.11.0/config","b":[]},{"i":378,"t":"Hardware Requirements","u":"/0.11.0/hardware-requirements","b":[]},{"i":384,"t":"Updating Juno Node","u":"/0.11.0/updating_node","b":[]},{"i":390,"t":"Installing on the GCP","u":"/0.11.0/installing-on-gcp","b":[]},{"i":394,"t":"Database Snapshots","u":"/0.11.0/snapshots","b":[]}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/368",[0,1.21,1,1.21,2,1.21,3,1.21,4,1.21]],["t/376",[5,1.784,6,1.784]],["t/378",[7,1.784,8,1.784]],["t/384",[9,1.54,10,1.54,11,1.54]],["t/390",[12,1.356,13,1.356,14,1.356,15,1.356]],["t/394",[16,1.784,17,1.784]]],"invertedIndex":[["command",{"_index":4,"t":{"368":{"position":[[21,8]]}}}],["configur",{"_index":6,"t":{"376":{"position":[[8,13]]}}}],["databas",{"_index":16,"t":{"394":{"position":[[0,8]]}}}],["exampl",{"_index":5,"t":{"376":{"position":[[0,7]]}}}],["gcp",{"_index":15,"t":{"390":{"position":[[18,3]]}}}],["hardwar",{"_index":7,"t":{"378":{"position":[[0,8]]}}}],["in",{"_index":2,"t":{"368":{"position":[[14,2]]}}}],["instal",{"_index":12,"t":{"390":{"position":[[0,10]]}}}],["juno",{"_index":10,"t":{"384":{"position":[[9,4]]}}}],["node",{"_index":11,"t":{"384":{"position":[[14,4]]}}}],["on",{"_index":13,"t":{"390":{"position":[[11,2]]}}}],["requir",{"_index":8,"t":{"378":{"position":[[9,12]]}}}],["snapshot",{"_index":17,"t":{"394":{"position":[[9,9]]}}}],["starknet",{"_index":1,"t":{"368":{"position":[[5,8]]}}}],["sync",{"_index":0,"t":{"368":{"position":[[0,4]]}}}],["the",{"_index":14,"t":{"390":{"position":[[14,3]]}}}],["two",{"_index":3,"t":{"368":{"position":[[17,3]]}}}],["updat",{"_index":9,"t":{"384":{"position":[[0,8]]}}}]],"pipeline":["stemmer"]}},{"documents":[{"i":370,"t":"Juno is compatible with the following Starknet API versions:","u":"/0.11.0/","h":"","p":368},{"i":372,"t":"Looking for a Starknet RPC Provider?","u":"/0.11.0/","h":"","p":368},{"i":374,"t":"Questions, Discussions, Community","u":"/0.11.0/","h":"","p":368},{"i":380,"t":"Minimal","u":"/0.11.0/hardware-requirements","h":"#minimal","p":378},{"i":382,"t":"Recommended","u":"/0.11.0/hardware-requirements","h":"#recommended","p":378},{"i":386,"t":"Steps to Update","u":"/0.11.0/updating_node","h":"#steps-to-update","p":384},{"i":388,"t":"Conclusion","u":"/0.11.0/updating_node","h":"#conclusion","p":384},{"i":392,"t":"Installing Starkent RPC Juno Node VM","u":"/0.11.0/installing-on-gcp","h":"#installing-starkent-rpc-juno-node-vm","p":390},{"i":396,"t":"Mainnet","u":"/0.11.0/snapshots","h":"#mainnet","p":394},{"i":398,"t":"Sepolia","u":"/0.11.0/snapshots","h":"#sepolia","p":394},{"i":400,"t":"Run Juno Using Snapshot","u":"/0.11.0/snapshots","h":"#run-juno-using-snapshot","p":394}],"index":{"version":"2.3.9","fields":["t"],"fieldVectors":[["t/370",[0,0.718,1,1.212,2,1.212,3,1.212,4,1.212,5,1.212,6,0.914,7,1.212,8,1.212]],["t/372",[6,1.17,9,1.551,10,1.551,11,1.551,12,1.17,13,1.551]],["t/374",[14,2.153,15,2.153,16,2.153]],["t/380",[17,2.905]],["t/382",[18,2.905]],["t/386",[19,2.153,20,2.153,21,2.153]],["t/388",[22,2.905]],["t/392",[0,0.919,12,1.17,23,1.551,24,1.551,25,1.551,26,1.551]],["t/396",[27,2.905]],["t/398",[28,2.905]],["t/400",[0,1.129,29,1.906,30,1.906,31,1.906]]],"invertedIndex":[["a",{"_index":11,"t":{"372":{"position":[[12,1]]}}}],["api",{"_index":7,"t":{"370":{"position":[[47,3]]}}}],["commun",{"_index":16,"t":{"374":{"position":[[24,9]]}}}],["compat",{"_index":2,"t":{"370":{"position":[[8,10]]}}}],["conclus",{"_index":22,"t":{"388":{"position":[[0,10]]}}}],["discuss",{"_index":15,"t":{"374":{"position":[[11,12]]}}}],["follow",{"_index":5,"t":{"370":{"position":[[28,9]]}}}],["for",{"_index":10,"t":{"372":{"position":[[8,3]]}}}],["instal",{"_index":23,"t":{"392":{"position":[[0,10]]}}}],["is",{"_index":1,"t":{"370":{"position":[[5,2]]}}}],["juno",{"_index":0,"t":{"370":{"position":[[0,4]]},"392":{"position":[[24,4]]},"400":{"position":[[4,4]]}}}],["look",{"_index":9,"t":{"372":{"position":[[0,7]]}}}],["mainnet",{"_index":27,"t":{"396":{"position":[[0,7]]}}}],["minim",{"_index":17,"t":{"380":{"position":[[0,7]]}}}],["node",{"_index":25,"t":{"392":{"position":[[29,4]]}}}],["provid",{"_index":13,"t":{"372":{"position":[[27,9]]}}}],["question",{"_index":14,"t":{"374":{"position":[[0,10]]}}}],["recommend",{"_index":18,"t":{"382":{"position":[[0,11]]}}}],["rpc",{"_index":12,"t":{"372":{"position":[[23,3]]},"392":{"position":[[20,3]]}}}],["run",{"_index":29,"t":{"400":{"position":[[0,3]]}}}],["sepolia",{"_index":28,"t":{"398":{"position":[[0,7]]}}}],["snapshot",{"_index":31,"t":{"400":{"position":[[15,8]]}}}],["starkent",{"_index":24,"t":{"392":{"position":[[11,8]]}}}],["starknet",{"_index":6,"t":{"370":{"position":[[38,8]]},"372":{"position":[[14,8]]}}}],["step",{"_index":19,"t":{"386":{"position":[[0,5]]}}}],["the",{"_index":4,"t":{"370":{"position":[[24,3]]}}}],["to",{"_index":20,"t":{"386":{"position":[[6,2]]}}}],["updat",{"_index":21,"t":{"386":{"position":[[9,6]]}}}],["us",{"_index":30,"t":{"400":{"position":[[9,5]]}}}],["version",{"_index":8,"t":{"370":{"position":[[51,9]]}}}],["vm",{"_index":26,"t":{"392":{"position":[[34,2]]}}}],["with",{"_index":3,"t":{"370":{"position":[[19,4]]}}}]],"pipeline":["stemmer"]}},{"documents":[{"i":369,"t":"# Juno's database directory. Can be any directory on the machine. mkdir -p junodb # Juno's HTTP server listens on port 6060. docker run -d --name juno -p 6060:6060 -v junodb:/var/lib/juno nethermind/juno:latest --db-path /var/lib/juno --http --http-host 0.0.0.0 For a complete list of options and their explanations, see the Example Configuration or run: docker run nethermind/juno --help","s":"Sync Starknet in Two Commands","u":"/0.11.0/","h":"","p":368},{"i":371,"t":"v0.7.0 (Endpoint: /v0_7, /rpc/v0_7 or default /) v0.6.0 (Endpoint: /v0_6, /rpc/v0_6) To interact with a specific API version, you can specify the version endpoint in your RPC calls. For example: curl -X POST http://localhost:6060 -H \"Content-Type: application/json\" --data '{\"jsonrpc\":\"2.0\",\"method\":\"juno_version\",\"id\":1}'","s":"Juno is compatible with the following Starknet API versions:","u":"/0.11.0/","h":"","p":368},{"i":373,"t":"Access Nethermind's Starknet RPC service for free at data.voyager.online.","s":"Looking for a Starknet RPC Provider?","u":"/0.11.0/","h":"","p":368},{"i":375,"t":"Find active Juno team members and users in the following places. GitHub Discord Telegram","s":"Questions, Discussions, Community","u":"/0.11.0/","h":"","p":368},{"i":377,"t":"The Juno binary uses reasonable defaults and can be used without configuration. For basic fine-tuning, the --db-path and --http-port options are usually sufficient. All available options are in the YAML file below with their default values. Provide the config using the --configDatabase Snapshots
To decrease sync times, users may opt to download a Juno database snapshot. +
Database Snapshots
To decrease sync times, users may opt to download a Juno database snapshot. After downloading a snapshot and starting a Juno node, only recent blocks must be synced.
Mainnet
Version | Size | Block | Download Link |
---|---|---|---|
>=v0.9.2 | 182 GB | 640855 | juno_mainnet.tar |
Updating Juno Node
Updating your Juno node is crucial to access new features, improvements, and security patches. Follow these steps to update your node to the latest version using Docker.
+Updating Juno Node
Updating your Juno node is crucial to access new features, improvements, and security patches. Follow these steps to update your node to the latest version using Docker.