Skip to content

Commit

Permalink
Prep for dress rehersal testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
jkilpatr committed Mar 7, 2024
1 parent f0b07a1 commit cd47865
Show file tree
Hide file tree
Showing 117 changed files with 29,660 additions and 2,031 deletions.
File renamed without changes.
25 changes: 25 additions & 0 deletions .github/workflows/gentx-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Validate Genesis and collect gentxs
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup
run: |
wget https://github.com/althea-net/althea-chain/releases/download/v0.3.1/althea-v0.3.1-linux-amd64
chmod +x althea-v0.3.1-linux-amd64
sudo mv althea-v0.3.1-linux-amd64 /bin/althea
althea init test
mkdir $HOME/.althea/config/gentx
cp ./testnet-3-genesis.json $HOME/.althea/config/genesis.json
cp ./gentxs/* $HOME/.althea/config/gentx/
- name: Validate Sigs
run: |
for file in ./gentxs/*; do
althea tx validate-signatures "$file" --chain_id althea_417834-3 --offline --account-number 0 --sequence 0
done
- name: Validate Genesis
run: althea validate-genesis
- name: Collect Gentxs
run: althea collect-gentxs
13 changes: 4 additions & 9 deletions .github/workflows/gentx-check.yml.disabled
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,13 @@ jobs:
- uses: actions/checkout@v2
- name: Setup
run: |
wget https://github.com/althea-net/althea-chain/releases/download/v0.3.1/althea-v0.3.1-linux-amd64
chmod +x althea-v0.3.1-linux-amd64
sudo mv althea-v0.3.1-linux-amd64 /bin/althea
wget https://github.com/althea-net/althea-L1/releases/download/v1.0.0-rc1/althea-linux-amd64
chmod +x althea-linux-amd64
sudo mv althea-linux-amd64 /bin/althea
althea init test
mkdir $HOME/.althea/config/gentx
cp ./testnet-3-genesis.json $HOME/.althea/config/genesis.json
cp ./althea-l1-dress-rehersal-genesis.json $HOME/.althea/config/genesis.json
cp ./gentxs/* $HOME/.althea/config/gentx/
- name: Validate Sigs
run: |
for file in ./gentxs/*; do
althea tx validate-signatures "$file" --chain_id althea_417834-3 --offline --account-number 0 --sequence 0
done
- name: Validate Genesis
run: althea validate-genesis
- name: Collect Gentxs
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Index

1. [Joining testnet4](/docs/join-testnet-4.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)
Expand All @@ -18,14 +18,15 @@ Public RPC is avaialble at `https://althea.zone`
* Port 9090 GRPC
* Port 1317 Legacy API

chain id: althea_417834-3
chain id: althea_417834-4
evm chain id: 417834

## Status

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)

Testnet 4 ([hackathon](https://dorahacks.io/hackathon/145) testnet) is currently live, please see the [joining testnet4](/docs/testnet-4-launch.md) for instructions on running a validator / full node. If you want to develop for the [hackathon](https://dorahacks.io/hackathon/145) please see the [building on Althea L1](/docs/development/index.md) guide and use the public RPC specified above.
The community is preparing for immenent launch with a mainnet dress rehersal starting Mar 7 2024.


## Block Explorers

Expand Down
Loading

0 comments on commit cd47865

Please sign in to comment.