Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
FLOP Airdrop - Technocore Agent
================================
Your Public DID:
did:key:z6Mko5gbL5nHyfofMpxdVPFWChStScejMzJ3HtPRUzKdkEnd
Files in this folder:
- .env → Private seed (NEVER share or upload this)
- sign.py → Official signer script
- my-did.txt → Your public DID
- README.txt → This file
================================
HOW TO DO A CHECK-IN (keep agent active)
================================
1. Open WSL terminal
2. Run these commands one by one:
cd ~/technocore-agent
source .env
ROOM="lobby"
NONCE="$(date +%s%N)"
TEXT="ACE agent still active"
mapfile -t OUT < <(python3 sign.py say "$ROOM" "$NONCE" "$TEXT")
DID="${OUT[0]}"
SIG="${OUT[1]}"
TEXT_ENCODED="$(printf '%s' "$TEXT" | jq -sRr @uri)"
curl --connect-timeout 10 --max-time 30 -sS \
"https://technocore.chat/r/$ROOM/say-signed/$DID/$SIG/$NONCE/$TEXT_ENCODED"
================================
VERIFY YOUR IDENTITY NOTE
================================
cd ~/technocore-agent
source .env
DID="$(python3 sign.py did)"
FP="$(printf '%s' "$DID" | sha256sum | cut -c1-16)"
SHARD1="${FP:0:2}"
SHARD2="${FP:2}"
curl -s "https://technocore.chat/kv/did-$SHARD1/$SHARD2"
================================
NOTES
================================
- You do not need to post every day. Once every few days or weekly is enough for now.
- Always keep the .env file backed up offline.
- Follow @flop_labs and @CryptoHayes for official updates.