|
@@ -0,0 +1,165 @@
|
|
|
+// ==UserScript==
|
|
|
+// @name Dex-Filter-ListenToken-Long-SOL
|
|
|
+// @namespace http://tampermonkey.net/
|
|
|
+// @version 0.1
|
|
|
+// @description try to take over the world!
|
|
|
+// @author You
|
|
|
+// @match https://dexscreener.com/new-pairs?rankBy=txns&order=desc&chainIds=solana&dexIds=raydium&minLiq=8000&minAge=48&min24HTxns=300&min24HBuys=100&min1HChg=4&min5MChg=2
|
|
|
+// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
|
|
|
+// @grant none
|
|
|
+
|
|
|
+// ==/UserScript==
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+function funcDownload(content, filename) {
|
|
|
+ // 创建隐藏的可下载链接
|
|
|
+ let eleLink = document.createElement('a');
|
|
|
+ eleLink.download = filename;
|
|
|
+ eleLink.style.display = 'none';
|
|
|
+ // 字符内容转变成blob地址
|
|
|
+ let blob = new Blob([content]);
|
|
|
+ eleLink.href = URL.createObjectURL(blob);
|
|
|
+ // 触发点击
|
|
|
+ document.body.appendChild(eleLink);
|
|
|
+ eleLink.click();
|
|
|
+ // 然后移除
|
|
|
+ document.body.removeChild(eleLink);
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+function sleep(sleepdelay) {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ setTimeout(() => {
|
|
|
+ resolve(sleepdelay);
|
|
|
+ }, sleepdelay);
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+var pre_click_timestamp = 0;
|
|
|
+
|
|
|
+var now_timestamp = 0;
|
|
|
+
|
|
|
+function click_avoid_sleep() {
|
|
|
+ if (now_timestamp - pre_click_timestamp >= 2 * 60 * 1000) {
|
|
|
+ pre_click_timestamp = now_timestamp;
|
|
|
+ let th = document.querySelector("div.ds-dex-table-th");
|
|
|
+
|
|
|
+ let button_click = th.children[5].querySelector("button");
|
|
|
+ button_click.click();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+function click_avoid_sleep() {
|
|
|
+ if (now_timestamp - pre_click_timestamp >= 2 * 60 * 1000) {
|
|
|
+ pre_click_timestamp = now_timestamp;
|
|
|
+ let th = document.querySelector("div.ds-dex-table-th");
|
|
|
+
|
|
|
+ let button_click = th.children[5].querySelector("button");
|
|
|
+ button_click.click();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+async function get_tbody_data() {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ now_timestamp = Date.now();
|
|
|
+
|
|
|
+ click_avoid_sleep();
|
|
|
+ save_resdata();
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+function save_resdata() {
|
|
|
+ // console.log("enter save_resdata");
|
|
|
+ drop_outtime_pairaddress();
|
|
|
+
|
|
|
+ let set_intersection_pairaddress = new Set([...set_now_pairaddress].filter(value => set_pre_pairaddress.has(value)));
|
|
|
+
|
|
|
+
|
|
|
+ // console.log("set_intersection_pairaddress=", set_intersection_pairaddress, 'set_pre_pairaddress=', set_pre_pairaddress, "set_now_pairaddress=", set_now_pairaddress);
|
|
|
+ set_pre_pairaddress.clear();
|
|
|
+ set_pre_pairaddress = set_now_pairaddress;
|
|
|
+ set_now_pairaddress = new Set();
|
|
|
+
|
|
|
+
|
|
|
+ if (set_intersection_pairaddress.size == 0) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ let temp_arr_res_data = arr_res_data;
|
|
|
+
|
|
|
+ arr_res_data = [];
|
|
|
+
|
|
|
+ for (let it of temp_arr_res_data) {
|
|
|
+
|
|
|
+
|
|
|
+ arr_res_data.push(it);
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ if (arr_res_data.length == 0) {
|
|
|
+ // res 为空
|
|
|
+ // console.log("arr_res_data length is 0");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ // console.log("arr_res_data=", arr_res_data)
|
|
|
+ arr_res_data.unshift(["timestamp", "pairaddress", "price", "5m", "1h", "6h", "24h"]);
|
|
|
+
|
|
|
+ arr_res_data.forEach((val, index, arr) => { arr[index] = val.join() + "\n" });
|
|
|
+
|
|
|
+ let str_cur_time = "" + Date.now();
|
|
|
+
|
|
|
+
|
|
|
+ funcDownload(arr_res_data.join(""), str_cur_time + "_long" + ".csv");
|
|
|
+ arr_res_data = [];
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+function autoScroll() {
|
|
|
+ console.log("enter autoScroll");
|
|
|
+ async function fetchData() {
|
|
|
+ await get_tbody_data();
|
|
|
+ setTimeout(fetchData, 15 * 1000);
|
|
|
+ }
|
|
|
+
|
|
|
+ setTimeout(fetchData, 15 * 1000);
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+var arr_res_data = [];
|
|
|
+var set_pre_pairaddress = new Set();
|
|
|
+var set_now_pairaddress = new Set();
|
|
|
+// window.addEventListener('load', () => {
|
|
|
+
|
|
|
+(async function () {
|
|
|
+ console.log("enter load");
|
|
|
+ await sleep(6000);
|
|
|
+ autoScroll();
|
|
|
+
|
|
|
+
|
|
|
+})();
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|