I’ve seen one wallet get a very big profit on all ten coins I’ve copied addresses from. Usually when he apes is when he gets his biggest profit, I think he doesn’t want people copying his wallet so he does random buys to confuse people trying to track.
Also I saw a vid on YouTube where I dude literally made millions off just waiting for certain wallets to buy. Can I be profitable just waiting for certain wallets to buy? While obviously researching the coin and looking at volume + narrative.
Sorry if this is nooby, but suppose you found the perfect address. Are you using bullx to auto copy their trades or are you taking some time to DYOR on any particular transaction they then make? And are you spamming small amounts into lots of coins? Thanks mate
I’ve seen one wallet get a very big profit on all ten coins I’ve copied addresses from. Usually when he apes is when he gets his biggest profit, I think he doesn’t want people copying his wallet so he does random buys to confuse people trying to track.
I have all my wallets in cielo linked to a tg bot. I don't follow anyones trades specifically but I use them for a confirmation bias. When multiple wallets are all buying the same thing it gives me a reason to pay more attention to it when scanning.
I also DYOR each trade but very quickly.
Mcap
Age
Vol
Holders
As soon as I buy a coin I look into it further incase I missed anything, I then decide to add, sell or hold position.
I also use the wallets to see if they are scaling out / not confident in the trade anymore. Maybe they saw news that I didn't see and are selling early.
Of course, your wallets at the start will be all over the place buying anything and everything but with enough time and constant refining of wallets you will find some pretty good ones.
I have all my wallets in cielo linked to a tg bot. I don't follow anyones trades specifically but I use them for a confirmation bias. When multiple wallets are all buying the same thing it gives me a reason to pay more attention to it when scanning.
I also DYOR each trade but very quickly.
Mcap
Age
Vol
Holders
As soon as I buy a coin I look into it further incase I missed anything, I then decide to add, sell or hold position.
I also use the wallets to see if they are scaling out / not confident in the trade anymore. Maybe they saw news that I didn't see and are selling early.
Of course, your wallets at the start will be all over the place buying anything and everything but with enough time and constant refining of wallets you will find some pretty good ones.
This is easy
Find the wallet that's sending him the coins
Some people use a wallet to buy and another wallet to sell
Do u have discord or something? Would love to trade with you. I’m 21 years old and really wanna make money doing this. Also do charts matter when buying a coin? Btw thanks for the help.
Thanks for this, that’s exactly what I noticied with your awesome guide. I also use the wallets I track to confirm my analysis. When I open a token's page and see these emoji wallets either already present on the chart or appearing while I’m analyzing the token, it reinforces my confidence
Do u have discord or something? Would love to trade with you. I’m 21 years old and really wanna make money doing this. Also do charts matter when buying a coin? Btw thanks for the help.
I made a script to automate this. You can provide a list of dexscreener urls and it will go through each one, scrape the top 100 wallets, and save them to a wallets.json frequency map.
node index.js # If you added your URLs to index.js
node index.js --urls urls.json # If you are using a custom file
You can also choose to add more wallets to the existing wallets.json frequency map by using the --no-overwrite argument:
Code:
node index.js --no-overwrite
You can also use --help argument if you need help:
Code:
node index.js --help
Please note I haven't tested it extensively so errors might occur. Also be aware that the script might stop working if DexScreener decide to change their site.
If you see a Cloudflare check you have to solve it manually.
Try not to scrape too many URLs at a time so you don't lose progress. I tested up to 20 and there was no problem but you never know. You can always use --no-overwrite to continue with the same frequency map.
Always back up your wallets.json file by renaming it if you don't want to lose it.
Awesome! The script works like a charm! Additionally, you can use an add-on like Link Grabber to easily scrape all token URLs from the main Dexscreener page.
Awesome! The script works like a charm! Additionally, you can use an add-on like Link Grabber to easily scrape all token URLs from the main Dexscreener page.
To use the script on Windows, you’ll need a code editor such as Notepad++, Visual Studio Code, or Sublime Text. Next, as mentioned in the original post, install Node.js (LTS version) from the official website
Once installed, create a folder in your desktop named (e.g., wallet-scraper). Inside this folder, create a file named index.js using your code editor (create a new file, set the language to JavaScript, copy/paste the content from the PasteBin link: https://pastebin.com/raw/QTSRFsHy, and save it as index.js in the folder you just created).
Copy the file path of the folder from the file explorer’s address bar.
Next, using the Command Prompt, navigate to this folder. For example, if the folder path is
C:\Users\Samsung\Desktop\wallet-scraper:
Open the Command Prompt (press Windows + R, type cmd, and press Enter).
In the Command Prompt, type cd followed by the folder path to navigate to the folder. In this example, you would type or copy paste the path e.g. cd C:\Users\Samsung\Desktop\wallet-scraper
Press Enter.
The Command Prompt will now be in the folder you created.
Install the required dependencies and initialize the project by copying and pasting the following command into the Command Prompt, then press Enter:
The folder will now look like this. Ignore urls.json, as I added it myself
Once done, you will be ready to run the script. The next step is to add the URLs you previously scraped from Dexscreener, as explained in the original post.
To make it easier to scrape all the links for each token on every page of the main Dexscreener table, use a link scraper like the one I provided as an example here:
To add them to the index.js file, locate the line around 308 and add the URLs like this:
JavaScript:
// Add the urls you want to scrape here, or create your own urls.json file and provide it as an argument in the CLI.
const urls = [
"https://dexscreener.com/solana/xxyxx",
"https://dexscreener.com/solana/xxxyx",
"https://dexscreener.com/solana/xxxxxyx"
];
Alternatively, you can create a file named urls.json using your code editor. Paste the URLs in the following format, select JSON as the file type, and save it in the same folder as index.js:
Then, go back to the Command Prompt. If you added the URLs directly into index.js, run the script by typing:
node index.js --no-overwrite
If you are using the urls.json file, run the following command instead:
node index.js --urls urls.json --no-overwrite
The script should now start running.
Here is an example using the command: node index.js --urls urls.json --no-overwrite with 2 urls.
The script also creates a file called wallets.json, where you will find all the scraped wallets.
As highlighted in the original post, avoid analyzing too many URLs at once to prevent triggering Cloudflare's security. Scraping 10-20 URLs at a time with pauses in between should be sufficient.
Your results are absolutely fantastic! Thank you so much for sharing your success. As someone who's been a member of BHW since 2007, I can confidently say that this thread is an absolute GEM!
I do have a question: in your process, what wallet size (in SOL) do you consider the threshold for a 'whale'? What parameter do you use to determine when it's worthwhile to start tracking such wallets?
Your results are absolutely fantastic! Thank you so much for sharing your success. As someone who's been a member of BHW since 2007, I can confidently say that this thread is an absolute GEM!
I do have a question: in your process, what wallet size (in SOL) do you consider the threshold for a 'whale'? What parameter do you use to determine when it's worthwhile to start tracking such wallets?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.