Tezos (XTZ)
Добавить в список наблюдения
Капитализация:
$ 847 247 240
XTZ/USD
$ 0.90200000
XTZ/BTC
0.000127 BTC
- 1 час +1.12%
- 1 день +1.01%
- 1 неделя 0%
Всего: | Пара | Цена | Объем торгов (24ч) |
---|---|---|---|
![]() | XTZUSD Обновлено: 485 ч, 59 мин | $ 0.89100000$ 0.891000 | $ 575 493$ 567 262 |
![]() | XTZUSDT Обновлено: 485 ч, 58 мин | 0.88930000 USDT$ 0.874205 | 496 820 USDT$ 499 971 |
![]() | XTZKRW Обновлено: 485 ч, 42 мин | 1 210.00 KRW$ 0.889132 | 369 198 449 KRW$ 271 302 |
![]() | XTZEUR Обновлено: 485 ч, 47 мин | 0.82000000 EUR$ 0.895934 | 45 144 EUR$ 48 381 |
![]() | XTZGBP Обновлено: 485 ч, 47 мин | 0.71400000 GBP$ 0.894792 | 36 461 GBP$ 44 877 |
![]() | XTZBTC Обновлено: 485 ч, 59 мин | 0.00003327 BTC$ 0.891874 | 1 BTC$ 34 327 |
![]() | XTZUST Обновлено: 485 ч, 35 мин | 0.88938000 UST$ 0.000000 | 719 UST$ 722 |
![]() | XTZBTC Обновлено: 485 ч, 42 мин | 0.00003286 BTC$ 0.881443 | 0 BTC$ 171 |
![]() | XTZUSDT Обновлено: 485 ч, 39 мин | 0.88880000 USDT$ 0.871735 | 138 USDT$ 135 |
![]() | XTZBUSD Обновлено: 485 ч, 54 мин | 1.03 BUSD$ 1.03 | 0 BUSD$ 0 |
- Назад 100
- Далее 100
-
1. in /raid/1/www/2yachts/api/modules/widget/controllers/EntityController.php at line 180171172173174175176177178179180181182183184185
$region['slug'] = $country['slug']; $region['url'] = '/' . ($region['type'] == 'rent' ? 'charter' : 'sale') . '/' . $country['slug']; } else { $city = GeoCities::findOne($region['region_id']); $region['region_name'] = $city[AppHelper::langName('city_name')]; $region['slug'] = $city['slug']; $country = GeoCountry::findOne($city['country_id']); $region['url'] = '/' . ($region['type'] == 'rent' ? 'charter' : 'sale') . '/' . $country['slug'] . '/' . $city['slug']; } return $region; } }
-
2. in /raid/1/www/2yachts/api/modules/widget/controllers/EntityController.php at line 180 – yii\base\ErrorHandler::handleError(8, 'Undefined index: type', '/raid/1/www/2yachts/api/modules/...', 180, ...)174175176177178179180181182183184185
} else { $city = GeoCities::findOne($region['region_id']); $region['region_name'] = $city[AppHelper::langName('city_name')]; $region['slug'] = $city['slug']; $country = GeoCountry::findOne($city['country_id']); $region['url'] = '/' . ($region['type'] == 'rent' ? 'charter' : 'sale') . '/' . $country['slug'] . '/' . $city['slug']; } return $region; } }
-
3. in /raid/1/www/2yachts/api/modules/widget/controllers/EntityController.php at line 68 – api\modules\widget\controllers\EntityController::getRegionData(['region_name' => null, 'slug' => null])62636465666768697071727374
$offset = $this->findOffset('region_sell'); if (!$offset) { $offset = SeoRegion::calcOffsetRegionType('sell', $this->page); $this->setOffset('region_sell', $offset); } $region_sale = SeoRegion::getRegionTypeByPage('sell', $offset); $region_sale = $this->getRegionData($region_sale); $region_sale['boat_count'] = ceil($region_sale['boat_count'] / 100) * 100; $list[] = [ 'url' => $region_sale['url'], 'photo' => ThumbHelper::getThumb('seo', $region_sale['photo'], [ 't' => [ 'w' => 225,
-
4. api\modules\widget\controllers\EntityController::actionIndex()
-
5. in /raid/1/www/2yachts/vendor/yiisoft/yii2/base/InlineAction.php at line 57 – call_user_func_array([api\modules\widget\controllers\EntityController, 'actionIndex'], [])515253545556575859
$args = $this->controller->bindActionParams($this, $params); Yii::debug('Running action: ' . get_class($this->controller) . '::' . $this->actionMethod . '()', __METHOD__); if (Yii::$app->requestedParams === null) { Yii::$app->requestedParams = $args; } return call_user_func_array([$this->controller, $this->actionMethod], $args); } }
-
6. in /raid/1/www/2yachts/vendor/yiisoft/yii2/base/Controller.php at line 181 – yii\base\InlineAction::runWithParams(['/api/widget/entity' => '', 'direction' => 'horizontal', 'lang' => 'ru', 'page' => '4ab91f20b9b665ada813560b2f970ccb'])175176177178179180181182183184185186187
} $result = null; if ($runAction && $this->beforeAction($action)) { // run the action $result = $action->runWithParams($params); $result = $this->afterAction($action, $result); // call afterAction on modules foreach ($modules as $module) { /* @var $module Module */
-
7. in /raid/1/www/2yachts/vendor/yiisoft/yii2/base/Module.php at line 534 – yii\base\Controller::runAction('', ['/api/widget/entity' => '', 'direction' => 'horizontal', 'lang' => 'ru', 'page' => '4ab91f20b9b665ada813560b2f970ccb'])528529530531532533534535536537538539540
$parts = $this->createController($route); if (is_array($parts)) { /* @var $controller Controller */ list($controller, $actionID) = $parts; $oldController = Yii::$app->controller; Yii::$app->controller = $controller; $result = $controller->runAction($actionID, $params); if ($oldController !== null) { Yii::$app->controller = $oldController; } return $result; }
-
8. in /raid/1/www/2yachts/vendor/yiisoft/yii2/web/Application.php at line 104 – yii\base\Module::runAction('widget/entity', ['/api/widget/entity' => '', 'direction' => 'horizontal', 'lang' => 'ru', 'page' => '4ab91f20b9b665ada813560b2f970ccb'])9899100101102103104105106107108109110
$params = $this->catchAll; unset($params[0]); } try { Yii::debug("Route requested: '$route'", __METHOD__); $this->requestedRoute = $route; $result = $this->runAction($route, $params); if ($result instanceof Response) { return $result; } $response = $this->getResponse(); if ($result !== null) {
-
9. in /raid/1/www/2yachts/vendor/yiisoft/yii2/base/Application.php at line 392 – yii\web\Application::handleRequest(yii\web\Request)386387388389390391392393394395396397398
{ try { $this->state = self::STATE_BEFORE_REQUEST; $this->trigger(self::EVENT_BEFORE_REQUEST); $this->state = self::STATE_HANDLING_REQUEST; $response = $this->handleRequest($this->getRequest()); $this->state = self::STATE_AFTER_REQUEST; $this->trigger(self::EVENT_AFTER_REQUEST); $this->state = self::STATE_SENDING_RESPONSE; $response->send();
-
14151617181920
require __DIR__ . '/../../common/config/main.php', require __DIR__ . '/../../common/config/main-local.php', require __DIR__ . '/../../api/config/main.php', require __DIR__ . '/../../api/config/main-local.php' ); (new yii\web\Application($config))->run();
$_GET = [ '/api/widget/entity' => '', 'direction' => 'horizontal', 'lang' => 'ru', 'page' => '4ab91f20b9b665ada813560b2f970ccb', ];