@extends('layouts.app') @section('title', 'New Analysis') @section('content')

Analyze Crypto Project

Upload a smart contract address and whitepaper to get a comprehensive analysis including security scan, tokenomics evaluation, and price prediction.

@csrf

Contract Information

@error('contract_address')

{{ $message }}

@enderror
@error('chain_id')

{{ $message }}

@enderror

If not provided, we'll try to extract it from the contract

Whitepaper

or drag and drop

PDF up to 50MB

@error('whitepaper_file')

{{ $message }}

@enderror
@error('whitepaper_url')

{{ $message }}

@enderror
@if($recentProjects->count() > 0)

Recent Analyses

    @foreach($recentProjects as $project)
  • @if($project->overall_score)
    {{ $project->overall_score }}
    @else
    @endif
    {{ $project->name }}
    {{ $project->getChainName() }} • {{ $project->created_at->diffForHumans() }}
    {{ ucfirst($project->status) }} View →
  • @endforeach
@endif
@push('scripts') @endpush @endsection