Skip to content

Commit

Permalink
Merge branch 'main' into bft-496-poll-next-batch-to-sign
Browse files Browse the repository at this point in the history
  • Loading branch information
aakoshh authored Aug 1, 2024
2 parents 4136434 + 4d38356 commit bb01fd9
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,5 @@ prover/crates/bin/vk_setup_data_generator_server_fri/data/setup_*
# Zk Toolbox
chains/era/configs/*
configs/*
era-observability/
core/tests/ts-integration/deployments-zk
16 changes: 15 additions & 1 deletion zk_toolbox/crates/zk_inception/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ This document contains the help content for the `zk_inception` command-line prog
- [`zk_inception ecosystem create`](#zk_inception-ecosystem-create)
- [`zk_inception ecosystem init`](#zk_inception-ecosystem-init)
- [`zk_inception ecosystem change-default-chain`](#zk_inception-ecosystem-change-default-chain)
- [`zk_inception ecosystem setup-observability`](#zk_inception-ecosystem-setup-observability)
- [`zk_inception chain`](#zk_inception-chain)
- [`zk_inception chain create`](#zk_inception-chain-create)
- [`zk_inception chain init`](#zk_inception-chain-init)
Expand Down Expand Up @@ -67,6 +68,8 @@ Ecosystem related commands
- `create` — Create a new ecosystem and chain, setting necessary configurations for later initialization
- `init` — Initialize ecosystem and chain, deploying necessary contracts and performing on-chain operations
- `change-default-chain` — Change the default chain
- `setup-observability` — Setup observability for the ecosystem, downloading Grafana dashboards from the
era-observability repo

## `zk_inception ecosystem create`

Expand Down Expand Up @@ -162,6 +165,7 @@ Initialize ecosystem and chain, deploying necessary contracts and performing on-
- `-u`, `--use-default` — Use default database urls and names
- `-d`, `--dont-drop`
- `--dev` — Deploy ecosystem using all defaults. Suitable for local development
- `-o`, `--observability` — Enable Grafana

## `zk_inception ecosystem change-default-chain`

Expand All @@ -173,6 +177,12 @@ Change the default chain

- `<NAME>`

## `zk_inception ecosystem setup-observability`

Setup observability for the ecosystem, downloading Grafana dashboards from the era-observability repo

**Usage:** `zk_inception ecosystem setup-observability`

## `zk_inception chain`

Chain related commands
Expand Down Expand Up @@ -520,7 +530,11 @@ Run external node

Run containers for local development

**Usage:** `zk_inception containers`
**Usage:** `zk_inception containers [OPTIONS]`

###### **Options:**

- `-o`, `--observability` — Enable Grafana

## `zk_inception contract-verifier`

Expand Down
Empty file.
2 changes: 1 addition & 1 deletion zk_toolbox/crates/zk_inception/src/defaults.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub const MAIN_ROCKS_DB_PREFIX: &str = "main";
pub const L2_CHAIN_ID: u32 = 271;
/// Path to base chain configuration inside zksync-era
/// Local RPC url
pub(super) const LOCAL_RPC_URL: &str = "http://localhost:8545";
pub(super) const LOCAL_RPC_URL: &str = "http://127.0.0.1:8545";

pub struct DBNames {
pub server_name: String,
Expand Down

0 comments on commit bb01fd9

Please sign in to comment.