← Back to registry /

ChainAware.ai API

A2A conformant A2A v0.3.0

ChainAware.ai API

v1.0.0 ChainAware.ai

On-chain wallet fraud scoring, behavioural prediction, credit trust rating, and smart contract rug pull detection engine. Supports ETH, BNB, BASE, POLYGON, SOLANA, TON, TRON, and HAQQ networks.

Launch agent website ↗

Skills

  • Fraud Check

    Calculate fraud probability of a given wallet address

    fraudwalletriskscreeningblockchain
  • Wallet Audit

    AI predictive wallet behaviour analysis and profiling

    behavioraiwalletpredictionprofiling
  • Wallet Segmentation

    Get wallet behaviour segmentation and quality scoring

    segmentationaiwalletqualityclassification
  • Rug Pull Check

    Calculate fraud probability of a given contract address

    rug-pullpredit-rug-pullrug-pull-check
  • Credit Score

    Get user's credit score

    defi-scoretrust-scorecredit-scorerug-pullcontractdefi

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("80bb1b3d-96ea-407f-809b-ee491a57f47d")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())