This media is not supported in your browser
VIEW IN TELEGRAM
New Node Project Layer1
RepublicAI
https://points.republicai.io
https://github.com/RepublicAI/networks/blob/main/testnet/README.md
spek minimal 4/16 Ubuntu 24 ke atas
confirmed airdrop incentiv : https://docs.republicai.io/docs/protocol/validator-incentives
ini L1 kalian yang punya vps wajib garap atau mau run dilocal
need vps contact : @cryptonewslearn1
RepublicAI
https://points.republicai.io
https://github.com/RepublicAI/networks/blob/main/testnet/README.md
spek minimal 4/16 Ubuntu 24 ke atas
confirmed airdrop incentiv : https://docs.republicai.io/docs/protocol/validator-incentives
ini L1 kalian yang punya vps wajib garap atau mau run dilocal
need vps contact : @cryptonewslearn1
Cryptokom
New Node Project Layer1 RepublicAI https://points.republicai.io https://github.com/RepublicAI/networks/blob/main/testnet/README.md spek minimal 4/16 Ubuntu 24 ke atas confirmed airdrop incentiv : https://docs.republicai.io/docs/protocol/validator-incentivesβ¦
Republic AI Validator Guide
1. Install Depedency
2. Install Republicd Binary
VERSION="v0.1.0"
3. Initialize Node
# Set Variabel Node Name
# Initialize Node
# Download Genesis
*Change 'MonikerName' to your preferred name
4. Configure State Sync
5. Create Systemd Service
[Service]
User=$USER
ExecStart=/usr/local/bin/republicd start --home $HOME/.republicd --chain-id raitestnet_77701-1
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
6. Start Node
Check Log :
Check Sync Status :
After the node is successfully synchronized, we will continue to the wallet creation and validator registration stage
7. Create Wallet
*Change '<key-name>' to your preferred name
*Save Details
8. Request Faucet
paste your wallet on discord https://discord.com/channels/1412834812124991568/1465722972231696650
9. Check Balance
republicd query bank balances <your wallet adress>
*Make sure your wallet has received faucet tokens
10.Register Validator
republicd tx staking create-validator \
--amount=1000000000000000000000arai \
--pubkey=$(republicd comet show-validator) \
--moniker="<MONIKER>" \
--chain-id=raitestnet_77701-1 \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--gas=auto \
--gas-adjustment=1.5 \
--gas-prices="250000000arai" \
--from=<key-name> \
-y
*Change '<MONIKER>' with your moniker name from step 3
*Change '<key-name>' with your keyname name from step 7
Check Validator Status :
republicd query staking validator $(republicd keys show <key-name> --bech val -a)
*Change <key-name> with your keyname from step 7
1. Install Depedency
wget https://raw.githubusercontent.com/ezlabsnodes/autoinstall/main/depedency-lite.sh && chmod +x depedency-lite.sh && sudo ./depedency-lite.sh
2. Install Republicd Binary
VERSION="v0.1.0"
curl -L "https://media.githubusercontent.com/media/RepublicAI/networks/main/testnet/releases/${VERSION}/republicd-linux-amd64" -o /tmp/republicd
chmod +x /tmp/republicd
sudo mv /tmp/republicd /usr/local/bin/republic3. Initialize Node
# Set Variabel Node Name
MONIKER="MonikerName"
# Initialize Node
republicd init $MONIKER --chain-id raitestnet_77701-1 --home "$HOME/.republicd"
# Download Genesis
curl -s https://raw.githubusercontent.com/RepublicAI/networks/main/testnet/genesis.json > "$HOME/.republicd/config/genesis.json"
*Change 'MonikerName' to your preferred name
4. Configure State Sync
REPUBLIC_HOME="$HOME/.republicd"
SNAP_RPC="https://statesync.republicai.io"
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height)
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000))
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash)
PEERS="[email protected]:26656,[email protected]:26656,[email protected]:26656"
sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"|" "$REPUBLIC_HOME/config/config.toml"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" "$REPUBLIC_HOME/config/config.toml"
5. Create Systemd Service
sudo tee /etc/systemd/system/republicd.service > /dev/null <<EOF
[Unit]
Description=Republic Protocol Node
After=network-online.target
[Service]
User=$USER
ExecStart=/usr/local/bin/republicd start --home $HOME/.republicd --chain-id raitestnet_77701-1
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
6. Start Node
sudo systemctl daemon-reload
sudo systemctl enable republicd
sudo systemctl start republic
Check Log :
journalctl -u republicd -f -o cat
Check Sync Status :
republicd status | jq '.sync_info'
After the node is successfully synchronized, we will continue to the wallet creation and validator registration stage
7. Create Wallet
republicd keys add <key-name>
*Change '<key-name>' to your preferred name
*Save Details
8. Request Faucet
paste your wallet on discord https://discord.com/channels/1412834812124991568/1465722972231696650
9. Check Balance
republicd query bank balances <your wallet adress>
*Make sure your wallet has received faucet tokens
10.Register Validator
republicd tx staking create-validator \
--amount=1000000000000000000000arai \
--pubkey=$(republicd comet show-validator) \
--moniker="<MONIKER>" \
--chain-id=raitestnet_77701-1 \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--min-self-delegation="1" \
--gas=auto \
--gas-adjustment=1.5 \
--gas-prices="250000000arai" \
--from=<key-name> \
-y
*Change '<MONIKER>' with your moniker name from step 3
*Change '<key-name>' with your keyname name from step 7
Check Validator Status :
republicd query staking validator $(republicd keys show <key-name> --bech val -a)
*Change <key-name> with your keyname from step 7
β€2
New Airdrops: CarbonEx
π· Reward: Pools 1M $COX For 5000 Random Winners
πͺ Register: https://web3.gate.com/activity/detail?id=560&network=SOL
β Connect Gate Wallet
β Hold > $10 in SOL
β Complete all Tasks
β Done
π· Reward: Pools 1M $COX For 5000 Random Winners
πͺ Register: https://web3.gate.com/activity/detail?id=560&network=SOL
β Connect Gate Wallet
β Hold > $10 in SOL
β Complete all Tasks
β Done
β€2
π¨Ini bukan iklan
Link akan di tutup dalam 2 menit
https://t.iss.one/+I8__zWFMJk83NjM1
Langsung gabung VIP sebelum close selamanya
Link akan di tutup dalam 2 menit
https://t.iss.one/+I8__zWFMJk83NjM1
Langsung gabung VIP sebelum close selamanya
DGrid Airdrop
π Reward Confirmed For All Users
π± Register: https://dgrid.ai/arena?code=INWV18
π» Connect EVM Wallet
π» Bind Twitter Account
π» Click "Start AI Battle" & Choose Plan A or B (Pilih Bebas)
π» Daily Login
π» Done
Fee 0.15$ BSC
Fee 0.15$ BSC
Please open Telegram to view this post
VIEW IN TELEGRAM
Zona Finance Testnet
Request Testnet token here :
https://docs.google.com/forms/u/0/d/e/1FAIpQLSfbmKrqZLWiqcoAWryujzpCmzArlzun9UziAuNG3joINFQuUQ/formResponse
-Dono
-I'll update later, when points program LIVE
Request Testnet token here :
https://docs.google.com/forms/u/0/d/e/1FAIpQLSfbmKrqZLWiqcoAWryujzpCmzArlzun9UziAuNG3joINFQuUQ/formResponse
-Dono
-I'll update later, when points program LIVE
β€2
Cryptokom
DGrid Airdrop π Reward Confirmed For All Users π± Register: https://dgrid.ai/arena?code=INWV18 π» Connect EVM Wallet π» Bind Twitter Account π» Click "Start AI Battle" & Choose Plan A or B (Pilih Bebas) π» Daily Login π» Done Fee 0.15$ BSC
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Cryptokom
DGrid Airdrop π Reward Confirmed For All Users π± Register: https://dgrid.ai/arena?code=INWV18 π» Connect EVM Wallet π» Bind Twitter Account π» Click "Start AI Battle" & Choose Plan A or B (Pilih Bebas) π» Daily Login π» Done Fee 0.15$ BSC
Nih saran biar fee murah buat nya di okx fee lebih murah gas hitamnkan π
Per reff 100 pointπ
Konteks : https://t.iss.one/cryptokom2/30524
Per reff 100 point
Konteks : https://t.iss.one/cryptokom2/30524
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Mana KIN? 600 duluan ormas.
kalian berharap apa ?
kalian berharap apa ?
β€2
OKX Wallet Zama X Launch
π· Reward Pool : 16.500.000 ZAMA
π€ Register : https://web3.okx.com/id/boost/x-launch/zama
Persyaratan
1. Saldo Boost min: $200
2. Volume Boost min: $500
Periode snapshot data Boost adalah mulai 2026-01-20 hingga 2026-01-29.
SC : https://x.com/wallet/status/2017179758514044953
#Airdrop
π· Reward Pool : 16.500.000 ZAMA
π€ Register : https://web3.okx.com/id/boost/x-launch/zama
Persyaratan
1. Saldo Boost min: $200
2. Volume Boost min: $500
Periode snapshot data Boost adalah mulai 2026-01-20 hingga 2026-01-29.
SC : https://x.com/wallet/status/2017179758514044953
#Airdrop
Cryptokom
DGrid Airdrop π Reward Confirmed For All Users π± Register: https://dgrid.ai/arena?code=INWV18 π» Connect EVM Wallet π» Bind Twitter Account π» Click "Start AI Battle" & Choose Plan A or B (Pilih Bebas) π» Daily Login π» Done Fee 0.15$ BSC
Please open Telegram to view this post
VIEW IN TELEGRAM