Skip to content

Spheron Daily Spin Bot A simple and automated bot that spins the Spheron daily wheel for you. Never miss a reward again! Just set your API keys and let it run on autopilot.

Notifications You must be signed in to change notification settings

winsnip/Spheron-Spin

Repository files navigation

Get Api Key

const request = indexedDB.open("firebaseLocalStorageDb");

request.onsuccess = function(event) {
  const db = event.target.result
  const transaction = db.transaction(["firebaseLocalStorage"], "readonly")
  const store = transaction.objectStore("firebaseLocalStorage")
  const getAll = store.getAll()

  getAll.onsuccess = function() {
    const results = getAll.result
    results.forEach(entry => {
      console.log(entry.value.apiKey)
    })
  }
}

Copy the output then save in .env file

echo APIKEY_FIREBASE=YOUR_APIKEY_FIREBASE_HERE > .env

Get refresh token

  • Still in console browser, paste code below -> Enter:
const request = indexedDB.open("firebaseLocalStorageDb");

request.onsuccess = function(event) {
  const db = event.target.result
  const transaction = db.transaction(["firebaseLocalStorage"], "readonly")
  const store = transaction.objectStore("firebaseLocalStorage")
  const getAll = store.getAll()

  getAll.onsuccess = function() {
    const results = getAll.result
    results.forEach(entry => {
      console.log(entry.value.stsTokenManager.refreshToken)
    })
  }
}

Copy the output then save in .env file

echo REFRESH_FIREBASE=YOUR_REFRESH_FIREBASE_HERE >> .env

[ OPTIONAL ] Set up proxy

You can skip this proxy_url key in .env, Just add

echo PROXY_URL="" >> .env

however if you wanna setting up the proxy_url, you can add as below:

echo PROXY_URL=http://username:password@ip:port >> .env

⚠️ note Change username:password@ip:port using your real proxy. don't have? you can get here

Docker

Install docker in your computer, ⚠️ note you can skip if already installed:

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

read docs for detail here

check docker version:

docker --version

Pull the image

docker pull haiiru/spheron:latest

Run container

docker run -it --name winsnip-spheron --env-file .env -d haiiru/spheron:latest

Check logs

docker logs -f winsnip-spheron

Coffee: https://trakteer.id/Winsnipsupport/tip

Join Telegram Winsnip

Stay updated and connect with the Winsnip community:

Channel: https://t.me/winsnip

Group Chat: https://t.me/winsnip_hub

This ensures users can join the Telegram community easily and stay engaged with updates and discussions.

Have suggestions or improvements? Feel free to contribute!

About

Spheron Daily Spin Bot A simple and automated bot that spins the Spheron daily wheel for you. Never miss a reward again! Just set your API keys and let it run on autopilot.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published