-
Notifications
You must be signed in to change notification settings - Fork 2
/
icon_eth.php
37 lines (35 loc) · 1.33 KB
/
icon_eth.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
header ('Content-Type: image/png');
$selectedToken = $_GET['token'];
$autoResolve = $_GET['autoResolve'];
$filename = 'icons/ethereum/' . $selectedToken . '.png';
if (file_exists($filename)) {
$image = file_get_contents('icons/ethereum/' . $selectedToken . '.png');
} else {
$image = file_get_contents('icons/ethereum/' . strtolower($selectedToken) . '.png');
if ($image) {
} else {
$image = file_get_contents('https://github.com/trustwallet/assets/raw/master/blockchains/ethereum/assets/' . $selectedToken . '/logo.png');
if ($image) {
} else {
$json_tokenDataIcons = file_get_contents('https://token-data.unifi.report/api/getInfo?token=' . $selectedToken . '&chain=ETH');
$tokenDataIcons = json_decode($json_tokenDataIcons);
$tokenDataIconData = $tokenDataIcons->logoURI;
$image = file_get_contents($tokenDataIconData);
}
if ($image) {
$file = 'icons/ethereum/' . $selectedToken . '.png';
file_put_contents($file, $image, FILE_APPEND | LOCK_EX);
$file = 'icons/ethereum/' . strtolower($selectedToken) . '.png';
file_put_contents($file, $image, FILE_APPEND | LOCK_EX);
} else {
if ($autoResolve === 'false') {
http_response_code(404);
die();
} else {
$image = file_get_contents('icons/unknown.png');
}
}
}
}
echo $image;