Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BlackList Crypts #165

Open
nevesrangel opened this issue May 27, 2021 · 4 comments
Open

BlackList Crypts #165

nevesrangel opened this issue May 27, 2021 · 4 comments
Labels
feature-request Requests a feature not currently implemented

Comments

@nevesrangel
Copy link

Hey Good afternoon ,

Is there a possibility to remove ETH from trades? Any place where blacklist crypts are placed?

Thanks

@bmino
Copy link
Owner

bmino commented Jun 1, 2021

There is currently only a whitelist, but a blacklist is possible as a feature request

@bmino bmino added the feature-request Requests a feature not currently implemented label Jun 16, 2021
@tdev00
Copy link

tdev00 commented Aug 16, 2021

Is there an ETA on this?

@bmino
Copy link
Owner

bmino commented Aug 16, 2021

I'm not actively working on anything for this project anymore. It would make sense to implement such a thing when initially creating trades and only pass in tokens that are not on a blacklist

@alastyrcom
Copy link

Hello, make this little changes for blacklist;

In config.json file

"SCANNING": {
"DEPTH": 50,
"WHITELIST": []
},

changed to

"SCANNING": {
"DEPTH": 50,
"WHITELIST": [],
"BLACKLIST": ["BUST", "ETH"]
},

In MarketCache.js file line 100 add;

    if (CONFIG.SCANNING.BLACKLIST.length > 0) {
        if (CONFIG.SCANNING.BLACKLIST.includes(a)) return;
        if (CONFIG.SCANNING.BLACKLIST.includes(b)) return;
        if (CONFIG.SCANNING.BLACKLIST.includes(c)) return;
    }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature-request Requests a feature not currently implemented
Projects
None yet
Development

No branches or pull requests

4 participants