tamper_get_top_sol_gmgn_nowuse.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. // ==UserScript==
  2. // @name GMGN-Get-Top
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-10-19
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://gmgn.ai/sol/token/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=gmgn.ai
  9. // @grant none
  10. // ==/UserScript==
  11. function funcDownload(content, filename) {
  12. console.log('begin download');
  13. // 创建隐藏的可下载链接
  14. let eleLink = document.createElement('a');
  15. eleLink.download = filename;
  16. eleLink.style.display = 'none';
  17. // 字符内容转变成blob地址
  18. let blob = new Blob([content]);
  19. eleLink.href = URL.createObjectURL(blob);
  20. // 触发点击
  21. document.body.appendChild(eleLink);
  22. eleLink.click();
  23. // 然后移除
  24. document.body.removeChild(eleLink);
  25. }
  26. function sleep(sleepdelay) {
  27. return new Promise((resolve, reject) => {
  28. setTimeout(() => {
  29. resolve(sleepdelay);
  30. }, sleepdelay);
  31. })
  32. }
  33. var number_chars_obj = {
  34. "k": 3,
  35. "m": 6,
  36. "b": 9,
  37. "t": 12,
  38. "p": 15
  39. };
  40. var number_chars_arr = ["k", "m", "b", "t", "p"];
  41. function get_float_number(str_number) {
  42. let float_number = parseFloat(str_number);
  43. for (let number_char of number_chars_arr) {
  44. if (str_number.indexOf(number_char) != -1) {
  45. float_number = parseFloat(str_number) * 10 ** number_chars_obj[number_char];
  46. }
  47. }
  48. return float_number;
  49. }
  50. function getCurrentTime() {
  51. const zeroFill = (i) => {
  52. if (i >= 0 && i <= 9) {
  53. return "0" + i;
  54. } else {
  55. return '' + i;
  56. }
  57. }
  58. let date = new Date();//当前时间
  59. let year = date.getFullYear();
  60. let month = zeroFill(date.getMonth() + 1);//月
  61. let day = zeroFill(date.getDate());//日
  62. let hour = zeroFill(date.getHours());//时
  63. let minute = zeroFill(date.getMinutes());//分
  64. let second = zeroFill(date.getSeconds());//秒
  65. //当前时间
  66. var curTime = month + day + '_' + hour + minute;
  67. return curTime;
  68. }
  69. function get_thead_arr_toptrader() {
  70. // let titlearr = _thead.innerText.trim().split(/\r?\n/);
  71. let titlearr = ['Maker', 'SOL', 'Buy_sol', 'Buy_token_M', 'buy_cout', 'Sell_sol', 'Sell_token_M', 'sell_cout', 'Pnl_sol', 'Pnl_per',];
  72. return titlearr;
  73. }
  74. async function get_tbody_data_toptrader() {
  75. let div_has_tran_table = document.querySelector("div.ag-root-wrapper-body.ag-focus-managed.ag-layout-normal > div.ag-root.ag-unselectable.ag-layout-normal.ag-body-vertical-content-no-gap.ag-body-horizontal-content-no-gap");
  76. let tbody = div_has_tran_table.querySelector("div.ag-body.ag-layout-normal div.ag-center-cols-viewport div.ag-center-cols-container");
  77. let arr_tbody_trs;
  78. arr_tbody_trs = Array.from(tbody.children);
  79. let last_tr = arr_tbody_trs[arr_tbody_trs.length - 1];
  80. let last_row_id = parseInt(last_tr.getAttribute('row-index'));
  81. if (arr_res_data_toptrader.length - 1 >= last_row_id + 1) {
  82. // 这批已经全部获取了
  83. return false;
  84. }
  85. for (let i = 0; i < arr_tbody_trs.length; i++) {
  86. let cur_row_id = parseInt(arr_tbody_trs[i].getAttribute('row-index'));
  87. if (arr_res_data_toptrader.length - 1 >= cur_row_id + 1) {
  88. continue;
  89. }
  90. let arr_tds;
  91. arr_tds = Array.from(arr_tbody_trs[i].children);
  92. let tdtexts = [];
  93. for (let i = 0; i < arr_tds.length; i++) {
  94. if (i == 0) {
  95. // trader
  96. let a_element = arr_tds[i].querySelector("a");
  97. let str_trader = a_element.href.split('/').pop();
  98. tdtexts.push(str_trader);
  99. }
  100. else if (i == 1) {
  101. //sol balance
  102. let str_balance = arr_tds[i].innerText.trim().replace(/[,]/g, "").trim();
  103. str_balance = str_balance.replace(/\s+/g, "");
  104. str_balance = str_balance.toLowerCase();
  105. let float_balance;
  106. float_balance = get_float_number(str_balance);
  107. // for (let number_char of number_chars_arr) {
  108. // if (str_balance.indexOf(number_char) != -1) {
  109. // float_balance = parseFloat(str_balance) * 10 ** number_chars_obj[number_char];
  110. // }
  111. // }
  112. tdtexts.push(float_balance);
  113. } else if (i == 2) {
  114. continue;
  115. }
  116. else if (i == 3) {
  117. // bought
  118. // sol
  119. // token txns
  120. let arr_sol_amount_txns = (arr_tds[i].children);
  121. if (arr_sol_amount_txns.length == 1) {
  122. // 为 --
  123. tdtexts.push(0);
  124. tdtexts.push(0);
  125. continue;
  126. }
  127. let str_sol = "0";
  128. let float_sol;
  129. str_sol = arr_sol_amount_txns[0].innerText.trim().toLowerCase();
  130. str_sol = str_sol.replace(/[sol$,%\+><]/g, "").trim();
  131. // if (str_sol == "--") {
  132. // str_sol = "0";
  133. // }
  134. let str_token_amount = "0";
  135. let float_token_amount;
  136. let arr_token_amount_txns = [];
  137. let float_txns;
  138. arr_token_amount_txns = arr_sol_amount_txns[1].innerText.trim().toLowerCase().split('/');
  139. str_token_amount = arr_token_amount_txns[0].trim();
  140. str_txns = arr_token_amount_txns[1].trim();
  141. float_sol = get_float_number(str_sol);
  142. tdtexts.push(float_sol);
  143. float_token_amount = get_float_number(str_token_amount);
  144. float_txns = get_float_number(str_txns);
  145. tdtexts.push(float_token_amount / 1e6);
  146. tdtexts.push(float_txns);
  147. } else if (i == 4) {
  148. // sold
  149. let arr_sol_amount_txns = arr_tds[i].children[0].children;
  150. if (arr_sol_amount_txns.length == 1) {
  151. tdtexts.push(0);
  152. tdtexts.push(0);
  153. continue;
  154. }
  155. let str_sol = "0";
  156. let float_sol;
  157. str_sol = arr_sol_amount_txns[0].innerText.trim().toLowerCase();
  158. str_sol = str_sol.replace(/[sol$,%\+><]/g, "").trim();
  159. // if (str_sol == "--") {
  160. // str_sol = "0";
  161. // }
  162. let str_token_amount = "0";
  163. let float_token_amount;
  164. let arr_token_amount_txns = [];
  165. let float_txns;
  166. arr_token_amount_txns = arr_sol_amount_txns[1].innerText.trim().toLowerCase().split('/');
  167. str_token_amount = arr_token_amount_txns[0].trim();
  168. str_txns = arr_token_amount_txns[1].trim();
  169. float_sol = get_float_number(str_sol);
  170. tdtexts.push(float_sol);
  171. float_token_amount = get_float_number(str_token_amount);
  172. float_txns = get_float_number(str_txns);
  173. tdtexts.push(float_token_amount / 1e6);
  174. tdtexts.push(float_txns);
  175. } else if (i == 5) {
  176. // pnl
  177. let str_sol = "0";
  178. let str_percent = "0";
  179. let float_sol = 0;
  180. let float_percent = 0;
  181. let arr_sol_percent = arr_tds[i].children[0].children;
  182. str_sol = arr_sol_percent[0].innerText.trim().toLowerCase();
  183. str_sol = str_sol.replace(/[sol$,%\+><]/g, "").trim();
  184. str_percent = arr_sol_percent[1].innerText.trim().toLowerCase();
  185. str_percent = str_percent.replace(/[sol$,%\+><]/g, "").trim();
  186. if (str_sol == "--") {
  187. str_sol = "0";
  188. }
  189. if (str_percent == "--") {
  190. str_percent = "999999";
  191. }
  192. float_sol = parseFloat(str_sol);
  193. float_percent = parseFloat(str_percent);
  194. for (let number_char of number_chars_arr) {
  195. if (str_sol.indexOf(number_char) != -1) {
  196. float_sol = parseFloat(str_sol) * 10 ** number_chars_obj[number_char];
  197. }
  198. if (str_percent.indexOf(number_char) != -1) {
  199. float_percent = parseFloat(str_percent) * 10 ** number_chars_obj[number_char];
  200. }
  201. }
  202. tdtexts.push(float_sol);
  203. tdtexts.push(float_percent);
  204. } else if (i == 6) {
  205. // Realized
  206. continue;
  207. }
  208. else if (i == 7) {
  209. // UnRealized
  210. continue
  211. } else if (i == 8) {
  212. //Holding Duration
  213. continue
  214. }
  215. else if (i == 9) {
  216. // Avg Cost/Sold
  217. continue
  218. } else if (i == 10) {
  219. // Last Active
  220. continue
  221. }
  222. }
  223. arr_res_data_toptrader.push(tdtexts);
  224. }
  225. return true
  226. }
  227. function save_resdata_toptrader() {
  228. console.log("enter save_resdata_toptrader");
  229. arr_res_data_toptrader.forEach((val, index, arr) => { arr[index] = val.join() + "\n" });
  230. let urlpathname = window.location.pathname.slice(1).split('/');
  231. urlpathname = urlpathname.pop()
  232. funcDownload(arr_res_data_toptrader.join(""), urlpathname + "_top_gmgn_sol" + "_" + getCurrentTime() + ".csv");
  233. arr_res_data_toptrader = [];
  234. }
  235. function autoScroll_toptrader() {
  236. console.log("enter autoScroll_toptrader");
  237. let interval;
  238. let scroll_times = 15;
  239. let div_has_tran_table = document.querySelector("div.ag-root-wrapper-body.ag-focus-managed.ag-layout-normal > div.ag-root.ag-unselectable.ag-layout-normal.ag-body-vertical-content-no-gap.ag-body-horizontal-content-no-gap");
  240. let tbody = div_has_tran_table.querySelector("div.ag-body.ag-layout-normal div.ag-center-cols-viewport div.ag-center-cols-container");
  241. async function down() {
  242. interval = setInterval(async () => {
  243. let tbodytrs;
  244. console.log("scroll_times=", scroll_times);
  245. if (scroll_times > 0) {
  246. await sleep(150);
  247. tbodytrs = tbody.children;
  248. tbodytrs[tbodytrs.length - 1].scrollIntoView({ behavior: "smooth", block: "center" });
  249. let bool_get_tbody = await get_tbody_data_toptrader();
  250. if (bool_get_tbody == false) {
  251. scroll_times = 0;
  252. }
  253. } else {
  254. clearInterval(interval);
  255. await get_tbody_data_toptrader();
  256. save_resdata_toptrader();
  257. return;
  258. }
  259. scroll_times--;
  260. // tbodytrs = tbody.children;
  261. if (arr_res_data_toptrader.length == 101) {
  262. clearInterval(interval);
  263. await get_tbody_data_toptrader();
  264. save_resdata_toptrader();
  265. return;
  266. }
  267. await sleep(300);
  268. }, 1200)
  269. }
  270. down()
  271. }
  272. var arr_res_data_toptrader = [];
  273. // window.addEventListener('load', async () => {
  274. (async function () {
  275. console.log("enter load");
  276. await sleep(6000);
  277. console.log("create button");
  278. var mydivbox = document.createElement("div");
  279. var button_get_toptrader = document.createElement("button");//创建 获取 top trader 一个按钮
  280. button_get_toptrader.className = "tam-mybutton-gettran"
  281. button_get_toptrader.textContent = "top_sol"; //按钮内容
  282. button_get_toptrader.style.width = "90px"; //按钮宽度
  283. button_get_toptrader.style.height = "20px"; //按钮高度
  284. button_get_toptrader.style.align = "center"; //文本居中
  285. button_get_toptrader.style.color = "blue"; //按钮文字颜色
  286. button_get_toptrader.style.background = "#717171"; //按钮底色
  287. button_get_toptrader.style.border = "1px solid #717171"; //边框属性
  288. mydivbox.appendChild(button_get_toptrader);
  289. mydivbox.style.position = "fixed";
  290. mydivbox.style.top = "160px";
  291. mydivbox.style.right = "40px";
  292. document.body.appendChild(mydivbox);
  293. button_get_toptrader.addEventListener("click", clickButton_get_toptrader); //监听按钮点击事件
  294. })();
  295. async function clickButton_get_toptrader() {
  296. arr_res_data_toptrader = [];
  297. console.log("enter clickButton_toptrader arr_res_data_toptrader=", arr_res_data_toptrader);
  298. let div_chakra_tabs = document.querySelector('[role="tablist"]');
  299. let arr_buttons_chakra = Array.from(div_chakra_tabs.querySelectorAll("button"));
  300. let tab_top_trader_click = undefined;
  301. for (let button of arr_buttons_chakra) {
  302. if (button.innerText.includes("Traders")) {
  303. tab_top_trader_click = button;
  304. break;
  305. }
  306. }
  307. if (tab_top_trader_click == undefined) {
  308. console.log("no tab_top_trader_click");
  309. return;
  310. }
  311. console.log(" tab_top_trader_click click=");
  312. await tab_top_trader_click.click();
  313. await sleep(7000);
  314. let div_has_tran_table = document.querySelector("div.ag-root-wrapper-body.ag-focus-managed.ag-layout-normal > div.ag-root.ag-unselectable.ag-layout-normal.ag-body-vertical-content-no-gap.ag-body-horizontal-content-no-gap");
  315. let _thead = div_has_tran_table.querySelector("div.ag-header.ag-pivot-off.ag-header-allow-overflow div.ag-header-viewport div.ag-header-row.ag-header-row-column ");
  316. let arr_th = _thead.children;
  317. let tab_click_USD_toptrader = arr_th[5].querySelector("div.css-1vimx2u");
  318. if (tab_click_USD_toptrader.innerText.includes("USD")) {
  319. await tab_click_USD_toptrader.click();
  320. await sleep(4000);
  321. }
  322. let titlearr = get_thead_arr_toptrader();
  323. arr_res_data_toptrader.push(titlearr);
  324. autoScroll_toptrader();
  325. }