/opensea-floor-bot

Purchase assets from a collection when they hit a user-specified threshold in ETH.

Primary LanguageJavaScript

opensea floor bot

Opensource opensea floor sniper. Snipe NFT's at floor price with ease.

main features

  • asset queue for faster collection cycling/purchasing

configuration

OS bid bot requires Node.js to run. You will also need an infura.io account for the RPC provider.

Edit the config.json file to your needs.

rpc_url -> an url for your RPC
mnemonic -> your mnemonic
privateKey -> your private key
max_price -> max price in ETH of an asset
collection -> collection name, can be found in the url ( opensea.io/collection/cryptokitties )

Always have either a private key or mnemonic !!!

first example config.json

{
    "rpc_url":"https://mainnet.infura.io/v3/infurakeyhere",
    "mnemonic":"some mnemonic phrase here ...",
    "privateKey":"",
    "collection":"awesomecollection",
    "max_price":1.5
}

second example config.json

{
    "rpc_url":"https://mainnet.infura.io/v3/infurakeyhere",
    "mnemonic":"",
    "privateKey":"0be931f292787932421579423c0fdbecfe095a58aa8529391efda9e881a36d05",
    "collection":"cryptokitties",
    "max_price":0.5
}

installation

git clone https://github.com/chain-bots/opensea-floor-bot.git
cd opensea-floor-bot
npm i

running the bot

node bot.js

License

MIT