Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/offchainlabs/orbit-monitoring-tools
https://github.com/offchainlabs/orbit-monitoring-tools
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/offchainlabs/orbit-monitoring-tools
- Owner: OffchainLabs
- Created: 2023-12-22T14:10:41.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-01-15T12:54:34.000Z (10 months ago)
- Last Synced: 2024-04-14T10:47:05.710Z (7 months ago)
- Language: TypeScript
- Size: 67.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Orbit monitoring tools
Tools to help monitor Orbit chains
Available tools:
- Find new rollups
- Find pending retryables## Find new rollups
Usage
```shell
yarn findRollups
```Available options:
- showInactive (true/false, default false): Also shows inactive rollups
- fromBlockEth, fromBlockArbOne, fromBlockArbNova (default 0): Specifies from which block to search for new rollupsExample:
```shell
yarn findRollups --showInactive=true --fromBlockEth=18913723
```## Find pending retryables
Usage
```shell
yarn findPendingRetryables
```Available options:
- fromBlock, toBlock: Range of blocks in the parent chain to search SubmitRetryable events
- showOnlyPending: If true, it will only show the pending retraybles and not the successfully redeemed one (default false)```shell
yarn findPendingRetryables --fromBlock=166757506
```