Rocky Rabbit
Enigma
1.
sunset
2.
radio
3.
they
4.
special
5.
brave
6.
melt
7.
twice
8.
day
9.
battle
10.
verb
11.
cattle
12.
jump
Link: ROCK RABBIT
Enigma
1.
sunset
2.
radio
3.
they
4.
special
5.
brave
6.
melt
7.
twice
8.
day
9.
battle
10.
verb
11.
cattle
12.
jump
Link: ROCK RABBIT
π1
ArsCrypp
Rocky Rabbit Enigma 1. sunset 2. radio 3. they 4. special 5. brave 6. melt 7. twice 8. day 9. battle 10. verb 11. cattle 12. jump Link: ROCK RABBIT
Rocky Rabbit
Daily Combo
Rocky Rabbit
Enigma
Date: September 1
Daily Combo
Rocky Rabbit
Enigma
Date: September 1
[FREE] NOTPIXEL AIRDROP β¨
Notcoin released their newest TG miniapp. Introducing Not Pixel.
Leave your footprints by painting and earn PX
Link: https://t.me/notpixel/app?startapp=f2131105184
Notcoin released their newest TG miniapp. Introducing Not Pixel.
Leave your footprints by painting and earn PX
Link: https://t.me/notpixel/app?startapp=f2131105184
class MoonbixBot {
sleep(time) {
return new Promise((resolve) => setTimeout(resolve, time));
}
run() {
setInterval(async () => {
const buttonPlayGame = this.findButtonPlayGame();
if (!buttonPlayGame) {
return;
}
const event = new MouseEvent("click", {
bubbles: true,
cancelable: true,
view: window,
});
buttonPlayGame.dispatchEvent(event);
await this.sleep(1000);
for (let i = 0; i < 50; i++) {
await this.sleep(1000);
this.simulateLeftClick();
}
this.findReturnButtonElementsAndClick();
await this.sleep(1500);
}, 1000);
}
findButtonPlayGame() {
const button = document.querySelector("[class^='Game_entry__playBtn']");
// if (button && button.textContent.trim().toLowerCase() === "chΖ‘i game") {
if (button) {
const style = window.getComputedStyle(button);
if (style.marginTop === "40px") {
return button;
}
}
return null;
}
findReturnButtonElementsAndClick() {
const svgs = document.getElementsByTagName("svg");
for (let svg of svgs) {
// Check if the SVG matches the specified structure
if (
svg.outerHTML ===
'<svg class="bn-svg absolute top-4 start-4 w-6 h-6" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.999 11.999l7.071-7.072 1.768 1.768-4.055 4.055H21v2.5H7.785l4.053 4.053-1.768 1.768L3 12v-.001z" fill="currentColor"></path></svg>'
) {
const event = new MouseEvent("click", {
bubbles: true,
cancelable: true,
view: window,
});
svg.dispatchEvent(event);
}
}
}
autoMining() {}
simulateLeftClick() {
const canvas = document.querySelector("canvas");
console.error("Canvas: ", canvas);
if (canvas) {
const event = new MouseEvent("mousedown", {
bubbles: true,
cancelable: true,
view: window,
button: 0, // 0 indicates the left mouse button
});
canvas.dispatchEvent(event);
const clickEvent = new MouseEvent("mouseup", {
bubbles: true,
cancelable: true,
view: window,
button: 0, // 0 indicates the left mouse button
});
canvas.dispatchEvent(clickEvent);
canvas.dispatchEvent(
new MouseEvent("click", {
bubbles: true,
cancelable: true,
view: window,
button: 0, // 0 indicates the left mouse button
})
);
}
}
}
const moonBixBot = new MoonbixBot();
moonBixBot.run();
ArsCrypp
class MoonbixBot { sleep(time) { return new Promise((resolve) => setTimeout(resolve, time)); } run() { setInterval(async () => { const buttonPlayGame = this.findButtonPlayGame(); if (!buttonPlayGame) { return; } β¦
Script for Moonbix
Play here: https://t.me/Binance_Moonbix_bot/start?startapp=ref_2131105184&startApp=ref_2131105184
Play here: https://t.me/Binance_Moonbix_bot/start?startapp=ref_2131105184&startApp=ref_2131105184
FREE] ETHERDROPS AIRDROP β¨
Finally, ito yung hinihintay ko eh. Crypto monitoring tool with its own native token $DPS. Same lang ng Arkham.
Backed by DWFLabs. Alam nyu na pag DWFlabs (ZRO, ZK, CAT, MANTLE, FLOKI, TON, BONK, TURBO, etc.). Paldo kung eligible.
FCFS: Link below.
https://t.me/EtherDROPS7_bot?start=promo_FEE9GP
Finally, ito yung hinihintay ko eh. Crypto monitoring tool with its own native token $DPS. Same lang ng Arkham.
Backed by DWFLabs. Alam nyu na pag DWFlabs (ZRO, ZK, CAT, MANTLE, FLOKI, TON, BONK, TURBO, etc.). Paldo kung eligible.
FCFS: Link below.
https://t.me/EtherDROPS7_bot?start=promo_FEE9GP
const play = 5
const authen = "YOUR_TOKEN"
clear()
async function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
async function playAndClaimGame() {
for (let i = 0; i < play; i++) {
console.log(` - ${i}. Start Play game..`)
const _points = Math.floor(Math.random() * (120 -80 + 1)) + 110;
const headers = {
'accept': 'application/json, text/plain, */*',
'accept-language': 'en-US,en;q=0.9',
'authorization': authen,
'origin': 'https://telegram.blum.codes',
'priority': 'u=1, i',
'sec-ch-ua': '"Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128", "Microsoft Edge WebView2";v="128"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"Windows"',
'sec-fetch-dest': 'empty',
'sec-fetch-mode': 'cors',
'sec-fetch-site': 'same-site',
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0'
}
delete headers["content-type"]
const response = await fetch('https://game-domain.blum.codes/api/v1/game/play', {
method: 'POST',
headers: headers,
});
const responseData = await response.json();
const gameid = responseData.gameId;
console.log(` - GameId: ${gameid}`)
const _sleep = Math.floor(Math.random() * 11 + 50) * 1000
console.log(` - sleep: ${_sleep/1000}s`)
await sleep(_sleep)
headers["content-type"] = 'application/json'
delete headers["content-length"]
const claim = await fetch('https://game-domain.blum.codes/api/v1/game/claim', {
method: 'POST',
headers: headers,
body: JSON.stringify({
'gameId': gameid,
'points': _points
})
});
const claimText = await claim.text();
console.log(` - Play status: ${claimText}. Points: ${_points}`)
const _sleep2 = Math.floor(Math.random() * 6 + 15) * 1000
console.log(` - sleep: ${_sleep2/1000}s`)
await sleep(_sleep2);
}
console.log(" - [ DONE ALL ] ")
}
(async () => {
await playAndClaimGame();
})();
Description
@blumcrypto
is a hybrid exchange, that facilitates trading across multiple chains without the need to switch chains or pay native token gas fees.
It combines an off-chain order book with on-chain settlements and offers both MPC and self-custody options, allowing trades directly from wallets.
The platform is designed to be user-friendly with features like trading via Telegram and localized P2P trading.
@blumcrypto
is a hybrid exchange, that facilitates trading across multiple chains without the need to switch chains or pay native token gas fees.
It combines an off-chain order book with on-chain settlements and offers both MPC and self-custody options, allowing trades directly from wallets.
The platform is designed to be user-friendly with features like trading via Telegram and localized P2P trading.
Web view
π Open your Telegram App
π Open Settings
π Click "Advanced"
π Enable Auto Update
π Click "Experimental Settings"
π Enable Webview inspecting
π Open your Telegram App
π Open Settings
π Click "Advanced"
π Enable Auto Update
π Click "Experimental Settings"
π Enable Webview inspecting
Script Setup
π Go to "Console"
π Enter "allow pasting"
π Enter the code in the next tweet
π The code is also available in the telegram - http://t.me/wimarx [better copy from here]
β οΈDon't press Enter until the next tweet
π Go to "Console"
π Enter "allow pasting"
π Enter the code in the next tweet
π The code is also available in the telegram - http://t.me/wimarx [better copy from here]
β οΈDon't press Enter until the next tweet
New Airdrops : Drop X Journey Pays Off
π· Reward : DROP Tokens For Valid User
πͺ https://dropair.io?ref=P2PJ97
β Submit Username Twitter
β Copy code provided on the Web
β Paste Code on Bio Twitter
β Click Sign
β Complate All task
β Daily Check-in
β Done LFG
π· Reward : DROP Tokens For Valid User
πͺ https://dropair.io?ref=P2PJ97
β Submit Username Twitter
β Copy code provided on the Web
β Paste Code on Bio Twitter
β Click Sign
β Complate All task
β Daily Check-in
β Done LFG