Skip to content

Commit 6680b25

Browse files
committed
release configs
1 parent 6e14740 commit 6680b25

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

Makefile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PROJECT_ROOT := $(shell git rev-parse --show-toplevel)
2-
SOV_CLI_REL_PATH := $(PROJECT_ROOT)/target/debug/cli-wallet
2+
SOV_CLI_REL_PATH := $(PROJECT_ROOT)/target/debug/starter-cli-wallet
33
SPICENET_NODE_REL_PATH := $(PROJECT_ROOT)/target/debug/node
44

55
CELESTIA_CONFIG := $(PROJECT_ROOT)/celestia_rollup_config.toml
@@ -58,13 +58,14 @@ clean-db:
5858
rm -rf demo_data
5959

6060
build-sov-cli:
61-
cargo build --bin cli-wallet
61+
cd crates/rollup; \
62+
cargo build --bin starter-cli-wallet
6263

6364
build-node:
6465
cd crates/rollup; \
6566
cargo build --bin node
6667

67-
run-node: celestia-bridge-auth build-node
68+
run-node: build-node
6869
$(SPICENET_NODE_REL_PATH) --da-layer celestia --rollup-config-path ./celestia_rollup_config.toml --genesis-config-dir ./test-data/genesis/celestia
6970

7071
run-node-mock: build-node
@@ -73,8 +74,8 @@ run-node-mock: build-node
7374
test-create-token: build-sov-cli
7475
$(SOV_CLI_REL_PATH) transactions clean
7576
$(SOV_CLI_REL_PATH) node set-url http://127.0.0.1:12346
76-
$(SOV_CLI_REL_PATH) keys import --skip-if-present --nickname DANGER__DO_NOT_USE_WITH_REAL_MONEY --path ../../test-data/keys/token_deployer_private_key.json
77-
$(SOV_CLI_REL_PATH) transactions import from-file bank --chain-id 4321 --max-fee 100000000 --path ../../test-data/requests/transfer.json
77+
$(SOV_CLI_REL_PATH) keys import --skip-if-present --nickname DANGER__DO_NOT_USE_WITH_REAL_MONEY --path ./test-data/keys/token_deployer_private_key.json
78+
$(SOV_CLI_REL_PATH) transactions import from-file bank --chain-id 4321 --max-fee 100000000 --path ./test-data/requests/transfer.json
7879
@echo "Submitting a batch"
7980
$(SOV_CLI_REL_PATH) transactions list
8081
$(SOV_CLI_REL_PATH) node submit-batch --wait-for-processing by-nickname DANGER__DO_NOT_USE_WITH_REAL_MONEY

celestia_rollup_config.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ max_celestia_response_body_size = 104_857_600
55
celestia_rpc_timeout_seconds = 60
66

77
[storage]
8-
path = "../../rollup-starter-data"
8+
path = "./rollup-starter-data"
99

1010
# We define the rollup's genesis to occur at block number `start_height`. The rollup will ignore
1111
# any blocks before this height
1212
[runner]
13-
genesis_height = 4040000
14-
da_polling_interval_ms = 12000
13+
genesis_height = 4541000
14+
da_polling_interval_ms = 6000
1515

1616

1717
[monitoring]
@@ -32,5 +32,7 @@ max_number_of_transitions_in_memory = 20
3232

3333
[sequencer]
3434
max_allowed_blocks_behind = 5
35-
da_address = "celestia1a68m2l85zn5xh0l07clk4rfvnezhywc53g8x7s"
36-
[sequencer.standard]
35+
da_address = "celestia1xetdm9tl7c08vatjnujnql2xtm8h34v7hhvgm3"
36+
[sequencer.standard]
37+
38+
# celestia1a68m2l85zn5xh0l07clk4rfvnezhywc53g8x7s

test-data/genesis/celestia/sequencer_registry.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"seq_rollup_address": "sov1l6n2cku82yfqld30lanm2nfw43n2auc8clw7r5u5m6s7p8jrm4zqrr8r94",
3-
"seq_da_address": "celestia1a68m2l85zn5xh0l07clk4rfvnezhywc53g8x7s",
3+
"seq_da_address": "celestia1xetdm9tl7c08vatjnujnql2xtm8h34v7hhvgm3",
44
"seq_bond": 10000000,
55
"minimum_bond": [5000, 5000],
66
"is_preferred_sequencer": true

0 commit comments

Comments
 (0)