1.0.2 • Published 2 years ago

honeyp0t-ch3cker v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Honeypot-checker

Checks if crypto-token is scam. Currently, supports only bsc chain

This is refactored version of https://github.com/valamidev/web3-honeypot-checker

I also didn't care much about architecture, cause I needed this functionality in a short time, but it's quite scalable, maybe will improve it in the future :)

Install

npm i honeyp0t-ch3cker

How to use

import {CheckSafety} from 'honeyp0t-ch3cker';
import {BscChain} from "honeyp0t-ch3cker/dist/bsc/chain.js";

const address = "0x0000000000000000000000000000000000000000";
const res = await CheckSafety(address, BscChain);
if (res.success) {
    if (res.data.isHoneypot) {
        console.log('SCAM')
    } else {
        console.log('NOT SCAM')
    }
    
    if (res.data.buyTax > 0 || res.data.sellTax > 0) {
        console.log('WARNING, SOME EXTRA FEES ARE TAKEN')
    }
} else {
    console.error(res.msg);
}
1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago