1.0.1 • Published 6 years ago

esdb-cli v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

ESDB-CLI

Use this tool to create pull requests for new blacklist entries on EtherScamDB.

CLI Usage

npm install esdb-cli -g

(Create a new github access token at https://github.com/settings/tokens)

esdb --token=

esdb

That's it :tada:

API

You can also add new entries through an API:

npm install esdb-cli --save

const esdb = require('esdb-cli');

(async () => {
	await esdb(access_token, entry_object);
})();

(esdb returns a Promise, so either use async + await or .then())