Skip to content

Commit

Permalink
Merge branch 'althea-net:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Voynitskiy authored Mar 7, 2024
2 parents 0a458e2 + 4ee0a84 commit 3afef9e
Show file tree
Hide file tree
Showing 49 changed files with 30,886 additions and 289 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/gentx-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,22 @@ jobs:
- uses: actions/checkout@v2
- name: Setup
run: |
wget https://github.com/althea-net/althea-chain/releases/download/v0.3.0/althea-v0.3.0-linux-amd64
chmod +x althea-v0.1.5-linux-amd64
sudo mv althea-v0.1.5-linux-amd64 /bin/althea
althea init test
wget https://github.com/althea-net/althea-L1/releases/download/v1.0.0-rc2/althea-linux-amd64
chmod +x althea-linux-amd64
sudo mv althea-linux-amd64 /bin/althea
althea init test --chain-id althea_417834-4
mkdir $HOME/.althea/config/gentx
cp ./genesis.json $HOME/.althea/config/
cp ./althea-l1-dress-rehersal-genesis.json $HOME/.althea/config/genesis.json
mkdir -p ./gentx
mkdir -p ./gentxs
# allow this copy routine to fail if there are no files in one folder
set +e
cp ./gentx/* $HOME/.althea/config/gentx/
cp ./gentxs/* $HOME/.althea/config/gentx/
set -e
- name: Validate Genesis
run: althea validate-genesis
- name: Collect Gentxs
run: althea collect-gentxs
run: althea collect-gentxs
- name: Validate Genesis with signatures
run: althea validate-genesis
6 changes: 3 additions & 3 deletions .github/workflows/markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
ruby-version: 2.7
bundler-cache: true
- run: gem install mdl
# lint ignoring the line length lint
- run: mdl -r ~MD013 README.md
- run: mdl -r ~MD013 docs/*
- run: mdl -r ~MD013,~MD026 README.md
- run: mdl -r ~MD013,~MD026 docs/*
41 changes: 38 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,46 @@
# ![Althea](./assets/Althea_Logo-BLUE_SIGNAL.svg)
# ![Althea](./assets/AltheaL1-logo.svg)

## Index

1. [Joining testnet3](/docs/testnet-3-launch.md)
1. [Joining](/docs/join.md)
1. [Building on Althea L1](/docs/development/index.md)
1. [Hackathon project index](https://dorahacks.io/hackathon/145)
1. [Source code](https://github.com/althea-net/althea-l1)
1. [Community Discord](https://discord.gg/hHx7HxcycF)

## RPC

Public RPC is avaialble at `https://althea.zone`

* Port 443 / 8545 EVM RPC
* Port 8546 EVM Websockets
* Port 26657 RPC + websockets
* Port 9090 GRPC
* Port 1317 Legacy API

chain id: althea_417834-4
evm chain id: 417834

## Status

The Althea blockchain is in it's final testnet series for a launch in the first half of 2023!
Althea L1 is the payment layer for autonomous machines and self-soverign infrastructure networks. Designed for pratical micropayments applications, you can learn more [here](https://althea.net)

The community is preparing for immenent launch with a mainnet dress rehersal starting Mar 7 2024.

## Block Explorers

### EVM

* [altheascan](https://altheascan.com/)

### Cosmos SDK

* [Nodes.Guru](https://althea.explorers.guru/)
* [STAVR](https://explorer.stavr.tech/althea-testnetl1)
* [Hexnodes](https://explorer.hexnodes.co/ALTHEA-TESTNET/staking/altheavaloper19fcaymvtttl265lner4sz8na70venkfgxkq3hl)
* [Vinjan](https://explorer.vinjan.xyz/althea-testnet/staking/altheavaloper1dxrrcxyr5vc2mr9q8j9f2l670kkp736dsrkmna)

## Community Docs

* [Nodeist](https://nodeist.net/Althea/)
* [Bccnodes](https://bccnodes.com/t/althea/)
Loading

0 comments on commit 3afef9e

Please sign in to comment.