https://github.com/jamiew/helium-cheatnets
Find & expose gamers
https://github.com/jamiew/helium-cheatnets
Last synced: over 1 year ago
JSON representation
Find & expose gamers
- Host: GitHub
- URL: https://github.com/jamiew/helium-cheatnets
- Owner: jamiew
- Created: 2020-12-30T14:25:06.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-30T18:44:56.000Z (over 5 years ago)
- Last Synced: 2025-03-28T19:48:51.441Z (over 1 year ago)
- Language: Shell
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Cheatnets R Us
==============
Data helper scripts for working with the crowdsourced Helium hotspot cheatnet tracker: [Google Sheet](https://docs.google.com/spreadsheets/d/1tqs-9xE7tB9Vlk_cgx1dmakRocPoqm3dPsMHVvqAfOs/edit?ts=5fec2a61#gid=0)
Please note this is an extremely unofficial community effort, and is a work in progress.
To submit a cheatnet, just add it to the Google Sheet above.
Usage
-----
Setup a clone of the blockchain-etl database schema. This fetches latest schema from [jamiew/helium-etl-queries](https://github.com/jamiew/helium-etl-queries)
```
createdb etl
curl https://raw.githubusercontent.com/jamiew/helium-etl-queries/master/etl-schema.sql | psql etl
```
_TODO update the account_ids/gsheets.csv file_
Then setup our cheatnets table:
```
psql etl < cheatnets-schema.sql
```
And import account ids from our handy `account_ids` file
```
cat account_ids | ./generate-sql-inserts.sh | psql etl
```