InsideDropLabs
Please open Telegram to view this post
VIEW IN TELEGRAM
Google Docs
DAWN User Suspension Appeal Form
Complete the below form and our team will review your account status. Please only submit this form once -- we will review all submissions and multiple submissions will be deleted.
InsideDropLabs
Please open Telegram to view this post
VIEW IN TELEGRAM
InsideDropLabs
sudo cess miner claim
Please open Telegram to view this post
VIEW IN TELEGRAM
π4
InsideDropLabs
https://storagescan-galileo.0g.ai/miner/GANTIWALLETKALIAN?network=standard
Perhatikan Point Ini :
Mining Rewards Proportion (% of Total) : ?%
Mari kita berspekulasi :
Misal alokasi untuk :
Kalkulasi Rewards (Contoh) :
10.000.000 x 0.08% = 8000
10.000.000 x 0.05% = 5000
Jadi :
Total Rewards = 13.000
TGE = 2.600
Vesting = 10.400 (48 Bulan)
Please open Telegram to view this post
VIEW IN TELEGRAM
InsideDropLabs
Quiz 1 : SP1 Hypercube
Quiz 2 : using Jagged PCS
Quiz 3 : All of the above
Quiz 4 : $PROVE
Quiz 5 : Ethereum block proving in <12sec
Pick Pictures : 6, 7, 8, 9, 10
Please open Telegram to view this post
VIEW IN TELEGRAM
InsideDropLabs
Please open Telegram to view this post
VIEW IN TELEGRAM
quest.somnia.network
Somnia Quest
Somnia - Quest
InsideDropLabs
Please open Telegram to view this post
VIEW IN TELEGRAM
π1π1
InsideDropLabs
This media is not supported in your browser
VIEW IN TELEGRAM
InsideDropLabs
Quiz 1 : Katana Network
Quiz 2 : All of the above
Quiz 3 : nair_advaith
Quiz 4 : FPGA
Quiz 5 : BitVM
Pick Pictures : 1, 2, 8
Please open Telegram to view this post
VIEW IN TELEGRAM
InsideDropLabs
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯3
InsideDropLabs
Quiz 1 : @DanHennessy
Quiz 2 : Trust in cryptographic proof, not third parties.
Quiz 3 : Decentralized and efficient creation of zk-proofs.
Quiz 4 : Ability to confirm ownership of funds without disclosing details.
Quiz 5 : Compresses the amount of data that will be on-chain.
Pick Pictures : 9, 10
*Akan muncul pop up "Congratulations! You are an eligible and approved user of Succinct." Jika tidak "Eligible" silahkan skip task berikutnya.
*Siapkan $10 USDC di Ethereum Mainnet
*Tunggu maksimal 5 menit
Please open Telegram to view this post
VIEW IN TELEGRAM
testnet.succinct.xyz
Succinct | Crisis of Trust
The world's first decentralized prover network. Welcome to Level 1: Crisis of Trust.
InsideDropLabs
sudo systemctl stop cortensor
Pastikan kalian backup semua data yang muncul setelah command ini :
nano ~/.cortensor/.env
Setup Docker :
for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done
sudo apt-get install ca-certificates curl && sudo install -m 0755 -d /etc/apt/keyrings && sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc && sudo chmod a+r /etc/apt/keyrings/docker.asc
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null && sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y && sudo apt-get install git -y
git clone https://github.com/mrheed/cortensor-installer.git && cd cortensor-installer
bash build.sh
Masukan jumlah node yang akan kalian running, lalu enter.
nano .env
Ubah seperti dibawah ini :
RPC_URL="https://sepolia-arb-rpc.centertopup.com/"
ETH_RPC_URL="https://eth.drpc.org"
CONTRACT_ADDRESS_RUNTIME="0x8361E7821bDAD7F8F0aC7862Bebb190B8Da1A160"
# Node public and private keys
NODE_PUBLIC_KEY_1="Masukan Public KEY"
NODE_PRIVATE_KEY_1="Masukan Private KEY"
CRTL,X,Y Enter
docker compose up -d
docker compose logs --tail 100 -f
Please open Telegram to view this post
VIEW IN TELEGRAM
Google Docs
Closed Alpha Testing Phase #3 - Snapshot
InsideDropLabs
docker compose down -v
cd && cd my-drosera-trap && nano src/Trap.sol
Paste Code ini :
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import {ITrap} from "drosera-contracts/interfaces/ITrap.sol";
interface IMockResponse {
function isActive() external view returns (bool);
}
contract Trap is ITrap {
address public constant RESPONSE_CONTRACT = 0x4608Afa7f277C8E0BE232232265850d1cDeB600E;
string constant discordName = "DISCORD"; // Ganti Discord Username
function collect() external view returns (bytes memory) {
bool active = IMockResponse(RESPONSE_CONTRACT).isActive();
return abi.encode(active, discordName);
}
function shouldRespond(bytes[] calldata data) external pure returns (bool, bytes memory) {
// take the latest block data from collect
(bool active, string memory name) = abi.decode(data[0], (bool, string));
// will not run if the contract is not active or the discord name is not set
if (!active || bytes(name).length == 0) {
return (false, bytes(""));
}
return (true, abi.encode(name));
}
}
Dibagian "DISCORD" Ganti dengan username discord kalian.
CTRL X, Y, Enter
nano drosera.toml
Perhatikan Bagian ini :
path = "out/HelloWorldTrap.sol/HelloWorldTrap.json"
response_contract = "0xdA890040Af0533D98B9F5f8FE3537720ABf83B0C"
response_function = "helloworld(string)"
Ubah Menjadi :
path = "out/Trap.sol/Trap.json"
response_contract = "0x4608Afa7f277C8E0BE232232265850d1cDeB600E"
response_function = "respondWithDiscordName(string)"
CTRL X, Y, Enter
forge build
drosera dryrun
DROSERA_PRIVATE_KEY=YOUR_PK drosera apply
Sebelum eksekusi command diatas, pastikan "YOUR_PK" diganti dengan Private_Key yang kalian gunakan. Setelah itu silahkan execute dan ketik "ofc" lalu enter.
Pastikan Output nya seperti ini :
Transaction Hash: 0x6135d211e9f5a6dd7e85c1a4ebc01exxxx
Explorer Link: https://holesky.etherscan.io/tx/0x6135d211e9f5a6dd7e85xxxxxx
-----------------Results------------------------------------------
1. Updated the mytrap Trap Config: (Gas Used: 305,090)
- address: 0x73531DEff6348a995c332xxxxx
- block: 3991xxx
source /root/.bashrc
cast call 0x4608Afa7f277C8E0BE232232265850d1cDeB600E "isResponder(address)(bool)" GANTI_ADDRESS_KALIAN --rpc-url https://ethereum-holesky-rpc.publicnode.com
Jika muncul "False" abaikan saja.
Sebelum eksekusi command diatas, pastikan "GANTI_ADDRESS_KALIAN" diganti dengan PUBLIC_KEY yang kalian gunakan.
cd && cd Drosera-Network && docker compose up -d
source /root/.bashrc
cast call 0x4608Afa7f277C8E0BE232232265850d1cDeB600E "getDiscordNamesBatch(uint256,uint256)(string[])" 0 2000 --rpc-url https://ethereum-holesky-rpc.publicnode.com/
Please open Telegram to view this post
VIEW IN TELEGRAM
holesky.etherscan.io
The Ethereum BlockChain Explorer, API and Analytics Platform
InsideDropLabs
Please open Telegram to view this post
VIEW IN TELEGRAM
InsideDropLabs
Please open Telegram to view this post
VIEW IN TELEGRAM
InsideDropLabs
Please open Telegram to view this post
VIEW IN TELEGRAM
hub.0g.ai
Hub | 0G
Instantly claim testnet tokens, swap assets with ease, and track your portfolio seamlesslyβall within the 0G Hub unified interface.
π₯1
InsideDropLabs
Please open Telegram to view this post
VIEW IN TELEGRAM
InsideDropLabs
Quiz 1 : 0xCRASHOUT
Quiz 2 : Confirms the correctness of many off-chain txns
Quiz 3 : Sequencer
Quiz 4 : Parallel generation
Quiz 5 : All of them
Pick Pictures : 8, 9, 10
Please open Telegram to view this post
VIEW IN TELEGRAM