|
1 | 1 | <?php
|
2 | 2 | $eth_price = json_decode(file_get_contents('https://min-api.cryptocompare.com/data/price?fsym=ETH&tsyms=USD'))->USD;
|
3 | 3 | $arr_json = json_decode(file_get_contents('https://nll-v2-1-39luy.ondigitalocean.app/static/phunks-market-data'));
|
4 |
| -$price = array(); |
| 4 | +$price_arr = array(); |
5 | 5 | foreach ($arr_json->phunksOfferedForSale as $phunk) {
|
6 | 6 | $metadata = $phunk->data;
|
7 | 7 | $attributes = $metadata->properties;
|
8 | 8 | $id = $phunk->phunkIndex;
|
9 |
| - $pricez = $phunk->minValue; |
10 |
| - $price2 = $pricez / 1000000000000000000; |
| 9 | + $price_base = $phunk->minValue; |
| 10 | + $price_display = $price_base/1000000000000000000; |
11 | 11 | $count_traits = count($attributes) - 1;
|
12 | 12 | $value = "$count_traits traits";
|
13 | 13 | if ($count_traits == '0') {
|
14 | 14 | $value = "$count_traits trait";
|
15 | 15 | }
|
16 |
| - if (empty($price[$value])) { |
17 |
| - $price[$value]['price'] = '999999999999999999999999999'; |
| 16 | + if (empty($price_arr[$value])) { |
| 17 | + $price_arr[$value]['price'] = '999999999999999999999999999'; |
18 | 18 | }
|
19 |
| - if ($price[$value]['price'] > $price2) { |
20 |
| - $price[$value]['price'] = $price2; |
21 |
| - $price[$value]['id'] = $phunk->phunkIndex; |
| 19 | + if ($price_arr[$value]['price'] > $price_display) { |
| 20 | + $price_arr[$value]['price'] = $price_display; |
| 21 | + $price_arr[$value]['id'] = $phunk->phunkIndex; |
22 | 22 | }
|
23 | 23 | foreach ($attributes as $v) {
|
24 | 24 | $value = $v->value;
|
25 |
| - if (empty($price[$value])) { |
26 |
| - $price[$value]['price'] = '999999999999999999999999999'; |
| 25 | + if (empty($price_arr[$value])) { |
| 26 | + $price_arr[$value]['price'] = '999999999999999999999999999'; |
27 | 27 | }
|
28 |
| - if ($price[$value]['price'] > $price2) { |
29 |
| - $price[$value]['price'] = $price2; |
30 |
| - $price[$value]['id'] = $phunk->phunkIndex; |
| 28 | + if ($price_arr[$value]['price'] > $price_display) { |
| 29 | + $price_arr[$value]['price'] = $price_display; |
| 30 | + $price_arr[$value]['id'] = $phunk->phunkIndex; |
31 | 31 | }
|
32 | 32 | }
|
33 | 33 | }
|
@@ -69,14 +69,14 @@ function by_price($a, $b)
|
69 | 69 | $phunks_text .= "<div class='col-6 col-md-3 text-center'><a href='https://notlarvalabs.com/cryptophunks/details/$phunk_id' target='_blank' class='text-decoration-none'><h3 class='mb-2 text-dark'>$name</h3> <br> <img src='$img' width='150px' style='image-rendering:pixelated;background:#638596;width:150px'><br><span class='text-dark'>This phunk have $count_traits_phunk traits :</span> <br>";
|
70 | 70 | foreach ($traits as $v_trait) {
|
71 | 71 | $v_name = $v_trait['value'];
|
72 |
| - $v_price = $price[$v_name]['price']; |
| 72 | + $v_price = $price_arr[$v_name]['price']; |
73 | 73 | $phunks_text .= "$v_name floor price $v_price Ξ<br>";
|
74 | 74 | }
|
75 | 75 | $c = "$count_traits_phunk traits";
|
76 | 76 | if ($count_traits_phunk == '0') {
|
77 | 77 | $c = "$count_traits_phunk trait";
|
78 | 78 | }
|
79 |
| - $v_price = $price[$c]['price']; |
| 79 | + $v_price = $price_arr[$c]['price']; |
80 | 80 | $phunks_text .= "$c floor price $v_price Ξ</a></div>";
|
81 | 81 | }
|
82 | 82 | $phunks_text .= "</div>";
|
@@ -112,14 +112,14 @@ function by_price($a, $b)
|
112 | 112 | }
|
113 | 113 | foreach ($traits as $v_trait) {
|
114 | 114 | $v_name = $v_trait['value'];
|
115 |
| - $v_price = $price[$v_name]['price']; |
| 115 | + $v_price = $price_arr[$v_name]['price']; |
116 | 116 | $result_text .= "$v_name floor price $v_price Ξ<br>";
|
117 | 117 | }
|
118 | 118 | $c = "$count_traits_phunk traits";
|
119 | 119 | if ($count_traits_phunk == '0') {
|
120 | 120 | $c = "$count_traits_phunk trait";
|
121 | 121 | }
|
122 |
| - $v_price = $price[$c]['price']; |
| 122 | + $v_price = $price_arr[$c]['price']; |
123 | 123 | $result_text .= "$c floor price $v_price Ξ</a></div></div>";
|
124 | 124 | }
|
125 | 125 | }
|
|
0 commit comments