npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

metaboss

v1.0.2

Published

Metaboss Bot

Downloads

12

Readme

METABOSS BOT

Meta boss auto attack boss bot, What is Metaboss ? Metaboss is tap tap game on telegram that run on TON chain.

Prerequisite

  • Node JS (v22.1.0)
  • Git
  • Metaboss Account

BOT Feature

  • Auto attack bos
  • Auto claim boss reward
  • Auto complete missions
  • Auto claim misisons reward
  • Auto Start Mining (if unlocked)
  • Auto open item on bag (Boss Chest, Mission Reward Chest, Mining Reward)

Register Metaboss Account

  • join metaboss on telegram HERE
  • Start bot /start
  • play /play

Set Up And Run

  • clone the project git clone https://github.com/Widiskel/metaboss-bot.git, or download from RELEASE
  • run cd metaboss-bot.
  • run npm install.
  • run cp src/account_tmp.js src/account.js

Since metaboss team add more security to the app, botting is not easy like before, here i will tell you how to run the bot

  1. Install Telegram Desktop.
  2. Go to Settings > Advance > Experimental Settings > And enable Webview inspecting. image

Also read how to do inspect on your Operating system.

  1. Now open Metaboss Webview game on your Telegram Desktop.
  2. On the Webview window right click > inspect (on Windows) or open Safari > Develop > Your Device > Telegram (on Mac)
  3. On Inspect Element or Developer Tools > go to Network tab > find the game socket
  4. Now refresh the Metaboss Webview on your Telegram Desktop.
  5. Back to Developer Tools > Network tab > game socket You will see something like this image
  6. Copy the data that contains your account data
  7. Now open account.js and fill up or paste your data using template data provided
const account = [
  //node js v18
  jsonTransformer(
    {"code":"X","type":"X","data":{"id":"X","username":"X","hash":"X","timeAuth":"X","data":"query_id=...etc"}},
  ), //account 1
  jsonTransformer(
    {"code":"X","type":"X","data":{"id":"X","username":"X","hash":"X","timeAuth":"X","data":"query_id=...etc"}},
  ), //account 2

  //node js v22
  {"code":"X","type":"X","data":{"id":"X","username":"X","hash":"X","timeAuth":"X","data":"query_id=...etc"}}, //account1
  {"code":"X","type":"X","data":{"id":"X","username":"X","hash":"X","timeAuth":"X","data":"query_id=...etc"}}, //account1

  //if you use vscode and have prettier extension and enable format on save the json will automatically become like this
  {
    code: "X",
    type: "X",
    data: {
      id: "X",
      username: "X",
      hash: "X",
      timeAuth: "X",
      data: "query_id=...etc",
    },
  } //account 1
  {
    code: "X",
    type: "X",
    data: {
      id: "X",
      username: "X",
      hash: "X",
      timeAuth: "X",
      data: "query_id=...etc",
    },
  } //account 2
];
  1. Finnally run npm run start

Configure Mining

to configure or decide what mining you want to focused, look at config.js , change the mine type with type you want, i'm already add description about mining priority on that file. If you not configure it, it will be use the Black Mine as default

How To Update

  • run git pull
  • run npm update
  • run the bot again npm run start

Note

The account data can be expired (query data livetime around 1-2 day), because it have hash and timeAuth, so if your run the bot and your username and id is undefined or it stuck on some process (get user info, get boss info etc), you need to get new account data. follow the ## Set Up And Run from no 3

if any error happen please check HERE check the commit if any new commit, then update the bot.

remember to not open telegram metaboss game while the bot running cause it may cause bot freeze.