-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
83b983c
commit 2742bf5
Showing
2 changed files
with
46 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,46 @@ | ||
# Althea | ||
|
||
<figure><img src="https://github.com/takeshi-val/Logo/raw/main/celestia.png" alt="" width="150"><figcaption></figcaption></figure> | ||
|
||
Celestia is a minimal blockchain that only orders and publishes transactions and does not execute them. By decoupling the consensus and application execution layers, Celestia modularizes the blockchain technology stack and unlocks new possibilities for decentralized application builders. | ||
|
||
**Chain ID**: althea | **Latest Version Tag**: v0.5.5 | **Wasm**: OFF | ||
|
||
[Website](https://celestia.org) | [Discord](https://discord.gg/celestiacommunity) | [Twitter](https://twitter.com/CelestiaOrg) | ||
|
||
## Chain explorer | ||
|
||
[https://explorer.takeshi.team/celestia-testnet](https://explorer.takeshi.team/celestia-testnet) | ||
|
||
## Public endpoints | ||
|
||
* api: [https://celestia-testnet.api.takeshi.team](https://celestia-testnet.api.takeshi.team) | ||
* rpc: [https://celestia-testnet.rpc.takeshi.team](https://celestia-testnet.rpc.takeshi.team) | ||
* grpc: [https://celestia-testnet.grpc.takeshi.team](https://celestia-testnet.grpc.takeshi.team) | ||
|
||
## Peering | ||
|
||
**state-sync** | ||
|
||
``` | ||
d5519e378247dfb61dfe90652d1fe3e2b3005a5b@celestia-testnet.rpc.takeshi.team:20656 | ||
``` | ||
|
||
**seed-node** | ||
|
||
``` | ||
3f472746f46493309650e5a033076689996c8881@celestia-testnet.rpc.takeshi.team:20659 | ||
``` | ||
|
||
**addrbook** | ||
|
||
```bash | ||
curl -Ls https://snapshots.takeshi.team/celestia-testnet/addrbook.json > $HOME/.celestia-app/config/addrbook.json | ||
``` | ||
|
||
**live-peers** (7) | ||
|
||
```bash | ||
peers="[email protected]:20656,[email protected]:43656,[email protected]:20656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656" | ||
sed -i -e "s|^persistent_peers *=.*|persistent_peers = \"$peers\"|" $HOME/.celestia-app/config/config.toml | ||
``` |
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