<?php
header("Access-Control-Allow-Origin: *"); // CORS'u aç
header("Content-Type: text/html; charset=UTF-8");

// Blockscan'den cüzdan sayfasını çek

if (isset($_GET['address']) || 1 == 1) {
    $walletAddress = "0x0000000000000000000000000000000000000000";
    $url = "https://b...content-available-to-author-only...n.com/address/" . urlencode($walletAddress);

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // SSL doğrulamasını kapat
    $htmlContent = curl_exec($ch);
    curl_close($ch);

    echo $htmlContent;
} else {
    echo "Cüzdan adresi belirtilmedi!";
}
?>
