Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions justfiles/zb.justfile
Original file line number Diff line number Diff line change
Expand Up @@ -170,3 +170,10 @@ monitor-snapshots base_path network:
set -xe
just ahm _npm-build
node dist/zombie-bite-scripts/migration_snapshot.js {{ base_path }} {{ network }}

# Run real-time staking era event checker
# Usage: just zb staking-event-checker base_path runtime
# Example: just zb staking-event-checker ./pahm Polkadot
staking-event-checker base_path runtime:
just ahm _npm-build
npm run staking-event-checker {{ base_path }} {{ runtime }}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"find-rc-block-bite": "node dist/zombie-bite-scripts/find_rc_block_bite.js",
"make-new-snapshot": "node dist/zombie-bite-scripts/make_new_snapshot.js",
"create-migration-done-file": "node dist/zombie-bite-scripts/create_migration_done_file.js",
"staking-event-checker": "node dist/zombie-bite-scripts/staking_event_checker.js",
"ahm": "node dist/zombie-bite-scripts/orchestrator.js",
"prettier": "prettier --write .",
"clean": "rm -rf dist",
Expand Down
Loading