Cryptokom
Bitdoctor Ai [Depin + RWA] Earn $LIV For All Users π΅ Good project β
Download App βοΈFor Android https://play.google.com/store/apps/details?id=com.bitDoctor.ai.android&hl=en βοΈFor IOS (Soon) β
Create Account & Create PIN Code β
Submit Referral Code ππ» ANIOTUVβ¦
Reminder BitdoctorAI nya mas, tuker tuker aja yg blom garap buat code nya
Konteks : https://t.iss.one/cryptokom2/5138
Konteks : https://t.iss.one/cryptokom2/5138
Forwarded from WeWantYou
This media is not supported in the widget
VIEW IN TELEGRAM
Cryptokom
π Camino Network Airdrop Completed Task : https://app.galxe.com/quest/9NETBeW8iqnvTy7rD79zvH/GCybgtKDBY
Update camino
Yang win kemaren
New task clear semua galxe
Juga submit c chain address/evm di task yang ku tandain
https://app.galxe.com/quest/9NETBeW8iqnvTy7rD79zvH/GCNv1tVejQ
Konteks : https://t.iss.one/cryptokom2/3402
Yang win kemaren
New task clear semua galxe
Juga submit c chain address/evm di task yang ku tandain
https://app.galxe.com/quest/9NETBeW8iqnvTy7rD79zvH/GCNv1tVejQ
Konteks : https://t.iss.one/cryptokom2/3402
Hujan mas , mana gaada pacar lagi
π4
lakukan donasi ke beberapa project di Gitcoin grand 22 biasanya hanya melakukan donasi akan ada imbalan token dari project yang kita donasikan...lakukan donasi setelah itu claim NFT https://explorer.gitcoin.co/#/rounds?orderBy=MATCH_AMOUNT_IN_USD_DESC&status=active%2Ctaking_applications dan selesaikan task galxe https://app.galxe.com/quest/Gitcoin/GC7zntK9Pa
Cryptokom
Ink Chain Testnet π‘Network Sepolia & Ink Chain Sepolia Testnet π Wallet Metamask π§ Faucet - https://faucetlink.to/sepolia - https://www.alchemy.com/faucets/ethereum-sepolia - https://www.infura.io/faucet/sepolia - https://cloud.google.com/application/webβ¦
This media is not supported in your browser
VIEW IN TELEGRAM
How to Running Ink Node ?
1οΈβ£ Install Prerequisites:
β‘οΈ
β‘οΈ
β‘οΈ
β‘οΈ
β‘οΈ
β‘οΈ
β‘οΈ
# Docker version check
β‘οΈ
2οΈβ£ Install Unichain Node:
β‘οΈ
β‘οΈ
β‘οΈ
β‘οΈ
β‘οΈ
π’ YOU CAN CHANGE USED PORT, CHECK USED PORT BY USING
3οΈβ£ Running your Ink Node:
Help Command:
β‘οΈ Verifying Sync Status π
β‘οΈ op-node API
β‘οΈ op-geth API:
β‘οΈ Comparing w/ Remote RPC π
β‘οΈ Restart your Node:
β‘οΈ Shutdown/Disable Node:
β‘οΈ Delete your Node:
π΄ Source: https://github.com/inkonchain/node
π΄ More details: https://elements.envato.com/chrome-text-effect-4KSNAGV
NO REWARD CONFIRMED YET, DYOR BEFORE RUNNING NODE, USE FOR LEARNING PURPOSES
Server Specifications
Minimum Requirements:
8vcpu (better with 10vcpu+)
8GB RAM (better with 16GB RAM)
SSD drive (NVME recommended) with at least 100GB storage
MAKE SURE PORT THIS BELOW AVAILABLE :β‘οΈ TCP ports:
8545 (USED BY DILL NODE + STORY PROTOCOL + UNICHAIN)
8546 (USED BY UNICHAIN NODE WITH CUSTOM PORT)
30303 (USED BY STORY PROTOCOL + UNICHAIN)
9222 (USED BY UNICHAIN)
7300
6060β‘οΈ UDP ports:
30303 (USED BY STORY PROTOCOL + UNICHAIN)
sudo apt update && sudo apt upgrade -yscreen -S InkNodeYOU CAN SKIP INSTALL DOCKER, IF YOU ALREADY INSTALLED
sudo apt install docker.io -ysudo systemctl start dockersudo systemctl enable dockersudo curl -L "https://github.com/docker/compose/releases/download/v2.20.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-composesudo chmod +x /usr/local/bin/docker-compose# Docker version check
docker --versionmkdir InkNodecd InkNodegit clone https://github.com/inkonchain/nodecd nodenano .env.ink-sepoliaL1_RPC_URL="https://ethereum-sepolia-rpc.publicnode.com"
L1_BEACON_URL="ttps://ethereum-sepolia-beacon-api.publicnode.com"
CTRL + X + Y AND ENTER TO SAVE
sudo lsof i: (PORT)β‘οΈ docker-compose.yml, change all used port to available portβ‘οΈ go to /root/InkNode/node/op-node/, open entrypoint.sh, on while ! nc -z op-geth 8551; do, edit from 8551 to 8552 or others portβ‘οΈ open .env.ink-sepolia, change all used port to available port
./setup.sh && \
docker compose up
Help Command:
curl -X POST -H "Content-Type: application/json" --data \
'{"jsonrpc":"2.0","method":"optimism_syncStatus","params":[],"id":1}' \
https://localhost:9545 | jq
https://localhost:9545, edit to your edit port
curl https://localhost:8545 -X POST \
-H "Content-Type: application/json" \
--data '{"jsonrpc":"2.0","method":"eth_blockNumber","params": [],"id":1}' | jq -r .result | sed 's/^0x//' | awk '{printf "%d\n", "0x" $0}';
https://localhost:8545, edit to your edit port
local_block=$(curl -s -X POST https://localhost:8545 -H "Content-Type: application/json" \
--data '{"jsonrpc":"2.0","method":"eth_getBlockByNumber","params":["finalized", false],"id":1}' \
| jq -r .result.number | sed 's/^0x//' | awk '{printf "%d\n", "0x" $0}'); \
remote_block=$(curl -s -X POST https://rpc-gel-sepolia.inkonchain.com/ -H "Content-Type: application/json" \
--data '{"jsonrpc":"2.0","method":"eth_getBlockByNumber","params":["finalized", false],"id":1}' \
| jq -r .result.number | sed 's/^0x//' | awk '{printf "%d\n", "0x" $0}'); \
echo -e "Local finalized block: $local_block\nRemote finalized block: $remote_block"
https://localhost:8545, edit to your edit port
sudo docker-compose -f "$HOME/InkNode/node/docker-compose.yml" down && \
sudo docker-compose -f "$HOME/InkNode/node/docker-compose.yml" upβ οΈ DANGER AREA
sudo docker-compose -f "$HOME/unichain-node/docker-compose.yml" downrm -r $HOME/InkNode/Please open Telegram to view this post
VIEW IN TELEGRAM
β€4π±2
New Testnet : Qtum Bridge
Just Potential
β‘οΈ Go to :
https://wallet.qtumbridge.org/
β Go through the Qtum MetaMask snap installation.
β Click on βCreate new walletβ.
β Get your Qtum testnet address in base58 format (The address that starts with Q).
β Go to : https://www.qtum.org/bridge-event.
β Click on Phase 1.
β Login with Qtum and connect your Metamask.
β Enter your EVM address.
β Get your testnet tokens
β Go to Qtumβs testnet faucet.
β Enter your Qtum address and get your tokens.
β Go to the Circle USDC faucet.
β Enter your EVM address and and get your tokens.
β Go to the ETH Sepolia faucet.
β Enter your EVM address and and get your tokens.
β Connect to qtumbridge.org
β Move a small amount of Sepolia tokens to the Qtum testnet using your Qtum address.
β Refresh the event website
β Repeat
β Done
π Details :
https://www.qtum.org/news/bridge-event-how-to-guide
Just Potential
https://wallet.qtumbridge.org/
β Go through the Qtum MetaMask snap installation.
β Click on βCreate new walletβ.
β Get your Qtum testnet address in base58 format (The address that starts with Q).
β Go to : https://www.qtum.org/bridge-event.
β Click on Phase 1.
β Login with Qtum and connect your Metamask.
β Enter your EVM address.
β Get your testnet tokens
β Go to Qtumβs testnet faucet.
β Enter your Qtum address and get your tokens.
β Go to the Circle USDC faucet.
β Enter your EVM address and and get your tokens.
β Go to the ETH Sepolia faucet.
β Enter your EVM address and and get your tokens.
β Connect to qtumbridge.org
β Move a small amount of Sepolia tokens to the Qtum testnet using your Qtum address.
β Refresh the event website
β Repeat
β Done
π Details :
https://www.qtum.org/news/bridge-event-how-to-guide
Please open Telegram to view this post
VIEW IN TELEGRAM
Garap bot tele aja bang , nanti kalau jp dri node atau testnet kalian nonton aja buat yang malas malasπ¨βπ»
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯3
Forwarded from Kurangπ
πΈπ¦π±SEED π¦ BumsβͺοΈ CrypTokom
Kita balas di unichain
disini member cryptokom rata rata gabisa garap testnet awalnya , tapi jadi bisa semua berkat lord zall
skenario bitcoin jika trump win or harris win
sc : https://x.com/cryptodonalt/status/1853034925621944767?s=46&t=yvj78P_k19CM67uNHKgtoA
sc : https://x.com/cryptodonalt/status/1853034925621944767?s=46&t=yvj78P_k19CM67uNHKgtoA
β€1π₯1
Testnet inkchain masih ada yang binggung ga? kalau binggung sini ke discord
π2β€1