-
Notifications
You must be signed in to change notification settings - Fork 547
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
80 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
{ | ||
"version": 1, | ||
"actions": [ | ||
{ | ||
"name": "create_network", | ||
"args": { | ||
"network_id": "string", | ||
"genesis_ledger": "string", | ||
"topology": "string" | ||
}, | ||
"command": "MINIMINA network create --network-id {{network_id}} --genesis-ledger {{genesis_ledger}} --topology {{topology}}" | ||
}, | ||
{ | ||
"name": "start_network", | ||
"args": { | ||
"network_id": "string" | ||
}, | ||
"command": "MINIMINA network start --network-id {{network_id}}" | ||
}, | ||
{ | ||
"name": "delete_network", | ||
"args": { | ||
"network_id": "string" | ||
}, | ||
"command": "MINIMINA network delete --network-id {{network_id}}" | ||
}, | ||
{ | ||
"name": "start_node", | ||
"args": { | ||
"network_id": "string", | ||
"node_id": "string", | ||
"fresh_state": "bool" | ||
}, | ||
"command": "MINIMINA node start {{fresh_state}} --network-id {{network_id}} --node-id {{node_id}}" | ||
}, | ||
{ | ||
"name": "stop_node", | ||
"args": { | ||
"network_id": "string", | ||
"node_id": "string" | ||
}, | ||
"command": "MINIMINA node stop --network-id {{network_id}} --node-id {{node_id}}" | ||
}, | ||
{ | ||
"name": "dump_archive_data", | ||
"args": { | ||
"network_id": "string", | ||
"node_id": "string" | ||
}, | ||
"command": "MINIMINA node dump-archive-data --network-id {{network_id}} --node-id {{node_id}}" | ||
}, | ||
{ | ||
"name": "dump_mina_logs", | ||
"args": { | ||
"network_id": "string", | ||
"node_id": "string" | ||
}, | ||
"command": "MINIMINA node logs --network-id {{network_id}} --node-id {{node_id}}" | ||
}, | ||
{ | ||
"name": "dump_precomputed_blocks", | ||
"args": { | ||
"network_id": "string", | ||
"node_id": "string" | ||
}, | ||
"command": "MINIMINA node dump-precomputed-blocks --network-id {{network_id}} --node-id {{node_id}}" | ||
}, | ||
{ | ||
"name": "run_replayer", | ||
"args": { | ||
"network_id": "string", | ||
"node_id": "string", | ||
"start_slot_since_genesis": "int" | ||
}, | ||
"command": "MINIMINA node run-replayer --network-id {{network_id}} --node-id {{node_id}} --start-slot-since-genesis {{start_slot_since_genesis}}" | ||
} | ||
] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters