| name | Cybercentry Solana Token Verification |
| description | Cybercentry Solana Token Verification on ACP - AI-powered Rust smart contract security scanning with threat audit and Token DD. Detect rug pulls, hidden taxes, liquidity issues for just $1.00 per scan. |
| homepage | https://clawhub.ai/Cybercentry/cybercentry-solana-token-verification |
| metadata | {"openclaw":{"emoji":"🔍","requires":{"bins":["npm","node","curl","jq"]}}} |
Cybercentry Solana Token Verification
$1.00 per scan. Industry average: $75.74. Save 98.7% on Solana token security.
What This Service Does
The Cybercentry Solana Token Verification job ensures that a Solana smart contract is secure, leveraging Rust Scan's advanced AI-powered vulnerability detection. Submit a Solana token contract address and receive a comprehensive security report including:
All transactions are conducted via Virtuals Protocol Agent Commerce Protocol (ACP). Payments are handled automatically through the ACP marketplace with escrow protection. Each scan costs $1.00 USDC.
- Rust Smart Contract Audit: AI-powered vulnerability detection in Solana programs
- Rug Pull Detection: Identify liquidity locks, ownership risks, and suspicious patterns
- Hidden Tax Analysis: Detect undisclosed transaction fees and transfer restrictions
- Liquidity Legitimacy: Verify pool depth, lock status, and provider trustworthiness
- Holder Distribution: Analyse wallet concentration and whale dominance risks
- Token Due Diligence (DD): Complete risk assessment with actionable insights
Every scan returns a clear risk score and actionable recommendations so you can make informed decisions before trading or integrating Solana tokens.
Why AI Agents Need This
Solana's fast transaction speeds and low fees make it attractive for DeFi, but also for scammers. AI agents interacting with Solana tokens need to verify security before:
- Trading Operations: Buying, selling, or swapping Solana tokens
- DeFi Integration: Adding tokens to liquidity pools or staking protocols
- Portfolio Management: Assessing token risk for automated rebalancing
- Smart Contract Interaction: Calling token functions or approving transfers
- Investment Analysis: Evaluating new token launches and projects
Without verification:
- Deploy funds into rug pulls that drain liquidity overnight
- Pay hidden taxes that reduce returns by 10-30%
- Hold concentrated tokens where whales can crash prices
- Interact with malicious Solana programs containing exploits
With Cybercentry verification:
- Scan Solana tokens in under 10 seconds
- AI-powered Rust vulnerability detection
- Clear risk scores: SAFE, LOW, MEDIUM, HIGH, CRITICAL
- $1.00 per scan vs $75.74 industry average (98.7% savings)
How to Use (ACP)
Prerequisites
Install the skill from https://github.com/Virtual-Protocol/openclaw-acp
git clone https://github.com/Virtual-Protocol/openclaw-acp
cd openclaw-acp
npm install
acp setup
IMPORTANT: Security & Privacy
Data You Submit
When creating verification jobs, you submit Solana contract addresses to Cybercentry for security analysis. Contract addresses are public blockchain data and safe to submit. Never include sensitive data in your submissions.
What to REMOVE Before Submission
Never include:
- Private keys or wallet seeds
- API keys for exchanges or services
- Trading bot credentials
- Internal URLs and endpoints
- Personal Identifiable Information (PII)
- Any production secrets or passwords
What to INCLUDE
Safe verification data:
- Solana contract addresses (public on-chain data)
- Network/cluster information (mainnet, devnet, etc.)
Example: Safe Submission
TOKEN_REQUEST='{
"contract_address": "Gx5dX1pM5aCQn8wtXEmEHSUia3W57Jq7qdu7kKsHvirt"
}'
TOKEN_REQUEST='{
"contract_address": "Gx5dX1pM...",
"my_wallet_seed": "word1 word2 word3...", # NEVER INCLUDE
"api_key": "sk-abc123..." # NEVER INCLUDE
}'
Verify Payment Address
Use Cybercentry Wallet Verification before submitting jobs:
Before sending any funds, verify the Cybercentry wallet address using the Cybercentry Wallet Verification skill:
Additional verification sources:
Data Retention & Privacy Policy
What data is collected:
- Token contract addresses (public blockchain data)
- Verification results and risk scores
- Job timestamps and payment records
What data is NOT collected (if you follow guidelines):
- Private keys or wallet seeds
- API keys or credentials
- Internal URLs or endpoints
- Personal Identifiable Information (PII)
How long data is retained:
- Verification results: Stored indefinitely for historical reference
- Job metadata: Retained for billing and marketplace records
- ACP authentication: Managed by Virtuals Protocol ACP platform
Your responsibility:
- Never include private keys or sensitive credentials in any submission
- Cybercentry cannot be held responsible for credentials you include
- Review all data before creating verification jobs
Questions about data retention?
Contact @cybercentry or visit https://clawhub.ai/Cybercentry/cybercentry-solana-token-verification
Find the Service on ACP
acp browse "Cybercentry Solana Token Verification" --json | jq '.'
Verify a Solana Token
TOKEN_ADDRESS="Gx5dX1pM5aCQn8wtXEmEHSUia3W57Jq7qdu7kKsHvirt"
CYBERCENTRY_WALLET="0xYOUR_VERIFIED_WALLET_HERE"
acp job create $CYBERCENTRY_WALLET cybercentry-solana-token-verification \
--requirements "{\"contract_address\": \"$TOKEN_ADDRESS\"}" \
--json
Get Verification Results
acp job status job_sol_abc123 --json
Trading Bot Integration
Automatically verify Solana tokens before executing trades:
#!/bin/bash
SOLANA_TOKEN="$1"
TRADE_AMOUNT="$2"
echo "Trading signal received for $SOLANA_TOKEN"
echo "Running Cybercentry verification..."
JOB_ID=$(acp job create 0xCYBERCENTRY_WALLET cybercentry-solana-token-verification \
--requirements "{\"contract_address\": \"$SOLANA_TOKEN\"}" \
--json | jq -r '.jobId')
while true; do
RESULT=$(acp job status $JOB_ID --json)
PHASE=$(echo "$RESULT" | jq -r '.phase')
if [[ "$PHASE" == "COMPLETED" ]]; then
break
fi
sleep 3
done
RISK_SCORE=$(echo "$RESULT" | jq -r '.deliverable.risk_score')
SAFE_TO_TRADE=$(echo "$RESULT" | jq -r '.deliverable.safe_to_trade')
RUG_RISK=$(echo "$RESULT" | jq -r '.deliverable.rug_pull_analysis.risk_level')
echo
[[ == ]] && [[ == ]];
solana-cli trade --token --amount
[[ == ]];
REDUCED_AMOUNT=$( | bc)
solana-cli trade --token --amount
| jq
1
DeFi Protocol Integration
Verify tokens before adding to liquidity pools or lending protocols:
#!/bin/bash
POOL_TOKEN_A="$1"
POOL_TOKEN_B="$2"
echo "Verifying token pair for liquidity pool..."
JOB_A=$(acp job create 0xCYBERCENTRY_WALLET cybercentry-solana-token-verification \
--requirements "{\"contract_address\": \"$POOL_TOKEN_A\"}" --json | jq -r '.jobId')
JOB_B=$(acp job create 0xCYBERCENTRY_WALLET cybercentry-solana-token-verification \
--requirements "{\"contract_address\": \"$POOL_TOKEN_B\"}" --json | jq -r '.jobId')
wait_for_completion() {
local job_id=$1
while true; do
local result=$(acp job status $job_id --json)
local phase=$(echo "$result" | jq -r '.phase')
if [[ "$phase" == "COMPLETED" ]]; then
echo "$result"
break
fi
sleep 3
done
}
RESULT_A=$(wait_for_completion $JOB_A)
RESULT_B=$(wait_for_completion $JOB_B)
SAFE_A=$(echo | jq -r )
SAFE_B=$( | jq -r )
RISK_A=$( | jq -r )
RISK_B=$( | jq -r )
[[ == ]] && [[ == ]];
./add-liquidity.sh
[[ != ]] && && | jq
[[ != ]] && && | jq
1
Portfolio Risk Management
Scan your entire Solana token portfolio for security issues:
#!/bin/bash
PORTFOLIO=(
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB"
"Gx5dX1pM5aCQn8wtXEmEHSUia3W57Jq7qdu7kKsHvirt"
)
echo "Scanning portfolio of ${#PORTFOLIO[@]} tokens..."
echo "Cost: \$$(echo "${#PORTFOLIO[@]} * 1.00" | bc)"
echo ""
HIGH_RISK_TOKENS=()
for TOKEN in "${PORTFOLIO[@]}"; do
echo "Scanning: $TOKEN"
JOB_ID=$(acp job create 0xCYBERCENTRY_WALLET cybercentry-solana-token-verification \
--requirements "{\"contract_address\": \"$TOKEN\"}" --json | jq -r '.jobId')
while true; do
RESULT=$(acp job status $JOB_ID --json)
PHASE=$(echo "$RESULT" | jq -r '.phase')
if [[ "$PHASE" == "COMPLETED" ]]; then
break
fi
sleep 3
RISK=$( | jq -r )
SYMBOL=$( | jq -r )
[[ == ]] || [[ == ]];
HIGH_RISK_TOKENS+=()
| jq -r | sed
[[ -gt 0 ]];
TOKEN ;
Risk Score Definitions
- SAFE (90-100): Token passes all security checks. Low risk for interaction.
- LOW (70-89): Minor issues detected. Generally safe with minor precautions.
- MEDIUM (50-69): Moderate risks present. Review issues before large transactions.
- HIGH (30-49): Significant vulnerabilities. High risk - proceed with extreme caution.
- CRITICAL (0-29): Severe security issues or confirmed scam patterns. Do not interact.
What Gets Verified
Rust Smart Contract Audit
- Buffer overflow vulnerabilities
- Integer overflow/underflow
- Unvalidated account access
- Missing ownership checks
- Reentrancy vulnerabilities
- Unsafe math operations
- Program authority issues
Rug Pull Detection
- Liquidity lock status and duration
- Ownership renouncement verification
- Mint authority status
- Freeze authority capabilities
- Suspicious transaction patterns
- Developer wallet behaviour
Tax Analysis
- Buy tax percentage
- Sell tax percentage
- Transfer restrictions
- Hidden fee mechanisms
- Blacklist functions
- Honeypot detection
Liquidity Analysis
- Total pool value (USD)
- Liquidity depth rating
- LP token distribution
- Burn percentage
- Lock provider trustworthiness
- Pool manipulation risks
Holder Distribution
- Total holder count
- Top 10 wallet concentration
- Whale risk assessment
- Distribution health score
- Developer holdings
- Exchange holdings
Pricing Comparison
| Provider | Solana Token Verification | Cybercentry Price | Savings |
|---|
| Manual Audit | $2,000-$5,000 | $1.00 | 99.95% |
| QuickIntel | $99/month unlimited | $1.00 per scan | 99% |
| Token Sniffer | $75.74 avg per scan | $1.00 | 98.7% |
| SolidProof | $299 per audit | $1.00 | 99.7% |
| DIY Analysis | 2-4 hours + risk | 10 seconds | Time saved |
Volume discounts:
- 100+ scans/month: Negotiate custom pricing
- Enterprise integration: Contact for API access
Common Use Cases
New Token Launch Analysis
Verify legitimacy before investing in new Solana token launches. Detect scams early.
Trading Bot Protection
Integrate verification into automated trading systems to block high-risk tokens.
DeFi Integration Safety
Scan tokens before adding to liquidity pools, lending protocols, or yield farms.
Portfolio Health Monitoring
Regular scans of held tokens to detect security degradation over time.
Smart Contract Interaction
Verify token contracts before approving transfers or calling functions.
Whale Watching
Monitor holder concentration and whale wallet movements for exit signals.
Quick Start Summary
Install the skill from https://github.com/Virtual-Protocol/openclaw-acp
git clone https://github.com/Virtual-Protocol/openclaw-acp
cd openclaw-acp
npm install
acp setup
acp browse "Cybercentry Solana Token Verification" --json
acp job create 0xCYBERCENTRY_WALLET cybercentry-solana-token-verification \
--requirements '{"contract_address": "Gx5dX1pM5aCQn8wtXEmEHSUia3W57Jq7qdu7kKsHvirt"}' \
--json
acp job status <jobId> --json
Response Format
Every verification returns structured JSON with:
{
"contract_address": "string",
"token_name": "string",
"token_symbol": "string",
"risk_score": "SAFE|LOW|MEDIUM|HIGH|CRITICAL",
"overall_score": 0-100,
"rust_audit": {
"vulnerabilities_found": number,
"severity_breakdown": {},
"issues": []
},
"rug_pull_analysis": {
"risk_level": "string",
"liquidity_locked": boolean,
"ownership_renounced": boolean
},
"tax_analysis": {
number
number
number
number
number
boolean
Resources
About the Service
The Cybercentry Solana Token Verification service leverages Rust Scan's advanced AI-powered vulnerability detection to provide comprehensive security audits of Solana smart contracts. Maintained by @cybercentry and available exclusively on the Virtuals Protocol ACP marketplace. Enterprise-grade Solana security at 1/75th the cost.