Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
spidey-169 authored Feb 29, 2024
2 parents 67b3897 + 6ab7657 commit 3908b08
Show file tree
Hide file tree
Showing 16 changed files with 394 additions and 217 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/trailing-commas.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# trailing-commas verifies that *.txt files do not contain lines with trailing commas.
name: trailing-commas
on: pull_request
jobs:
check-trailing-commas:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Ensure no trailing commas in *.txt files
run: |
# Get list of .txt files
FILES=$(git ls-files | grep "\.txt$")
# Check each file for trailing commas and fail if any are found
for FILE in $FILES; do
if grep -qE ",$" "$FILE"; then
echo "Trailing comma found in $FILE"
exit 1
fi
done
echo "No trailing commas found in .txt files."
164 changes: 0 additions & 164 deletions .github/workflows/validate-validator-github.yml

This file was deleted.

8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@ Please refer to the [Celestia Docs](https://docs.celestia.org) for guides on run
| Name | Type | Chain ID | Configs |
|----------|---------|--------------|----------------------------|
| Mocha | Testnet | `mocha-4` | [mocha-4](./mocha-4) |
| Arabica | Testnet | `arabica-10` | [arabica-10](./arabica-10) |
| Celestia | Mainnet | `celestia` | [celestia](./celestia) |
| Arabica | Testnet | `arabica-11` | [arabica-11](./arabica-11) |
| Celestia | Mainnet Beta | `celestia` | [celestia](./celestia) |

## Software versions

The celestia-app and celestia-node versions in use on each network are visible on this [Grafana dashboard](https://celestia.grafana.net/public-dashboards/5d14d96e44f04664bb0c44267e5d645c).

## Public Dashboards

DA Full and Light nodes might have troubles connecting to the networks, so you can checkout this [Grafana dashboard](https://celestia.grafana.net/public-dashboards/a10eff0043bb4bf0839004e2746e2bc6) to see health/uptime status of DA Bootstrappers (now `celestia` network only).
Loading

0 comments on commit 3908b08

Please sign in to comment.