Skip to content

Commit

Permalink
update workflow auth using keys
Browse files Browse the repository at this point in the history
  • Loading branch information
mrheed committed Aug 30, 2024
1 parent 8d1e707 commit 4914d0f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 65 deletions.
20 changes: 7 additions & 13 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,20 +40,14 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Install sshpass
run: |
sudo apt-get update
sudo apt-get install -y sshpass
- name: Deploy to VPS
env:
SSH_PASSWORD: ${{ secrets.SSH_PASSWORD }}
SSH_USER: ${{ secrets.SSH_USER }}
SSH_HOST: ${{ secrets.SSH_HOST }}
run: |
sshpass -p $SSH_PASSWORD ssh -o StrictHostKeyChecking=no $SSH_USER@$SSH_HOST << EOF
sudo su
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USER }}
key: ${{ secrets.SSH_KEY }}
script: |
docker pull syhdtmp/cosmos-explorer:main
docker container stop cosmos-explorer
docker container rm cosmos-explorer
docker run -d --name cosmos-explorer -p 5001:80 syhdtmp/cosmos-explorer:main
EOF
docker run -d --name cosmos-explorer -p 5001:80 syhdtmp/cosmos-explorer:main
54 changes: 2 additions & 52 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,56 +1,6 @@
<div align="center">

![Ping Wallet](./public/logo.svg)

<h1>Aldebaranode</h1>

**Aldebaranode is not only an explorer but also a wallet and more ... 🛠**

[![version](https://img.shields.io/github/tag/ping-pub/explorer.svg)](https://github.com/ping-pub/explorer/releases/latest)
[![GitHub](https://img.shields.io/github/license/ping-pub/explorer.svg)](https://github.com/ping-pub/explorer/blob/master/LICENSE)
[![Twitter URL](https://img.shields.io/twitter/url/https/twitter.com/bukotsunikki.svg?style=social&label=Follow%20%40ping_pub)](https://twitter.com/ping_pub)
[![https://discord.gg/CmjYVSr6GW](https://img.shields.io/badge/discord-join-7289DA.svg?logo=discord&longCache=true&style=flat)](https://discord.gg/CmjYVSr6GW)


</div>

`Aldebaranode` is a light explorer for Cosmos-based Blockchains. https://ping.pub .

## What sets Aldebaranode apart from other explorers?
**Aldebaranode** stands out by providing a real-time exploration of blockchain data without relying on caching or pre-processing. It exclusively fetches data from the Cosmos full node via LCD/RPC endpoints, ensuring a truly authentic experience. This approach is referred to as the "Light Explorer."

## Are you interested in listing your blockchain on https://ping.pub?

To make this repository clean, please submit your request to https://github.com/ping-pub/ping.pub.git


## Why does Aldebaranode rely on official/trusted third-party public LCD/RPC servers?
There are two primary reasons for this choice:

- Trust: In a decentralized system, it is crucial to avoid relying solely on a single entity. By utilizing official/trusted third-party public LCD/RPC servers, Aldebaranode ensures that the data is sourced from a network of trusted participants.
- Limited Resources: As Aldebaranode plans to list hundreds of Cosmos-based blockchains in the future, it is impractical for the Ping team to operate validators or full nodes for all of them. Leveraging trusted third-party servers allows for more efficient resource allocation.

## Donation

Your donation will help us make better products. Thanks in advance.

- Address for ERC20: USDC, USDT, ETH
```
0x88BFec573Dd3E4b7d2E6BfD4D0D6B11F843F8aa1
```

#### Donations from project

- Point Network: 1000USDC and $1000 worth of POINT
- Bitsong: 50k BTSG
- IRISnet: 100k IRIS

## Hire us

You can hire us by submitting an issue and fund the issue on [IssueHunter](https://issuehunt.io/r/ping-pub/explorer)

<h1>Aldebaranode Explorer</h1>

## Contributors

Developers: @liangping @dingyiming
Developers: @liangping @dingyiming @aldebaranode

0 comments on commit 4914d0f

Please sign in to comment.