Cryptokom
4.5K subscribers
19.2K photos
683 videos
44 files
14.3K links
Airdrop Fokus on testnet,node & Game Nft Channel, ada kelas belajar testnet gratis bagi pemula https://t.me/+MBsxheIaWXdlZGI0
For advertisement contact : @cryptonewslearn1 @Cryptokombillions
Forpartnership: @Cryptokombillions
Download Telegram
Update Story protocol Styreal Badge

➡️ Open Website
➡️ Complete Soccial Task
➡️ Scan Barcode ( Use Mobile Phone )
➡️ Buy - Sell ( Trade ) On Mobile phone
➡️ Claim Badge
➡️ Done

Details : Guide
Please open Telegram to view this post
VIEW IN TELEGRAM
👍1
UPDATE OGC : New chance for Discord connection and repeated snapshot 📢

We have received feedback from users who were unable to connect their Discord accounts before the last snapshot due to technical limitations on the server. After hearing your appeals, we made the decision to give another chance to everyone who didn't make it in time to fulfill the conditions.

What's changed?
• Discord Customer Support cleared up the space on our server, so now everyone has untroubled access.
• Re-snapshot will be held on November 30.
• Make sure your account was not kicked from the server during the cleanup!

Details
👍2
NEW STORY BADGE MYCELIUM

https://badge.myceliumnetwork.io/

Task:
🔸 Submit daily meme for 3 days streak (buat di web)
🔸 Reach 500 points
🔸 Share 3 creation yg berbeda ke X
🔸 Do Social tasks
Done LFG

*Buat meme sementara ini PC only aku habis tanya modny katany kalau untuk user HP masi diperbaiki

Source: https://x.com/mycelium_io/status/1861018030828101752
🔥2👍1😁1
kalian harus bisa garap testnet bang pliss saya gapeduli kalian mau dari penggarap bot tele ataupun apapun itu intinya tujuan saya bangun komunitas biar bisa semua garap airsop yg agak rumit sulit dan usernya sedikit, ikutin saya mas hari jumat sempatkan waktu untuk voice digrup

udah bisa testnet nanti saya ajarin node (kalau ada modal beli vps hasil dari testnet)

saya mau member cryptokom bisa semua walau sepi gapapa
🔥165🐳2
Forwarded from MR.DOCKTOR KAKEEN TURU II CRYPTOKOM II
Mumet saya
Forwarded from Cryptokom (Cryptokom | Channel Telegram 🏎🐾▪️)
Testnet daily
Konteks : https://t.me/cryptokom2/2283

Bot telegram daily
Konteks : https://t.me/cryptokom2/2511

List retroactive :
Konteks : https://t.me/cryptokom2/4482

List Garapan Ekstensi (kaya grass):
Konteks : https://t.me/cryptokom2/5407

List Game Nft daily:
Konteks : https://t.me/cryptokom2/5499

Ekstensi keamanan wallet dari drain:
konteks : https://t.me/cryptokom2/6109

Tips Gitcoin score diatas 20 :
konteks : https://t.me/cryptokom2/6475

List Garapan yang udah deket cairnya :
konteks : https://t.me/cryptokom2/7536

Setiap hari jumat ada belajar testnet digrup setiap jam 20.00-selesai bagi pemula bisa gabung ke voice grup
Please open Telegram to view this post
VIEW IN TELEGRAM
NODE STORY Odyssey

Rank 100 incentived
1024 stake ip

spesifikasi
Hardware Requirement
CPU 4 Cores
RAM 16 GB
Disk 200 GB
Bandwidth 25 MBit/s


Install dependencies
sudo apt update
sudo apt-get update
sudo apt install curl git make jq build-essential gcc unzip wget lz4 aria2 -y



Story-Geth binary v0.10.1
cd $HOME
wget https://github.com/piplabs/story-geth/releases/download/v0.10.1/geth-linux-amd64
[ ! -d "$HOME/go/bin" ] && mkdir -p $HOME/go/bin
if ! grep -q "$HOME/go/bin" $HOME/.bash_profile; then
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
fi
chmod +x geth-linux-amd64
mv $HOME/geth-linux-amd64 $HOME/go/bin/story-geth
source $HOME/.bash_profile
story-geth version


Story binary v0.12.1
cd $HOME
rm -rf story-linux-amd64
wget https://github.com/piplabs/story/releases/download/v0.12.1/story-linux-amd64
[ ! -d "$HOME/go/bin" ] && mkdir -p $HOME/go/bin
if ! grep -q "$HOME/go/bin" $HOME/.bash_profile; then
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
fi
chmod +x story-linux-amd64
sudo cp $HOME/story-linux-amd64 $HOME/go/bin/story
source $HOME/.bash_profile
story version


Init Story
story init --network odyssey --moniker "moniker"


Create story-geth
sudo tee /etc/systemd/system/story-geth.service > /dev/null << EOF
[Unit]
Description=Story Geth Client
After=network.target

[Service]
User=root
ExecStart=/root/go/bin/story-geth --odyssey --syncmode full
Restart=on-failure
RestartSec=3
LimitNOFILE=4096

[Install]
WantedBy=multi-user.target
EOF


Create story
sudo tee /etc/systemd/system/story.service > /dev/null << EOF
[Unit]
Description=Story Consensus Client
After=network.target

[Service]
User=root
ExecStart=/root/go/bin/story run
Restart=on-failure
RestartSec=3
LimitNOFILE=4096

[Install]
WantedBy=multi-user.target
EOF


Snapshot
# Install dependencies
sudo apt install curl tmux jq lz4 unzip -y
sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\\1false|" $HOME/.story/story/config/config.toml

# Stop services and backup validator state
sudo systemctl stop story story-geth
cp $HOME/.story/story/data/priv_validator_state.json $HOME/.story/story/priv_validator_state.json.backup

# Remove and restore Story data
rm -rf $HOME/.story/story/data
curl https://files-story.catsmile.tech/story/story-snapshot.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.story/story

# Restore validator state
mv $HOME/.story/story/priv_validator_state.json.backup $HOME/.story/story/data/priv_validator_state.json

# Remove and restore Geth data
rm -rf $HOME/.story/geth/odyssey/geth/chaindata
curl https://files-story.catsmile.tech/geth/geth-snapshot.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.story/geth/odyssey/geth


# restart node and check logs
sudo systemctl restart story story-geth
sudo journalctl -u story-geth -u story -f


Restart story-geth
sudo systemctl daemon-reload
sudo systemctl start story-geth
sudo systemctl enable story-geth
sudo systemctl status story-geth


Restart story
sudo systemctl daemon-reload 
sudo systemctl start story
sudo systemctl enable story
sudo systemctl status story


Check logs story-geth
sudo journalctl -u story-geth -f -o cat


Check logs story
sudo journalctl -u story -f -o cat


Hapus Node

sudo systemctl stop story-geth
sudo systemctl stop story
sudo systemctl disable story-geth
sudo systemctl disable story
sudo rm /etc/systemd/system/story-geth.service
sudo rm /etc/systemd/system/story.service
sudo systemctl daemon-reload
sudo rm -rf $HOME/.story
sudo rm $HOME/go/bin/story-geth
sudo rm $HOME/go/bin/story


sc :
https://www.story.foundation/
https://docs.story.foundation/
https://discord.gg/bVYpsrPs
https://docs.story.foundation/docs/odyssey-node-setup
👍31😢1🐳1
Maintenance udah kelar bisa lanjut push potensi jp asalkan rajin push pointnya👆🏻

https://t.me/cryptokom2/3679
👍5😭2
Cryptokom
Blum Code : BLUMSSS
Blum Answer
GODEX
👍3
LUM Airdrop
Just answer quest
https://warpcast.com/liottaxhen/0x094895ec

Answer : Terminator 2
👍2
Buset Presiden el Salvador flexing PnL

Indo kapan buy btc bg🤣
👍4
Tidur dulu besok cek elig bang

kalau ga elig gebukin lordzall
👍6🐳2
$MOVE distribution:

40% Ecosystem + Community
10% Initial Claims
10% Foundation
17.5% Early Contributors
22.5% Early Backers

$MOVE total supply: 10 billion
$MOVE initial circulating supply: ~22%

Source:
https://x.com/movementfdn/status/1861107961286009042
👍2
Cryptokom
🤑🤑🤑 Vertus adalah project wallet berbasis Bot telegram dengan kode token VERT silahkan farm skrg dan tunggu update untuk bisa convert ke token VERT t.me/vertus_app_bot/app?startapp=1267483799
🌐 Update  Vertus🌐

We’ve been working tirelessly to ensure our listing process is flawless. The long-awaited day is almost here!

🗓 27 December 2024 is the official date for our listing launch. 🚀

💠 4 Top-Tier Exchanges Secured
💠 1 More Pending Final Confirmation

📱Source : https://t.me/the_vertus/127

Konteks : https://t.me/cryptokom2/42?single
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥1
Akhirnya END Udah 5 Hari Ga Tidur, Selamat Yang Ikut Distribusi Estimated 1 Minggu

Konteks : https://t.me/cryptokom2/6349
👍2
SONIC SAYA 1:1 🙌
Please open Telegram to view this post
VIEW IN TELEGRAM
Persiapan marah" wct nanti 😆

gebukin lordzall bang kalau ga elig
Please open Telegram to view this post
VIEW IN TELEGRAM
👍2👌2
Major udah ada yg distri kah bang
🐳1