WINSNIP
10K subscribers
1.89K photos
33 videos
16 files
921 links
Your hub for airdrops, sniper strategies, and node guides! Get the latest airdrop alerts, trading insights, and node tips.
Website : https://www.winsnip.xyz
For Business Inquiries & Collaborations:
@jamalsetiawan
Download Telegram
WINSNIP
Reminder chasm Claim Role Before 24 hours ended
Update


cd chasm && \
docker stop scout && \
docker rm scout && \
docker pull chasmtech/chasm-scout:latest && \
docker run -d --restart=always --env-file ./.env -p 3001:3001 --name scout chasmtech/chasm-scout


cek log

curl localhost:3001 && echo
WINSNIP
⚠️ Reminder 1 dev sama major
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from Winsnip Journal
OKX Mengumumkan Daftar Token HMSTR Hamster Kombat pada bulan September

Pembicara koin
OKX Mengumumkan Daftar Token HMSTR Hamster Kombat pada bulan September
Saat token tersebut memulai debutnya di OKX, token tersebut siap untuk menarik minat yang besar baik dari para gamer maupun pedagang.
OKX Mengumumkan Daftar Token HMSTR Hamster Kombat pada bulan September


Baca selengkapnya

Bergabung dengan channel kami
WINSNIP
Please open Telegram to view this post
VIEW IN TELEGRAM
WINSNIP
Please open Telegram to view this post
VIEW IN TELEGRAM
WINSNIP
Please open Telegram to view this post
VIEW IN TELEGRAM
Mau Cobaa Seberahh Kompak Yang Klik React ⭐️ di Sini
WINSNIP
Please open Telegram to view this post
VIEW IN TELEGRAM
Media is too big
VIEW IN TELEGRAM
Tutorial Mencari query id / user id

(Minimal ditonton dulu videonya, baru tanyain yang disitu ga dijelasin)

Download Ignore X-Frame headers 👈

Download Bypass Telegram 👈

Telegram Web
https://web.telegram.org/
Or
https://web.telegram.org/k
1 bintang cuman 200 perak aje ngeluh , lah ngtu yg bikin rokok kopinya kaga ada 🗿
Please open Telegram to view this post
VIEW IN TELEGRAM
Auto install SATSET
Rainbow Protocol

Siapin nama dan pass sebelum install

bash <(curl -s https://data.bangpateng.xyz/file/uploads/Rainbow.sh)



"principal": "xxxxx-xxxxx-xxxxx-xxxxx-xxxxx-xxxxx-xxxxx-xxxxx-xxxxx-xxxxx-xxx" buka expler
https://testnet.rainbowprotocol.xyz/explorer


cek Log

docker logs bitcoind


cat /root/project/run_btc_testnet4/identity/private_key.pem
save folder dan download /root/project/run_btc_testnet4/identity/


hapus

docker stop $(docker ps -q --filter "name=bitcoind") && docker rm $(docker ps -a -q --filter "name=bitcoind") && docker rmi $(docker images -q --filter "reference=bitcoind") && rm -rf /root/project


source : https://x.com/rbo_protocol
Mau auto instal satset buat story dan Nesa???
Buat yang tadi udah kirim kan kedata tuh siapa ja yg kirim bintang nanti bot udah siap rilis ente kirim ID chat ya
Node Story Satset

Hardware Requirement
CPU= 4 Cores
RAM= 8 GB
Disk= 200 GB
Bandwidth = 10 MBit/s

wget https://data.bangpateng.xyz/file/uploads/Story.sh && chmod +x Story.sh && ./Story.sh && rm Story.sh



Deafuld port 26 saja,

cek log true false (26657 ganti sesuai intalan tadi

curl localhost:26657/status | jq


curl -s localhost:26657/status | jq .result.sync_info.catching_up


Geth Log
sudo journalctl -u geth -f
story

story
sudo journalctl -u story -f


Lihat wallet
story validator export --export-evm-key

faucet EVM
https://faucet.story.foundation/

Creat validator
story validator stake \
--validator-pubkey "VALIDATOR_PUB_KEY_IN_BASE64" \
--stake 1000000000000000000 \
--private-key xxxxxxxxxxxxxx


Resrt
sudo systemctl restart geth
sudo systemctl restart story



DC
https://discord.gg/storyprotocol

exploer evm
https://testnet.storyscan.xyz/

untuk cek validator
shell
curl -s localhost:26657/status | jq -r '.result.validator_info'


snapshoot

xxx



expler validator
https://testnet.story.explorers.guru/

jgn lupa download filenya (backup)
/root/.story/story/config/

Hapus
sudo systemctl stop geth && sudo systemctl disable geth && sudo rm /etc/systemd/system/geth.service && \
sudo systemctl stop story && sudo systemctl disable story && sudo rm /etc/systemd/system/story.service && \
sudo rm -rf /usr/local/go && rm -rf $HOME/go/bin/geth && rm -rf $HOME/go/bin/story && \
rm -rf $HOME/bin && rm -rf $HOME/.story && sudo systemctl daemon-reload`


Update Peer

URLS=(
"https://story-testnet-rpc.itrocket.net/net_info"
"http://207.244.230.111:36657/net_info"
"http://116.202.217.20:37657/net_info"
"http://194.238.30.192:36657/net_info"
"http://135.181.225.175:26657/net_info"
"http://162.55.245.254:33657/net_info"
"http://65.108.103.184:26657/net_info"
"https://story-rpc.validatorvn.com/net_info"
)

PEERS=""
LATENCY_THRESHOLD=20
PING_ATTEMPTS=5
SUCCESSFUL_PINGS=5

for URL in "${URLS[@]}"; do
response=$(curl -s $URL)
peers=$(echo $response | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):" + (.node_info.listen_addr | capture("(?<ip>.+):(?<port>[0-9]+)$").port)')

for peer in $peers; do
ip_port=$(echo $peer | cut -d'@' -f2)
ip=$(echo $ip_port | cut -d':' -f1)
successful_pings=0
total_latency=0

for ((i=0; i<$PING_ATTEMPTS; i++)); do
latency=$(ping -c 1 -W 1 $ip | grep 'time=' | awk -F'time=' '{print $2}' | cut -d' ' -f1)
if [ ! -z "$latency" ] && (( $(echo "$latency < $LATENCY_THRESHOLD" | bc -l) )); then
successful_pings=$((successful_pings + 1))
total_latency=$(echo "$total_latency + $latency" | bc)
fi
done

if (( successful_pings == $PING_ATTEMPTS )); then
avg_latency=$(echo "scale=2; $total_latency / $successful_pings" | bc)
echo "Accepted peer: $peer (Average Latency: $avg_latency ms)"
[ -n "$PEERS" ] && PEERS="$PEERS,$peer" || PEERS="$peer"
fi
done
done

echo "PEERS=\"$PEERS\""
sed -i 's|^persistent_peers *=.*|persistent_peers = "'$PEERS'"|' $HOME/.story/story/config/config.toml

sudo systemctl restart story


bintangin woiii

kopi rokok, gula

🚨 Role validatornya dah di tutup... Selamat yg dah pegang role
Fundamental Crypto Channel

biasa dipakai untuk membeli dan juga hold token atau coin
dengan pertimbangan Utama dari news, maka akan diberikan infomasi, fundametal cypto tersebut, dan akan terupdate otomatis di channel, pemain trading bisa memanfaatkan chanel ini sebagai salah satu pertimbangn, dan ini bukan berdasarkan asumsi tapi fakta yg ada...

🚨 DISCLAIMER:
Trusted news, not financial advice. DYOR. Invest at your own risk

https://t.me/+QfrDuz2L1dBiMmZl

hanya untuk yg bangun pagi....
10 menit di hapus
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from Faucet Trade
Big Offer😑

On sale: 40000 Story IP testnet
Price: 4000$

The price is valid only when purchasing the entire volume.


Feedback — @faucet_trade_feedback

DM — @bobrov_mlb or @gordon_faucet
Please open Telegram to view this post
VIEW IN TELEGRAM
850 rupiah pertoken kata temen ane

Minimal beli 200 token , maximal 1050 perwallet

Minat pm stok terbatas ya bang , bagi yang mau aja