From d1209ea1fe772493020ef8d9ad1add3e1d2d39c1 Mon Sep 17 00:00:00 2001 From: Felipe Knorr Kuhn Date: Sat, 3 Jan 2026 16:02:55 -0800 Subject: [PATCH 01/12] Fix the lightning node rankings dashboard --- .../nodes-rankings-dashboard.component.html | 4 ++-- .../nodes-rankings-dashboard.component.ts | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html b/frontend/src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html index 11fb9227c..9f12b9c99 100644 --- a/frontend/src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html +++ b/frontend/src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -10,7 +10,7 @@ - + @@ -24,7 +24,7 @@ - + diff --git a/frontend/src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts b/frontend/src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts index 2e7ced4f7..0de18e9c7 100644 --- a/frontend/src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts +++ b/frontend/src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts @@ -1,6 +1,6 @@ import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core'; import { Observable, share } from 'rxjs'; -import { INodesRanking } from '@interfaces/node-api.interface'; +import { INodesRanking, INodesStatistics } from '@interfaces/node-api.interface'; import { SeoService } from '@app/services/seo.service'; import { LightningApiService } from '@app/lightning/lightning-api.service'; @@ -13,6 +13,7 @@ import { LightningApiService } from '@app/lightning/lightning-api.service'; }) export class NodesRankingsDashboard implements OnInit { nodesRanking$: Observable; + statistics$: Observable; constructor( private lightningApiService: LightningApiService, @@ -23,5 +24,6 @@ export class NodesRankingsDashboard implements OnInit { this.seoService.setTitle($localize`Top lightning nodes`); this.seoService.setDescription($localize`:@@meta.description.lightning.rankings-dashboard:See the top Lightning network nodes ranked by liquidity, connectivity, and age.`); this.nodesRanking$ = this.lightningApiService.getNodesRanking$().pipe(share()); + this.statistics$ = this.lightningApiService.getLatestStatistics$().pipe(share()); } } From 1ee87f554a1fcc076933a90a16d06e0b741799b4 Mon Sep 17 00:00:00 2001 From: nymkappa Date: Thu, 22 Jan 2026 11:44:23 +0100 Subject: [PATCH 02/12] [auto-accelerator] document APIs --- .../src/app/docs/api-docs/api-docs-data.ts | 115 ++++++++++++++++++ 1 file changed, 115 insertions(+) diff --git a/frontend/src/app/docs/api-docs/api-docs-data.ts b/frontend/src/app/docs/api-docs/api-docs-data.ts index ccc5b329e..7d39146e9 100644 --- a/frontend/src/app/docs/api-docs/api-docs-data.ts +++ b/frontend/src/app/docs/api-docs/api-docs-data.ts @@ -12451,6 +12451,121 @@ export const restApiDocsData = [ } } }, + { + options: { officialOnly: true }, + type: 'endpoint', + category: 'accelerator-private', + httpRequestMethod: 'POST', + fragment: 'accelerator-auto-accelerate', + title: 'POST Auto-Accelerate A Transaction (Pro)', + description: { + default: '

Sends a request to automatically accelerate a transaction based on specified trigger conditions.

The type parameter must be one of: time_delay, block_height, timestamp, or next_block.
The value parameter is required for types other than next_block and depends on the type: seconds for time_delay, block height for block_height, or Unix timestamp for timestamp.

' + }, + urlString: '/v1/services/accelerator/auto-accelerate', + showConditions: [''], + showJsExamples: showJsExamplesDefaultFalse, + codeExample: { + default: { + codeTemplate: { + curl: `%{1}" "[[hostname]][[baseNetworkUrl]]/api/v1/services/accelerator/auto-accelerate`, //custom interpolation technique handled in replaceCurlPlaceholder() + commonJS: ``, + esModule: `` + }, + codeSampleMainnet: { + esModule: [], + commonJS: [], + curl: ['txInput=ee13ebb99632377c15c94980357f674d285ac413452050031ea6dcd3e9b2dc29&type=time_delay&value=3600'], + headers: 'X-Mempool-Auth: stacksats', + response: `HTTP/1.1 200 OK`, + }, + } + } + }, + { + options: { officialOnly: true }, + type: 'endpoint', + category: 'accelerator-private', + httpRequestMethod: 'GET', + fragment: 'accelerator-auto-accelerate-history', + title: 'GET Auto-Acceleration History', + description: { + default: '

Returns the user\'s auto-acceleration requests history.

Possible status values: tracking, accelerated, confirmed, canceled.

' + }, + urlString: '/v1/services/accelerator/auto-accelerate/history', + showConditions: [''], + showJsExamples: showJsExamplesDefaultFalse, + codeExample: { + default: { + codeTemplate: { + curl: `/api/v1/services/accelerator/auto-accelerate/history`, + commonJS: ``, + esModule: `` + }, + codeSampleMainnet: { + esModule: [], + commonJS: [], + curl: [], + headers: 'X-Mempool-Auth: stacksats', + response: `[ + { + "id": 15, + "txid": "ee13ebb99632377c15c94980357f674d285ac413452050031ea6dcd3e9b2dc29", + "status": "accelerated", + "added": 1706378712, + "trigger_type": "time_delay", + "trigger_value": 3600 + }, + { + "id": 14, + "txid": "c5840e89173331760e959a190b24e2a289121277ed7f8a095fe289b37cee9fde", + "status": "confirmed", + "added": 1706378704, + "trigger_type": "block_height", + "trigger_value": 827670 + }, + { + "id": 13, + "txid": "178b5b9b310f0d667d7ea563a2cdcc17bc8cd15261b58b1653860a724ca83458", + "status": "tracking", + "added": 1706378684, + "trigger_type": "next_block", + "trigger_value": null + } +]`, + }, + } + } + }, + { + options: { officialOnly: true }, + type: 'endpoint', + category: 'accelerator-private', + httpRequestMethod: 'POST', + fragment: 'accelerator-auto-accelerate-cancel', + title: 'POST Cancel Auto-Acceleration (Pro)', + description: { + default: '

Sends a request to cancel an auto-acceleration in the tracking status.
You can retrieve eligible auto-acceleration txid using the history endpoint GET /api/v1/services/accelerator/auto-accelerate/history.' + }, + urlString: '/v1/services/accelerator/auto-accelerate/cancel', + showConditions: [''], + showJsExamples: showJsExamplesDefaultFalse, + codeExample: { + default: { + codeTemplate: { + curl: `%{1}" "[[hostname]][[baseNetworkUrl]]/api/v1/services/accelerator/auto-accelerate/cancel`, //custom interpolation technique handled in replaceCurlPlaceholder() + commonJS: ``, + esModule: `` + }, + codeSampleMainnet: { + esModule: [], + commonJS: [], + curl: ['txid=178b5b9b310f0d667d7ea563a2cdcc17bc8cd15261b58b1653860a724ca83458'], + headers: 'X-Mempool-Auth: stacksats', + response: `HTTP/1.1 200 OK`, + }, + } + } + }, ]; export const faqData = [ From a198e1be9867c7c54e53d40ab2646638e733a97d Mon Sep 17 00:00:00 2001 From: nymkappa Date: Thu, 22 Jan 2026 11:50:07 +0100 Subject: [PATCH 03/12] [refactor] add missing

in doc --- frontend/src/app/docs/api-docs/api-docs-data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/docs/api-docs/api-docs-data.ts b/frontend/src/app/docs/api-docs/api-docs-data.ts index 7d39146e9..bc2e45616 100644 --- a/frontend/src/app/docs/api-docs/api-docs-data.ts +++ b/frontend/src/app/docs/api-docs/api-docs-data.ts @@ -12544,7 +12544,7 @@ export const restApiDocsData = [ fragment: 'accelerator-auto-accelerate-cancel', title: 'POST Cancel Auto-Acceleration (Pro)', description: { - default: '

Sends a request to cancel an auto-acceleration in the tracking status.
You can retrieve eligible auto-acceleration txid using the history endpoint GET /api/v1/services/accelerator/auto-accelerate/history.' + default: '

Sends a request to cancel an auto-acceleration in the tracking status.
You can retrieve eligible auto-acceleration txid using the history endpoint GET /api/v1/services/accelerator/auto-accelerate/history.

' }, urlString: '/v1/services/accelerator/auto-accelerate/cancel', showConditions: [''], From 12f7eb4665ad6c6a428459132f76d9e042b9acfa Mon Sep 17 00:00:00 2001 From: nymkappa Date: Thu, 22 Jan 2026 15:29:03 +0100 Subject: [PATCH 04/12] [auto-accelerator] fix time_delay desc, add min values --- frontend/src/app/docs/api-docs/api-docs-data.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/docs/api-docs/api-docs-data.ts b/frontend/src/app/docs/api-docs/api-docs-data.ts index bc2e45616..d78a930bb 100644 --- a/frontend/src/app/docs/api-docs/api-docs-data.ts +++ b/frontend/src/app/docs/api-docs/api-docs-data.ts @@ -12459,7 +12459,7 @@ export const restApiDocsData = [ fragment: 'accelerator-auto-accelerate', title: 'POST Auto-Accelerate A Transaction (Pro)', description: { - default: '

Sends a request to automatically accelerate a transaction based on specified trigger conditions.

The type parameter must be one of: time_delay, block_height, timestamp, or next_block.
The value parameter is required for types other than next_block and depends on the type: seconds for time_delay, block height for block_height, or Unix timestamp for timestamp.

' + default: '

Sends a request to automatically accelerate a transaction based on specified trigger conditions.

The type parameter must be one of: time_delay, block_height, timestamp, or next_block.
The value parameter is required for types other than next_block and depends on the type: hours (floating point, min = 0.5) for time_delay, block height (min = next block height) for block_height, or Unix timestamp (min = now + 60 seconds) for timestamp.

' }, urlString: '/v1/services/accelerator/auto-accelerate', showConditions: [''], @@ -12474,7 +12474,7 @@ export const restApiDocsData = [ codeSampleMainnet: { esModule: [], commonJS: [], - curl: ['txInput=ee13ebb99632377c15c94980357f674d285ac413452050031ea6dcd3e9b2dc29&type=time_delay&value=3600'], + curl: ['txInput=ee13ebb99632377c15c94980357f674d285ac413452050031ea6dcd3e9b2dc29&type=time_delay&value=0.5'], headers: 'X-Mempool-Auth: stacksats', response: `HTTP/1.1 200 OK`, }, @@ -12513,7 +12513,7 @@ export const restApiDocsData = [ "status": "accelerated", "added": 1706378712, "trigger_type": "time_delay", - "trigger_value": 3600 + "trigger_value": 0.5 }, { "id": 14, From f72825ee1bb10a7d08f9998f65851d7a8c89a031 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 20:26:15 +0000 Subject: [PATCH 05/12] Translate frontend/src/locale/messages.xlf in ru 100% reviewed source file: 'frontend/src/locale/messages.xlf' on 'ru'. --- frontend/src/locale/messages.ru.xlf | 1826 +++++++++++++++++---------- 1 file changed, 1146 insertions(+), 680 deletions(-) diff --git a/frontend/src/locale/messages.ru.xlf b/frontend/src/locale/messages.ru.xlf index 81de75bd8..762be6391 100644 --- a/frontend/src/locale/messages.ru.xlf +++ b/frontend/src/locale/messages.ru.xlf @@ -5,8 +5,57 @@ Close Закрыть - node_modules/src/ngb-config.ts - 13 + node_modules/src/alert/alert.ts + 50 + + + + Slide of + Слайд из + + node_modules/src/carousel/carousel.ts + 131,135 + + Currently selected slide number read by screen reader + + + Previous + Предыдущий + + node_modules/src/carousel/carousel.ts + 148 + + + + Next + Следующий + + node_modules/src/carousel/carousel.ts + 172,173 + + + + Previous month + Предыдущий месяц + + node_modules/src/datepicker/datepicker-navigation.ts + 83,85 + + + node_modules/src/datepicker/datepicker-navigation.ts + 104,105 + + + + Next month + Следующий месяц + + node_modules/src/datepicker/datepicker-navigation.ts + 112 + + + node_modules/src/datepicker/datepicker-navigation.ts + 112 @@ -45,35 +94,6 @@ 13 - - Previous month - Предыдущий месяц - - node_modules/src/ngb-config.ts - 13 - - - node_modules/src/ngb-config.ts - 13 - - - - - - - node_modules/src/ngb-config.ts - 13 - - - - Slide of - Слайд из - - node_modules/src/ngb-config.ts - 13 - - Currently selected slide number read by screen reader - Hours Часы @@ -90,14 +110,6 @@ 13 - - Previous - Предыдущий - - node_modules/src/ngb-config.ts - 13 - - MM м. @@ -126,26 +138,6 @@ 13 - - Next month - Следующий месяц - - node_modules/src/ngb-config.ts - 13 - - - node_modules/src/ngb-config.ts - 13 - - - - Next - Следующий - - node_modules/src/ngb-config.ts - 13 - - Minutes Минуты @@ -266,6 +258,14 @@ 13 + + + + + node_modules/src/progressbar/progressbar.ts + 41,42 + + Become a Community Sponsor Стать спонсором из сообщества @@ -303,6 +303,7 @@ Be your own explorer + Будь своим собственным обозревателем src/app/components/about/about.component.html 15 @@ -335,7 +336,7 @@ Киты src/app/components/about/about.component.html - 228 + 225 about.sponsors.withHeart @@ -344,7 +345,7 @@ Чады src/app/components/about/about.component.html - 241 + 238 about.sponsors.withHeart @@ -353,7 +354,7 @@ Гангстеры ❤️ src/app/components/about/about.component.html - 254 + 251 about.sponsors.withHeart @@ -362,7 +363,7 @@ Интеграции c сообществом src/app/components/about/about.component.html - 265 + 262 about.community-integrations @@ -371,7 +372,7 @@ Обьединения Сообщества src/app/components/about/about.component.html - 379 + 376 about.alliances @@ -380,7 +381,7 @@ Переводы src/app/components/about/about.component.html - 395 + 392 about.translators @@ -389,7 +390,7 @@ Участники проекта src/app/components/about/about.component.html - 409 + 406 about.contributors @@ -398,25 +399,34 @@ Участники проекта src/app/components/about/about.component.html - 421 + 418 about.project_members - - Project Maintainers - Разработчики проекта + + Powered By + Работает на src/app/components/about/about.component.html - 434 + 431 - about.maintainers + about.powered-by + + + Managed By + Управляется + + src/app/components/about/about.component.html + 439 + + about.managed-by About О проекте src/app/components/about/about.component.ts - 49 + 50 @@ -424,7 +434,7 @@ Узнайте больше о проекте Mempool Open Source Project®: корпоративные спонсоры, частные спонсоры, интеграции, кто вносит свой вклад, лицензирование FOSS и многое другое. src/app/components/about/about.component.ts - 50 + 51 @@ -454,7 +464,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 602 + 594 close @@ -501,7 +511,7 @@ src/app/components/transaction/transaction.component.html - 188 + 203 Transaction Virtual Size transaction.vsize @@ -577,7 +587,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 612 + 604 src/app/components/accelerate-checkout/accelerate-fee-graph.component.html @@ -637,7 +647,7 @@ src/app/components/transactions-list/transactions-list.component.html - 475 + 518 src/app/lightning/channels-list/channels-list.component.html @@ -789,6 +799,7 @@ Mempool Accelerator® fees + Комиссии Mempool Accelerator® src/app/components/accelerate-checkout/accelerate-checkout.component.html 161 @@ -893,7 +904,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 610 + 602 accelerator.confirmation-expected @@ -926,6 +937,7 @@ Payment to mempool.space for acceleration of txid .. + Оплата mempool.space за ускорение txid .. src/app/components/accelerate-checkout/accelerate-checkout.component.html 370,371 @@ -962,7 +974,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 641 + 633 Pay button label transaction.pay @@ -987,6 +999,7 @@ OR + ИЛИ src/app/components/accelerate-checkout/accelerate-checkout.component.html 405 @@ -1074,53 +1087,38 @@ accelerator.confirming-acceleration-with-miners - - Your transaction is being accelerated! - Ваша транзакция ускоряется! + + Transaction is being accelerated! + Транзакция ускоряется! src/app/components/accelerate-checkout/accelerate-checkout.component.html - 576 + 575 accelerator.success-message - - Transaction is already being accelerated! + + Transaction has been accepted for acceleration by our mining pool partners. + Транзакция принята на ускорение нашими партнерами-майнерами. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 578 - - accelerator.success-message-third-party - - - Your transaction has been accepted for acceleration by our mining pool partners. - Ваша транзакция была принята для ускорения нашими партнерами-майнерами. - - src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 582 accelerator.confirmed-acceleration-with-miners - - Transaction has already been accepted for acceleration by our mining pool partners. - - src/app/components/accelerate-checkout/accelerate-checkout.component.html - 589 - - accelerator.confirmed-acceleration-with-miners-third-party - Get a receipt. + Получить квитанцию. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 594 + 586 src/app/components/tracker/tracker.component.html - 146 + 145 src/app/components/tracker/tracker.component.html - 180 + 179 accelerator.receipt-label @@ -1129,7 +1127,7 @@ Расчет стоимости... src/app/components/accelerate-checkout/accelerate-checkout.component.html - 614 + 606 accelerator.calculating-cost @@ -1138,7 +1136,7 @@ изменить src/app/components/accelerate-checkout/accelerate-checkout.component.html - 620 + 612 accelerator.customize @@ -1147,7 +1145,7 @@ Ускорить до ~ sat/vB src/app/components/accelerate-checkout/accelerate-checkout.component.html - 623 + 615 accelerator.accelerate-to-x @@ -1156,12 +1154,16 @@ Протолкнуть src/app/components/accelerate-checkout/accelerate-checkout.component.html - 629 + 621 src/app/components/transaction/transaction-details/transaction-details.component.html 172 + + src/app/components/transactions-list/transactions-list.component.html + 529 + Accelerate button label transaction.accelerate @@ -1170,7 +1172,7 @@ Ваша транзакция будет приоритезирована вплоть до % майнеров . src/app/components/accelerate-checkout/accelerate-checkout.component.html - 651 + 643 accelerator.hashrate-percentage-description @@ -1179,11 +1181,11 @@ Следующий блок src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 81 + 82 src/app/components/block/block.component.html - 12 + 16 src/app/components/difficulty/difficulty-tooltip.component.html @@ -1191,7 +1193,7 @@ src/app/components/mempool-block/mempool-block.component.ts - 87 + 86 src/app/components/pool/pool.component.html @@ -1207,15 +1209,47 @@ максимум src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 91 + 92 - - accelerated - ускорена + + Accelerated + Ускоренная src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 91 + 92 + + + src/app/components/acceleration-timeline/acceleration-timeline-tooltip.component.html + 16 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 92 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 96 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 89 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 99 + + + src/app/components/transaction/transaction-details/transaction-details.component.html + 201 + + + src/app/components/transactions-list/transactions-list.component.html + 527 + + + src/app/shared/filters.utils.ts + 100 @@ -1277,7 +1311,7 @@ src/app/components/tracker/tracker.component.html - 59 + 57 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -1314,39 +1348,6 @@ Transaction first seen transaction.first-seen - - Accelerated - Ускоренная - - src/app/components/acceleration-timeline/acceleration-timeline-tooltip.component.html - 16 - - - src/app/components/acceleration-timeline/acceleration-timeline.component.html - 92 - - - src/app/components/acceleration-timeline/acceleration-timeline.component.html - 96 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 89 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 97 - - - src/app/components/transaction/transaction-details/transaction-details.component.html - 201 - - - src/app/shared/filters.utils.ts - 100 - - transaction.audit.accelerated - Mined Намайнено @@ -1440,6 +1441,7 @@ Out-of-band fees + Внеканальные комиссии src/app/components/acceleration-timeline/acceleration-timeline-tooltip.component.html 27 @@ -1518,6 +1520,7 @@ Canceled + Отменено src/app/components/acceleration-timeline/acceleration-timeline.component.html 32 @@ -1537,7 +1540,7 @@ src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts - 79 + 77 src/app/components/graphs/graphs.component.html @@ -1550,27 +1553,7 @@ В этом временном отрезке нет ускоренной транзакции src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts - 135 - - - - At block: - В блоке: - - src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts - 179 - - - src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts - 255 - - - src/app/components/block-health-graph/block-health-graph.component.ts - 143 - - - src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 168 + 138 @@ -1578,19 +1561,19 @@ Около блока: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts - 181 + 192 src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts - 257 + 258 src/app/components/block-health-graph/block-health-graph.component.ts - 145 + 146 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 170 + 171 @@ -1634,10 +1617,6 @@ src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 39 - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 82 - accelerator.total-boost @@ -1717,7 +1696,7 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.ts - 62 + 63 src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html @@ -1815,7 +1794,7 @@ src/app/components/block/block.component.html - 9 + 10 shared.block-title @@ -1849,7 +1828,7 @@ src/app/components/address/address.component.html - 280 + 294 src/app/components/tracker/tracker-bar.component.html @@ -1859,6 +1838,7 @@ Completed + Завершено src/app/components/acceleration/accelerations-list/accelerations-list.component.html 65 @@ -1867,6 +1847,7 @@ Failed + Неудача src/app/components/acceleration/accelerations-list/accelerations-list.component.html 68 @@ -1900,7 +1881,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 103 accelerator.pending-accelerations @@ -1922,24 +1903,24 @@ mining.1-day - - (1 week) - (1 неделя) - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 - - mining.1-week - (1 month) (1 месяц) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 33 + 30 mining.1-month + + (1 year) + (1 год) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 33 + + mining.1-year + (all time) (все время) @@ -1958,16 +1939,25 @@ src/app/components/address/address.component.html - 98 + 111 all + + Historical Trend + Историческая динамика + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 82 + + acceleration.historical-trend + View more » Подробнее » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 91 + 93 src/app/components/custom-dashboard/custom-dashboard.component.html @@ -1981,6 +1971,10 @@ src/app/components/mining-dashboard/mining-dashboard.component.html 46 + + src/app/components/treasuries/treasuries.component.html + 92 + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 42 @@ -1996,7 +1990,7 @@ Недавние ускорения src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 113 + 115 dashboard.recent-accelerations @@ -2032,7 +2026,7 @@ нет ускорения src/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts - 99 + 100 @@ -2071,27 +2065,27 @@ Баланс src/app/components/address-graph/address-graph.component.ts - 61 + 62 src/app/components/address-graph/address-graph.component.ts - 202 + 191 src/app/components/address-graph/address-graph.component.ts - 229 + 216 src/app/components/address-graph/address-graph.component.ts - 310 + 297 src/app/components/address-graph/address-graph.component.ts - 382 + 369 src/app/components/address-graph/address-graph.component.ts - 457 + 444 src/app/components/address/address-preview.component.html @@ -2204,7 +2198,7 @@ src/app/components/address/address.component.html - 311 + 328 address.unconfidential @@ -2217,7 +2211,7 @@ src/app/components/address/address.component.html - 295 + 309 src/app/components/wallet/wallet.component.html @@ -2243,15 +2237,23 @@ src/app/components/block/block.component.html - 406 + 477 src/app/components/block/block.component.html - 438 + 509 src/app/components/block/block.component.html - 462 + 547 + + + src/app/components/block/block.component.html + 586 + + + src/app/components/block/block.component.html + 612 src/app/components/blocks-list/blocks-list.component.html @@ -2289,7 +2291,7 @@ src/app/components/address/address.component.html - 256 + 270 src/app/components/amount/amount.component.html @@ -2313,7 +2315,7 @@ src/app/components/transactions-list/transactions-list.component.html - 484 + 537 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2330,11 +2332,11 @@ Адрес: src/app/components/address/address-preview.component.ts - 73 + 74 src/app/components/address/address.component.ts - 173 + 204 @@ -2342,15 +2344,16 @@ Отображение транзакций мемпула, подтвержденных транзакций, балансов и многого другого для <x id="PH" equiv-text="this.stateService.network==='liquid'||this.stateService.network==='liquidtestnet'?'Liquid':'Bitcoin'"/><x id="PH_1" equiv-text="seoDescriptionNetwork(this.stateService.network)"/> адреса <span class='notranslate'><x id="INTERPOLATION" equiv-text="this.addressString"/>. src/app/components/address/address-preview.component.ts - 74 + 75 src/app/components/address/address.component.ts - 174 + 205 Taproot Tree + Дерево Taproot src/app/components/address/address.component.html 79 @@ -2362,7 +2365,7 @@ История баланса src/app/components/address/address.component.html - 93 + 106 src/app/components/custom-dashboard/custom-dashboard.component.html @@ -2374,7 +2377,7 @@ src/app/components/treasuries/treasuries.component.html - 63 + 68 src/app/components/wallet/wallet.component.html @@ -2387,15 +2390,16 @@ недавние src/app/components/address/address.component.html - 101 + 114 recent Unspent Outputs + Неизрасходованные выходы src/app/components/address/address.component.html - 114 + 127 address.unspent-outputs @@ -2404,7 +2408,7 @@ из транзакции src/app/components/address/address.component.html - 129 + 142 X of X Address Transaction @@ -2413,7 +2417,7 @@ из транзакций src/app/components/address/address.component.html - 130 + 143 X of X Address Transactions (Plural) @@ -2422,20 +2426,16 @@ Ошибка загрузки данных адреса src/app/components/address/address.component.html - 229 - - - src/app/components/address/address.component.html - 246 + 241 address.error.loading-address-data - - There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: - По этому адресу слишком много транзакций; больше, чем может обработать ваш сервер. Подробнее о настройке более мощного бэкэнда. Вместо этого рассмотрите возможность просмотра этого адреса на официальном сайте Mempool: + + There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + На этом адресе слишком много транзакций, больше, чем ваш бэкенд может обработать. Подробнее о настройке более мощного бэкенда. Попробуйте просмотреть этот адрес на официальном сайте Mempool: src/app/components/address/address.component.html - 232,235 + 247,251 Electrum server limit exceeded error @@ -2444,7 +2444,7 @@ Подтвержденный баланс src/app/components/address/address.component.html - 275 + 289 src/app/components/wallet/wallet.component.html @@ -2457,7 +2457,7 @@ Подтвержденные UTXO src/app/components/address/address.component.html - 285 + 299 src/app/components/wallet/wallet.component.html @@ -2470,7 +2470,7 @@ Ожидаемые UTXO src/app/components/address/address.component.html - 290 + 304 address.pending-utxos @@ -2479,7 +2479,7 @@ Тип src/app/components/address/address.component.html - 300 + 314 src/app/components/transaction/cpfp-info.component.html @@ -2487,12 +2487,22 @@ src/app/components/transactions-list/transactions-list.component.html - 447 + 490 address.type + + Add unpublished spending paths + Добавить неопубликованные пути расходования + + src/app/components/address/address.component.html + 319 + + address.taproot-psbt-add-unpublished-spend-paths + Fiat + Фиат src/app/components/amount-selector/amount-selector.component.html 5 @@ -2660,7 +2670,7 @@ Актив: src/app/components/asset/asset.component.ts - 75 + 76 @@ -2668,7 +2678,7 @@ Просматривайте активов Liquid (): просмотрите выпущенную сумму, сожженную сумму, сумму в обращении, транзакции и многое другое. src/app/components/asset/asset.component.ts - 108 + 109 @@ -2701,11 +2711,11 @@ src/app/components/assets/assets-nav/assets-nav.component.ts - 42 + 43 src/app/components/assets/assets.component.ts - 44 + 45 Assets page header @@ -2730,7 +2740,7 @@ src/app/components/custom-dashboard/custom-dashboard.component.ts - 73 + 74 src/app/components/pool-ranking/pool-ranking.component.html @@ -2762,7 +2772,7 @@ src/app/dashboard/dashboard.component.ts - 78 + 79 @@ -2785,14 +2795,15 @@ Explore all the assets issued on the Liquid network like LBTC, L-CAD, USDT, and more. + Изучите все активы, выпущенные в сети Liquid, такие как LBTC, L-CAD, USDT и другие. src/app/components/assets/assets-nav/assets-nav.component.ts - 43 + 44 Ticker - Тикер + Торговая пара src/app/components/assets/assets.component.html 5 @@ -2890,7 +2901,7 @@ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts - 72 + 73 src/app/components/graphs/graphs.component.html @@ -2929,7 +2940,23 @@ Посмотреть комиссионные ставки в Биткоине с течением времени, включая минимальные и максимальные ставки на блок. src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts - 73 + 74 + + + + At block: + В блоке: + + src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts + 256 + + + src/app/components/block-health-graph/block-health-graph.component.ts + 144 + + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 169 @@ -2941,7 +2968,7 @@ src/app/components/block-fees-graph/block-fees-graph.component.ts - 69 + 70 src/app/components/graphs/graphs.component.html @@ -2954,7 +2981,7 @@ Посмотреть среднюю стоимость майнинга одного биткоин-блока, визуализированную в BTC и долларах США, с течением времени. src/app/components/block-fees-graph/block-fees-graph.component.ts - 70 + 71 @@ -2962,27 +2989,27 @@ Индексация блоков src/app/components/block-fees-graph/block-fees-graph.component.ts - 119 + 120 src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 137 + 138 src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 116 + 117 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 119 + 120 src/app/components/hashrate-chart/hashrate-chart.component.ts - 204 + 205 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts - 202 + 203 src/app/components/indexing-progress/indexing-progress.component.html @@ -2990,7 +3017,11 @@ src/app/components/pool/pool-preview.component.ts - 122 + 123 + + + src/app/components/price-chart/price-chart.component.ts + 136 @@ -3002,7 +3033,7 @@ src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 78 + 79 src/app/components/graphs/graphs.component.html @@ -3015,7 +3046,7 @@ Оцените комиссии за майнинг, полученные за Биткоин-блок, в сравнении с субсидией за блок. Данные визуализированны в биткоинах и долларах США с течением времени. src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 79 + 80 @@ -3023,7 +3054,7 @@ В блоке src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 185 + 186 @@ -3031,7 +3062,7 @@ Около блока src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 187 + 188 @@ -3054,6 +3085,10 @@ src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 70 + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 90 + mempool-goggles.match @@ -3065,12 +3100,21 @@ mempool-goggles.any + + None + Пусто + + src/app/components/block-filters/block-filters.component.html + 27 + + mempool-goggles.none + Tint Оттенок src/app/components/block-filters/block-filters.component.html - 29 + 32 mempool-goggles.tint @@ -3079,11 +3123,7 @@ Классика src/app/components/block-filters/block-filters.component.html - 32 - - - src/app/components/theme-selector/theme-selector.component.html - 3 + 35 mempool-goggles.classic @@ -3092,7 +3132,7 @@ Возраст src/app/components/block-filters/block-filters.component.html - 35 + 38 mempool-goggles.age @@ -3105,7 +3145,7 @@ src/app/components/block-health-graph/block-health-graph.component.ts - 63 + 64 src/app/components/graphs/graphs.component.html @@ -3118,7 +3158,7 @@ Посмотреть состояния блока биткоина с течением времени. Здоровье блока - это показатель того, сколько ожидаемых транзакций было включено в фактический добытый блок. Ожидаемые транзакции определяются с помощью переделанного Mempool алгоритма отбора транзакций Bitcoin Core. src/app/components/block-health-graph/block-health-graph.component.ts - 64 + 65 @@ -3126,23 +3166,23 @@ Пока нет данных для отображения. Попробуйте позже. src/app/components/block-health-graph/block-health-graph.component.ts - 109 + 110 src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 120 + 121 src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 86 + 87 src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 233 + 234 src/app/lightning/nodes-map/nodes-map.component.ts - 146 + 147 @@ -3150,11 +3190,11 @@ Здоровье src/app/components/block-health-graph/block-health-graph.component.ts - 190 + 191 src/app/components/block/block.component.html - 62 + 66 src/app/components/blocks-list/blocks-list.component.html @@ -3204,7 +3244,7 @@ src/app/components/tracker/tracker.component.html - 34 + 32 src/app/components/transaction/transaction-preview.component.html @@ -3387,6 +3427,7 @@ Deprioritized + Снят приоритет src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 82 @@ -3412,6 +3453,15 @@ Conflict tx-features.tag.conflict + + No Match + Нет совпадения + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 91 + + transaction.audit.no-match + Block Rewards Вознаграждения за блок @@ -3421,7 +3471,7 @@ src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 67 + 68 src/app/components/graphs/graphs.component.html @@ -3434,7 +3484,7 @@ Посмотреть вознаграждения за блок в BTC и USD с течением времени. Вознаграждение за блок - это общая сумма средств, которую майнеры получают за счет субсидий и комиссионных сборов. src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 68 + 69 @@ -3446,7 +3496,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 64 + 65 src/app/components/graphs/graphs.component.html @@ -3459,7 +3509,7 @@ Посмотреть размеры Биткоин-блоков (МБ) и их вес (единицы веса) с течением времени. src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 65 + 66 @@ -3467,15 +3517,15 @@ Размер src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 187 + 188 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 242 + 243 src/app/components/block/block.component.html - 54 + 58 src/app/components/blocks-list/blocks-list.component.html @@ -3495,7 +3545,7 @@ src/app/components/mempool-graph/mempool-graph.component.ts - 331 + 332 src/app/components/pool/pool.component.html @@ -3511,7 +3561,7 @@ src/app/components/transaction/transaction.component.html - 184 + 199 src/app/dashboard/dashboard.component.html @@ -3523,11 +3573,11 @@ Вес src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 195 + 196 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 273 + 274 src/app/components/block/block-preview.component.html @@ -3535,19 +3585,27 @@ src/app/components/block/block.component.html - 58 + 62 src/app/components/block/block.component.html - 402 + 473 src/app/components/block/block.component.html - 429 + 500 src/app/components/block/block.component.html - 458 + 536 + + + src/app/components/block/block.component.html + 575 + + + src/app/components/block/block.component.html + 608 src/app/components/transaction/transaction-raw.component.html @@ -3555,7 +3613,7 @@ src/app/components/transaction/transaction.component.html - 200 + 215 @@ -3563,11 +3621,11 @@ Размер по весу src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 203 + 204 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 285 + 286 @@ -3575,15 +3633,15 @@ Блок : src/app/components/block-view/block-view.component.ts - 110 + 111 src/app/components/block/block-preview.component.ts - 104 + 105 src/app/components/block/block.component.ts - 262 + 286 @@ -3591,15 +3649,15 @@ Размер, вес, диапазон сборов, включенные транзакции и многое другое для Liquid блока (). src/app/components/block-view/block-view.component.ts - 112 + 113 src/app/components/block/block-preview.component.ts - 106 + 107 src/app/components/block/block.component.ts - 264 + 288 @@ -3607,15 +3665,15 @@ Размер, вес, диапазон комиссии, включенные транзакции, аудит (ожидаемый и фактический) и многое другое для Биткоин блока (). src/app/components/block-view/block-view.component.ts - 114 + 115 src/app/components/block/block-preview.component.ts - 108 + 109 src/app/components/block/block.component.ts - 266 + 290 @@ -3627,7 +3685,7 @@ src/app/components/block/block.component.html - 10 + 11 @@ -3639,7 +3697,7 @@ src/app/components/block/block.component.html - 48 + 52 src/app/components/blocks-list/blocks-list.component.html @@ -3676,7 +3734,7 @@ src/app/components/block/block.component.html - 136 + 142 src/app/components/mempool-block/mempool-block.component.html @@ -3693,23 +3751,31 @@ src/app/components/block/block.component.html - 147 + 153 src/app/components/block/block.component.html - 173 + 179 src/app/components/block/block.component.html - 396 + 467 src/app/components/block/block.component.html - 417 + 488 src/app/components/block/block.component.html - 454 + 525 + + + src/app/components/block/block.component.html + 564 + + + src/app/components/block/block.component.html + 604 src/app/components/mempool-block/mempool-block.component.html @@ -3727,7 +3793,7 @@ src/app/components/block/block.component.html - 182 + 188 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -3744,11 +3810,11 @@ src/app/components/block/block.component.html - 342 + 412 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 55 + 68 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -3765,11 +3831,11 @@ src/app/components/block/block.component.html - 343 + 413 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 56 + 69 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -3808,12 +3874,29 @@ Block reorg block.reorged + + Stale Block + Зависший блок + + src/app/components/block/block.component.html + 13 + + + src/app/components/block/block.component.html + 255 + + + src/app/components/block/block.component.html + 287 + + shared.stale-block-title + Previous Block Предыдущий блок src/app/components/block/block.component.html - 19 + 23 Previous Block @@ -3822,7 +3905,7 @@ Зависший src/app/components/block/block.component.html - 30 + 34 Stale block state block.stale @@ -3832,7 +3915,7 @@ Хэш src/app/components/block/block.component.html - 44 + 48 src/app/components/simpleproof-widget/simpleproof-widget.component.html @@ -3845,7 +3928,7 @@ Неизвестно src/app/components/block/block.component.html - 73 + 77 src/app/components/blocks-list/blocks-list.component.html @@ -3869,7 +3952,7 @@ src/app/lightning/channel/closing-type/closing-type.component.ts - 32 + 33 src/app/lightning/node/node-preview.component.html @@ -3885,19 +3968,23 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 154 + 155 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 323 + 324 src/app/services/api.service.ts - 275 + 283 src/app/services/api.service.ts - 288 + 296 + + + src/app/shared/components/address-type/address-type.component.html + 27 unknown @@ -3906,7 +3993,7 @@ Интервал комиссий src/app/components/block/block.component.html - 132 + 138 src/app/components/mempool-block/mempool-block.component.html @@ -3919,23 +4006,23 @@ Основано на средней segwit-транзакции в 140 vBytes src/app/components/block/block.component.html - 140 + 146 src/app/components/fees-box/fees-box.component.html - 16 + 17 src/app/components/fees-box/fees-box.component.html - 22 + 23 src/app/components/fees-box/fees-box.component.html - 27 + 28 src/app/components/fees-box/fees-box.component.html - 32 + 33 src/app/components/mempool-block/mempool-block.component.html @@ -3948,21 +4035,39 @@ Субсидия + комиссии src/app/components/block/block.component.html - 162 + 168 src/app/components/block/block.component.html - 177 + 183 Total subsidy and fees in a block block.subsidy-and-fees + + Stale + Зависший + + src/app/components/block/block.component.html + 239 + + block.stale + + + Winning + Выйгравший + + src/app/components/block/block.component.html + 241 + + block.actual + Expected Ожидаемый src/app/components/block/block.component.html - 232 + 246 src/app/components/pool/pool.component.html @@ -3975,7 +4080,7 @@ Фактический src/app/components/block/block.component.html - 234 + 248 block.actual @@ -3984,16 +4089,25 @@ Ожидаемый блок src/app/components/block/block.component.html - 238 + 262 block.expected-block + + Winning Block + Выйгравший блок + + src/app/components/block/block.component.html + 289 + + block.stale-block + Actual Block Фактический блок src/app/components/block/block.component.html - 253 + 296 block.actual-block @@ -4002,7 +4116,7 @@ Версия src/app/components/block/block.component.html - 280 + 330 src/app/components/transaction/transaction-raw.component.html @@ -4010,7 +4124,7 @@ src/app/components/transaction/transaction.component.html - 210 + 225 transaction.version @@ -4019,7 +4133,7 @@ Taproot src/app/components/block/block.component.html - 281 + 331 src/app/components/tx-features/tx-features.component.html @@ -4049,7 +4163,7 @@ Биты src/app/components/block/block.component.html - 284 + 334 block.bits @@ -4058,7 +4172,7 @@ Корень Меркла src/app/components/block/block.component.html - 288 + 338 block.merkle-root @@ -4067,7 +4181,7 @@ Сложность src/app/components/block/block.component.html - 299 + 349 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -4083,11 +4197,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 302 + 303 src/app/components/hashrate-chart/hashrate-chart.component.ts - 403 + 404 block.difficulty @@ -4096,7 +4210,7 @@ Нонс src/app/components/block/block.component.html - 303 + 353 block.nonce @@ -4105,16 +4219,34 @@ Заголовок блока в шестнадцатиричном формате src/app/components/block/block.component.html - 307 + 357 block.header + + There is a stale block at this height + На этой высоте есть зависший блок + + src/app/components/block/block.component.html + 372 + + block.stale-block-singular + + + There are stale blocks at this height + На этой высоте есть зависших блоков + + src/app/components/block/block.component.html + 374 + + block.stale-block-plural + Audit Аудит src/app/components/block/block.component.html - 325 + 393 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -4128,7 +4260,7 @@ Подробности src/app/components/block/block.component.html - 332 + 400 src/app/components/transaction/transaction-raw.component.html @@ -4140,19 +4272,19 @@ src/app/components/transaction/transaction.component.html - 79 + 93 src/app/components/transaction/transaction.component.html - 168 + 183 src/app/components/transaction/transaction.component.html - 176 + 191 src/app/components/transaction/transaction.component.html - 301 + 316 src/app/lightning/channel/channel.component.html @@ -4182,7 +4314,7 @@ Ошибка загрузки данных блока. src/app/components/block/block.component.html - 374 + 444 block.error.loading-block-data @@ -4191,7 +4323,7 @@ Почему этот блок пуст? src/app/components/block/block.component.html - 388 + 458 block.empty-block-explanation @@ -4200,7 +4332,7 @@ Плата за ускорение выплачивается вне диапазона src/app/components/block/block.component.html - 420 + 491 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -4217,7 +4349,7 @@ src/app/components/blocks-list/blocks-list.component.ts - 70 + 71 src/app/components/pool-ranking/pool-ranking.component.html @@ -4358,7 +4490,7 @@ Просмотреть самые последние блоки Liquid, а также базовую статистику, такую как высота блока, размер блока и т. д. src/app/components/blocks-list/blocks-list.component.ts - 73 + 74 @@ -4366,7 +4498,7 @@ Просмотреть самые последние Биткоин-блоки , а также базовую статистику, такую как высота блока, вознаграждение за блок, размер блока и многое другое. src/app/components/blocks-list/blocks-list.component.ts - 75 + 76 @@ -4378,7 +4510,7 @@ src/app/shared/components/global-footer/global-footer.component.html - 108 + 109 shared.calculator @@ -4387,7 +4519,7 @@ Скопировано! src/app/components/clipboard/clipboard.component.ts - 15 + 16 @@ -4411,7 +4543,7 @@ src/app/components/fees-box/fees-box.component.html - 47 + 48 fees-box.high-priority @@ -4452,6 +4584,10 @@ src/app/dashboard/dashboard.component.html 282 + + src/app/shared/components/confirmations/confirmations.component.html + 18 + Unconfirmed count dashboard.unconfirmed @@ -4650,7 +4786,7 @@ src/app/components/treasuries/treasuries.component.html - 11 + 18 dashboard.treasury @@ -4681,11 +4817,11 @@ Консолидация src/app/components/custom-dashboard/custom-dashboard.component.ts - 74 + 75 src/app/dashboard/dashboard.component.ts - 79 + 80 src/app/shared/filters.utils.ts @@ -4697,11 +4833,11 @@ Coinjoin src/app/components/custom-dashboard/custom-dashboard.component.ts - 75 + 76 src/app/dashboard/dashboard.component.ts - 80 + 81 src/app/shared/filters.utils.ts @@ -4713,11 +4849,11 @@ Данные src/app/components/custom-dashboard/custom-dashboard.component.ts - 76 + 77 src/app/dashboard/dashboard.component.ts - 81 + 82 src/app/shared/filters.utils.ts @@ -5060,7 +5196,7 @@ src/app/components/fees-box/fees-box.component.html - 41 + 42 fees-box.no-priority @@ -5082,7 +5218,7 @@ src/app/components/fees-box/fees-box.component.html - 45 + 46 fees-box.low-priority @@ -5104,7 +5240,7 @@ src/app/components/fees-box/fees-box.component.html - 46 + 47 fees-box.medium-priority @@ -5204,7 +5340,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 77 + 78 mining.hashrate-difficulty @@ -5230,11 +5366,11 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 73 + 74 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 143 + 144 lightning.nodes-networks @@ -5251,11 +5387,11 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 70 + 71 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 133 + 134 lightning.network-capacity @@ -5268,7 +5404,7 @@ src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 53 + 54 lightning.nodes-per-isp @@ -5285,7 +5421,7 @@ src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 46 + 47 lightning.nodes-per-country @@ -5302,7 +5438,7 @@ src/app/lightning/nodes-map/nodes-map.component.ts - 51 + 52 lightning.lightning.nodes-heatmap @@ -5317,10 +5453,15 @@ src/app/lightning/nodes-channels-map/nodes-channels-map.component.html 20 + + src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts + 74 + lightning.nodes-channels-world-map Hashrate (1w) + Хэшрейт (1 нед) src/app/components/hashrate-chart/hashrate-chart.component.html 8 @@ -5336,11 +5477,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 291 + 292 src/app/components/hashrate-chart/hashrate-chart.component.ts - 391 + 392 src/app/components/pool-ranking/pool-ranking.component.html @@ -5352,11 +5493,11 @@ src/app/components/pool/pool.component.ts - 244 + 245 src/app/components/pool/pool.component.ts - 296 + 297 mining.hashrate @@ -5365,7 +5506,7 @@ Посмотреть хэшрейт и сложность сети Биткоин с течением времени. src/app/components/hashrate-chart/hashrate-chart.component.ts - 78 + 79 @@ -5373,11 +5514,11 @@ Хэшрейт (ср.) src/app/components/hashrate-chart/hashrate-chart.component.ts - 310 + 311 src/app/components/hashrate-chart/hashrate-chart.component.ts - 414 + 415 @@ -5385,7 +5526,7 @@ Историческая доминация пулов src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts - 74 + 75 @@ -5393,7 +5534,7 @@ Оцените визуализацию доминации майнинг-пулов Биткоина с течением времени: просмотрите, как доля ведущих майнинг-пулов в общем хешрейте колебалась со временем. src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts - 75 + 76 @@ -5412,9 +5553,30 @@ 3 + + Audit in progress + Аудит в процессе + + src/app/components/lbtc-pegs-graph/lbtc-pegs-graph.component.html + 5 + + + src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.html + 5 + + + src/app/dashboard/dashboard.component.html + 366 + + liquid.audit-in-progress + Offline Оффлайн + + src/app/components/liquid-master-page/liquid-master-page.component.html + 21 + src/app/components/liquid-master-page/liquid-master-page.component.html 41 @@ -5425,13 +5587,17 @@ src/app/components/master-page/master-page.component.html - 57 + 54 master-page.offline Reconnecting... Переподключение... + + src/app/components/liquid-master-page/liquid-master-page.component.html + 22 + src/app/components/liquid-master-page/liquid-master-page.component.html 42 @@ -5442,7 +5608,7 @@ src/app/components/master-page/master-page.component.html - 58 + 55 master-page.reconnecting @@ -5451,7 +5617,7 @@ Сети 2 уровня src/app/components/liquid-master-page/liquid-master-page.component.html - 56 + 57 master-page.layer2-networks-header @@ -5529,7 +5695,7 @@ src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.ts - 14 + 15 liquid.federation-wallet @@ -5664,7 +5830,7 @@ src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.ts - 66 + 67 src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html @@ -5750,6 +5916,7 @@ Number of times that the Federation's BTC holdings fall below 95% of the total LBTC supply + Количество случаев, когда BTC-резервы Федерации опускались ниже 95% от общего предложения LBTC src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 6 @@ -5797,11 +5964,12 @@ Активы и обязательства src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts - 163 + 165 LBTC in circulation + LBTC в обращении src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 3 @@ -5826,7 +5994,7 @@ Посмотреть статистику для транзакциий в мемпуле: диапазон комиссий, совокупный размер и многое другое. Блоки мемпула обновляются в режиме реального времени по мере поступления в сеть новых транзакций. src/app/components/mempool-block/mempool-block.component.ts - 62 + 61 @@ -5834,7 +6002,7 @@ Стек блоков пула ожидания src/app/components/mempool-block/mempool-block.component.ts - 89 + 88 @@ -5842,7 +6010,7 @@ Блок пула ожидания src/app/components/mempool-block/mempool-block.component.ts - 91 + 90 @@ -5850,11 +6018,11 @@ Счет src/app/components/mempool-graph/mempool-graph.component.ts - 329 + 330 src/app/components/statistics/statistics.component.ts - 49 + 50 @@ -5862,7 +6030,7 @@ Диапазон src/app/components/mempool-graph/mempool-graph.component.ts - 330 + 331 @@ -5870,7 +6038,7 @@ Сумма src/app/components/mempool-graph/mempool-graph.component.ts - 332 + 333 @@ -5922,7 +6090,7 @@ Майнинг-дэшборд src/app/components/mining-dashboard/mining-dashboard.component.ts - 29 + 30 src/app/shared/components/global-footer/global-footer.component.html @@ -5934,11 +6102,12 @@ Получить в режиме реального времени статистику биткоин-майнинга, такую как хэшрейт, корректировка сложности, вознаграждения за блок, доминирование пулов и многое другое. src/app/components/mining-dashboard/mining-dashboard.component.ts - 30 + 31 Mint + Выпуск src/app/components/ord-data/ord-data.component.html 3,5 @@ -5947,6 +6116,7 @@ Premine (% of total supply) + Предварительный выпуск (% от общего предложения) src/app/components/ord-data/ord-data.component.html 11,15 @@ -5955,6 +6125,7 @@ Etching of + Создание руны src/app/components/ord-data/ord-data.component.html 19,21 @@ -5963,6 +6134,7 @@ Transfer + Перевод src/app/components/ord-data/ord-data.component.html 28,29 @@ -5971,6 +6143,7 @@ Source inscription + Исходный Inscription src/app/components/ord-data/ord-data.component.html 44 @@ -5983,6 +6156,7 @@ Error decoding data + Ошибка декодирования данных src/app/components/ord-data/ord-data.component.html 57 @@ -6158,12 +6332,16 @@ mining.all-miners - + Mining Pools - Майнинг-пулы + Майнинг-улы src/app/components/pool-ranking/pool-ranking.component.ts - 59 + 60 + + + src/app/components/search-form/search-results/search-results.component.html + 47 @@ -6171,7 +6349,7 @@ Посмотреть лучшие майнинг-пулы, ранжированные по количеству добытых блоков за желаемый период времени. src/app/components/pool-ranking/pool-ranking.component.ts - 60 + 61 @@ -6179,19 +6357,19 @@ блоков src/app/components/pool-ranking/pool-ranking.component.ts - 170 + 171 src/app/components/pool-ranking/pool-ranking.component.ts - 173 + 174 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 208 src/app/components/pool-ranking/pool-ranking.component.ts - 209 + 210 @@ -6199,35 +6377,35 @@ Другое () src/app/components/pool-ranking/pool-ranking.component.ts - 189 + 190 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 208 src/app/components/pool-ranking/pool-ranking.component.ts - 209 + 210 src/app/components/treasuries/treasuries-pie/treasuries-pie.component.ts - 184 + 183 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 119 + 120 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 136 + 137 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 178 + 179 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 195 + 196 @@ -6269,11 +6447,11 @@ Просмотреть статистику пула : последние добытые блоки, хэшрейт с течением времени, общее вознаграждение за блок на сегодняшний день, известные коинбейс-адреса и многое другое. src/app/components/pool/pool-preview.component.ts - 88 + 89 src/app/components/pool/pool.component.ts - 93 + 94 @@ -6297,35 +6475,35 @@ src/app/components/transactions-list/transactions-list.component.html - 221 + 232 src/app/components/transactions-list/transactions-list.component.html - 243 + 262 src/app/components/transactions-list/transactions-list.component.html - 258 + 277 src/app/components/transactions-list/transactions-list.component.html - 287 + 306 src/app/components/transactions-list/transactions-list.component.html - 406 + 449 src/app/components/transactions-list/transactions-list.component.html - 423 + 466 src/app/components/transactions-list/transactions-list.component.html - 440 + 483 src/app/components/transactions-list/transactions-list.component.html - 458 + 501 src/app/components/wallet/wallet.component.html @@ -6434,6 +6612,7 @@ Clean + Чистый src/app/components/pool/pool.component.html 227 @@ -6442,6 +6621,7 @@ Prevhash + Предыдущий хэш src/app/components/pool/pool.component.html 228 @@ -6450,6 +6630,7 @@ Job Received + Задание получено src/app/components/pool/pool.component.html 229 @@ -6470,7 +6651,7 @@ Недостаточно данных src/app/components/pool/pool.component.ts - 177 + 178 @@ -6478,14 +6659,60 @@ Доминирование пулов src/app/components/pool/pool.component.ts - 255 + 256 src/app/components/pool/pool.component.ts - 307 + 308 mining.pool-dominance + + Bitcoin Price + Цена Bitcoin + + src/app/components/price-chart/price-chart.component.html + 8 + + + src/app/components/price-chart/price-chart.component.html + 24 + + + src/app/components/price-chart/price-chart.component.html + 69 + + price-chart.bitcoin-price + + + % Change + Изменение % + + src/app/components/price-chart/price-chart.component.html + 14 + + + src/app/components/price-chart/price-chart.component.html + 75 + + price-chart.percent-change + + + Bitcoin Price + Цена Bitcoin + + src/app/components/price-chart/price-chart.component.ts + 77 + + + + See the Bitcoin price in USD visualized over time. + Смотрите динамику цены Bitcoin в USD с течением времени. + + src/app/components/price-chart/price-chart.component.ts + 78 + + Broadcast Transaction Транслировать транзакцию @@ -6497,6 +6724,10 @@ src/app/components/push-transaction/push-transaction.component.html 8 + + src/app/components/push-transaction/push-transaction.component.ts + 58 + src/app/shared/components/global-footer/global-footer.component.html 77 @@ -6517,12 +6748,13 @@ src/app/components/transaction/transaction.component.html - 226 + 241 transaction.hex Submit Package + Отправить пакет src/app/components/push-transaction/push-transaction.component.html 14 @@ -6562,6 +6794,7 @@ Maximum burn amount (sats) + Максимальная сумма сжигания (sats) src/app/components/push-transaction/push-transaction.component.html 23 @@ -6594,20 +6827,12 @@ test-tx.rejection-reason - - Broadcast Transaction - Транслировать транзакцию - - src/app/components/push-transaction/push-transaction.component.ts - 57 - - Broadcast a transaction to the network using the transaction's hash. Транслировать транзакцию в сеть , используя хэш транзакции. src/app/components/push-transaction/push-transaction.component.ts - 58 + 59 @@ -6619,7 +6844,7 @@ src/app/components/rbf-list/rbf-list.component.ts - 61 + 62 page.rbf-replacements @@ -6637,7 +6862,7 @@ Просмотреть последние замены RBF в сети Биткоин, обновляемые в режиме реального времени. src/app/components/rbf-list/rbf-list.component.ts - 62 + 63 @@ -6657,31 +6882,31 @@ src/app/components/transaction/transaction.component.html - 147 + 162 src/app/components/transactions-list/transactions-list.component.html - 223 + 234 src/app/components/transactions-list/transactions-list.component.html - 244 + 263 src/app/components/transactions-list/transactions-list.component.html - 259 + 278 src/app/components/transactions-list/transactions-list.component.html - 407 + 450 src/app/components/transactions-list/transactions-list.component.html - 424 + 467 src/app/components/transactions-list/transactions-list.component.html - 441 + 484 show-less @@ -6694,7 +6919,7 @@ src/app/components/transactions-list/transactions-list.component.html - 514 + 567 x-remaining @@ -6854,15 +7079,6 @@ search.bitcoin-addresses - - Mining Pools - Майнинг-улы - - src/app/components/search-form/search-results/search-results.component.html - 47 - - search.mining-pools - Lightning Nodes Lightning-узлы @@ -6910,6 +7126,7 @@ Search by student name or ID... + Поиск по имени или ID студента... src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 28 @@ -6922,6 +7139,7 @@ Student Name + Имя студента src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 35 @@ -6930,6 +7148,7 @@ ID + ID src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 42 @@ -6938,6 +7157,7 @@ Proof + Доказательство src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 48 @@ -6950,6 +7170,7 @@ Verify + Проверить src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 98 @@ -6962,6 +7183,7 @@ Filename + Имя файла src/app/components/simpleproof-widget/simpleproof-widget.component.html 22 @@ -6970,12 +7192,119 @@ Verified + Подтверждено src/app/components/simpleproof-widget/simpleproof-widget.component.html 24 simpleproof.verified + + Recent Stale Chain Tips + Недавние устаревшие вершины + + src/app/components/stale-list/stale-list.component.html + 2 + + page.recent-stale-chain-tips + + + beta + бета + + src/app/components/stale-list/stale-list.component.html + 2 + + beta + + + Headers Only + Только заголовки + + src/app/components/stale-list/stale-list.component.html + 14 + + chain-tips.headers-only + + + Valid Headers + Действительные заголовки + + src/app/components/stale-list/stale-list.component.html + 15 + + chain-tips.valid-headers + + + Valid Fork + Действительное ответвление + + src/app/components/stale-list/stale-list.component.html + 16 + + chain-tips.valid-fork + + + Invalid + Недействительный + + src/app/components/stale-list/stale-list.component.html + 17 + + chain-tips.invalid + + + Depth + Глубина + + src/app/components/stale-list/stale-list.component.html + 20,21 + + chain-tips.depth + + + Stale + Зависший + + src/app/components/stale-list/stale-list.component.html + 26,27 + + chain-tips.stale-block + + + Winning + Победивший + + src/app/components/stale-list/stale-list.component.html + 73,74 + + chain-tips.winning-block + + + This node hasn't seen any stale blocks yet! + Этот узел еще не видел зависших блоков! + + src/app/components/stale-list/stale-list.component.html + 120 + + chain-tips.no-stale-blocks-yet + + + Stale Chain Tips + Устаревшие вершины + + src/app/components/stale-list/stale-list.component.ts + 62 + + + + See the most recent stale chain tips on the Bitcoin network. + Просмотреть недавние устаревшие вершины в Bitcoin . + + src/app/components/stale-list/stale-list.component.ts + 63 + + Mempool by vBytes (sat/vByte) Пул ожидания в vBytes (sat/vByte) @@ -6994,7 +7323,7 @@ src/app/shared/components/global-footer/global-footer.component.html - 106 + 107 footer.clock-mempool @@ -7039,7 +7368,7 @@ Графики src/app/components/statistics/statistics.component.ts - 65 + 66 @@ -7047,11 +7376,12 @@ Просмотреть размер мемпула (MvB) и количество транзакций в секунду (в vB/s), визуализированные с течением времени. src/app/components/statistics/statistics.component.ts - 66 + 67 Stratum Jobs + Stratum-задания src/app/components/stratum/stratum-list/stratum-list.component.html 2 @@ -7060,6 +7390,7 @@ levels remaining + Осталось уровней: src/app/components/taproot-address-scripts/taproot-address-scripts.component.html 19 @@ -7068,6 +7399,7 @@ 1 level remaining + Остался 1 уровень src/app/components/taproot-address-scripts/taproot-address-scripts.component.html 20 @@ -7087,7 +7419,7 @@ src/app/components/test-transactions/test-transactions.component.ts - 35 + 36 Test Transactions shared.test-transactions @@ -7124,7 +7456,7 @@ Эта транзакция была заменена на: src/app/components/tracker/tracker.component.html - 48 + 46 src/app/components/transaction/transaction.component.html @@ -7138,7 +7470,7 @@ Расчетное время src/app/components/tracker/tracker.component.html - 70 + 68 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -7152,7 +7484,7 @@ Не в ближайшее время src/app/components/tracker/tracker.component.html - 75 + 73 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -7166,7 +7498,7 @@ Подтверждена в src/app/components/tracker/tracker.component.html - 89 + 87 transaction.confirmed-at @@ -7175,16 +7507,16 @@ Высота блока src/app/components/tracker/tracker.component.html - 98 + 96 transaction.block-height - - Your transaction has been accelerated - Ваша транзакция была ускорена + + Transaction has been accelerated + Транзакция была ускорена src/app/components/tracker/tracker.component.html - 144 + 143 tracker.explain.accelerated @@ -7193,7 +7525,7 @@ Ожидание появления вашей транзакции в мемпуле src/app/components/tracker/tracker.component.html - 154 + 153 tracker.explain.waiting @@ -7202,7 +7534,7 @@ Ваша транзакция находится в мемпуле, но некоторое время не будет подтверждена. src/app/components/tracker/tracker.component.html - 160 + 159 tracker.explain.pending @@ -7211,7 +7543,7 @@ Ваша транзакция находится на вершине мемпула и, как ожидается, скоро будет подтверждена. src/app/components/tracker/tracker.component.html - 166 + 165 tracker.explain.soon @@ -7220,7 +7552,7 @@ Ожидается, что ваша транзакция будет подтверждена в следующем блоке. src/app/components/tracker/tracker.component.html - 172 + 171 tracker.explain.next-block @@ -7229,7 +7561,7 @@ Ваша транзакция подтверждена! src/app/components/tracker/tracker.component.html - 178 + 177 tracker.explain.confirmed @@ -7238,7 +7570,7 @@ Ваша транзакция заменена на более новую версию! src/app/components/tracker/tracker.component.html - 187 + 186 tracker.explain.replaced @@ -7247,11 +7579,11 @@ Ошибка загрузки данных транзакции. src/app/components/tracker/tracker.component.html - 197 + 196 src/app/components/transaction/transaction.component.html - 357 + 372 transaction.error.loading-transaction-data @@ -7260,7 +7592,7 @@ Посмотреть подробности src/app/components/tracker/tracker.component.html - 206 + 205 accelerator.show-more-details @@ -7269,15 +7601,15 @@ Транзакция: src/app/components/tracker/tracker.component.ts - 409 + 446 src/app/components/transaction/transaction-preview.component.ts - 91 + 92 src/app/components/transaction/transaction.component.ts - 580 + 616 @@ -7285,19 +7617,20 @@ В режиме реального времени оценивайте статус, адреса, комиссии, информацию о скриптах и многое другое для транзакции с txid . src/app/components/tracker/tracker.component.ts - 413 + 450 src/app/components/transaction/transaction-preview.component.ts - 95 + 96 src/app/components/transaction/transaction.component.ts - 584 + 620 Related Transactions + Связанные транзакции src/app/components/transaction/cpfp-info.component.html 3 @@ -7454,6 +7787,7 @@ This transaction cannot be accelerated + Эту транзакцию невозможно ускорить src/app/components/transaction/transaction-details/transaction-details.component.html 173 @@ -7462,6 +7796,7 @@ Preview Transaction + Предпросмотр транзакции src/app/components/transaction/transaction-raw.component.html 5 @@ -7470,6 +7805,10 @@ src/app/components/transaction/transaction-raw.component.html 25 + + src/app/components/transaction/transaction-raw.component.ts + 90 + src/app/shared/components/global-footer/global-footer.component.html 79 @@ -7479,6 +7818,7 @@ Transaction hex or base64 encoded PSBT + Хекс транзакции или PSBT в формате base64 src/app/components/transaction/transaction-raw.component.html 9 @@ -7487,6 +7827,7 @@ Preview + Предпросмотр src/app/components/transaction/transaction-raw.component.html 11 @@ -7496,6 +7837,7 @@ Fetch missing prevouts + Загрузить недостающие prevouts src/app/components/transaction/transaction-raw.component.html 14 @@ -7504,6 +7846,7 @@ Error decoding transaction, reason: + Ошибка декодирования транзакции, причина: src/app/components/transaction/transaction-raw.component.html 16,18 @@ -7512,6 +7855,7 @@ Preview Coinbase + Предпросмотр Coinbase src/app/components/transaction/transaction-raw.component.html 23 @@ -7521,6 +7865,7 @@ This transaction is stored locally in your browser. Broadcast it to add it to the mempool. + Эта транзакция хранится локально в вашем браузере. Транслируйте её, чтобы добавить в мемпул. src/app/components/transaction/transaction-raw.component.html 50,52 @@ -7530,6 +7875,7 @@ Redirecting to transaction page... + Перенаправление на страницу транзакции... src/app/components/transaction/transaction-raw.component.html 53,55 @@ -7539,6 +7885,7 @@ Transaction cannot be broadcasted because it's missing signature(s) + Транзакцию невозможно транслировать, так как отсутствует подпись(и) src/app/components/transaction/transaction-raw.component.html 58 @@ -7547,6 +7894,7 @@ Broadcast + Транслировать src/app/components/transaction/transaction-raw.component.html 60 @@ -7556,6 +7904,7 @@ Broadcasted + Транслировано src/app/components/transaction/transaction-raw.component.html 61 @@ -7572,11 +7921,11 @@ src/app/components/transaction/transaction.component.html - 121 + 136 src/app/components/transaction/transaction.component.html - 241 + 256 Transaction flow transaction.flow @@ -7590,7 +7939,7 @@ src/app/components/transaction/transaction.component.html - 124 + 139 hide-diagram @@ -7603,15 +7952,15 @@ src/app/components/transaction/transaction.component.html - 145 + 160 src/app/components/transactions-list/transactions-list.component.html - 289 + 308 src/app/components/transactions-list/transactions-list.component.html - 460 + 503 show-more @@ -7624,11 +7973,11 @@ src/app/components/transaction/transaction.component.html - 163 + 178 src/app/components/transaction/transaction.component.html - 272 + 287 Transaction inputs and outputs transaction.inputs-and-outputs @@ -7642,7 +7991,7 @@ src/app/components/transaction/transaction.component.html - 167 + 182 show-diagram @@ -7655,7 +8004,7 @@ src/app/components/transaction/transaction.component.html - 192 + 207 Transaction Adjusted VSize transaction.adjusted-vsize @@ -7669,7 +8018,7 @@ src/app/components/transaction/transaction.component.html - 214 + 229 transaction.locktime @@ -7682,39 +8031,45 @@ src/app/components/transaction/transaction.component.html - 218 + 233 Transaction Sigops transaction.sigops - - Loading - - src/app/components/transaction/transaction-raw.component.html - 228,230 - - transaction.error.loading-prevouts - - - Preview Transaction - - src/app/components/transaction/transaction-raw.component.ts - 89 - - Preview a transaction to the Bitcoin network using the transaction's raw hex data. + Предпросмотр транзакции в сети Bitcoin с использованием необработанных хекс-данных транзакции. src/app/components/transaction/transaction-raw.component.ts - 90 + 91 + + This transaction ID appears twice in the blockchain as the coinbase of blocks and , due to a bug later mitigated by BIP-30. + Этот идентификатор транзакции встречается дважды в блокчейне как coinbase блоков и из-за ошибки, которая позднее была устранена с помощью BIP-30. + + src/app/components/transaction/transaction.component.html + 40,42 + + Duplicate transaction notice + transaction.duplicate.notice + + + Read more + Подробнее + + src/app/components/transaction/transaction.component.html + 44 + + Duplicate transaction read more + transaction.duplicate.read-more + Hide accelerator Скрыть акселератор src/app/components/transaction/transaction.component.html - 78 + 92 accelerator.hide @@ -7723,7 +8078,7 @@ Хронология RBF src/app/components/transaction/transaction.component.html - 103 + 118 RBF Timeline transaction.rbf-history @@ -7733,7 +8088,7 @@ Хронология ускорения src/app/components/transaction/transaction.component.html - 112 + 127 Acceleration Timeline transaction.acceleration-timeline @@ -7743,7 +8098,7 @@ Транзакция не найдена. src/app/components/transaction/transaction.component.html - 350 + 365 transaction.error.transaction-not-found @@ -7752,12 +8107,13 @@ Ожидаем ее появления в пуле ожидания... src/app/components/transaction/transaction.component.html - 351 + 366 transaction.error.waiting-for-it-to-appear Warning! This transaction involves deceptively similar addresses. It may be an address poisoning attack. + Внимание! Эта транзакция содержит обманчиво похожие адреса. Возможно, это атака с подменой адреса. src/app/components/transactions-list/transactions-list.component.html 21 @@ -7784,6 +8140,7 @@ Inscription + Inscription src/app/components/transactions-list/transactions-list.component.html 123 @@ -7824,15 +8181,25 @@ Скрипт оплаты P2SH src/app/components/transactions-list/transactions-list.component.html - 232 + 243 transactions-list.p2sh-redeem-script - - P2TR Simplicity script + + P2TR control block + Контрольный блок P2TR src/app/components/transactions-list/transactions-list.component.html - 237 + 248 + + transactions-list.p2tr-control-block + + + P2TR Simplicity script + Скрипт P2TR Simplicity + + src/app/components/transactions-list/transactions-list.component.html + 256 transactions-list.p2tr-simplicity-script @@ -7841,7 +8208,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 249 + 268 transactions-list.p2tr-tapscript @@ -7850,7 +8217,7 @@ Скрипт свидетеля P2WSH src/app/components/transactions-list/transactions-list.component.html - 251 + 270 transactions-list.p2wsh-witness-script @@ -7859,7 +8226,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 266 + 285 transactions-list.nsequence @@ -7868,7 +8235,7 @@ Скрипт предыдущего вывода src/app/components/transactions-list/transactions-list.component.html - 271 + 290 transactions-list.previous-output-script @@ -7877,7 +8244,7 @@ Предыдущий тип выхода src/app/components/transactions-list/transactions-list.component.html - 275 + 294 transactions-list.previous-output-type @@ -7886,7 +8253,7 @@ Peg-out в src/app/components/transactions-list/transactions-list.component.html - 326,327 + 345,346 transactions-list.peg-out-to @@ -7895,7 +8262,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 400 + 443 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -7905,7 +8272,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 413 + 456 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -7915,42 +8282,154 @@ Показать больше входов, чтобы узнать данные о комиссиях src/app/components/transactions-list/transactions-list.component.html - 477 + 520 transactions-list.load-to-reveal-fee-info + + leaf version + версия листа + + src/app/components/transactions-list/transactions-list.component.html + 583 + + transactions-list.taproot.leaf-version + + + parity + паритет + + src/app/components/transactions-list/transactions-list.component.html + 587 + + transactions-list.taproot.parity + + + key path + путь ключа + + src/app/components/transactions-list/transactions-list.component.html + 592 + + transactions-list.taproot.keypath + + + script depth + глубина скрипта + + src/app/components/transactions-list/transactions-list.component.html + 597 + + transactions-list.taproot.script-depth + + + Bitcoin Supply + Эмиссия Bitcoin + + src/app/components/treasuries/supply/treasuries-supply.component.html + 1 + + treasuries.bitcoin-supply + + + in treasuries + в казначействах + + src/app/components/treasuries/supply/treasuries-supply.component.html + 35 + + treasuries.held-in-treasuries + + + of total supply + от общего предложения + + src/app/components/treasuries/supply/treasuries-supply.component.html + 42 + + treasuries.percent-of-total-supply + + + yet to be mined + ещё не добыто + + src/app/components/treasuries/supply/treasuries-supply.component.html + 48 + + treasuries.yet-to-be-mined + Treasury Leaderboard + Рейтинг казначейств src/app/components/treasuries/treasuries.component.html - 7 + 14 dashboard.treasury-leaderboard BTC Balance + Баланс BTC src/app/components/treasuries/treasuries.component.html - 12 + 19 dashboard.treasury-leaderboard.balance USD Value + Стоимость в USD src/app/components/treasuries/treasuries.component.html - 13 + 20 dashboard.treasury-leaderboard.value Treasury Distribution + Распределение казначейств src/app/components/treasuries/treasuries.component.html - 43 + 50 dashboard.treasury-distribution + + Verified Treasuries + Верифицированные казначейства + + src/app/components/treasuries/verify/treasuries-verify.component.html + 1 + + treasuries.verified-treasuries + + + verified addresses + верифицированные адреса + + src/app/components/treasuries/verify/treasuries-verify.component.html + 35 + + treasuries.held-in-treasuries + + + verified of total + верифицировано от общего + + src/app/components/treasuries/verify/treasuries-verify.component.html + 42 + + treasuries.percent-of-total-verify + + + verified holdings + верифицированные активы + + src/app/components/treasuries/verify/treasuries-verify.component.html + 48 + + treasuries.yet-to-be-mined + other inputs другие входы @@ -8183,6 +8662,7 @@ Wallet + Кошелёк src/app/components/wallet/wallet-preview.component.html 3 @@ -8191,6 +8671,7 @@ Balance (BTC) + Баланс (BTC) src/app/components/wallet/wallet-preview.component.html 17 @@ -8199,6 +8680,7 @@ Balance (USD) + Баланс (USD) src/app/components/wallet/wallet-preview.component.html 20 @@ -8207,17 +8689,7 @@ Wallet: - - src/app/components/wallet/wallet-preview.component.ts - 149 - - - src/app/components/wallet/wallet.component.ts - 69 - - - - See mempool transactions, confirmed transactions, balance, and more for wallet . + Кошелёк: src/app/components/wallet/wallet-preview.component.ts 150 @@ -8227,8 +8699,21 @@ 70 + + See mempool transactions, confirmed transactions, balance, and more for wallet . + Просматривайте транзакции в мемпуле, подтвержденные транзакции, баланс и многого другого для кошелька . + + src/app/components/wallet/wallet-preview.component.ts + 151 + + + src/app/components/wallet/wallet.component.ts + 71 + + Error loading wallet data. + Ошибка загрузки данных кошелька. src/app/components/wallet/wallet.component.html 139 @@ -8267,6 +8752,7 @@ LBTC Supply Against BTC Holdings + Предложение LBTC против BTC-резервов src/app/dashboard/dashboard.component.html 184 @@ -8277,23 +8763,6 @@ dashboard.lbtc-supply-against-btc-holdings - - Indexing in progress - Выполняется индексирование - - src/app/dashboard/dashboard.component.html - 364 - - - src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html - 102 - - - src/app/lightning/statistics-chart/lightning-statistics-chart.component.html - 52 - - lightning.indexing-in-progress - mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, wallet issues, etc.For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc). mempool.space просто предоставляет данные о сети Биткоин. Сервис не может помочь вам с получением средств, проблемами с кошельком и т.д.По любым подобным запросам вам необходимо связаться с сервисом, который помог совершить транзакцию (программное обеспечение кошелька, биржа и т.д.). @@ -8332,6 +8801,10 @@ src/app/docs/api-docs/api-docs.component.html 137 + + src/app/docs/api-docs/api-docs.component.html + 203 + src/app/lightning/group/group.component.html 17 @@ -8390,7 +8863,7 @@ ЧаВО src/app/docs/docs/docs.component.ts - 46 + 47 @@ -8398,7 +8871,7 @@ Получите ответы на распространенные вопросы, например: Что такое мемпул? Почему моя транзакция не подтверждается? Как я могу запустить свой собственную версию проекта Mempool с открытым исходным кодом? И многое другое. src/app/docs/docs/docs.component.ts - 47 + 48 @@ -8406,7 +8879,7 @@ REST API src/app/docs/docs/docs.component.ts - 51 + 52 @@ -8414,7 +8887,7 @@ Документация для REST API Liquid.network: получите информацию об адресах, транзакциях, активах, блоках и многом другом. src/app/docs/docs/docs.component.ts - 53 + 54 @@ -8422,7 +8895,7 @@ Документация для REST API mempool.space: получите информацию об адресах, транзакциях, блоках, комиссиях, майнинге, сети Лайтнинг и многом другом. src/app/docs/docs/docs.component.ts - 55 + 56 @@ -8430,7 +8903,7 @@ WebSocket API src/app/docs/docs/docs.component.ts - 59 + 60 @@ -8438,7 +8911,7 @@ Документация для Liquid.network WebSocket API: получайте в режиме реального времени информацию о блоках, мемпуле, транзакциях, адресах и многом другом. src/app/docs/docs/docs.component.ts - 61 + 62 @@ -8446,7 +8919,7 @@ Документация для WebSocket API mempool.space: получайте в режиме реального времени информацию о блоках, мемпулах, транзакциях, адресах и многом другом. src/app/docs/docs/docs.component.ts - 63 + 64 @@ -8454,7 +8927,7 @@ Electrum RPC src/app/docs/docs/docs.component.ts - 67 + 68 @@ -8462,7 +8935,7 @@ Документация для нашего интерфейса Electrum RPC: получите мгновенный, удобный и надежный доступ к версии Esplora. src/app/docs/docs/docs.component.ts - 68 + 69 @@ -8575,11 +9048,11 @@ src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 313 + 314 src/app/lightning/nodes-map/nodes-map.component.ts - 213 + 214 lightning.x-channels @@ -8705,11 +9178,11 @@ src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 159 + 160 src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 229 + 230 src/app/lightning/node-statistics/node-statistics.component.html @@ -8745,11 +9218,11 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 213 + 214 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 293 + 294 lightning.capacity @@ -8779,11 +9252,11 @@ Обзор Лайтнинг-канала . Узнайте о пропускной способности канала, задействованных Лайтнинг-узлах, связанных ончейн-транзакциях и многом другом. src/app/lightning/channel/channel-preview.component.ts - 39 + 40 src/app/lightning/channel/channel.component.ts - 38 + 39 @@ -8885,7 +9358,7 @@ Канал: src/app/lightning/channel/channel.component.ts - 37 + 38 @@ -8893,7 +9366,7 @@ Взаимно закрытые src/app/lightning/channel/closing-type/closing-type.component.ts - 20 + 21 @@ -8901,7 +9374,7 @@ Принудительно закрытые src/app/lightning/channel/closing-type/closing-type.component.ts - 24 + 25 @@ -8909,7 +9382,7 @@ Принудительное закрытые со штрафом src/app/lightning/channel/closing-type/closing-type.component.ts - 28 + 29 @@ -9200,11 +9673,11 @@ src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 151 + 152 src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 206 + 207 src/app/lightning/node-statistics/node-statistics.component.html @@ -9252,11 +9725,11 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 205 + 206 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 270 + 271 lightning.channels @@ -9373,7 +9846,7 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 34 + 35 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -9394,7 +9867,7 @@ src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.ts - 38 + 39 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -9407,7 +9880,7 @@ Lightning-обозреватель src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts - 33 + 34 src/app/shared/components/global-footer/global-footer.component.html @@ -9419,7 +9892,7 @@ Получить статистику по сети Лайтнинг (совокупная емкость, соединение и т. д.), Лайтнинг-узлам (каналы, ликвидность и т. д.) и Лайтнинг-каналам (статус, комиссии и т.д.). src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts - 34 + 35 @@ -9436,11 +9909,11 @@ Исходящие комиссии src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 179 + 180 src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 217 + 218 @@ -9448,11 +9921,11 @@ Входящие комиссии src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 187 + 188 src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 231 + 232 @@ -9529,11 +10002,11 @@ Обзор узла сети Лайтнинг под названием . Просматривайте каналы, пропускную способность, местоположение, статистику комиссий и многое другое. src/app/lightning/node/node-preview.component.ts - 54 + 55 src/app/lightning/node/node.component.ts - 64 + 65 @@ -9692,7 +10165,7 @@ Узел: src/app/lightning/node/node.component.ts - 63 + 64 @@ -9716,20 +10189,12 @@ lightning.tor-nodes-excluded - - Lightning Nodes Channels World Map - Мировая карта узлов Lightning - - src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 73 - - See the channels of non-Tor Lightning network nodes visualized on a world map. Hover/tap on points on the map for node names and details. Просмотреть каналы Лайтнинг-узлов, не использующих Tor, на карте мира. Наведите указатель мыши на точки на карте, чтобы просмотреть названия узлов и подробную информацию. src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 74 + 75 @@ -9737,7 +10202,7 @@ Данные геолокации недоступны src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 245 + 246 @@ -9754,7 +10219,7 @@ Просмомтреть каналы Лайтнинг-узлов, не использующих Tor, на карте мира. Наведите указатель мыши на точки на карте, чтобы просмотреть названия узлов и подробную информацию. src/app/lightning/nodes-map/nodes-map.component.ts - 52 + 53 @@ -9762,19 +10227,27 @@ Посмотреть количество узлов сети Лайтнинг, визуализируемых с течением времени по сети: только Clearnet (IPv4, IPv6), Darknet (Tor, I2p, cjdns) и обе сети. src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 74 + 75 - + Indexing in progress Выполняется индексирование src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 133 + 134 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html + 102 + + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.html + 52 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 123 + 124 @@ -9782,11 +10255,11 @@ Clearnet и Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 176 + 177 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 315 + 316 @@ -9794,11 +10267,11 @@ Только Clearnet (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 197 + 198 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 307 + 308 @@ -9806,11 +10279,11 @@ Только Darknet (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 218 + 219 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 299 + 300 @@ -9831,7 +10304,7 @@ Посмотреть географическую разбивку сети Лайтнинг: сколько Лайтнинг-узлов размещено в странах по всему миру, совокупную емкость BTC для каждой страны и многое другое. src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 47 + 48 @@ -9839,19 +10312,19 @@ узлов src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104 + 105 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 137 + 138 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 163 + 164 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 196 + 197 @@ -9859,7 +10332,7 @@ Емкость BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 105 + 106 @@ -9894,7 +10367,7 @@ Lightning-узлы в src/app/lightning/nodes-per-country/nodes-per-country.component.ts - 43 + 44 @@ -9902,7 +10375,7 @@ Изучите все Лайтнинг-узлы, размещенные в , и ознакомьтесь с объемом каждого узла, количеством открытых каналов и т. д. src/app/lightning/nodes-per-country/nodes-per-country.component.ts - 44 + 45 @@ -9985,7 +10458,7 @@ Просмотрите 100 лучших интернет-провайдеров, размещающих узлы Lightning, а также такую статистику, как общее количество узлов на каждого интернет-провайдера, совокупную ёмкость BTC на каждого интернет-провайдера и многое другое. src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 54 + 55 @@ -9993,11 +10466,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 164 + 165 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 197 + 198 @@ -10036,11 +10509,11 @@ Lightning-узлов у провайдера: [AS ] src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts - 46 + 47 src/app/lightning/nodes-per-isp/nodes-per-isp.component.ts - 46 + 47 @@ -10048,11 +10521,11 @@ Просмотреть все Лайтнинг-узлы с помощью интернет-провайдера и совокупную статистику, такую как общее количество узлов, общая ёмкость, и многое другое для интернет-провайдера. src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts - 47 + 48 src/app/lightning/nodes-per-isp/nodes-per-isp.component.ts - 47 + 48 @@ -10096,7 +10569,7 @@ Самые старые узлы Lightning src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts - 27 + 28 @@ -10104,7 +10577,7 @@ Просмотреть самые старые узлы в сети Лайтнинг, а также их пропускную способность, количество каналов, местоположение и т. д. src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts - 28 + 29 @@ -10112,7 +10585,7 @@ Просмотреть Лайтнинг-узлы с наибольшей ликвидностью BTC, а также базовую статистику, такую как количество открытых каналов, местоположение, возраст узла и многое другое. src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 35 + 36 @@ -10120,7 +10593,7 @@ Просмотреть Лайтнинг-узлы с наибольшим количеством открытых каналов, а также базовую статистику, такую как общая емкость узла, возраст узла и т. д. src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.ts - 39 + 40 @@ -10137,7 +10610,7 @@ Топ lightning узлов src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts - 22 + 23 @@ -10145,7 +10618,7 @@ Просмотреть лучшие Лайтнинг-узлы, ранжированные по ликвидности, качеству соединения и возрасту. src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts - 23 + 24 @@ -10153,7 +10626,7 @@ Просмотреть емкость сети Лайтнинг, визуализированную с течением времени с точки зрения количества открытых каналов и общей емкости. src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 71 + 72 @@ -10482,6 +10955,7 @@ This address is deceptively similar to another output. It may be part of an address poisoning attack. + Этот адрес обманчиво похож на другой выход. Возможно, это часть атаки подмены адресов. src/app/shared/components/address-text/address-text.component.html 9 @@ -10524,14 +10998,6 @@ address.bare-multisig - - unknown - - src/app/shared/components/address-type/address-type.component.html - 27 - - unknown - confirmation подтверждение @@ -10562,16 +11028,6 @@ Transaction replaced state transaction.replaced - - Unconfirmed - Неподтвержденные - - src/app/shared/components/confirmations/confirmations.component.html - 18 - - Transaction unconfirmed state - transaction.unconfirmed - sat/WU sat/WU @@ -10744,12 +11200,21 @@ footer.signet-explorer + + Regtest Explorer + Обозреватель Regtest + + src/app/shared/components/global-footer/global-footer.component.html + 100 + + footer.regtest-explorer + Liquid Testnet Explorer Обозреватель тестовой сети Liquid src/app/shared/components/global-footer/global-footer.component.html - 100 + 101 footer.liquid-testnet-explorer @@ -10758,7 +11223,7 @@ Обозреватель сети Liquid src/app/shared/components/global-footer/global-footer.component.html - 101 + 102 footer.liquid-explorer @@ -10767,7 +11232,7 @@ Инструменты src/app/shared/components/global-footer/global-footer.component.html - 105 + 106 footer.tools @@ -10776,7 +11241,7 @@ Часы (Добыто) src/app/shared/components/global-footer/global-footer.component.html - 107 + 108 footer.clock-mined @@ -10785,7 +11250,7 @@ Юридический раздел src/app/shared/components/global-footer/global-footer.component.html - 112 + 113 footer.legal @@ -10794,7 +11259,7 @@ Условия использования src/app/shared/components/global-footer/global-footer.component.html - 113 + 114 Terms of Service shared.terms-of-service @@ -10804,7 +11269,7 @@ Политика конфиденциальности src/app/shared/components/global-footer/global-footer.component.html - 114 + 115 Privacy Policy shared.privacy-policy @@ -10814,7 +11279,7 @@ Политика товарного знака src/app/shared/components/global-footer/global-footer.component.html - 115 + 116 Trademark Policy shared.trademark-policy @@ -10824,13 +11289,14 @@ Сторонние лицензии src/app/shared/components/global-footer/global-footer.component.html - 116 + 117 Third-party Licenses shared.trademark-policy Your balance is too low.Please top up your account. + Ваш баланс слишком низкий.Пожалуйста, пополните ваш счёт. src/app/shared/components/mempool-error/mempool-error.component.html 9 @@ -11012,7 +11478,7 @@ Комиссия за транзакцию src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts - 11 + 12 @@ -11020,7 +11486,7 @@ Мультиподпись из src/app/shared/script.utils.ts - 172 + 173 From bd6593e009fa5243feba1da458d791533abfd31e Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 17:12:03 +0000 Subject: [PATCH 06/12] Translate frontend/src/locale/messages.xlf in fr 100% reviewed source file: 'frontend/src/locale/messages.xlf' on 'fr'. --- frontend/src/locale/messages.fr.xlf | 1821 +++++++++++++++++---------- 1 file changed, 1142 insertions(+), 679 deletions(-) diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index 8fbd882b0..63eb41a58 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -5,8 +5,57 @@ Close Fermer - node_modules/src/ngb-config.ts - 13 + node_modules/src/alert/alert.ts + 50 + + + + Slide of + Diapositive sur sélectionnée + + node_modules/src/carousel/carousel.ts + 131,135 + + Currently selected slide number read by screen reader + + + Previous + Précédent + + node_modules/src/carousel/carousel.ts + 148 + + + + Next + Suivant + + node_modules/src/carousel/carousel.ts + 172,173 + + + + Previous month + Mois précédent + + node_modules/src/datepicker/datepicker-navigation.ts + 83,85 + + + node_modules/src/datepicker/datepicker-navigation.ts + 104,105 + + + + Next month + Mois suivant + + node_modules/src/datepicker/datepicker-navigation.ts + 112 + + + node_modules/src/datepicker/datepicker-navigation.ts + 112 @@ -45,35 +94,6 @@ 13 - - Previous month - Mois précédent - - node_modules/src/ngb-config.ts - 13 - - - node_modules/src/ngb-config.ts - 13 - - - - - - - node_modules/src/ngb-config.ts - 13 - - - - Slide of - Diapositive de - - node_modules/src/ngb-config.ts - 13 - - Currently selected slide number read by screen reader - Hours Heures @@ -90,14 +110,6 @@ 13 - - Previous - Précédent - - node_modules/src/ngb-config.ts - 13 - - MM MM @@ -126,26 +138,6 @@ 13 - - Next month - Mois suivant - - node_modules/src/ngb-config.ts - 13 - - - node_modules/src/ngb-config.ts - 13 - - - - Next - Suivant - - node_modules/src/ngb-config.ts - 13 - - Minutes Minutes @@ -266,6 +258,14 @@ 13 + + + + + node_modules/src/progressbar/progressbar.ts + 41,42 + + Become a Community Sponsor Devenez un sponsor communautaire @@ -303,6 +303,7 @@ Be your own explorer + Soyez votre propre explorateur src/app/components/about/about.component.html 15 @@ -335,7 +336,7 @@ Sponsors Whale src/app/components/about/about.component.html - 228 + 225 about.sponsors.withHeart @@ -344,7 +345,7 @@ Sponsors Chad src/app/components/about/about.component.html - 241 + 238 about.sponsors.withHeart @@ -353,7 +354,7 @@ Sponsors OG ❤️ src/app/components/about/about.component.html - 254 + 251 about.sponsors.withHeart @@ -362,7 +363,7 @@ Intégrations communautaires src/app/components/about/about.component.html - 265 + 262 about.community-integrations @@ -371,7 +372,7 @@ Alliances communautaires src/app/components/about/about.component.html - 379 + 376 about.alliances @@ -380,7 +381,7 @@ Traducteurs src/app/components/about/about.component.html - 395 + 392 about.translators @@ -389,7 +390,7 @@ Contributeurs au projet src/app/components/about/about.component.html - 409 + 406 about.contributors @@ -398,25 +399,34 @@ Membres du projet src/app/components/about/about.component.html - 421 + 418 about.project_members - - Project Maintainers - Mainteneurs de projet + + Powered By + Propulsé par src/app/components/about/about.component.html - 434 + 431 - about.maintainers + about.powered-by + + + Managed By + Géré par + + src/app/components/about/about.component.html + 439 + + about.managed-by About A propos src/app/components/about/about.component.ts - 49 + 50 @@ -424,7 +434,7 @@ Apprenez-en davantage à propos de The Mempool Open Source Project® : sponsors d'entreprise, sponsors individuels, intégrations, qui contribue, licences FOSS, et bien plus encore. src/app/components/about/about.component.ts - 50 + 51 @@ -454,7 +464,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 602 + 594 close @@ -501,7 +511,7 @@ src/app/components/transaction/transaction.component.html - 188 + 203 Transaction Virtual Size transaction.vsize @@ -577,7 +587,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 612 + 604 src/app/components/accelerate-checkout/accelerate-fee-graph.component.html @@ -637,7 +647,7 @@ src/app/components/transactions-list/transactions-list.component.html - 475 + 518 src/app/lightning/channels-list/channels-list.component.html @@ -789,6 +799,7 @@ Mempool Accelerator® fees + Frais Mempool Accelerator® src/app/components/accelerate-checkout/accelerate-checkout.component.html 161 @@ -893,7 +904,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 610 + 602 accelerator.confirmation-expected @@ -926,6 +937,7 @@ Payment to mempool.space for acceleration of txid .. + Paiement à mempool.space pour l'accélération de la txid .. src/app/components/accelerate-checkout/accelerate-checkout.component.html 370,371 @@ -962,7 +974,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 641 + 633 Pay button label transaction.pay @@ -987,6 +999,7 @@ OR + OU src/app/components/accelerate-checkout/accelerate-checkout.component.html 405 @@ -1074,53 +1087,38 @@ accelerator.confirming-acceleration-with-miners - - Your transaction is being accelerated! - Votre transaction est accélérée ! + + Transaction is being accelerated! + La transaction est en cours d'accélération ! src/app/components/accelerate-checkout/accelerate-checkout.component.html - 576 + 575 accelerator.success-message - - Transaction is already being accelerated! + + Transaction has been accepted for acceleration by our mining pool partners. + La transaction a été acceptée pour accélération par nos pools de minage partenaires. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 578 - - accelerator.success-message-third-party - - - Your transaction has been accepted for acceleration by our mining pool partners. - Votre transaction a été acceptée par nos pools de minage partenaires pour être accélérée. - - src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 582 accelerator.confirmed-acceleration-with-miners - - Transaction has already been accepted for acceleration by our mining pool partners. - - src/app/components/accelerate-checkout/accelerate-checkout.component.html - 589 - - accelerator.confirmed-acceleration-with-miners-third-party - Get a receipt. + Obtenir un reçu. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 594 + 586 src/app/components/tracker/tracker.component.html - 146 + 145 src/app/components/tracker/tracker.component.html - 180 + 179 accelerator.receipt-label @@ -1129,7 +1127,7 @@ Calcul du coût... src/app/components/accelerate-checkout/accelerate-checkout.component.html - 614 + 606 accelerator.calculating-cost @@ -1138,7 +1136,7 @@ personnaliser src/app/components/accelerate-checkout/accelerate-checkout.component.html - 620 + 612 accelerator.customize @@ -1147,7 +1145,7 @@ Accélérer à ~ sat/vB src/app/components/accelerate-checkout/accelerate-checkout.component.html - 623 + 615 accelerator.accelerate-to-x @@ -1156,12 +1154,16 @@ Accélérer src/app/components/accelerate-checkout/accelerate-checkout.component.html - 629 + 621 src/app/components/transaction/transaction-details/transaction-details.component.html 172 + + src/app/components/transactions-list/transactions-list.component.html + 529 + Accelerate button label transaction.accelerate @@ -1170,7 +1172,7 @@ Votre transaction sera priorisée par % des mineurs au plus. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 651 + 643 accelerator.hashrate-percentage-description @@ -1179,11 +1181,11 @@ Bloc suivant src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 81 + 82 src/app/components/block/block.component.html - 12 + 16 src/app/components/difficulty/difficulty-tooltip.component.html @@ -1191,7 +1193,7 @@ src/app/components/mempool-block/mempool-block.component.ts - 87 + 86 src/app/components/pool/pool.component.html @@ -1207,15 +1209,47 @@ maximum src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 91 + 92 - - accelerated - accéléré + + Accelerated + Accéléré src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 91 + 92 + + + src/app/components/acceleration-timeline/acceleration-timeline-tooltip.component.html + 16 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 92 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 96 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 89 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 99 + + + src/app/components/transaction/transaction-details/transaction-details.component.html + 201 + + + src/app/components/transactions-list/transactions-list.component.html + 527 + + + src/app/shared/filters.utils.ts + 100 @@ -1277,7 +1311,7 @@ src/app/components/tracker/tracker.component.html - 59 + 57 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -1314,39 +1348,6 @@ Transaction first seen transaction.first-seen - - Accelerated - Accéléré - - src/app/components/acceleration-timeline/acceleration-timeline-tooltip.component.html - 16 - - - src/app/components/acceleration-timeline/acceleration-timeline.component.html - 92 - - - src/app/components/acceleration-timeline/acceleration-timeline.component.html - 96 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 89 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 97 - - - src/app/components/transaction/transaction-details/transaction-details.component.html - 201 - - - src/app/shared/filters.utils.ts - 100 - - transaction.audit.accelerated - Mined Miné @@ -1519,6 +1520,7 @@ Canceled + Annulé src/app/components/acceleration-timeline/acceleration-timeline.component.html 32 @@ -1538,7 +1540,7 @@ src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts - 79 + 77 src/app/components/graphs/graphs.component.html @@ -1551,27 +1553,7 @@ Aucune transaction accélérée pour cette période src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts - 135 - - - - At block: - Au bloc : - - src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts - 179 - - - src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts - 255 - - - src/app/components/block-health-graph/block-health-graph.component.ts - 143 - - - src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 168 + 138 @@ -1579,19 +1561,19 @@ Autour du bloc : src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts - 181 + 192 src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts - 257 + 258 src/app/components/block-health-graph/block-health-graph.component.ts - 145 + 146 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 170 + 171 @@ -1635,10 +1617,6 @@ src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 39 - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 82 - accelerator.total-boost @@ -1718,7 +1696,7 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.ts - 62 + 63 src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html @@ -1816,7 +1794,7 @@ src/app/components/block/block.component.html - 9 + 10 shared.block-title @@ -1850,7 +1828,7 @@ src/app/components/address/address.component.html - 280 + 294 src/app/components/tracker/tracker-bar.component.html @@ -1903,7 +1881,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 103 accelerator.pending-accelerations @@ -1925,24 +1903,24 @@ mining.1-day - - (1 week) - (1 semaine) - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 - - mining.1-week - (1 month) (1 mois) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 33 + 30 mining.1-month + + (1 year) + (1 an) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 33 + + mining.1-year + (all time) (tout le temps) @@ -1961,16 +1939,25 @@ src/app/components/address/address.component.html - 98 + 111 all + + Historical Trend + Tendance historique + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 82 + + acceleration.historical-trend + View more » Voir plus » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 91 + 93 src/app/components/custom-dashboard/custom-dashboard.component.html @@ -1984,6 +1971,10 @@ src/app/components/mining-dashboard/mining-dashboard.component.html 46 + + src/app/components/treasuries/treasuries.component.html + 92 + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 42 @@ -1999,7 +1990,7 @@ Accélérations récentes src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 113 + 115 dashboard.recent-accelerations @@ -2035,7 +2026,7 @@ pas en train d'accélérer src/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts - 99 + 100 @@ -2074,27 +2065,27 @@ Solde src/app/components/address-graph/address-graph.component.ts - 61 + 62 src/app/components/address-graph/address-graph.component.ts - 202 + 191 src/app/components/address-graph/address-graph.component.ts - 229 + 216 src/app/components/address-graph/address-graph.component.ts - 310 + 297 src/app/components/address-graph/address-graph.component.ts - 382 + 369 src/app/components/address-graph/address-graph.component.ts - 457 + 444 src/app/components/address/address-preview.component.html @@ -2207,7 +2198,7 @@ src/app/components/address/address.component.html - 311 + 328 address.unconfidential @@ -2220,7 +2211,7 @@ src/app/components/address/address.component.html - 295 + 309 src/app/components/wallet/wallet.component.html @@ -2246,15 +2237,23 @@ src/app/components/block/block.component.html - 406 + 477 src/app/components/block/block.component.html - 438 + 509 src/app/components/block/block.component.html - 462 + 547 + + + src/app/components/block/block.component.html + 586 + + + src/app/components/block/block.component.html + 612 src/app/components/blocks-list/blocks-list.component.html @@ -2292,7 +2291,7 @@ src/app/components/address/address.component.html - 256 + 270 src/app/components/amount/amount.component.html @@ -2316,7 +2315,7 @@ src/app/components/transactions-list/transactions-list.component.html - 484 + 537 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2333,11 +2332,11 @@ Adresse: src/app/components/address/address-preview.component.ts - 73 + 74 src/app/components/address/address.component.ts - 173 + 204 @@ -2345,15 +2344,16 @@ Consultez les transactions dans le mempool, les transactions confirmées, le solde, et plus pour l'adresse . src/app/components/address/address-preview.component.ts - 74 + 75 src/app/components/address/address.component.ts - 174 + 205 Taproot Tree + Arbre Taproot src/app/components/address/address.component.html 79 @@ -2365,7 +2365,7 @@ Historique du solde src/app/components/address/address.component.html - 93 + 106 src/app/components/custom-dashboard/custom-dashboard.component.html @@ -2377,7 +2377,7 @@ src/app/components/treasuries/treasuries.component.html - 63 + 68 src/app/components/wallet/wallet.component.html @@ -2390,15 +2390,16 @@ récent src/app/components/address/address.component.html - 101 + 114 recent Unspent Outputs + Sorties non dépensées src/app/components/address/address.component.html - 114 + 127 address.unspent-outputs @@ -2407,7 +2408,7 @@ de transaction src/app/components/address/address.component.html - 129 + 142 X of X Address Transaction @@ -2416,7 +2417,7 @@ des transactions src/app/components/address/address.component.html - 130 + 143 X of X Address Transactions (Plural) @@ -2425,20 +2426,16 @@ Erreur lors du chargement des données de l'adresse src/app/components/address/address.component.html - 229 - - - src/app/components/address/address.component.html - 246 + 241 address.error.loading-address-data - - There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: - Il y a trop de transactions sur cette adresse, plus que ce que votre backend peut gérer. En savoir plus sur la configuration d'un backend plus puissant. Vous pouvez aussi consulter cette adresse sur le site officiel Mempool : + + There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + Il y a trop de transactions sur cette adresse, plus que votre backend ne peut gérer. Voir plus d'infos sur la configuration d'un backend plus puissant. Envisagez plutôt de consulter cette adresse sur le site officiel de Mempool : src/app/components/address/address.component.html - 232,235 + 247,251 Electrum server limit exceeded error @@ -2447,7 +2444,7 @@ Solde confirmé src/app/components/address/address.component.html - 275 + 289 src/app/components/wallet/wallet.component.html @@ -2460,7 +2457,7 @@ UTXOs confirmés src/app/components/address/address.component.html - 285 + 299 src/app/components/wallet/wallet.component.html @@ -2473,7 +2470,7 @@ UTXOs en attente src/app/components/address/address.component.html - 290 + 304 address.pending-utxos @@ -2482,7 +2479,7 @@ Type src/app/components/address/address.component.html - 300 + 314 src/app/components/transaction/cpfp-info.component.html @@ -2490,12 +2487,22 @@ src/app/components/transactions-list/transactions-list.component.html - 447 + 490 address.type + + Add unpublished spending paths + Ajouter des chemins de dépense non publiés + + src/app/components/address/address.component.html + 319 + + address.taproot-psbt-add-unpublished-spend-paths + Fiat + Fiat src/app/components/amount-selector/amount-selector.component.html 5 @@ -2663,7 +2670,7 @@ Actif: src/app/components/asset/asset.component.ts - 75 + 76 @@ -2671,7 +2678,7 @@ Parcourez un aperçu de l'actif Liquid () : le montant émis, le montant brûlé, le montant en circulation, les transactions associées et plus. src/app/components/asset/asset.component.ts - 108 + 109 @@ -2704,11 +2711,11 @@ src/app/components/assets/assets-nav/assets-nav.component.ts - 42 + 43 src/app/components/assets/assets.component.ts - 44 + 45 Assets page header @@ -2733,7 +2740,7 @@ src/app/components/custom-dashboard/custom-dashboard.component.ts - 73 + 74 src/app/components/pool-ranking/pool-ranking.component.html @@ -2765,7 +2772,7 @@ src/app/dashboard/dashboard.component.ts - 78 + 79 @@ -2788,9 +2795,10 @@ Explore all the assets issued on the Liquid network like LBTC, L-CAD, USDT, and more. + Explorez tous les actifs émis sur le réseau Liquid comme LBTC, L-CAD, USDT, et plus encore. src/app/components/assets/assets-nav/assets-nav.component.ts - 43 + 44 @@ -2893,7 +2901,7 @@ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts - 72 + 73 src/app/components/graphs/graphs.component.html @@ -2932,7 +2940,23 @@ Consultez les tarifs Bitcoin visualisés au fil du temps, y compris les tarifs minimum et maximum par bloc ainsi que les tarifs à différents centiles. src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts - 73 + 74 + + + + At block: + Au bloc : + + src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts + 256 + + + src/app/components/block-health-graph/block-health-graph.component.ts + 144 + + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 169 @@ -2944,7 +2968,7 @@ src/app/components/block-fees-graph/block-fees-graph.component.ts - 69 + 70 src/app/components/graphs/graphs.component.html @@ -2957,7 +2981,7 @@ Consultez les frais de minage moyens gagnés par bloc Bitcoin visualisés en BTC et en USD au fil du temps. src/app/components/block-fees-graph/block-fees-graph.component.ts - 70 + 71 @@ -2965,27 +2989,27 @@ Indexage des blocs src/app/components/block-fees-graph/block-fees-graph.component.ts - 119 + 120 src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 137 + 138 src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 116 + 117 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 119 + 120 src/app/components/hashrate-chart/hashrate-chart.component.ts - 204 + 205 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts - 202 + 203 src/app/components/indexing-progress/indexing-progress.component.html @@ -2993,7 +3017,11 @@ src/app/components/pool/pool-preview.component.ts - 122 + 123 + + + src/app/components/price-chart/price-chart.component.ts + 136 @@ -3005,7 +3033,7 @@ src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 78 + 79 src/app/components/graphs/graphs.component.html @@ -3018,7 +3046,7 @@ Consultez les frais par bloc Bitcoin par rapport à la subvention du bloc Bitcoin, visualisés en BTC et en USD au fil du temps. src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 79 + 80 @@ -3026,7 +3054,7 @@ Au bloc src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 185 + 186 @@ -3034,7 +3062,7 @@ Autour du bloc src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 187 + 188 @@ -3057,6 +3085,10 @@ src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 70 + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 90 + mempool-goggles.match @@ -3068,12 +3100,21 @@ mempool-goggles.any + + None + Aucun + + src/app/components/block-filters/block-filters.component.html + 27 + + mempool-goggles.none + Tint Teinte src/app/components/block-filters/block-filters.component.html - 29 + 32 mempool-goggles.tint @@ -3082,11 +3123,7 @@ Classique src/app/components/block-filters/block-filters.component.html - 32 - - - src/app/components/theme-selector/theme-selector.component.html - 3 + 35 mempool-goggles.classic @@ -3095,7 +3132,7 @@ Âge src/app/components/block-filters/block-filters.component.html - 35 + 38 mempool-goggles.age @@ -3108,7 +3145,7 @@ src/app/components/block-health-graph/block-health-graph.component.ts - 63 + 64 src/app/components/graphs/graphs.component.html @@ -3121,7 +3158,7 @@ Voir la santé des blocs Bitcoin visualisée au fil du temps. La santé d'un bloc est une mesure du nombre de transactions attendues incluses dans un bloc réellement trouvé. Les transactions attendues sont déterminées à l'aide de la ré-implémentation par Mempool de l'algorithme de sélection de transactions de Bitcoin Core. src/app/components/block-health-graph/block-health-graph.component.ts - 64 + 65 @@ -3129,23 +3166,23 @@ Aucune donnée à afficher pour le moment. Réessayez plus tard. src/app/components/block-health-graph/block-health-graph.component.ts - 109 + 110 src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 120 + 121 src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 86 + 87 src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 233 + 234 src/app/lightning/nodes-map/nodes-map.component.ts - 146 + 147 @@ -3153,11 +3190,11 @@ Santé src/app/components/block-health-graph/block-health-graph.component.ts - 190 + 191 src/app/components/block/block.component.html - 62 + 66 src/app/components/blocks-list/blocks-list.component.html @@ -3207,7 +3244,7 @@ src/app/components/tracker/tracker.component.html - 34 + 32 src/app/components/transaction/transaction-preview.component.html @@ -3390,6 +3427,7 @@ Deprioritized + Dépriorisée src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 82 @@ -3415,6 +3453,15 @@ Conflict tx-features.tag.conflict + + No Match + Pas de correspondance + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 91 + + transaction.audit.no-match + Block Rewards Récompenses de bloc @@ -3424,7 +3471,7 @@ src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 67 + 68 src/app/components/graphs/graphs.component.html @@ -3437,7 +3484,7 @@ Consultez les récompenses des blocs Bitcoin en BTC et en USD visualisées au fil du temps. Les récompenses globales correspondent au total des fonds que les mineurs gagnent grâce à la récompense de bloc et aux frais. src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 68 + 69 @@ -3449,7 +3496,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 64 + 65 src/app/components/graphs/graphs.component.html @@ -3462,7 +3509,7 @@ Consultez la taille des blocs Bitcoin (Mo) et le poids des blocs (unités de poids) visualisés au fil du temps. src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 65 + 66 @@ -3470,15 +3517,15 @@ Taille src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 187 + 188 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 242 + 243 src/app/components/block/block.component.html - 54 + 58 src/app/components/blocks-list/blocks-list.component.html @@ -3498,7 +3545,7 @@ src/app/components/mempool-graph/mempool-graph.component.ts - 331 + 332 src/app/components/pool/pool.component.html @@ -3514,7 +3561,7 @@ src/app/components/transaction/transaction.component.html - 184 + 199 src/app/dashboard/dashboard.component.html @@ -3526,11 +3573,11 @@ Poids src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 195 + 196 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 273 + 274 src/app/components/block/block-preview.component.html @@ -3538,19 +3585,27 @@ src/app/components/block/block.component.html - 58 + 62 src/app/components/block/block.component.html - 402 + 473 src/app/components/block/block.component.html - 429 + 500 src/app/components/block/block.component.html - 458 + 536 + + + src/app/components/block/block.component.html + 575 + + + src/app/components/block/block.component.html + 608 src/app/components/transaction/transaction-raw.component.html @@ -3558,7 +3613,7 @@ src/app/components/transaction/transaction.component.html - 200 + 215 @@ -3566,11 +3621,11 @@ Taille par poids src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 203 + 204 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 285 + 286 @@ -3578,15 +3633,15 @@ Bloc : src/app/components/block-view/block-view.component.ts - 110 + 111 src/app/components/block/block-preview.component.ts - 104 + 105 src/app/components/block/block.component.ts - 262 + 286 @@ -3594,15 +3649,15 @@ Consultez la taille, le poids, la fourchette de frais, les transactions incluses et bien plus encore pour le bloc Liquid (). src/app/components/block-view/block-view.component.ts - 112 + 113 src/app/components/block/block-preview.component.ts - 106 + 107 src/app/components/block/block.component.ts - 264 + 288 @@ -3610,15 +3665,15 @@ Consultez la taille, le poids, la fourchette de frais, les transactions incluses, l'audit (attendu et réel) et bien plus encore pour le bloc Bitcoin ( ). src/app/components/block-view/block-view.component.ts - 114 + 115 src/app/components/block/block-preview.component.ts - 108 + 109 src/app/components/block/block.component.ts - 266 + 290 @@ -3630,7 +3685,7 @@ src/app/components/block/block.component.html - 10 + 11 @@ -3642,7 +3697,7 @@ src/app/components/block/block.component.html - 48 + 52 src/app/components/blocks-list/blocks-list.component.html @@ -3679,7 +3734,7 @@ src/app/components/block/block.component.html - 136 + 142 src/app/components/mempool-block/mempool-block.component.html @@ -3696,23 +3751,31 @@ src/app/components/block/block.component.html - 147 + 153 src/app/components/block/block.component.html - 173 + 179 src/app/components/block/block.component.html - 396 + 467 src/app/components/block/block.component.html - 417 + 488 src/app/components/block/block.component.html - 454 + 525 + + + src/app/components/block/block.component.html + 564 + + + src/app/components/block/block.component.html + 604 src/app/components/mempool-block/mempool-block.component.html @@ -3730,7 +3793,7 @@ src/app/components/block/block.component.html - 182 + 188 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -3747,11 +3810,11 @@ src/app/components/block/block.component.html - 342 + 412 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 55 + 68 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -3768,11 +3831,11 @@ src/app/components/block/block.component.html - 343 + 413 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 56 + 69 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -3811,12 +3874,29 @@ Block reorg block.reorged + + Stale Block + Bloc orphelin + + src/app/components/block/block.component.html + 13 + + + src/app/components/block/block.component.html + 255 + + + src/app/components/block/block.component.html + 287 + + shared.stale-block-title + Previous Block Bloc précédent src/app/components/block/block.component.html - 19 + 23 Previous Block @@ -3825,7 +3905,7 @@ Vicié src/app/components/block/block.component.html - 30 + 34 Stale block state block.stale @@ -3835,7 +3915,7 @@ Hash src/app/components/block/block.component.html - 44 + 48 src/app/components/simpleproof-widget/simpleproof-widget.component.html @@ -3848,7 +3928,7 @@ Inconnue src/app/components/block/block.component.html - 73 + 77 src/app/components/blocks-list/blocks-list.component.html @@ -3872,7 +3952,7 @@ src/app/lightning/channel/closing-type/closing-type.component.ts - 32 + 33 src/app/lightning/node/node-preview.component.html @@ -3888,19 +3968,23 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 154 + 155 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 323 + 324 src/app/services/api.service.ts - 275 + 283 src/app/services/api.service.ts - 288 + 296 + + + src/app/shared/components/address-type/address-type.component.html + 27 unknown @@ -3909,7 +3993,7 @@ L'envergure des frais src/app/components/block/block.component.html - 132 + 138 src/app/components/mempool-block/mempool-block.component.html @@ -3922,23 +4006,23 @@ Basé sur une transaction segwit standard de 140 vBytes src/app/components/block/block.component.html - 140 + 146 src/app/components/fees-box/fees-box.component.html - 16 + 17 src/app/components/fees-box/fees-box.component.html - 22 + 23 src/app/components/fees-box/fees-box.component.html - 27 + 28 src/app/components/fees-box/fees-box.component.html - 32 + 33 src/app/components/mempool-block/mempool-block.component.html @@ -3951,21 +4035,39 @@ Subvention + frais src/app/components/block/block.component.html - 162 + 168 src/app/components/block/block.component.html - 177 + 183 Total subsidy and fees in a block block.subsidy-and-fees + + Stale + Orphelin + + src/app/components/block/block.component.html + 239 + + block.stale + + + Winning + Gagnant + + src/app/components/block/block.component.html + 241 + + block.actual + Expected Attendu src/app/components/block/block.component.html - 232 + 246 src/app/components/pool/pool.component.html @@ -3978,7 +4080,7 @@ Réel src/app/components/block/block.component.html - 234 + 248 block.actual @@ -3987,16 +4089,25 @@ Bloc attendu src/app/components/block/block.component.html - 238 + 262 block.expected-block + + Winning Block + Bloc gagnant + + src/app/components/block/block.component.html + 289 + + block.stale-block + Actual Block Bloc réel src/app/components/block/block.component.html - 253 + 296 block.actual-block @@ -4005,7 +4116,7 @@ Version src/app/components/block/block.component.html - 280 + 330 src/app/components/transaction/transaction-raw.component.html @@ -4013,7 +4124,7 @@ src/app/components/transaction/transaction.component.html - 210 + 225 transaction.version @@ -4022,7 +4133,7 @@ Taproot src/app/components/block/block.component.html - 281 + 331 src/app/components/tx-features/tx-features.component.html @@ -4052,7 +4163,7 @@ Bits src/app/components/block/block.component.html - 284 + 334 block.bits @@ -4061,7 +4172,7 @@ racine de Merkle src/app/components/block/block.component.html - 288 + 338 block.merkle-root @@ -4070,7 +4181,7 @@ Difficulté src/app/components/block/block.component.html - 299 + 349 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -4086,11 +4197,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 302 + 303 src/app/components/hashrate-chart/hashrate-chart.component.ts - 403 + 404 block.difficulty @@ -4099,7 +4210,7 @@ Nonce src/app/components/block/block.component.html - 303 + 353 block.nonce @@ -4108,16 +4219,34 @@ Hex d'en-tête de bloc src/app/components/block/block.component.html - 307 + 357 block.header + + There is a stale block at this height + Il y a un bloc orphelin à cette hauteur + + src/app/components/block/block.component.html + 372 + + block.stale-block-singular + + + There are stale blocks at this height + Il y a blocs orphelins à cette hauteur + + src/app/components/block/block.component.html + 374 + + block.stale-block-plural + Audit Audit src/app/components/block/block.component.html - 325 + 393 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -4131,7 +4260,7 @@ Détails src/app/components/block/block.component.html - 332 + 400 src/app/components/transaction/transaction-raw.component.html @@ -4143,19 +4272,19 @@ src/app/components/transaction/transaction.component.html - 79 + 93 src/app/components/transaction/transaction.component.html - 168 + 183 src/app/components/transaction/transaction.component.html - 176 + 191 src/app/components/transaction/transaction.component.html - 301 + 316 src/app/lightning/channel/channel.component.html @@ -4185,7 +4314,7 @@ Erreur lors du chargement du bloc. src/app/components/block/block.component.html - 374 + 444 block.error.loading-block-data @@ -4194,7 +4323,7 @@ Pourquoi ce bloc est-il vide ? src/app/components/block/block.component.html - 388 + 458 block.empty-block-explanation @@ -4203,7 +4332,7 @@ Frais d'accélération payés hors bande src/app/components/block/block.component.html - 420 + 491 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -4220,7 +4349,7 @@ src/app/components/blocks-list/blocks-list.component.ts - 70 + 71 src/app/components/pool-ranking/pool-ranking.component.html @@ -4361,7 +4490,7 @@ Consultez les blocs Liquid les plus récents ainsi que les statistiques de base telles que la hauteur et la taille des blocs, etc. src/app/components/blocks-list/blocks-list.component.ts - 73 + 74 @@ -4369,7 +4498,7 @@ Consultez les blocs Bitcoin les plus récents ainsi que les statistiques de base telles que la hauteur du bloc, la récompense du bloc, la taille du bloc, etc. src/app/components/blocks-list/blocks-list.component.ts - 75 + 76 @@ -4381,7 +4510,7 @@ src/app/shared/components/global-footer/global-footer.component.html - 108 + 109 shared.calculator @@ -4390,7 +4519,7 @@ Copié! src/app/components/clipboard/clipboard.component.ts - 15 + 16 @@ -4414,7 +4543,7 @@ src/app/components/fees-box/fees-box.component.html - 47 + 48 fees-box.high-priority @@ -4455,6 +4584,10 @@ src/app/dashboard/dashboard.component.html 282 + + src/app/shared/components/confirmations/confirmations.component.html + 18 + Unconfirmed count dashboard.unconfirmed @@ -4653,7 +4786,7 @@ src/app/components/treasuries/treasuries.component.html - 11 + 18 dashboard.treasury @@ -4684,11 +4817,11 @@ Consolidation src/app/components/custom-dashboard/custom-dashboard.component.ts - 74 + 75 src/app/dashboard/dashboard.component.ts - 79 + 80 src/app/shared/filters.utils.ts @@ -4700,11 +4833,11 @@ Coinjoin src/app/components/custom-dashboard/custom-dashboard.component.ts - 75 + 76 src/app/dashboard/dashboard.component.ts - 80 + 81 src/app/shared/filters.utils.ts @@ -4716,11 +4849,11 @@ Données src/app/components/custom-dashboard/custom-dashboard.component.ts - 76 + 77 src/app/dashboard/dashboard.component.ts - 81 + 82 src/app/shared/filters.utils.ts @@ -5063,7 +5196,7 @@ src/app/components/fees-box/fees-box.component.html - 41 + 42 fees-box.no-priority @@ -5085,7 +5218,7 @@ src/app/components/fees-box/fees-box.component.html - 45 + 46 fees-box.low-priority @@ -5107,7 +5240,7 @@ src/app/components/fees-box/fees-box.component.html - 46 + 47 fees-box.medium-priority @@ -5207,7 +5340,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 77 + 78 mining.hashrate-difficulty @@ -5233,11 +5366,11 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 73 + 74 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 143 + 144 lightning.nodes-networks @@ -5254,11 +5387,11 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 70 + 71 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 133 + 134 lightning.network-capacity @@ -5271,7 +5404,7 @@ src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 53 + 54 lightning.nodes-per-isp @@ -5288,7 +5421,7 @@ src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 46 + 47 lightning.nodes-per-country @@ -5305,7 +5438,7 @@ src/app/lightning/nodes-map/nodes-map.component.ts - 51 + 52 lightning.lightning.nodes-heatmap @@ -5320,10 +5453,15 @@ src/app/lightning/nodes-channels-map/nodes-channels-map.component.html 20 + + src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts + 74 + lightning.nodes-channels-world-map Hashrate (1w) + Taux de hachage (1 sem) src/app/components/hashrate-chart/hashrate-chart.component.html 8 @@ -5339,11 +5477,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 291 + 292 src/app/components/hashrate-chart/hashrate-chart.component.ts - 391 + 392 src/app/components/pool-ranking/pool-ranking.component.html @@ -5355,11 +5493,11 @@ src/app/components/pool/pool.component.ts - 244 + 245 src/app/components/pool/pool.component.ts - 296 + 297 mining.hashrate @@ -5368,7 +5506,7 @@ Consultez le taux de hachage et la difficulté du réseau Bitcoin visualisés au fil du temps. src/app/components/hashrate-chart/hashrate-chart.component.ts - 78 + 79 @@ -5376,11 +5514,11 @@ Taux de hachage (moy) src/app/components/hashrate-chart/hashrate-chart.component.ts - 310 + 311 src/app/components/hashrate-chart/hashrate-chart.component.ts - 414 + 415 @@ -5388,7 +5526,7 @@ Historique de dominance des pools src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts - 74 + 75 @@ -5396,7 +5534,7 @@ Visualisez la domination des pools de minage Bitcoin au fil du temps : voyez comment la part des principales pools de minage évolue au fil du temps. src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts - 75 + 76 @@ -5415,9 +5553,30 @@ 3 + + Audit in progress + Audit en cours + + src/app/components/lbtc-pegs-graph/lbtc-pegs-graph.component.html + 5 + + + src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.html + 5 + + + src/app/dashboard/dashboard.component.html + 366 + + liquid.audit-in-progress + Offline Hors-ligne + + src/app/components/liquid-master-page/liquid-master-page.component.html + 21 + src/app/components/liquid-master-page/liquid-master-page.component.html 41 @@ -5428,13 +5587,17 @@ src/app/components/master-page/master-page.component.html - 57 + 54 master-page.offline Reconnecting... Reconnexion... + + src/app/components/liquid-master-page/liquid-master-page.component.html + 22 + src/app/components/liquid-master-page/liquid-master-page.component.html 42 @@ -5445,7 +5608,7 @@ src/app/components/master-page/master-page.component.html - 58 + 55 master-page.reconnecting @@ -5454,7 +5617,7 @@ Réseaux de couche 2 src/app/components/liquid-master-page/liquid-master-page.component.html - 56 + 57 master-page.layer2-networks-header @@ -5532,7 +5695,7 @@ src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.ts - 14 + 15 liquid.federation-wallet @@ -5667,7 +5830,7 @@ src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.ts - 66 + 67 src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html @@ -5753,6 +5916,7 @@ Number of times that the Federation's BTC holdings fall below 95% of the total LBTC supply + Nombre de fois où les avoirs BTC de la Fédération passent sous 95 % de l'offre totale de LBTC src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 6 @@ -5800,11 +5964,12 @@ Actif vs Passif src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts - 163 + 165 LBTC in circulation + LBTC en circulation src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 3 @@ -5829,7 +5994,7 @@ Consultez les statistiques des transactions dans la mempool: plage de frais, taille globale, etc. Les blocs mempool sont mis à jour en temps réel à mesure que le réseau reçoit de nouvelles transactions. src/app/components/mempool-block/mempool-block.component.ts - 62 + 61 @@ -5837,7 +6002,7 @@ Pile de blocs mempool src/app/components/mempool-block/mempool-block.component.ts - 89 + 88 @@ -5845,7 +6010,7 @@ Bloc mempool src/app/components/mempool-block/mempool-block.component.ts - 91 + 90 @@ -5853,11 +6018,11 @@ Compter src/app/components/mempool-graph/mempool-graph.component.ts - 329 + 330 src/app/components/statistics/statistics.component.ts - 49 + 50 @@ -5865,7 +6030,7 @@ Intervalle src/app/components/mempool-graph/mempool-graph.component.ts - 330 + 331 @@ -5873,7 +6038,7 @@ Total src/app/components/mempool-graph/mempool-graph.component.ts - 332 + 333 @@ -5925,7 +6090,7 @@ Tableau de bord Minage src/app/components/mining-dashboard/mining-dashboard.component.ts - 29 + 30 src/app/shared/components/global-footer/global-footer.component.html @@ -5937,11 +6102,12 @@ Obtenez des statistiques minières Bitcoin en temps réel telles que le taux de hachage, l'ajustement de la difficulté, les récompenses de bloc, la domination du pool, etc. src/app/components/mining-dashboard/mining-dashboard.component.ts - 30 + 31 Mint + Frappe src/app/components/ord-data/ord-data.component.html 3,5 @@ -5950,6 +6116,7 @@ Premine (% of total supply) + Préminage (% de l'offre totale) src/app/components/ord-data/ord-data.component.html 11,15 @@ -5958,6 +6125,7 @@ Etching of + Gravure de src/app/components/ord-data/ord-data.component.html 19,21 @@ -5966,6 +6134,7 @@ Transfer + Transfert src/app/components/ord-data/ord-data.component.html 28,29 @@ -5974,6 +6143,7 @@ Source inscription + Inscription source src/app/components/ord-data/ord-data.component.html 44 @@ -5986,6 +6156,7 @@ Error decoding data + Erreur de décodage des données src/app/components/ord-data/ord-data.component.html 57 @@ -6161,12 +6332,16 @@ mining.all-miners - + Mining Pools - Pool de minage + Pools de minage src/app/components/pool-ranking/pool-ranking.component.ts - 59 + 60 + + + src/app/components/search-form/search-results/search-results.component.html + 47 @@ -6174,7 +6349,7 @@ Consultez les meilleurs pools de minage Bitcoin classés par nombre de blocs extraits, sur la période souhaitée. src/app/components/pool-ranking/pool-ranking.component.ts - 60 + 61 @@ -6182,19 +6357,19 @@ blocs src/app/components/pool-ranking/pool-ranking.component.ts - 170 + 171 src/app/components/pool-ranking/pool-ranking.component.ts - 173 + 174 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 208 src/app/components/pool-ranking/pool-ranking.component.ts - 209 + 210 @@ -6202,35 +6377,35 @@ Autre () src/app/components/pool-ranking/pool-ranking.component.ts - 189 + 190 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 208 src/app/components/pool-ranking/pool-ranking.component.ts - 209 + 210 src/app/components/treasuries/treasuries-pie/treasuries-pie.component.ts - 184 + 183 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 119 + 120 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 136 + 137 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 178 + 179 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 195 + 196 @@ -6272,11 +6447,11 @@ Consultez les statistiques de la pool de minage  : les blocs extraits les plus récents, le taux de hachage au fil du temps, la récompense totale du bloc à ce jour, les adresses coinbase connues, et plus encore. src/app/components/pool/pool-preview.component.ts - 88 + 89 src/app/components/pool/pool.component.ts - 93 + 94 @@ -6300,35 +6475,35 @@ src/app/components/transactions-list/transactions-list.component.html - 221 + 232 src/app/components/transactions-list/transactions-list.component.html - 243 + 262 src/app/components/transactions-list/transactions-list.component.html - 258 + 277 src/app/components/transactions-list/transactions-list.component.html - 287 + 306 src/app/components/transactions-list/transactions-list.component.html - 406 + 449 src/app/components/transactions-list/transactions-list.component.html - 423 + 466 src/app/components/transactions-list/transactions-list.component.html - 440 + 483 src/app/components/transactions-list/transactions-list.component.html - 458 + 501 src/app/components/wallet/wallet.component.html @@ -6437,6 +6612,7 @@ Clean + Propre src/app/components/pool/pool.component.html 227 @@ -6445,6 +6621,7 @@ Prevhash + Prevhash src/app/components/pool/pool.component.html 228 @@ -6453,6 +6630,7 @@ Job Received + Job reçu src/app/components/pool/pool.component.html 229 @@ -6473,7 +6651,7 @@ Pas encore assez de données src/app/components/pool/pool.component.ts - 177 + 178 @@ -6481,14 +6659,60 @@ Dominance de la pool de minage src/app/components/pool/pool.component.ts - 255 + 256 src/app/components/pool/pool.component.ts - 307 + 308 mining.pool-dominance + + Bitcoin Price + Prix du Bitcoin + + src/app/components/price-chart/price-chart.component.html + 8 + + + src/app/components/price-chart/price-chart.component.html + 24 + + + src/app/components/price-chart/price-chart.component.html + 69 + + price-chart.bitcoin-price + + + % Change + % Variation + + src/app/components/price-chart/price-chart.component.html + 14 + + + src/app/components/price-chart/price-chart.component.html + 75 + + price-chart.percent-change + + + Bitcoin Price + Prix du Bitcoin + + src/app/components/price-chart/price-chart.component.ts + 77 + + + + See the Bitcoin price in USD visualized over time. + Consultez le prix du Bitcoin en USD visualisé au fil du temps. + + src/app/components/price-chart/price-chart.component.ts + 78 + + Broadcast Transaction Émettre une transaction @@ -6500,6 +6724,10 @@ src/app/components/push-transaction/push-transaction.component.html 8 + + src/app/components/push-transaction/push-transaction.component.ts + 58 + src/app/shared/components/global-footer/global-footer.component.html 77 @@ -6520,12 +6748,13 @@ src/app/components/transaction/transaction.component.html - 226 + 241 transaction.hex Submit Package + Soumettre un Paquet src/app/components/push-transaction/push-transaction.component.html 14 @@ -6565,6 +6794,7 @@ Maximum burn amount (sats) + Montant maximal brûlé (sats)  src/app/components/push-transaction/push-transaction.component.html 23 @@ -6597,20 +6827,12 @@ test-tx.rejection-reason - - Broadcast Transaction - Transaction de diffusion - - src/app/components/push-transaction/push-transaction.component.ts - 57 - - Broadcast a transaction to the network using the transaction's hash. Diffusez une transaction sur le réseau en utilisant le hachage de la transaction. src/app/components/push-transaction/push-transaction.component.ts - 58 + 59 @@ -6622,7 +6844,7 @@ src/app/components/rbf-list/rbf-list.component.ts - 61 + 62 page.rbf-replacements @@ -6640,7 +6862,7 @@ Découvrez les remplacements RBF les plus récents sur le réseau Bitcoin, mis à jour en temps réel. src/app/components/rbf-list/rbf-list.component.ts - 62 + 63 @@ -6660,31 +6882,31 @@ src/app/components/transaction/transaction.component.html - 147 + 162 src/app/components/transactions-list/transactions-list.component.html - 223 + 234 src/app/components/transactions-list/transactions-list.component.html - 244 + 263 src/app/components/transactions-list/transactions-list.component.html - 259 + 278 src/app/components/transactions-list/transactions-list.component.html - 407 + 450 src/app/components/transactions-list/transactions-list.component.html - 424 + 467 src/app/components/transactions-list/transactions-list.component.html - 441 + 484 show-less @@ -6697,7 +6919,7 @@ src/app/components/transactions-list/transactions-list.component.html - 514 + 567 x-remaining @@ -6857,15 +7079,6 @@ search.bitcoin-addresses - - Mining Pools - Pools de minage - - src/app/components/search-form/search-results/search-results.component.html - 47 - - search.mining-pools - Lightning Nodes Noeuds Lightning @@ -6913,6 +7126,7 @@ Search by student name or ID... + Rechercher par nom d'étudiant ou ID... src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 28 @@ -6925,6 +7139,7 @@ Student Name + Nom de l'étudiant src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 35 @@ -6933,6 +7148,7 @@ ID + ID src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 42 @@ -6941,6 +7157,7 @@ Proof + Preuve src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 48 @@ -6953,6 +7170,7 @@ Verify + Vérifier src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 98 @@ -6965,6 +7183,7 @@ Filename + Nom de fichier src/app/components/simpleproof-widget/simpleproof-widget.component.html 22 @@ -6973,12 +7192,119 @@ Verified + Vérifié src/app/components/simpleproof-widget/simpleproof-widget.component.html 24 simpleproof.verified + + Recent Stale Chain Tips + Extrémités récentes de chaînes orphelines + + src/app/components/stale-list/stale-list.component.html + 2 + + page.recent-stale-chain-tips + + + beta + bêta + + src/app/components/stale-list/stale-list.component.html + 2 + + beta + + + Headers Only + Headers uniquement + + src/app/components/stale-list/stale-list.component.html + 14 + + chain-tips.headers-only + + + Valid Headers + Headers valides + + src/app/components/stale-list/stale-list.component.html + 15 + + chain-tips.valid-headers + + + Valid Fork + Fork valide + + src/app/components/stale-list/stale-list.component.html + 16 + + chain-tips.valid-fork + + + Invalid + Invalide + + src/app/components/stale-list/stale-list.component.html + 17 + + chain-tips.invalid + + + Depth + Profondeur + + src/app/components/stale-list/stale-list.component.html + 20,21 + + chain-tips.depth + + + Stale + Orphelin + + src/app/components/stale-list/stale-list.component.html + 26,27 + + chain-tips.stale-block + + + Winning + Gagnant + + src/app/components/stale-list/stale-list.component.html + 73,74 + + chain-tips.winning-block + + + This node hasn't seen any stale blocks yet! + Ce nœud n'a pas encore vu de blocs orphelin ! + + src/app/components/stale-list/stale-list.component.html + 120 + + chain-tips.no-stale-blocks-yet + + + Stale Chain Tips + Extrémités de chaînes orphelines + + src/app/components/stale-list/stale-list.component.ts + 62 + + + + See the most recent stale chain tips on the Bitcoin network. + Voir les extrémités de chaînes orphelines les plus récentes sur le réseau Bitcoin. + + src/app/components/stale-list/stale-list.component.ts + 63 + + Mempool by vBytes (sat/vByte) Mempool par vBytes (sat/vByte) @@ -6997,7 +7323,7 @@ src/app/shared/components/global-footer/global-footer.component.html - 106 + 107 footer.clock-mempool @@ -7042,7 +7368,7 @@ Graphiques src/app/components/statistics/statistics.component.ts - 65 + 66 @@ -7050,11 +7376,12 @@ Voir la taille de la mempool (en MvB) et les transactions par seconde (en vB/s) visualisées au fil du temps. src/app/components/statistics/statistics.component.ts - 66 + 67 Stratum Jobs + Stratum Jobs src/app/components/stratum/stratum-list/stratum-list.component.html 2 @@ -7063,6 +7390,7 @@ levels remaining + niveaux restants src/app/components/taproot-address-scripts/taproot-address-scripts.component.html 19 @@ -7071,6 +7399,7 @@ 1 level remaining + 1 niveau restant src/app/components/taproot-address-scripts/taproot-address-scripts.component.html 20 @@ -7090,7 +7419,7 @@ src/app/components/test-transactions/test-transactions.component.ts - 35 + 36 Test Transactions shared.test-transactions @@ -7127,7 +7456,7 @@ Cette transaction a été remplacée par: src/app/components/tracker/tracker.component.html - 48 + 46 src/app/components/transaction/transaction.component.html @@ -7141,7 +7470,7 @@ ETA src/app/components/tracker/tracker.component.html - 70 + 68 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -7155,7 +7484,7 @@ Pas de sitôt src/app/components/tracker/tracker.component.html - 75 + 73 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -7169,7 +7498,7 @@ Confirmé à src/app/components/tracker/tracker.component.html - 89 + 87 transaction.confirmed-at @@ -7178,16 +7507,16 @@ Hauteur du bloc src/app/components/tracker/tracker.component.html - 98 + 96 transaction.block-height - - Your transaction has been accelerated - Votre transaction a été accélérée + + Transaction has been accelerated + La transaction a été accélérée src/app/components/tracker/tracker.component.html - 144 + 143 tracker.explain.accelerated @@ -7196,7 +7525,7 @@ En attente que votre transaction apparaisse dans la mempool src/app/components/tracker/tracker.component.html - 154 + 153 tracker.explain.waiting @@ -7205,7 +7534,7 @@ Votre transaction est dans la mempool, mais elle ne sera pas confirmée avant un certain temps. src/app/components/tracker/tracker.component.html - 160 + 159 tracker.explain.pending @@ -7214,7 +7543,7 @@ Votre transaction se trouve en haut de la mempool et devrait être confirmée bientôt. src/app/components/tracker/tracker.component.html - 166 + 165 tracker.explain.soon @@ -7223,7 +7552,7 @@ Votre transaction devrait être confirmée dans le prochain bloc src/app/components/tracker/tracker.component.html - 172 + 171 tracker.explain.next-block @@ -7232,7 +7561,7 @@ Votre transaction est confirmée ! src/app/components/tracker/tracker.component.html - 178 + 177 tracker.explain.confirmed @@ -7241,7 +7570,7 @@ Votre transaction a été remplacée par une version plus récent ! src/app/components/tracker/tracker.component.html - 187 + 186 tracker.explain.replaced @@ -7250,11 +7579,11 @@ Erreur lors du chargement des données de transaction. src/app/components/tracker/tracker.component.html - 197 + 196 src/app/components/transaction/transaction.component.html - 357 + 372 transaction.error.loading-transaction-data @@ -7263,7 +7592,7 @@ Voir plus de détails src/app/components/tracker/tracker.component.html - 206 + 205 accelerator.show-more-details @@ -7272,15 +7601,15 @@ Transaction: src/app/components/tracker/tracker.component.ts - 409 + 446 src/app/components/transaction/transaction-preview.component.ts - 91 + 92 src/app/components/transaction/transaction.component.ts - 580 + 616 @@ -7288,19 +7617,20 @@ Obtenez le statut en temps réel, les adresses, les frais, les informations sur les scripts et bien plus encore pour les transactions avec la txid . src/app/components/tracker/tracker.component.ts - 413 + 450 src/app/components/transaction/transaction-preview.component.ts - 95 + 96 src/app/components/transaction/transaction.component.ts - 584 + 620 Related Transactions + Transactions associées src/app/components/transaction/cpfp-info.component.html 3 @@ -7457,6 +7787,7 @@ This transaction cannot be accelerated + Cette transaction ne peut pas être accélérée src/app/components/transaction/transaction-details/transaction-details.component.html 173 @@ -7465,6 +7796,7 @@ Preview Transaction + Aperçu de la transaction src/app/components/transaction/transaction-raw.component.html 5 @@ -7473,6 +7805,10 @@ src/app/components/transaction/transaction-raw.component.html 25 + + src/app/components/transaction/transaction-raw.component.ts + 90 + src/app/shared/components/global-footer/global-footer.component.html 79 @@ -7482,6 +7818,7 @@ Transaction hex or base64 encoded PSBT + Transaction hex ou PSBT encodé en base64 src/app/components/transaction/transaction-raw.component.html 9 @@ -7490,6 +7827,7 @@ Preview + Aperçu src/app/components/transaction/transaction-raw.component.html 11 @@ -7499,6 +7837,7 @@ Fetch missing prevouts + Récupérer les prevouts manquants src/app/components/transaction/transaction-raw.component.html 14 @@ -7507,6 +7846,7 @@ Error decoding transaction, reason: + Erreur lors du décodage de la transaction, raison : src/app/components/transaction/transaction-raw.component.html 16,18 @@ -7515,6 +7855,7 @@ Preview Coinbase + Aperçu de la Coinbase src/app/components/transaction/transaction-raw.component.html 23 @@ -7524,6 +7865,7 @@ This transaction is stored locally in your browser. Broadcast it to add it to the mempool. + Cette transaction est stockée localement dans votre navigateur. Diffusez-la pour l'ajouter au mempool. src/app/components/transaction/transaction-raw.component.html 50,52 @@ -7533,6 +7875,7 @@ Redirecting to transaction page... + Redirection vers la page de transaction... src/app/components/transaction/transaction-raw.component.html 53,55 @@ -7542,6 +7885,7 @@ Transaction cannot be broadcasted because it's missing signature(s) + La transaction ne peut pas être diffusée car il lui manque des signatures src/app/components/transaction/transaction-raw.component.html 58 @@ -7550,6 +7894,7 @@ Broadcast + Diffuser src/app/components/transaction/transaction-raw.component.html 60 @@ -7559,6 +7904,7 @@ Broadcasted + Diffusée src/app/components/transaction/transaction-raw.component.html 61 @@ -7575,11 +7921,11 @@ src/app/components/transaction/transaction.component.html - 121 + 136 src/app/components/transaction/transaction.component.html - 241 + 256 Transaction flow transaction.flow @@ -7593,7 +7939,7 @@ src/app/components/transaction/transaction.component.html - 124 + 139 hide-diagram @@ -7606,15 +7952,15 @@ src/app/components/transaction/transaction.component.html - 145 + 160 src/app/components/transactions-list/transactions-list.component.html - 289 + 308 src/app/components/transactions-list/transactions-list.component.html - 460 + 503 show-more @@ -7627,11 +7973,11 @@ src/app/components/transaction/transaction.component.html - 163 + 178 src/app/components/transaction/transaction.component.html - 272 + 287 Transaction inputs and outputs transaction.inputs-and-outputs @@ -7645,7 +7991,7 @@ src/app/components/transaction/transaction.component.html - 167 + 182 show-diagram @@ -7658,7 +8004,7 @@ src/app/components/transaction/transaction.component.html - 192 + 207 Transaction Adjusted VSize transaction.adjusted-vsize @@ -7672,7 +8018,7 @@ src/app/components/transaction/transaction.component.html - 214 + 229 transaction.locktime @@ -7685,39 +8031,45 @@ src/app/components/transaction/transaction.component.html - 218 + 233 Transaction Sigops transaction.sigops - - Loading - - src/app/components/transaction/transaction-raw.component.html - 228,230 - - transaction.error.loading-prevouts - - - Preview Transaction - - src/app/components/transaction/transaction-raw.component.ts - 89 - - Preview a transaction to the Bitcoin network using the transaction's raw hex data. + Prévisualisez une transaction sur le réseau Bitcoin en utilisant les données hex de la transaction. src/app/components/transaction/transaction-raw.component.ts - 90 + 91 + + This transaction ID appears twice in the blockchain as the coinbase of blocks and , due to a bug later mitigated by BIP-30. + Cet identifiant de transaction apparaît deux fois dans la blockchain en tant que transaction coinbase des blocs et , en raison d'un bug corrigé par la suite par leBIP-30. + + src/app/components/transaction/transaction.component.html + 40,42 + + Duplicate transaction notice + transaction.duplicate.notice + + + Read more + En savoir plus + + src/app/components/transaction/transaction.component.html + 44 + + Duplicate transaction read more + transaction.duplicate.read-more + Hide accelerator Masquer l'accélérateur src/app/components/transaction/transaction.component.html - 78 + 92 accelerator.hide @@ -7726,7 +8078,7 @@ Chronologie RBF src/app/components/transaction/transaction.component.html - 103 + 118 RBF Timeline transaction.rbf-history @@ -7736,7 +8088,7 @@ Chronologie de l'accélération src/app/components/transaction/transaction.component.html - 112 + 127 Acceleration Timeline transaction.acceleration-timeline @@ -7746,7 +8098,7 @@ Transaction introuvable. src/app/components/transaction/transaction.component.html - 350 + 365 transaction.error.transaction-not-found @@ -7755,12 +8107,13 @@ Veuillez patienter pendant que nous attendons qu'elle apparaisse dans le mempool src/app/components/transaction/transaction.component.html - 351 + 366 transaction.error.waiting-for-it-to-appear Warning! This transaction involves deceptively similar addresses. It may be an address poisoning attack. + Attention ! Cette transaction implique des adresses trompeusement similaires. Il peut s'agir d'une attaque par empoisonnement d'adresse. src/app/components/transactions-list/transactions-list.component.html 21 @@ -7787,6 +8140,7 @@ Inscription + Inscription src/app/components/transactions-list/transactions-list.component.html 123 @@ -7827,15 +8181,25 @@ Script de rachat P2SH src/app/components/transactions-list/transactions-list.component.html - 232 + 243 transactions-list.p2sh-redeem-script - - P2TR Simplicity script + + P2TR control block + Bloc de contrôle P2TR src/app/components/transactions-list/transactions-list.component.html - 237 + 248 + + transactions-list.p2tr-control-block + + + P2TR Simplicity script + Script Simplicity P2TR + + src/app/components/transactions-list/transactions-list.component.html + 256 transactions-list.p2tr-simplicity-script @@ -7844,7 +8208,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 249 + 268 transactions-list.p2tr-tapscript @@ -7853,7 +8217,7 @@ Script témoin P2WSH src/app/components/transactions-list/transactions-list.component.html - 251 + 270 transactions-list.p2wsh-witness-script @@ -7862,7 +8226,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 266 + 285 transactions-list.nsequence @@ -7871,7 +8235,7 @@ Script de sortie précédent src/app/components/transactions-list/transactions-list.component.html - 271 + 290 transactions-list.previous-output-script @@ -7880,7 +8244,7 @@ Script de sortie précédent src/app/components/transactions-list/transactions-list.component.html - 275 + 294 transactions-list.previous-output-type @@ -7889,7 +8253,7 @@ Peg-out vers src/app/components/transactions-list/transactions-list.component.html - 326,327 + 345,346 transactions-list.peg-out-to @@ -7898,7 +8262,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 400 + 443 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -7908,7 +8272,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 413 + 456 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -7918,42 +8282,154 @@ Afficher plus d'entrées pour révéler les données de frais src/app/components/transactions-list/transactions-list.component.html - 477 + 520 transactions-list.load-to-reveal-fee-info + + leaf version + version de feuille + + src/app/components/transactions-list/transactions-list.component.html + 583 + + transactions-list.taproot.leaf-version + + + parity + parité + + src/app/components/transactions-list/transactions-list.component.html + 587 + + transactions-list.taproot.parity + + + key path + chemin clé + + src/app/components/transactions-list/transactions-list.component.html + 592 + + transactions-list.taproot.keypath + + + script depth + Profondeur du script + + src/app/components/transactions-list/transactions-list.component.html + 597 + + transactions-list.taproot.script-depth + + + Bitcoin Supply + Offre de Bitcoin + + src/app/components/treasuries/supply/treasuries-supply.component.html + 1 + + treasuries.bitcoin-supply + + + in treasuries + dans les trésoreries + + src/app/components/treasuries/supply/treasuries-supply.component.html + 35 + + treasuries.held-in-treasuries + + + of total supply + de l'offre totale + + src/app/components/treasuries/supply/treasuries-supply.component.html + 42 + + treasuries.percent-of-total-supply + + + yet to be mined + reste à miner + + src/app/components/treasuries/supply/treasuries-supply.component.html + 48 + + treasuries.yet-to-be-mined + Treasury Leaderboard + Classement des trésoreries src/app/components/treasuries/treasuries.component.html - 7 + 14 dashboard.treasury-leaderboard BTC Balance + Solde BTC src/app/components/treasuries/treasuries.component.html - 12 + 19 dashboard.treasury-leaderboard.balance USD Value + Valeur USD src/app/components/treasuries/treasuries.component.html - 13 + 20 dashboard.treasury-leaderboard.value Treasury Distribution + Distribution de la trésorerie src/app/components/treasuries/treasuries.component.html - 43 + 50 dashboard.treasury-distribution + + Verified Treasuries + Trésoreries vérifiées + + src/app/components/treasuries/verify/treasuries-verify.component.html + 1 + + treasuries.verified-treasuries + + + verified addresses + adresses vérifiées + + src/app/components/treasuries/verify/treasuries-verify.component.html + 35 + + treasuries.held-in-treasuries + + + verified of total + vérifié sur le total + + src/app/components/treasuries/verify/treasuries-verify.component.html + 42 + + treasuries.percent-of-total-verify + + + verified holdings + avoirs vérifiés + + src/app/components/treasuries/verify/treasuries-verify.component.html + 48 + + treasuries.yet-to-be-mined + other inputs autres entrées @@ -8186,6 +8662,7 @@ Wallet + Portefeuille src/app/components/wallet/wallet-preview.component.html 3 @@ -8194,6 +8671,7 @@ Balance (BTC) + Solde (BTC) src/app/components/wallet/wallet-preview.component.html 17 @@ -8202,6 +8680,7 @@ Balance (USD) + Solde (USD) src/app/components/wallet/wallet-preview.component.html 20 @@ -8210,17 +8689,7 @@ Wallet: - - src/app/components/wallet/wallet-preview.component.ts - 149 - - - src/app/components/wallet/wallet.component.ts - 69 - - - - See mempool transactions, confirmed transactions, balance, and more for wallet . + Portefeuille : src/app/components/wallet/wallet-preview.component.ts 150 @@ -8230,8 +8699,21 @@ 70 + + See mempool transactions, confirmed transactions, balance, and more for wallet . + Consulter les transactions du mempool, les transactions confirmées, le solde et plus encore pour le portefeuille . + + src/app/components/wallet/wallet-preview.component.ts + 151 + + + src/app/components/wallet/wallet.component.ts + 71 + + Error loading wallet data. + Erreur lors du chargement des données du portefeuille. src/app/components/wallet/wallet.component.html 139 @@ -8270,6 +8752,7 @@ LBTC Supply Against BTC Holdings + Offre de LBTC par rapport aux avoirs en BTC src/app/dashboard/dashboard.component.html 184 @@ -8280,23 +8763,6 @@ dashboard.lbtc-supply-against-btc-holdings - - Indexing in progress - Indexation en cours - - src/app/dashboard/dashboard.component.html - 364 - - - src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html - 102 - - - src/app/lightning/statistics-chart/lightning-statistics-chart.component.html - 52 - - lightning.indexing-in-progress - mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, wallet issues, etc.For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc). mempool.space fournit simplement des données sur le réseau Bitcoin. Nous ne pouvons pas vous aider à récupérer des fonds, à résoudre des problèmes de portefeuille, etc.Pour toute demande de ce type, vous devez contacter l'entité qui a aidé à effectuer la transaction (logiciel de portefeuille, échange, etc.). @@ -8335,6 +8801,10 @@ src/app/docs/api-docs/api-docs.component.html 137 + + src/app/docs/api-docs/api-docs.component.html + 203 + src/app/lightning/group/group.component.html 17 @@ -8393,7 +8863,7 @@ FAQ src/app/docs/docs/docs.component.ts - 46 + 47 @@ -8401,7 +8871,7 @@ Obtenez des réponses aux questions courantes telles que : Qu’est-ce qu’une mempool ? Pourquoi ma transaction n'est-elle pas confirmée ? Comment puis-je utiliser ma propre instance du projet Open Source Mempool ? Et plus. src/app/docs/docs/docs.component.ts - 47 + 48 @@ -8409,7 +8879,7 @@ API REST src/app/docs/docs/docs.component.ts - 51 + 52 @@ -8417,7 +8887,7 @@ Documentation pour le service API REST liquid.network : obtenez des informations sur les adresses, les transactions, les actifs, les blocs, etc. src/app/docs/docs/docs.component.ts - 53 + 54 @@ -8425,7 +8895,7 @@ Documentation pour le service API REST mempool.space : obtenez des informations sur les adresses, les transactions, les blocs, les frais, le minage, le réseau Lightning, etc. src/app/docs/docs/docs.component.ts - 55 + 56 @@ -8433,7 +8903,7 @@ API WebSocket src/app/docs/docs/docs.component.ts - 59 + 60 @@ -8441,7 +8911,7 @@ Documentation pour le service API liquid.network WebSocket : obtenez des informations en temps réel sur les blocs, les pools de mémoire, les transactions, les adresses, etc. src/app/docs/docs/docs.component.ts - 61 + 62 @@ -8449,7 +8919,7 @@ Documentation pour le service API WebSocket mempool.space : obtenez des informations en temps réel sur les blocs, les pools de mémoire, les transactions, les adresses, etc. src/app/docs/docs/docs.component.ts - 63 + 64 @@ -8457,7 +8927,7 @@ Électrum RPC src/app/docs/docs/docs.component.ts - 67 + 68 @@ -8465,7 +8935,7 @@ Documentation pour notre interface Electrum RPC : obtenez un accès instantané, pratique et fiable à une instance Esplora. src/app/docs/docs/docs.component.ts - 68 + 69 @@ -8578,11 +9048,11 @@ src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 313 + 314 src/app/lightning/nodes-map/nodes-map.component.ts - 213 + 214 lightning.x-channels @@ -8708,11 +9178,11 @@ src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 159 + 160 src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 229 + 230 src/app/lightning/node-statistics/node-statistics.component.html @@ -8748,11 +9218,11 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 213 + 214 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 293 + 294 lightning.capacity @@ -8782,11 +9252,11 @@ Présentation du canal Lightning . Consultez la capacité du canal, les nœuds Lightning impliqués, les transactions en chaîne associées, et bien plus encore. src/app/lightning/channel/channel-preview.component.ts - 39 + 40 src/app/lightning/channel/channel.component.ts - 38 + 39 @@ -8888,7 +9358,7 @@ Canal: src/app/lightning/channel/channel.component.ts - 37 + 38 @@ -8896,7 +9366,7 @@ Mutuellement fermé src/app/lightning/channel/closing-type/closing-type.component.ts - 20 + 21 @@ -8904,7 +9374,7 @@ Fermeture Forcée src/app/lightning/channel/closing-type/closing-type.component.ts - 24 + 25 @@ -8912,7 +9382,7 @@ Fermeture forcée avec pénalité src/app/lightning/channel/closing-type/closing-type.component.ts - 28 + 29 @@ -9203,11 +9673,11 @@ src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 151 + 152 src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 206 + 207 src/app/lightning/node-statistics/node-statistics.component.html @@ -9255,11 +9725,11 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 205 + 206 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 270 + 271 lightning.channels @@ -9376,7 +9846,7 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 34 + 35 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -9397,7 +9867,7 @@ src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.ts - 38 + 39 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -9410,7 +9880,7 @@ Explorateur Lightning src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts - 33 + 34 src/app/shared/components/global-footer/global-footer.component.html @@ -9422,7 +9892,7 @@ Obtenez des statistiques sur le réseau Lightning (capacité globale, connectivité, etc.), les nœuds Lightning (canaux, liquidité, etc.) et les canaux Lightning (statut, frais, etc.). src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts - 34 + 35 @@ -9439,11 +9909,11 @@ Frais de sortie src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 179 + 180 src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 217 + 218 @@ -9451,11 +9921,11 @@ Frais entrants src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 187 + 188 src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 231 + 232 @@ -9532,11 +10002,11 @@ Présentation du nœud de réseau Lightning nommé . Consultez les chaînes, la capacité, l’emplacement, les statistiques de frais et bien plus encore. src/app/lightning/node/node-preview.component.ts - 54 + 55 src/app/lightning/node/node.component.ts - 64 + 65 @@ -9695,7 +10165,7 @@ Nœud : src/app/lightning/node/node.component.ts - 63 + 64 @@ -9719,20 +10189,12 @@ lightning.tor-nodes-excluded - - Lightning Nodes Channels World Map - Carte du monde des canaux Lightning - - src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 73 - - See the channels of non-Tor Lightning network nodes visualized on a world map. Hover/tap on points on the map for node names and details. Visualisez les canaux des nœuds du réseau non Tor Lightning visualisés sur une carte du monde. Passez la souris/appuyez sur des points sur la carte pour connaître les noms et les détails des nœuds. src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 74 + 75 @@ -9740,7 +10202,7 @@ Aucune donnée de géolocalisation disponible src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 245 + 246 @@ -9757,7 +10219,7 @@ Consultez les emplacements des nœuds du réseau non Tor Lightning visualisés sur une carte du monde. Passez la souris/appuyez sur des points sur la carte pour connaître les noms et les détails des nœuds. src/app/lightning/nodes-map/nodes-map.component.ts - 52 + 53 @@ -9765,19 +10227,27 @@ Consultez le nombre de nœuds de réseau Lightning visualisés au fil du temps par réseau : clearnet uniquement (IPv4, IPv6), darknet (Tor, I2p, cjdns) et les deux. src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 74 + 75 - + Indexing in progress Indexation en cours src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 133 + 134 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html + 102 + + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.html + 52 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 123 + 124 @@ -9785,11 +10255,11 @@ Clearnet et Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 176 + 177 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 315 + 316 @@ -9797,11 +10267,11 @@ Clearnet seulement (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 197 + 198 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 307 + 308 @@ -9809,11 +10279,11 @@ Darknet seulement (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 218 + 219 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 299 + 300 @@ -9834,7 +10304,7 @@ Consultez une répartition géographique du réseau Lightning : combien de nœuds Lightning sont hébergés dans les pays du monde, capacité BTC globale pour chaque pays, et plus encore. src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 47 + 48 @@ -9842,19 +10312,19 @@ nœuds src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104 + 105 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 137 + 138 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 163 + 164 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 196 + 197 @@ -9862,7 +10332,7 @@ Capacité de BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 105 + 106 @@ -9897,7 +10367,7 @@ Nœuds Lightning: src/app/lightning/nodes-per-country/nodes-per-country.component.ts - 43 + 44 @@ -9905,7 +10375,7 @@ Explorez tous les nœuds Lightning hébergés dans et obtenez un aperçu de la capacité de chaque nœud, du nombre de canaux ouverts, et bien plus encore. src/app/lightning/nodes-per-country/nodes-per-country.component.ts - 44 + 45 @@ -9988,7 +10458,7 @@ Parcourez les 100 principaux FAI hébergeant des nœuds Lightning ainsi que des statistiques telles que le nombre total de nœuds par FAI, la capacité BTC globale par FAI, et bien plus encore. src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 54 + 55 @@ -9996,11 +10466,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 164 + 165 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 197 + 198 @@ -10039,11 +10509,11 @@ Nœuds Lightning sur le FAI : [AS ] src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts - 46 + 47 src/app/lightning/nodes-per-isp/nodes-per-isp.component.ts - 46 + 47 @@ -10051,11 +10521,11 @@ Parcourez tous les nœuds Bitcoin Lightning à l'aide du FAI [AS] et consultez les statistiques globales telles que le nombre total de nœuds, la capacité totale, et plus encore pour le FAI. src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts - 47 + 48 src/app/lightning/nodes-per-isp/nodes-per-isp.component.ts - 47 + 48 @@ -10099,7 +10569,7 @@ Noeuds Lightning les plus anciens src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts - 27 + 28 @@ -10107,7 +10577,7 @@ Consultez les nœuds les plus anciens du réseau Lightning ainsi que leur capacité, leur nombre de canaux, leur emplacement, etc. src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts - 28 + 29 @@ -10115,7 +10585,7 @@ Consultez les nœuds Lightning avec le plus de liquidité BTC déployé ainsi que des statistiques de haut niveau telles que le nombre de canaux ouverts, l'emplacement, l'âge du nœud, etc. src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 35 + 36 @@ -10123,7 +10593,7 @@ Consultez les nœuds Lightning avec le plus grand nombre de canaux ouverts, ainsi que des statistiques de haut niveau telles que la capacité totale des nœuds, l'âge des nœuds, etc. src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.ts - 39 + 40 @@ -10140,7 +10610,7 @@ Top nœuds Lightning src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts - 22 + 23 @@ -10148,7 +10618,7 @@ Découvrez les principaux nœuds du réseau Lightning classés par liquidité, connectivité et âge. src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts - 23 + 24 @@ -10156,7 +10626,7 @@ Visualisez la capacité du réseau Lightning au fil du temps en termes de nombre de canaux ouverts et de capacité totale de Bitcoin. src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 71 + 72 @@ -10485,6 +10955,7 @@ This address is deceptively similar to another output. It may be part of an address poisoning attack. + Cette adresse est trompeusement similaire à une autre sortie de transaction. Elle pourrait faire partie d’une attaque par empoisonnement d’adresse. src/app/shared/components/address-text/address-text.component.html 9 @@ -10527,14 +10998,6 @@ address.bare-multisig - - unknown - - src/app/shared/components/address-type/address-type.component.html - 27 - - unknown - confirmation confirmation @@ -10565,16 +11028,6 @@ Transaction replaced state transaction.replaced - - Unconfirmed - non confirmée - - src/app/shared/components/confirmations/confirmations.component.html - 18 - - Transaction unconfirmed state - transaction.unconfirmed - sat/WU sat/WU @@ -10747,12 +11200,21 @@ footer.signet-explorer + + Regtest Explorer + Explorateur Regtest + + src/app/shared/components/global-footer/global-footer.component.html + 100 + + footer.regtest-explorer + Liquid Testnet Explorer Explorateur Liquid Testnet src/app/shared/components/global-footer/global-footer.component.html - 100 + 101 footer.liquid-testnet-explorer @@ -10761,7 +11223,7 @@ Explorateur Liquid src/app/shared/components/global-footer/global-footer.component.html - 101 + 102 footer.liquid-explorer @@ -10770,7 +11232,7 @@ Outils src/app/shared/components/global-footer/global-footer.component.html - 105 + 106 footer.tools @@ -10779,7 +11241,7 @@ Horloge (trouvé) src/app/shared/components/global-footer/global-footer.component.html - 107 + 108 footer.clock-mined @@ -10788,7 +11250,7 @@ Légal src/app/shared/components/global-footer/global-footer.component.html - 112 + 113 footer.legal @@ -10797,7 +11259,7 @@ Conditions d'utilisation src/app/shared/components/global-footer/global-footer.component.html - 113 + 114 Terms of Service shared.terms-of-service @@ -10807,7 +11269,7 @@ Politique de confidentialité src/app/shared/components/global-footer/global-footer.component.html - 114 + 115 Privacy Policy shared.privacy-policy @@ -10817,7 +11279,7 @@ Politique en matière de marques src/app/shared/components/global-footer/global-footer.component.html - 115 + 116 Trademark Policy shared.trademark-policy @@ -10827,13 +11289,14 @@ Licences tierces src/app/shared/components/global-footer/global-footer.component.html - 116 + 117 Third-party Licenses shared.trademark-policy Your balance is too low.Please top up your account. + Votre solde est insuffisant.Veuillez recharger votre compte . src/app/shared/components/mempool-error/mempool-error.component.html 9 @@ -11015,7 +11478,7 @@ Frais de transaction src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts - 11 + 12 @@ -11023,7 +11486,7 @@ Multi-signature de src/app/shared/script.utils.ts - 172 + 173 From fdb141f1855bf0678e91e6ee6488d7ef293c7491 Mon Sep 17 00:00:00 2001 From: natsoni Date: Tue, 10 Feb 2026 15:37:54 +0100 Subject: [PATCH 07/12] Fix Lightning group overlapping title --- .../components/svg-images/svg-images.component.html | 13 +++++++++++++ .../src/app/lightning/group/group.component.html | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/components/svg-images/svg-images.component.html b/frontend/src/app/components/svg-images/svg-images.component.html index 837dee48c..8147dda66 100644 --- a/frontend/src/app/components/svg-images/svg-images.component.html +++ b/frontend/src/app/components/svg-images/svg-images.component.html @@ -138,6 +138,19 @@ + + + + + + + + + + + + + diff --git a/frontend/src/app/lightning/group/group.component.html b/frontend/src/app/lightning/group/group.component.html index c5999da5c..dc13f4ca2 100644 --- a/frontend/src/app/lightning/group/group.component.html +++ b/frontend/src/app/lightning/group/group.component.html @@ -3,7 +3,7 @@
- +

The Mempool Open Source Project

From de06a4788fe557de353c0cee839f7c09a9efcd40 Mon Sep 17 00:00:00 2001 From: natsoni Date: Wed, 11 Feb 2026 00:30:41 +0100 Subject: [PATCH 08/12] Hardcode federation addresses timelock to 4032 and rollback db --- backend/src/api/database-migration.ts | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/backend/src/api/database-migration.ts b/backend/src/api/database-migration.ts index b2613cad8..2e7bffcab 100644 --- a/backend/src/api/database-migration.ts +++ b/backend/src/api/database-migration.ts @@ -7,7 +7,7 @@ import cpfpRepository from '../repositories/CpfpRepository'; import { RowDataPacket } from 'mysql2'; class DatabaseMigration { - private static currentVersion = 105; + private static currentVersion = 106; private queryTimeout = 3600_000; private statisticsAddedIndexed = false; private uniqueLogs: string[] = []; @@ -1201,6 +1201,27 @@ class DatabaseMigration { } await this.updateToSchemaVersion(105); } + + // another liquid failure, fix bad timelocks on federation txos + // (safe to make this conditional on the network since it doesn't change the database schema) + if (databaseSchemaVersion < 106 && config.MEMPOOL.NETWORK === 'liquid') { + // In a specific setup it's possible that 3G6neksSBMp51kHJ2if8SeDUrzT8iVETWT and bc1qwnevjp8nsq7adu3hxlvdvslrf242q4vuavfg0y929jp2zntp3vgq7cq6z2 + // were set with a timelock of 2016 instead of 4032 + // This rollbacks the tables to before bc1qwnevjp8nsq7adu3hxlvdvslrf242q4vuavfg0y929jp2zntp3vgq7cq6z2 is used, and + // manually fixes the timelock for 3G6neksSBMp51kHJ2if8SeDUrzT8iVETWT + const [stateRows]: any[] = await DB.query(`SELECT name, number FROM state WHERE name IN ('last_elements_block', 'last_bitcoin_block_audit')`); + const lastElementsBlock = Number(stateRows?.find((row: any) => row.name === 'last_elements_block')?.number ?? 0); + const lastBlockAudit = Number(stateRows?.find((row: any) => row.name === 'last_bitcoin_block_audit')?.number ?? 0); + if (lastElementsBlock > 3686608 && lastBlockAudit > 929700) { + await this.$executeQuery('DELETE FROM elements_pegs WHERE block > 3686608'); + await this.$executeQuery('DELETE FROM federation_txos WHERE blocknumber > 929701'); + await this.$executeQuery(`UPDATE federation_txos SET lastblockupdate = 929700 WHERE unspent = 1;`); + await this.$executeQuery(`UPDATE federation_txos SET timelock = 4032 WHERE bitcoinaddress = '3G6neksSBMp51kHJ2if8SeDUrzT8iVETWT';`); + await this.$executeQuery(`UPDATE state SET number = 3686608 WHERE name = 'last_elements_block';`); + await this.$executeQuery(`UPDATE state SET number = 929700 WHERE name = 'last_bitcoin_block_audit';`); + } + await this.updateToSchemaVersion(106); + } } /** From 82c987e9948d2174bf99ca45ee3004552b7b9e58 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Wed, 11 Feb 2026 11:44:47 +0000 Subject: [PATCH 09/12] Translate frontend/src/locale/messages.xlf in pl 100% reviewed source file: 'frontend/src/locale/messages.xlf' on 'pl'. --- frontend/src/locale/messages.pl.xlf | 1827 +++++++++++++++++---------- 1 file changed, 1145 insertions(+), 682 deletions(-) diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index 84d8aa529..9157206d0 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -5,8 +5,57 @@ Close Zamknij - node_modules/src/ngb-config.ts - 13 + node_modules/src/alert/alert.ts + 50 + + + + Slide of + Slajd z + + node_modules/src/carousel/carousel.ts + 131,135 + + Currently selected slide number read by screen reader + + + Previous + Poprzednie + + node_modules/src/carousel/carousel.ts + 148 + + + + Next + Następne + + node_modules/src/carousel/carousel.ts + 172,173 + + + + Previous month + Poprzedni miesiąc + + node_modules/src/datepicker/datepicker-navigation.ts + 83,85 + + + node_modules/src/datepicker/datepicker-navigation.ts + 104,105 + + + + Next month + Następny miesiąc + + node_modules/src/datepicker/datepicker-navigation.ts + 112 + + + node_modules/src/datepicker/datepicker-navigation.ts + 112 @@ -45,35 +94,6 @@ 13 - - Previous month - Poprzedni miesiąc - - node_modules/src/ngb-config.ts - 13 - - - node_modules/src/ngb-config.ts - 13 - - - - - - - node_modules/src/ngb-config.ts - 13 - - - - Slide of - Slajd z - - node_modules/src/ngb-config.ts - 13 - - Currently selected slide number read by screen reader - Hours Godzin @@ -90,14 +110,6 @@ 13 - - Previous - Poprzednie - - node_modules/src/ngb-config.ts - 13 - - MM MM @@ -126,26 +138,6 @@ 13 - - Next month - Następny miesiąc - - node_modules/src/ngb-config.ts - 13 - - - node_modules/src/ngb-config.ts - 13 - - - - Next - Następne - - node_modules/src/ngb-config.ts - 13 - - Minutes Minut @@ -266,6 +258,14 @@ 13 + + + + + node_modules/src/progressbar/progressbar.ts + 41,42 + + Become a Community Sponsor Zostań sponsorem społecznościowym @@ -303,6 +303,7 @@ Be your own explorer + Bądź swoim własnym eksploratorem src/app/components/about/about.component.html 15 @@ -335,7 +336,7 @@ Sponsorzy Wieloryby src/app/components/about/about.component.html - 228 + 225 about.sponsors.withHeart @@ -344,7 +345,7 @@ Sponsorzy Chad src/app/components/about/about.component.html - 241 + 238 about.sponsors.withHeart @@ -353,7 +354,7 @@ Sponsorzy OG ❤️ src/app/components/about/about.component.html - 254 + 251 about.sponsors.withHeart @@ -362,7 +363,7 @@ Integracje społecznościowe src/app/components/about/about.component.html - 265 + 262 about.community-integrations @@ -371,7 +372,7 @@ Sojusze społecznościowe src/app/components/about/about.component.html - 379 + 376 about.alliances @@ -380,7 +381,7 @@ Tłumacze projektu src/app/components/about/about.component.html - 395 + 392 about.translators @@ -389,7 +390,7 @@ Współtwórcy projektu src/app/components/about/about.component.html - 409 + 406 about.contributors @@ -398,25 +399,34 @@ Członkowie projektu src/app/components/about/about.component.html - 421 + 418 about.project_members - - Project Maintainers - Opiekunowie projektu + + Powered By + Wspierane przez src/app/components/about/about.component.html - 434 + 431 - about.maintainers + about.powered-by + + + Managed By + Zarządzane przez + + src/app/components/about/about.component.html + 439 + + about.managed-by About O stronie src/app/components/about/about.component.ts - 49 + 50 @@ -424,7 +434,7 @@ Dowiedz się więcej o The Mempool Open Source Project®: sponsorach korporacyjnych, indywidualnych, integracjach, kontrybutorach, licencjonowaniu FOSS i więcej. src/app/components/about/about.component.ts - 50 + 51 @@ -454,7 +464,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 602 + 594 close @@ -501,7 +511,7 @@ src/app/components/transaction/transaction.component.html - 188 + 203 Transaction Virtual Size transaction.vsize @@ -577,7 +587,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 612 + 604 src/app/components/accelerate-checkout/accelerate-fee-graph.component.html @@ -637,7 +647,7 @@ src/app/components/transactions-list/transactions-list.component.html - 475 + 518 src/app/lightning/channels-list/channels-list.component.html @@ -789,6 +799,7 @@ Mempool Accelerator® fees + Opłaty Mempool Accelerator® src/app/components/accelerate-checkout/accelerate-checkout.component.html 161 @@ -893,7 +904,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 610 + 602 accelerator.confirmation-expected @@ -926,6 +937,7 @@ Payment to mempool.space for acceleration of txid .. + Płatność do mempool.space za przyspieszenie txid .. src/app/components/accelerate-checkout/accelerate-checkout.component.html 370,371 @@ -962,7 +974,7 @@ src/app/components/accelerate-checkout/accelerate-checkout.component.html - 641 + 633 Pay button label transaction.pay @@ -987,6 +999,7 @@ OR + LUB src/app/components/accelerate-checkout/accelerate-checkout.component.html 405 @@ -1074,53 +1087,38 @@ accelerator.confirming-acceleration-with-miners - - Your transaction is being accelerated! - Twoja transakcja jest przyspieszana! + + Transaction is being accelerated! + Transakcja jest przyspieszana! src/app/components/accelerate-checkout/accelerate-checkout.component.html - 576 + 575 accelerator.success-message - - Transaction is already being accelerated! + + Transaction has been accepted for acceleration by our mining pool partners. + Transakcja została przyjęta do przyspieszenia przez naszych partnerów z puli wydobywczych. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 578 - - accelerator.success-message-third-party - - - Your transaction has been accepted for acceleration by our mining pool partners. - Twoja transakcja została zaakceptowana do przyspieszenia przez naszych partnerów z puli wydobywczych. - - src/app/components/accelerate-checkout/accelerate-checkout.component.html - 587 + 582 accelerator.confirmed-acceleration-with-miners - - Transaction has already been accepted for acceleration by our mining pool partners. - - src/app/components/accelerate-checkout/accelerate-checkout.component.html - 589 - - accelerator.confirmed-acceleration-with-miners-third-party - Get a receipt. + Pobierz rachunek. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 594 + 586 src/app/components/tracker/tracker.component.html - 146 + 145 src/app/components/tracker/tracker.component.html - 180 + 179 accelerator.receipt-label @@ -1129,7 +1127,7 @@ Obliczam koszt... src/app/components/accelerate-checkout/accelerate-checkout.component.html - 614 + 606 accelerator.calculating-cost @@ -1138,7 +1136,7 @@ dostosuj src/app/components/accelerate-checkout/accelerate-checkout.component.html - 620 + 612 accelerator.customize @@ -1147,7 +1145,7 @@ Przyszpiesz do ~ sat/vB src/app/components/accelerate-checkout/accelerate-checkout.component.html - 623 + 615 accelerator.accelerate-to-x @@ -1156,12 +1154,16 @@ Przyspiesz src/app/components/accelerate-checkout/accelerate-checkout.component.html - 629 + 621 src/app/components/transaction/transaction-details/transaction-details.component.html 172 + + src/app/components/transactions-list/transactions-list.component.html + 529 + Accelerate button label transaction.accelerate @@ -1170,7 +1172,7 @@ Twoja transakcja otrzyma wyższy priorytet u nawet % wydobywców. src/app/components/accelerate-checkout/accelerate-checkout.component.html - 651 + 643 accelerator.hashrate-percentage-description @@ -1179,11 +1181,11 @@ Następny blok src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 81 + 82 src/app/components/block/block.component.html - 12 + 16 src/app/components/difficulty/difficulty-tooltip.component.html @@ -1191,7 +1193,7 @@ src/app/components/mempool-block/mempool-block.component.ts - 87 + 86 src/app/components/pool/pool.component.html @@ -1207,15 +1209,47 @@ maksimum src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 91 + 92 - - accelerated - przyspieszonych + + Accelerated + Przyspieszona src/app/components/accelerate-checkout/accelerate-fee-graph.component.ts - 91 + 92 + + + src/app/components/acceleration-timeline/acceleration-timeline-tooltip.component.html + 16 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 92 + + + src/app/components/acceleration-timeline/acceleration-timeline.component.html + 96 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 89 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 99 + + + src/app/components/transaction/transaction-details/transaction-details.component.html + 201 + + + src/app/components/transactions-list/transactions-list.component.html + 527 + + + src/app/shared/filters.utils.ts + 100 @@ -1277,7 +1311,7 @@ src/app/components/tracker/tracker.component.html - 59 + 57 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -1314,39 +1348,6 @@ Transaction first seen transaction.first-seen - - Accelerated - Przyspieszona - - src/app/components/acceleration-timeline/acceleration-timeline-tooltip.component.html - 16 - - - src/app/components/acceleration-timeline/acceleration-timeline.component.html - 92 - - - src/app/components/acceleration-timeline/acceleration-timeline.component.html - 96 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 89 - - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 97 - - - src/app/components/transaction/transaction-details/transaction-details.component.html - 201 - - - src/app/shared/filters.utils.ts - 100 - - transaction.audit.accelerated - Mined Wydobyta @@ -1519,6 +1520,7 @@ Canceled + Anulowano src/app/components/acceleration-timeline/acceleration-timeline.component.html 32 @@ -1538,7 +1540,7 @@ src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts - 79 + 77 src/app/components/graphs/graphs.component.html @@ -1551,27 +1553,7 @@ Brak przyspieszanych transakcji w tym okresie src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts - 135 - - - - At block: - W bloku: - - src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts - 179 - - - src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts - 255 - - - src/app/components/block-health-graph/block-health-graph.component.ts - 143 - - - src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 168 + 138 @@ -1579,19 +1561,19 @@ Około bloku: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts - 181 + 192 src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts - 257 + 258 src/app/components/block-health-graph/block-health-graph.component.ts - 145 + 146 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 170 + 171 @@ -1635,10 +1617,6 @@ src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 39 - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 82 - accelerator.total-boost @@ -1718,7 +1696,7 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.ts - 62 + 63 src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html @@ -1816,7 +1794,7 @@ src/app/components/block/block.component.html - 9 + 10 shared.block-title @@ -1850,7 +1828,7 @@ src/app/components/address/address.component.html - 280 + 294 src/app/components/tracker/tracker-bar.component.html @@ -1903,7 +1881,7 @@ src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 101 + 103 accelerator.pending-accelerations @@ -1925,24 +1903,24 @@ mining.1-day - - (1 week) - (1 tydzień) - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 30 - - mining.1-week - (1 month) (1 miesiąc) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 33 + 30 mining.1-month + + (1 year) + (1 rok) + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 33 + + mining.1-year + (all time) (cały okres) @@ -1961,16 +1939,25 @@ src/app/components/address/address.component.html - 98 + 111 all + + Historical Trend + Trend historyczny + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 82 + + acceleration.historical-trend + View more » Pokaż więcej » src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 91 + 93 src/app/components/custom-dashboard/custom-dashboard.component.html @@ -1984,6 +1971,10 @@ src/app/components/mining-dashboard/mining-dashboard.component.html 46 + + src/app/components/treasuries/treasuries.component.html + 92 + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 42 @@ -1999,7 +1990,7 @@ Ostatnie akceleracje src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 113 + 115 dashboard.recent-accelerations @@ -2035,7 +2026,7 @@ bez akceleracji src/app/components/acceleration/active-acceleration-box/active-acceleration-box.component.ts - 99 + 100 @@ -2074,27 +2065,27 @@ Saldo src/app/components/address-graph/address-graph.component.ts - 61 + 62 src/app/components/address-graph/address-graph.component.ts - 202 + 191 src/app/components/address-graph/address-graph.component.ts - 229 + 216 src/app/components/address-graph/address-graph.component.ts - 310 + 297 src/app/components/address-graph/address-graph.component.ts - 382 + 369 src/app/components/address-graph/address-graph.component.ts - 457 + 444 src/app/components/address/address-preview.component.html @@ -2207,7 +2198,7 @@ src/app/components/address/address.component.html - 311 + 328 address.unconfidential @@ -2220,7 +2211,7 @@ src/app/components/address/address.component.html - 295 + 309 src/app/components/wallet/wallet.component.html @@ -2246,15 +2237,23 @@ src/app/components/block/block.component.html - 406 + 477 src/app/components/block/block.component.html - 438 + 509 src/app/components/block/block.component.html - 462 + 547 + + + src/app/components/block/block.component.html + 586 + + + src/app/components/block/block.component.html + 612 src/app/components/blocks-list/blocks-list.component.html @@ -2292,7 +2291,7 @@ src/app/components/address/address.component.html - 256 + 270 src/app/components/amount/amount.component.html @@ -2316,7 +2315,7 @@ src/app/components/transactions-list/transactions-list.component.html - 484 + 537 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2333,11 +2332,11 @@ Adres: src/app/components/address/address-preview.component.ts - 73 + 74 src/app/components/address/address.component.ts - 173 + 204 @@ -2345,15 +2344,16 @@ Zobacz transakcje w mempoolu, potwierdzone, saldo oraz inne dane dla adresu . src/app/components/address/address-preview.component.ts - 74 + 75 src/app/components/address/address.component.ts - 174 + 205 Taproot Tree + Drzewo Taproot src/app/components/address/address.component.html 79 @@ -2365,7 +2365,7 @@ Historia salda src/app/components/address/address.component.html - 93 + 106 src/app/components/custom-dashboard/custom-dashboard.component.html @@ -2377,7 +2377,7 @@ src/app/components/treasuries/treasuries.component.html - 63 + 68 src/app/components/wallet/wallet.component.html @@ -2390,15 +2390,16 @@ ostatnie src/app/components/address/address.component.html - 101 + 114 recent Unspent Outputs + Niewydane wyjścia src/app/components/address/address.component.html - 114 + 127 address.unspent-outputs @@ -2407,7 +2408,7 @@ z transakcji src/app/components/address/address.component.html - 129 + 142 X of X Address Transaction @@ -2416,7 +2417,7 @@ z transakcji src/app/components/address/address.component.html - 130 + 143 X of X Address Transactions (Plural) @@ -2425,20 +2426,16 @@ Błąd podczas ładowania adresu. src/app/components/address/address.component.html - 229 - - - src/app/components/address/address.component.html - 246 + 241 address.error.loading-address-data - - There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: - Na tym adresie jest zbyt wiele transakcji, więcej niż może obsłużyć twój backend. Dowiedz się więcej o konfigurowaniu mocniejszego backendu. Zamiast tego rozważ przeglądanie tego adresu na oficjalnej stronie Mempool: + + There are too many transactions on this address, more than your backend can handle. See more on setting up a stronger backend. Consider viewing this address on the official Mempool website instead: + Ten adres ma zbyt wiele transakcji, więcej niż twój backend może obsłużyć. Dowiedz się więcej o konfiguracji mocniejszego backendu. Rozważ wyświetlenie tego adresu na oficjalnej stronie Mempool: src/app/components/address/address.component.html - 232,235 + 247,251 Electrum server limit exceeded error @@ -2447,7 +2444,7 @@ Potwierdzone saldo src/app/components/address/address.component.html - 275 + 289 src/app/components/wallet/wallet.component.html @@ -2460,7 +2457,7 @@ Potwierdzone UTXO src/app/components/address/address.component.html - 285 + 299 src/app/components/wallet/wallet.component.html @@ -2473,7 +2470,7 @@ UTXO w toku src/app/components/address/address.component.html - 290 + 304 address.pending-utxos @@ -2482,7 +2479,7 @@ Typ src/app/components/address/address.component.html - 300 + 314 src/app/components/transaction/cpfp-info.component.html @@ -2490,12 +2487,22 @@ src/app/components/transactions-list/transactions-list.component.html - 447 + 490 address.type + + Add unpublished spending paths + Dodaj nieopublikowane ścieżki wydawania + + src/app/components/address/address.component.html + 319 + + address.taproot-psbt-add-unpublished-spend-paths + Fiat + Fiat src/app/components/amount-selector/amount-selector.component.html 5 @@ -2663,7 +2670,7 @@ Aktywo: src/app/components/asset/asset.component.ts - 75 + 76 @@ -2671,7 +2678,7 @@ Przeglądaj przegląd aktywów Liquid (): zobacz kwotę wydaną, kwotę spaloną, kwotę w obiegu, powiązane transakcje i więcej. src/app/components/asset/asset.component.ts - 108 + 109 @@ -2704,11 +2711,11 @@ src/app/components/assets/assets-nav/assets-nav.component.ts - 42 + 43 src/app/components/assets/assets.component.ts - 44 + 45 Assets page header @@ -2733,7 +2740,7 @@ src/app/components/custom-dashboard/custom-dashboard.component.ts - 73 + 74 src/app/components/pool-ranking/pool-ranking.component.html @@ -2765,7 +2772,7 @@ src/app/dashboard/dashboard.component.ts - 78 + 79 @@ -2788,9 +2795,10 @@ Explore all the assets issued on the Liquid network like LBTC, L-CAD, USDT, and more. + Odkrywaj wszystkie aktywa wyemitowane w sieci Liquid, takie jak LBTC, L-CAD, USDT i inne. src/app/components/assets/assets-nav/assets-nav.component.ts - 43 + 44 @@ -2893,7 +2901,7 @@ src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts - 72 + 73 src/app/components/graphs/graphs.component.html @@ -2932,7 +2940,23 @@ Zobacz stawki Bitcoin wizualizowane w czasie, w tym minimalne i maksymalne opłaty za blok wraz z opłatami w różnych percentylach. src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts - 73 + 74 + + + + At block: + W bloku: + + src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts + 256 + + + src/app/components/block-health-graph/block-health-graph.component.ts + 144 + + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 169 @@ -2944,7 +2968,7 @@ src/app/components/block-fees-graph/block-fees-graph.component.ts - 69 + 70 src/app/components/graphs/graphs.component.html @@ -2957,7 +2981,7 @@ Zobacz średnie opłaty za wydobycie uzyskane za blok wizualizowane w BTC i USD w czasie. src/app/components/block-fees-graph/block-fees-graph.component.ts - 70 + 71 @@ -2965,27 +2989,27 @@ Indeksowanie bloków src/app/components/block-fees-graph/block-fees-graph.component.ts - 119 + 120 src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 137 + 138 src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 116 + 117 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 119 + 120 src/app/components/hashrate-chart/hashrate-chart.component.ts - 204 + 205 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts - 202 + 203 src/app/components/indexing-progress/indexing-progress.component.html @@ -2993,7 +3017,11 @@ src/app/components/pool/pool-preview.component.ts - 122 + 123 + + + src/app/components/price-chart/price-chart.component.ts + 136 @@ -3005,7 +3033,7 @@ src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 78 + 79 src/app/components/graphs/graphs.component.html @@ -3018,7 +3046,7 @@ Zobacz opłaty wydobywcze zarobione na blok Bitcoin w porównaniu do subsydium, wizualizowane w BTC i USD na przestrzeni czasu. src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 79 + 80 @@ -3026,7 +3054,7 @@ W bloku src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 185 + 186 @@ -3034,7 +3062,7 @@ Około bloku src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts - 187 + 188 @@ -3057,6 +3085,10 @@ src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 70 + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 90 + mempool-goggles.match @@ -3068,12 +3100,21 @@ mempool-goggles.any + + None + Brak + + src/app/components/block-filters/block-filters.component.html + 27 + + mempool-goggles.none + Tint Kolory src/app/components/block-filters/block-filters.component.html - 29 + 32 mempool-goggles.tint @@ -3082,11 +3123,7 @@ Klasyczne src/app/components/block-filters/block-filters.component.html - 32 - - - src/app/components/theme-selector/theme-selector.component.html - 3 + 35 mempool-goggles.classic @@ -3095,7 +3132,7 @@ Wiek src/app/components/block-filters/block-filters.component.html - 35 + 38 mempool-goggles.age @@ -3108,7 +3145,7 @@ src/app/components/block-health-graph/block-health-graph.component.ts - 63 + 64 src/app/components/graphs/graphs.component.html @@ -3121,7 +3158,7 @@ Zobacz stan bloku Bitcoin wizualizowany w czasie. Kondycja bloku jest miarą liczby oczekiwanych transakcji zawartych w faktycznie wydobytym bloku. Oczekiwane transakcje są określane przy użyciu ponownej implementacji algorytmu wyboru transakcji Bitcoin Core przez Mempool. src/app/components/block-health-graph/block-health-graph.component.ts - 64 + 65 @@ -3129,23 +3166,23 @@ Brak danych do wyświetlenia. Spróbuj ponownie później. src/app/components/block-health-graph/block-health-graph.component.ts - 109 + 110 src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 120 + 121 src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 86 + 87 src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 233 + 234 src/app/lightning/nodes-map/nodes-map.component.ts - 146 + 147 @@ -3153,11 +3190,11 @@ Zdrowie src/app/components/block-health-graph/block-health-graph.component.ts - 190 + 191 src/app/components/block/block.component.html - 62 + 66 src/app/components/blocks-list/blocks-list.component.html @@ -3207,7 +3244,7 @@ src/app/components/tracker/tracker.component.html - 34 + 32 src/app/components/transaction/transaction-preview.component.html @@ -3390,6 +3427,7 @@ Deprioritized + Zdepriorytetyzowane src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 82 @@ -3415,6 +3453,15 @@ Conflict tx-features.tag.conflict + + No Match + Brak dopasowania + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 91 + + transaction.audit.no-match + Block Rewards Nagrody bloku @@ -3424,7 +3471,7 @@ src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 67 + 68 src/app/components/graphs/graphs.component.html @@ -3437,7 +3484,7 @@ Zobacz nagrody za bloki Bitcoin wyrażone w BTC i USD, zwizualizowane na przestrzeni czasu. Nagrody za blok to całkowite środki, które wydobywcy otrzymują z subsydium bloku oraz opłat. src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 68 + 69 @@ -3449,7 +3496,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 64 + 65 src/app/components/graphs/graphs.component.html @@ -3462,7 +3509,7 @@ Zobacz rozmiary bloków Bitcoin (MB) i wagi bloków (WU) wizualizowane w czasie. src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 65 + 66 @@ -3470,15 +3517,15 @@ Rozmiar src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 187 + 188 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 242 + 243 src/app/components/block/block.component.html - 54 + 58 src/app/components/blocks-list/blocks-list.component.html @@ -3498,7 +3545,7 @@ src/app/components/mempool-graph/mempool-graph.component.ts - 331 + 332 src/app/components/pool/pool.component.html @@ -3514,7 +3561,7 @@ src/app/components/transaction/transaction.component.html - 184 + 199 src/app/dashboard/dashboard.component.html @@ -3526,11 +3573,11 @@ Waga src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 195 + 196 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 273 + 274 src/app/components/block/block-preview.component.html @@ -3538,19 +3585,27 @@ src/app/components/block/block.component.html - 58 + 62 src/app/components/block/block.component.html - 402 + 473 src/app/components/block/block.component.html - 429 + 500 src/app/components/block/block.component.html - 458 + 536 + + + src/app/components/block/block.component.html + 575 + + + src/app/components/block/block.component.html + 608 src/app/components/transaction/transaction-raw.component.html @@ -3558,7 +3613,7 @@ src/app/components/transaction/transaction.component.html - 200 + 215 @@ -3566,11 +3621,11 @@ Rozmiar na wagę src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 203 + 204 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 285 + 286 @@ -3578,15 +3633,15 @@ Blok : src/app/components/block-view/block-view.component.ts - 110 + 111 src/app/components/block/block-preview.component.ts - 104 + 105 src/app/components/block/block.component.ts - 262 + 286 @@ -3594,15 +3649,15 @@ Zobacz rozmiar, wagę, zakres opłat, uwzględnione transakcje i nie tylko dla bloku Liquid (). src/app/components/block-view/block-view.component.ts - 112 + 113 src/app/components/block/block-preview.component.ts - 106 + 107 src/app/components/block/block.component.ts - 264 + 288 @@ -3610,15 +3665,15 @@ Zobacz rozmiar, wagę, zakres opłat, uwzględnione transakcje, audyt (oczekiwany vs rzeczywisty) i więcej dla bloku Bitcoin ( ). src/app/components/block-view/block-view.component.ts - 114 + 115 src/app/components/block/block-preview.component.ts - 108 + 109 src/app/components/block/block.component.ts - 266 + 290 @@ -3630,7 +3685,7 @@ src/app/components/block/block.component.html - 10 + 11 @@ -3642,7 +3697,7 @@ src/app/components/block/block.component.html - 48 + 52 src/app/components/blocks-list/blocks-list.component.html @@ -3679,7 +3734,7 @@ src/app/components/block/block.component.html - 136 + 142 src/app/components/mempool-block/mempool-block.component.html @@ -3696,23 +3751,31 @@ src/app/components/block/block.component.html - 147 + 153 src/app/components/block/block.component.html - 173 + 179 src/app/components/block/block.component.html - 396 + 467 src/app/components/block/block.component.html - 417 + 488 src/app/components/block/block.component.html - 454 + 525 + + + src/app/components/block/block.component.html + 564 + + + src/app/components/block/block.component.html + 604 src/app/components/mempool-block/mempool-block.component.html @@ -3730,7 +3793,7 @@ src/app/components/block/block.component.html - 182 + 188 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -3747,11 +3810,11 @@ src/app/components/block/block.component.html - 342 + 412 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 55 + 68 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -3768,11 +3831,11 @@ src/app/components/block/block.component.html - 343 + 413 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 56 + 69 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -3811,12 +3874,29 @@ Block reorg block.reorged + + Stale Block + Przestarzały blok + + src/app/components/block/block.component.html + 13 + + + src/app/components/block/block.component.html + 255 + + + src/app/components/block/block.component.html + 287 + + shared.stale-block-title + Previous Block Poprzedni blok src/app/components/block/block.component.html - 19 + 23 Previous Block @@ -3825,7 +3905,7 @@ Przestarzały src/app/components/block/block.component.html - 30 + 34 Stale block state block.stale @@ -3835,7 +3915,7 @@ Hasz src/app/components/block/block.component.html - 44 + 48 src/app/components/simpleproof-widget/simpleproof-widget.component.html @@ -3848,7 +3928,7 @@ Nieznany src/app/components/block/block.component.html - 73 + 77 src/app/components/blocks-list/blocks-list.component.html @@ -3872,7 +3952,7 @@ src/app/lightning/channel/closing-type/closing-type.component.ts - 32 + 33 src/app/lightning/node/node-preview.component.html @@ -3888,19 +3968,23 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 154 + 155 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 323 + 324 src/app/services/api.service.ts - 275 + 283 src/app/services/api.service.ts - 288 + 296 + + + src/app/shared/components/address-type/address-type.component.html + 27 unknown @@ -3909,7 +3993,7 @@ Zakres opłat src/app/components/block/block.component.html - 132 + 138 src/app/components/mempool-block/mempool-block.component.html @@ -3922,23 +4006,23 @@ Na podstawie przeciętnej transakcji w natywnym segwit o długości 140 vBajtów src/app/components/block/block.component.html - 140 + 146 src/app/components/fees-box/fees-box.component.html - 16 + 17 src/app/components/fees-box/fees-box.component.html - 22 + 23 src/app/components/fees-box/fees-box.component.html - 27 + 28 src/app/components/fees-box/fees-box.component.html - 32 + 33 src/app/components/mempool-block/mempool-block.component.html @@ -3951,21 +4035,39 @@ Subsydium i opłaty src/app/components/block/block.component.html - 162 + 168 src/app/components/block/block.component.html - 177 + 183 Total subsidy and fees in a block block.subsidy-and-fees + + Stale + Przestarzały + + src/app/components/block/block.component.html + 239 + + block.stale + + + Winning + Zwycięski + + src/app/components/block/block.component.html + 241 + + block.actual + Expected Prognoza src/app/components/block/block.component.html - 232 + 246 src/app/components/pool/pool.component.html @@ -3978,7 +4080,7 @@ Wartość aktualna src/app/components/block/block.component.html - 234 + 248 block.actual @@ -3987,16 +4089,25 @@ Prognozowany blok src/app/components/block/block.component.html - 238 + 262 block.expected-block + + Winning Block + Zwycięski blok + + src/app/components/block/block.component.html + 289 + + block.stale-block + Actual Block Rzeczywisty blok src/app/components/block/block.component.html - 253 + 296 block.actual-block @@ -4005,7 +4116,7 @@ Wersja src/app/components/block/block.component.html - 280 + 330 src/app/components/transaction/transaction-raw.component.html @@ -4013,7 +4124,7 @@ src/app/components/transaction/transaction.component.html - 210 + 225 transaction.version @@ -4022,7 +4133,7 @@ Taproot src/app/components/block/block.component.html - 281 + 331 src/app/components/tx-features/tx-features.component.html @@ -4052,7 +4163,7 @@ Bity src/app/components/block/block.component.html - 284 + 334 block.bits @@ -4061,7 +4172,7 @@ Korzeń Merkle'a src/app/components/block/block.component.html - 288 + 338 block.merkle-root @@ -4070,7 +4181,7 @@ Trudność src/app/components/block/block.component.html - 299 + 349 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -4086,11 +4197,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 302 + 303 src/app/components/hashrate-chart/hashrate-chart.component.ts - 403 + 404 block.difficulty @@ -4099,7 +4210,7 @@ Unikalna liczba (nonce) src/app/components/block/block.component.html - 303 + 353 block.nonce @@ -4108,16 +4219,34 @@ Nagłówek bloku w postaci szesnastkowej src/app/components/block/block.component.html - 307 + 357 block.header + + There is a stale block at this height + Na tej wysokości znajduje się przestarzały blok + + src/app/components/block/block.component.html + 372 + + block.stale-block-singular + + + There are stale blocks at this height + Na tej wysokości jest przestarzałych bloków + + src/app/components/block/block.component.html + 374 + + block.stale-block-plural + Audit Audyt src/app/components/block/block.component.html - 325 + 393 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -4131,7 +4260,7 @@ Szczegóły src/app/components/block/block.component.html - 332 + 400 src/app/components/transaction/transaction-raw.component.html @@ -4143,19 +4272,19 @@ src/app/components/transaction/transaction.component.html - 79 + 93 src/app/components/transaction/transaction.component.html - 168 + 183 src/app/components/transaction/transaction.component.html - 176 + 191 src/app/components/transaction/transaction.component.html - 301 + 316 src/app/lightning/channel/channel.component.html @@ -4185,7 +4314,7 @@ Błąd ładowania danych bloku. src/app/components/block/block.component.html - 374 + 444 block.error.loading-block-data @@ -4194,7 +4323,7 @@ Czemu ten blok jest pusty? src/app/components/block/block.component.html - 388 + 458 block.empty-block-explanation @@ -4203,7 +4332,7 @@ Opłata przyspieszenia wniesiona poza mempoolem src/app/components/block/block.component.html - 420 + 491 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -4220,7 +4349,7 @@ src/app/components/blocks-list/blocks-list.component.ts - 70 + 71 src/app/components/pool-ranking/pool-ranking.component.html @@ -4361,7 +4490,7 @@ Zobacz najnowsze bloki Liquid wraz z podstawowymi statystykami, takimi jak wysokość bloku, rozmiar bloku i inne. src/app/components/blocks-list/blocks-list.component.ts - 73 + 74 @@ -4369,7 +4498,7 @@ Zobacz najnowsze bloki Bitcoin wraz z podstawowymi statystykami, takimi jak wysokość bloku, nagroda za blok, rozmiar bloku i inne. src/app/components/blocks-list/blocks-list.component.ts - 75 + 76 @@ -4381,7 +4510,7 @@ src/app/shared/components/global-footer/global-footer.component.html - 108 + 109 shared.calculator @@ -4390,7 +4519,7 @@ Skopiowano! src/app/components/clipboard/clipboard.component.ts - 15 + 16 @@ -4414,7 +4543,7 @@ src/app/components/fees-box/fees-box.component.html - 47 + 48 fees-box.high-priority @@ -4455,6 +4584,10 @@ src/app/dashboard/dashboard.component.html 282 + + src/app/shared/components/confirmations/confirmations.component.html + 18 + Unconfirmed count dashboard.unconfirmed @@ -4653,7 +4786,7 @@ src/app/components/treasuries/treasuries.component.html - 11 + 18 dashboard.treasury @@ -4684,11 +4817,11 @@ Konsolidacje src/app/components/custom-dashboard/custom-dashboard.component.ts - 74 + 75 src/app/dashboard/dashboard.component.ts - 79 + 80 src/app/shared/filters.utils.ts @@ -4700,11 +4833,11 @@ Coinjoiny src/app/components/custom-dashboard/custom-dashboard.component.ts - 75 + 76 src/app/dashboard/dashboard.component.ts - 80 + 81 src/app/shared/filters.utils.ts @@ -4716,11 +4849,11 @@ Dane src/app/components/custom-dashboard/custom-dashboard.component.ts - 76 + 77 src/app/dashboard/dashboard.component.ts - 81 + 82 src/app/shared/filters.utils.ts @@ -5063,7 +5196,7 @@ src/app/components/fees-box/fees-box.component.html - 41 + 42 fees-box.no-priority @@ -5085,7 +5218,7 @@ src/app/components/fees-box/fees-box.component.html - 45 + 46 fees-box.low-priority @@ -5107,7 +5240,7 @@ src/app/components/fees-box/fees-box.component.html - 46 + 47 fees-box.medium-priority @@ -5207,7 +5340,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 77 + 78 mining.hashrate-difficulty @@ -5233,11 +5366,11 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 73 + 74 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 143 + 144 lightning.nodes-networks @@ -5254,11 +5387,11 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 70 + 71 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 133 + 134 lightning.network-capacity @@ -5271,7 +5404,7 @@ src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 53 + 54 lightning.nodes-per-isp @@ -5288,7 +5421,7 @@ src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 46 + 47 lightning.nodes-per-country @@ -5305,7 +5438,7 @@ src/app/lightning/nodes-map/nodes-map.component.ts - 51 + 52 lightning.lightning.nodes-heatmap @@ -5320,10 +5453,15 @@ src/app/lightning/nodes-channels-map/nodes-channels-map.component.html 20 + + src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts + 74 + lightning.nodes-channels-world-map Hashrate (1w) + Prędkość haszowania (1t) src/app/components/hashrate-chart/hashrate-chart.component.html 8 @@ -5339,11 +5477,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 291 + 292 src/app/components/hashrate-chart/hashrate-chart.component.ts - 391 + 392 src/app/components/pool-ranking/pool-ranking.component.html @@ -5355,11 +5493,11 @@ src/app/components/pool/pool.component.ts - 244 + 245 src/app/components/pool/pool.component.ts - 296 + 297 mining.hashrate @@ -5368,7 +5506,7 @@ Zobacz prędkość haszowania i trudność sieci Bitcoin zwizualizowaną w czasie. src/app/components/hashrate-chart/hashrate-chart.component.ts - 78 + 79 @@ -5376,11 +5514,11 @@ Prędkość haszowania (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 310 + 311 src/app/components/hashrate-chart/hashrate-chart.component.ts - 414 + 415 @@ -5388,7 +5526,7 @@ Historyczna dominacja puli wydobywczych src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts - 74 + 75 @@ -5396,7 +5534,7 @@ Zobacz wizualizację dominacji puli wydobywczych Bitcoina na przestrzeni czasu: zobacz, jak udział największych puli wydobywczych w całkowitej mocy haszowania zmieniał się z biegiem czasu. src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts - 75 + 76 @@ -5415,9 +5553,30 @@ 3 + + Audit in progress + Audyt w toku + + src/app/components/lbtc-pegs-graph/lbtc-pegs-graph.component.html + 5 + + + src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.html + 5 + + + src/app/dashboard/dashboard.component.html + 366 + + liquid.audit-in-progress + Offline Offline + + src/app/components/liquid-master-page/liquid-master-page.component.html + 21 + src/app/components/liquid-master-page/liquid-master-page.component.html 41 @@ -5428,13 +5587,17 @@ src/app/components/master-page/master-page.component.html - 57 + 54 master-page.offline Reconnecting... Ponowne łączenie... + + src/app/components/liquid-master-page/liquid-master-page.component.html + 22 + src/app/components/liquid-master-page/liquid-master-page.component.html 42 @@ -5445,7 +5608,7 @@ src/app/components/master-page/master-page.component.html - 58 + 55 master-page.reconnecting @@ -5454,7 +5617,7 @@ Sieci Warstwy 2 src/app/components/liquid-master-page/liquid-master-page.component.html - 56 + 57 master-page.layer2-networks-header @@ -5532,7 +5695,7 @@ src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.ts - 14 + 15 liquid.federation-wallet @@ -5667,7 +5830,7 @@ src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.ts - 66 + 67 src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html @@ -5753,6 +5916,7 @@ Number of times that the Federation's BTC holdings fall below 95% of the total LBTC supply + Liczba przypadków, gdy zasoby BTC Federacji spadały poniżej 95% całkowitej podaży LBTC src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 6 @@ -5800,11 +5964,12 @@ Aktywa a pasywa src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts - 163 + 165 LBTC in circulation + LBTC w obiegu src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 3 @@ -5829,7 +5994,7 @@ Zobacz statystyki transakcji w mempoolu: zakres opłat, łączna wielkość i inne. Bloki Mempool są aktualizowane w czasie rzeczywistym, gdy sieć otrzymuje nowe transakcje. src/app/components/mempool-block/mempool-block.component.ts - 62 + 61 @@ -5837,7 +6002,7 @@ Stos bloków mempool src/app/components/mempool-block/mempool-block.component.ts - 89 + 88 @@ -5845,7 +6010,7 @@ Blok mempool nr src/app/components/mempool-block/mempool-block.component.ts - 91 + 90 @@ -5853,11 +6018,11 @@ Ilość src/app/components/mempool-graph/mempool-graph.component.ts - 329 + 330 src/app/components/statistics/statistics.component.ts - 49 + 50 @@ -5865,7 +6030,7 @@ Przedział src/app/components/mempool-graph/mempool-graph.component.ts - 330 + 331 @@ -5873,7 +6038,7 @@ Suma src/app/components/mempool-graph/mempool-graph.component.ts - 332 + 333 @@ -5925,7 +6090,7 @@ Pulpit wydobycia src/app/components/mining-dashboard/mining-dashboard.component.ts - 29 + 30 src/app/shared/components/global-footer/global-footer.component.html @@ -5937,11 +6102,12 @@ Pozyskaj w czasie rzeczywistym statystyki wydobycia Bitcoina, takie jak prędkość haszowania, dostosowanie trudności, nagrody za blok, dominacja wśród puli i więcej. src/app/components/mining-dashboard/mining-dashboard.component.ts - 30 + 31 Mint + Mennica src/app/components/ord-data/ord-data.component.html 3,5 @@ -5950,6 +6116,7 @@ Premine (% of total supply) + Premine (% całkowitej podaży) src/app/components/ord-data/ord-data.component.html 11,15 @@ -5958,6 +6125,7 @@ Etching of + Wyrycie src/app/components/ord-data/ord-data.component.html 19,21 @@ -5966,6 +6134,7 @@ Transfer + Transfer src/app/components/ord-data/ord-data.component.html 28,29 @@ -5974,6 +6143,7 @@ Source inscription + Inskrypcja źródłowa src/app/components/ord-data/ord-data.component.html 44 @@ -5986,6 +6156,7 @@ Error decoding data + Błąd dekodowania danych src/app/components/ord-data/ord-data.component.html 57 @@ -6161,12 +6332,16 @@ mining.all-miners - + Mining Pools Pule wydobywcze src/app/components/pool-ranking/pool-ranking.component.ts - 59 + 60 + + + src/app/components/search-form/search-results/search-results.component.html + 47 @@ -6174,7 +6349,7 @@ Zobacz wiodące pule wydobywcze Bitcoina, klasyfikowane według liczby wydobytych bloków, w wybranym przez siebie okresie czasu. src/app/components/pool-ranking/pool-ranking.component.ts - 60 + 61 @@ -6182,19 +6357,19 @@ bloków src/app/components/pool-ranking/pool-ranking.component.ts - 170 + 171 src/app/components/pool-ranking/pool-ranking.component.ts - 173 + 174 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 208 src/app/components/pool-ranking/pool-ranking.component.ts - 209 + 210 @@ -6202,35 +6377,35 @@ Inne () src/app/components/pool-ranking/pool-ranking.component.ts - 189 + 190 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 208 src/app/components/pool-ranking/pool-ranking.component.ts - 209 + 210 src/app/components/treasuries/treasuries-pie/treasuries-pie.component.ts - 184 + 183 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 119 + 120 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 136 + 137 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 178 + 179 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 195 + 196 @@ -6272,11 +6447,11 @@ Zobacz statystyki wydobywcze dla : ostatnio wydobyte bloki, prędkość haszowania w czasie, łączna dotychczasowa nagroda za blok, znane adresy baz monet i nie tylko. src/app/components/pool/pool-preview.component.ts - 88 + 89 src/app/components/pool/pool.component.ts - 93 + 94 @@ -6300,35 +6475,35 @@ src/app/components/transactions-list/transactions-list.component.html - 221 + 232 src/app/components/transactions-list/transactions-list.component.html - 243 + 262 src/app/components/transactions-list/transactions-list.component.html - 258 + 277 src/app/components/transactions-list/transactions-list.component.html - 287 + 306 src/app/components/transactions-list/transactions-list.component.html - 406 + 449 src/app/components/transactions-list/transactions-list.component.html - 423 + 466 src/app/components/transactions-list/transactions-list.component.html - 440 + 483 src/app/components/transactions-list/transactions-list.component.html - 458 + 501 src/app/components/wallet/wallet.component.html @@ -6437,6 +6612,7 @@ Clean + Czysty src/app/components/pool/pool.component.html 227 @@ -6445,6 +6621,7 @@ Prevhash + Prevhash src/app/components/pool/pool.component.html 228 @@ -6453,6 +6630,7 @@ Job Received + Zadanie otrzymane src/app/components/pool/pool.component.html 229 @@ -6473,7 +6651,7 @@ Jeszcze za mało danych src/app/components/pool/pool.component.ts - 177 + 178 @@ -6481,14 +6659,60 @@ Dominacja puli src/app/components/pool/pool.component.ts - 255 + 256 src/app/components/pool/pool.component.ts - 307 + 308 mining.pool-dominance + + Bitcoin Price + Cena Bitcoina + + src/app/components/price-chart/price-chart.component.html + 8 + + + src/app/components/price-chart/price-chart.component.html + 24 + + + src/app/components/price-chart/price-chart.component.html + 69 + + price-chart.bitcoin-price + + + % Change + Zmiana % + + src/app/components/price-chart/price-chart.component.html + 14 + + + src/app/components/price-chart/price-chart.component.html + 75 + + price-chart.percent-change + + + Bitcoin Price + Cena Bitcoina + + src/app/components/price-chart/price-chart.component.ts + 77 + + + + See the Bitcoin price in USD visualized over time. + Zobacz cenę Bitcoina w USD zwizualizowaną w czasie. + + src/app/components/price-chart/price-chart.component.ts + 78 + + Broadcast Transaction Rozgłoś transakcję @@ -6500,6 +6724,10 @@ src/app/components/push-transaction/push-transaction.component.html 8 + + src/app/components/push-transaction/push-transaction.component.ts + 58 + src/app/shared/components/global-footer/global-footer.component.html 77 @@ -6509,7 +6737,7 @@ Transaction hex - Postać szestnastkowa transakcji + Postać szesnastkowa transakcji src/app/components/push-transaction/push-transaction.component.html 6 @@ -6520,12 +6748,13 @@ src/app/components/transaction/transaction.component.html - 226 + 241 transaction.hex Submit Package + Wyślij Pakiet src/app/components/push-transaction/push-transaction.component.html 14 @@ -6565,6 +6794,7 @@ Maximum burn amount (sats) + Maksymalna kwota spalania (sats) src/app/components/push-transaction/push-transaction.component.html 23 @@ -6597,20 +6827,12 @@ test-tx.rejection-reason - - Broadcast Transaction - Rozgłoś transakcję - - src/app/components/push-transaction/push-transaction.component.ts - 57 - - Broadcast a transaction to the network using the transaction's hash. Rozgłoś transakcję do sieci przy użyciu jej skrótu. src/app/components/push-transaction/push-transaction.component.ts - 58 + 59 @@ -6622,7 +6844,7 @@ src/app/components/rbf-list/rbf-list.component.ts - 61 + 62 page.rbf-replacements @@ -6640,7 +6862,7 @@ Zobacz najnowsze zastąpienia RBF w sieci Bitcoin, aktualizowane w czasie rzeczywistym. src/app/components/rbf-list/rbf-list.component.ts - 62 + 63 @@ -6660,31 +6882,31 @@ src/app/components/transaction/transaction.component.html - 147 + 162 src/app/components/transactions-list/transactions-list.component.html - 223 + 234 src/app/components/transactions-list/transactions-list.component.html - 244 + 263 src/app/components/transactions-list/transactions-list.component.html - 259 + 278 src/app/components/transactions-list/transactions-list.component.html - 407 + 450 src/app/components/transactions-list/transactions-list.component.html - 424 + 467 src/app/components/transactions-list/transactions-list.component.html - 441 + 484 show-less @@ -6697,7 +6919,7 @@ src/app/components/transactions-list/transactions-list.component.html - 514 + 567 x-remaining @@ -6857,15 +7079,6 @@ search.bitcoin-addresses - - Mining Pools - Pule wydobywcze - - src/app/components/search-form/search-results/search-results.component.html - 47 - - search.mining-pools - Lightning Nodes Węzły Lightning @@ -6913,6 +7126,7 @@ Search by student name or ID... + Szukaj imienia ucznia lub ID... src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 28 @@ -6925,6 +7139,7 @@ Student Name + Imię ucznia src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 35 @@ -6933,6 +7148,7 @@ ID + ID src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 42 @@ -6941,6 +7157,7 @@ Proof + Dowód src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 48 @@ -6953,6 +7170,7 @@ Verify + Weryfikuj src/app/components/simpleproof-widget/simpleproof-cubo-widget.component.html 98 @@ -6965,6 +7183,7 @@ Filename + Nazwa pliku src/app/components/simpleproof-widget/simpleproof-widget.component.html 22 @@ -6973,12 +7192,119 @@ Verified + Zweryfikowano src/app/components/simpleproof-widget/simpleproof-widget.component.html 24 simpleproof.verified + + Recent Stale Chain Tips + Ostatnie nieaktywne zakończenia łańcucha + + src/app/components/stale-list/stale-list.component.html + 2 + + page.recent-stale-chain-tips + + + beta + beta + + src/app/components/stale-list/stale-list.component.html + 2 + + beta + + + Headers Only + Tylko nagłówki + + src/app/components/stale-list/stale-list.component.html + 14 + + chain-tips.headers-only + + + Valid Headers + Prawidłowe nagłówki + + src/app/components/stale-list/stale-list.component.html + 15 + + chain-tips.valid-headers + + + Valid Fork + Prawidłowy fork + + src/app/components/stale-list/stale-list.component.html + 16 + + chain-tips.valid-fork + + + Invalid + Nieprawidłowy + + src/app/components/stale-list/stale-list.component.html + 17 + + chain-tips.invalid + + + Depth + Głębokość + + src/app/components/stale-list/stale-list.component.html + 20,21 + + chain-tips.depth + + + Stale + Przestarzały + + src/app/components/stale-list/stale-list.component.html + 26,27 + + chain-tips.stale-block + + + Winning + Zwycięski + + src/app/components/stale-list/stale-list.component.html + 73,74 + + chain-tips.winning-block + + + This node hasn't seen any stale blocks yet! + Ten węzeł nie widział jeszcze żadnych przestarzałych bloków! + + src/app/components/stale-list/stale-list.component.html + 120 + + chain-tips.no-stale-blocks-yet + + + Stale Chain Tips + Nieaktywne zakończenia łańcucha + + src/app/components/stale-list/stale-list.component.ts + 62 + + + + See the most recent stale chain tips on the Bitcoin network. + Zobacz najnowsze nieaktywne zakończenia łańcucha w sieci Bitcoin . + + src/app/components/stale-list/stale-list.component.ts + 63 + + Mempool by vBytes (sat/vByte) Mempool wg vBytes (sat / vByte) @@ -6997,7 +7323,7 @@ src/app/shared/components/global-footer/global-footer.component.html - 106 + 107 footer.clock-mempool @@ -7042,7 +7368,7 @@ Wykresy src/app/components/statistics/statistics.component.ts - 65 + 66 @@ -7050,11 +7376,12 @@ Zobacz rozmiar mempoola (w MvB) oraz transakcje na sekundę (w vB/s) wizualizowane w czasie. src/app/components/statistics/statistics.component.ts - 66 + 67 Stratum Jobs + Zadania Stratum src/app/components/stratum/stratum-list/stratum-list.component.html 2 @@ -7063,6 +7390,7 @@ levels remaining + Zostało poziomów: src/app/components/taproot-address-scripts/taproot-address-scripts.component.html 19 @@ -7071,6 +7399,7 @@ 1 level remaining + Zostało poziomów: 1 src/app/components/taproot-address-scripts/taproot-address-scripts.component.html 20 @@ -7090,14 +7419,14 @@ src/app/components/test-transactions/test-transactions.component.ts - 35 + 36 Test Transactions shared.test-transactions Raw hex - Surowa postać heksadecymalna + Surowa postać szesnastkowa src/app/components/test-transactions/test-transactions.component.html 8 @@ -7127,7 +7456,7 @@ Ta transakcja została zastąpiona przez: src/app/components/tracker/tracker.component.html - 48 + 46 src/app/components/transaction/transaction.component.html @@ -7141,7 +7470,7 @@ Szacowany czas src/app/components/tracker/tracker.component.html - 70 + 68 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -7155,7 +7484,7 @@ Nie w najbliższym czasie src/app/components/tracker/tracker.component.html - 75 + 73 src/app/components/transaction/transaction-details/transaction-details.component.html @@ -7169,7 +7498,7 @@ Data potwierdzenia src/app/components/tracker/tracker.component.html - 89 + 87 transaction.confirmed-at @@ -7178,16 +7507,16 @@ Wysokość bloku src/app/components/tracker/tracker.component.html - 98 + 96 transaction.block-height - - Your transaction has been accelerated - Twoja transakcja została przyspieszona + + Transaction has been accelerated + Transakcja została przyspieszona src/app/components/tracker/tracker.component.html - 144 + 143 tracker.explain.accelerated @@ -7196,7 +7525,7 @@ Oczekiwanie na pojawienie się twojej transakcji w mempoolu src/app/components/tracker/tracker.component.html - 154 + 153 tracker.explain.waiting @@ -7205,7 +7534,7 @@ Twoja transakcja znajduje się w mempool, ale jej potwierdzenie zajmie trochę czasu src/app/components/tracker/tracker.component.html - 160 + 159 tracker.explain.pending @@ -7214,7 +7543,7 @@ Twoja transakcja znajduje się blisko szczytu mempool i powinna zostać wkrótce potwierdzona. src/app/components/tracker/tracker.component.html - 166 + 165 tracker.explain.soon @@ -7223,7 +7552,7 @@ Twoja transakcja powinna zostać potwierdzona w następnym bloku src/app/components/tracker/tracker.component.html - 172 + 171 tracker.explain.next-block @@ -7232,7 +7561,7 @@ Twoja transakcja jest potwierdzona! src/app/components/tracker/tracker.component.html - 178 + 177 tracker.explain.confirmed @@ -7241,7 +7570,7 @@ Twoja transakcja została zastąpiona nowszą wersją! src/app/components/tracker/tracker.component.html - 187 + 186 tracker.explain.replaced @@ -7250,11 +7579,11 @@ Błąd podczas ładowania danych transakcji. src/app/components/tracker/tracker.component.html - 197 + 196 src/app/components/transaction/transaction.component.html - 357 + 372 transaction.error.loading-transaction-data @@ -7263,7 +7592,7 @@ Zobacz więcej szczegółów src/app/components/tracker/tracker.component.html - 206 + 205 accelerator.show-more-details @@ -7272,15 +7601,15 @@ Transakcja: src/app/components/tracker/tracker.component.ts - 409 + 446 src/app/components/transaction/transaction-preview.component.ts - 91 + 92 src/app/components/transaction/transaction.component.ts - 580 + 616 @@ -7288,19 +7617,20 @@ Uzyskaj w czasie rzeczywistym status, adresy, opłaty, informacje o skrypcie i nie tylko dla transakcji z txid . src/app/components/tracker/tracker.component.ts - 413 + 450 src/app/components/transaction/transaction-preview.component.ts - 95 + 96 src/app/components/transaction/transaction.component.ts - 584 + 620 Related Transactions + Transakcje powiązane src/app/components/transaction/cpfp-info.component.html 3 @@ -7457,6 +7787,7 @@ This transaction cannot be accelerated + Ta transakcja nie może być przyspieszona src/app/components/transaction/transaction-details/transaction-details.component.html 173 @@ -7465,6 +7796,7 @@ Preview Transaction + Podgląd transakcji src/app/components/transaction/transaction-raw.component.html 5 @@ -7473,6 +7805,10 @@ src/app/components/transaction/transaction-raw.component.html 25 + + src/app/components/transaction/transaction-raw.component.ts + 90 + src/app/shared/components/global-footer/global-footer.component.html 79 @@ -7482,6 +7818,7 @@ Transaction hex or base64 encoded PSBT + Postać szesnastkowa transakcji lub PSBT zakodowane w base64 src/app/components/transaction/transaction-raw.component.html 9 @@ -7490,6 +7827,7 @@ Preview + Podgląd src/app/components/transaction/transaction-raw.component.html 11 @@ -7499,6 +7837,7 @@ Fetch missing prevouts + Pobierz brakujące prevout src/app/components/transaction/transaction-raw.component.html 14 @@ -7507,6 +7846,7 @@ Error decoding transaction, reason: + Błąd dekodowania transakcji, powód: src/app/components/transaction/transaction-raw.component.html 16,18 @@ -7515,6 +7855,7 @@ Preview Coinbase + Podgląd Coinbase src/app/components/transaction/transaction-raw.component.html 23 @@ -7524,6 +7865,7 @@ This transaction is stored locally in your browser. Broadcast it to add it to the mempool. + Ta transakcja jest przechowywana lokalnie w twojej przeglądarce. Rozgłoś ją, aby dodać do mempoola. src/app/components/transaction/transaction-raw.component.html 50,52 @@ -7533,6 +7875,7 @@ Redirecting to transaction page... + Przekierowywanie do strony transakcji... src/app/components/transaction/transaction-raw.component.html 53,55 @@ -7542,6 +7885,7 @@ Transaction cannot be broadcasted because it's missing signature(s) + Transakcja nie może zostać rozgłoszona, ponieważ brakuje podpisu(-ów). src/app/components/transaction/transaction-raw.component.html 58 @@ -7550,6 +7894,7 @@ Broadcast + Rozgłoś src/app/components/transaction/transaction-raw.component.html 60 @@ -7559,6 +7904,7 @@ Broadcasted + Rozgłoszono src/app/components/transaction/transaction-raw.component.html 61 @@ -7575,11 +7921,11 @@ src/app/components/transaction/transaction.component.html - 121 + 136 src/app/components/transaction/transaction.component.html - 241 + 256 Transaction flow transaction.flow @@ -7593,7 +7939,7 @@ src/app/components/transaction/transaction.component.html - 124 + 139 hide-diagram @@ -7606,15 +7952,15 @@ src/app/components/transaction/transaction.component.html - 145 + 160 src/app/components/transactions-list/transactions-list.component.html - 289 + 308 src/app/components/transactions-list/transactions-list.component.html - 460 + 503 show-more @@ -7627,11 +7973,11 @@ src/app/components/transaction/transaction.component.html - 163 + 178 src/app/components/transaction/transaction.component.html - 272 + 287 Transaction inputs and outputs transaction.inputs-and-outputs @@ -7645,7 +7991,7 @@ src/app/components/transaction/transaction.component.html - 167 + 182 show-diagram @@ -7658,7 +8004,7 @@ src/app/components/transaction/transaction.component.html - 192 + 207 Transaction Adjusted VSize transaction.adjusted-vsize @@ -7672,7 +8018,7 @@ src/app/components/transaction/transaction.component.html - 214 + 229 transaction.locktime @@ -7685,39 +8031,45 @@ src/app/components/transaction/transaction.component.html - 218 + 233 Transaction Sigops transaction.sigops - - Loading - - src/app/components/transaction/transaction-raw.component.html - 228,230 - - transaction.error.loading-prevouts - - - Preview Transaction - - src/app/components/transaction/transaction-raw.component.ts - 89 - - Preview a transaction to the Bitcoin network using the transaction's raw hex data. + Wyświetl podgląd transakcji w sieci Bitcoin, używając surowych danych transakcji w postaci szesnastkowej. src/app/components/transaction/transaction-raw.component.ts - 90 + 91 + + This transaction ID appears twice in the blockchain as the coinbase of blocks and , due to a bug later mitigated by BIP-30. + Ten identyfikator transakcji występuje dwukrotnie w blockchainie jako coinbase bloków oraz , z powodu błędu później złagodzonego przez BIP-30. + + src/app/components/transaction/transaction.component.html + 40,42 + + Duplicate transaction notice + transaction.duplicate.notice + + + Read more + Czytaj więcej + + src/app/components/transaction/transaction.component.html + 44 + + Duplicate transaction read more + transaction.duplicate.read-more + Hide accelerator Ukryj akcelerator src/app/components/transaction/transaction.component.html - 78 + 92 accelerator.hide @@ -7726,7 +8078,7 @@ Historia RBF src/app/components/transaction/transaction.component.html - 103 + 118 RBF Timeline transaction.rbf-history @@ -7736,7 +8088,7 @@ Historia Akceleracji src/app/components/transaction/transaction.component.html - 112 + 127 Acceleration Timeline transaction.acceleration-timeline @@ -7746,7 +8098,7 @@ Transakcja nie odnaleziona. src/app/components/transaction/transaction.component.html - 350 + 365 transaction.error.transaction-not-found @@ -7755,12 +8107,13 @@ Oczekiwanie aż pojawi się w mempool... src/app/components/transaction/transaction.component.html - 351 + 366 transaction.error.waiting-for-it-to-appear Warning! This transaction involves deceptively similar addresses. It may be an address poisoning attack. + Uwaga! Ta transakcja obejmuje adresy myląco podobne do siebie. Może to być atak typu "address poisoning". src/app/components/transactions-list/transactions-list.component.html 21 @@ -7787,6 +8140,7 @@ Inscription + Inskrypcja src/app/components/transactions-list/transactions-list.component.html 123 @@ -7805,7 +8159,7 @@ ScriptSig (HEX) - ScriptSig (Postać szestnastkowa) + ScriptSig (Postać szesnastkowa) src/app/components/transactions-list/transactions-list.component.html 168 @@ -7827,15 +8181,25 @@ Skrypt realizacji P2SH src/app/components/transactions-list/transactions-list.component.html - 232 + 243 transactions-list.p2sh-redeem-script - - P2TR Simplicity script + + P2TR control block + Blok kontrolny P2TR src/app/components/transactions-list/transactions-list.component.html - 237 + 248 + + transactions-list.p2tr-control-block + + + P2TR Simplicity script + Skrypt Simplicity dla P2TR + + src/app/components/transactions-list/transactions-list.component.html + 256 transactions-list.p2tr-simplicity-script @@ -7844,7 +8208,7 @@ P2TR tapscript src/app/components/transactions-list/transactions-list.component.html - 249 + 268 transactions-list.p2tr-tapscript @@ -7853,7 +8217,7 @@ Skrypt świadka P2WSH src/app/components/transactions-list/transactions-list.component.html - 251 + 270 transactions-list.p2wsh-witness-script @@ -7862,7 +8226,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 266 + 285 transactions-list.nsequence @@ -7871,7 +8235,7 @@ Poprzedni skrypt wyjściowy src/app/components/transactions-list/transactions-list.component.html - 271 + 290 transactions-list.previous-output-script @@ -7880,7 +8244,7 @@ Poprzedni typ wyjścia src/app/components/transactions-list/transactions-list.component.html - 275 + 294 transactions-list.previous-output-type @@ -7889,7 +8253,7 @@ Peg-out do src/app/components/transactions-list/transactions-list.component.html - 326,327 + 345,346 transactions-list.peg-out-to @@ -7898,17 +8262,17 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 400 + 443 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm ScriptPubKey (HEX) - ScriptPubKey (Postać szestnastkowa) + ScriptPubKey (Postać szesnastkowa) src/app/components/transactions-list/transactions-list.component.html - 413 + 456 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -7918,42 +8282,154 @@ Pokaż więcej wejść by ujawnić dane o opłatach src/app/components/transactions-list/transactions-list.component.html - 477 + 520 transactions-list.load-to-reveal-fee-info + + leaf version + wersja liścia + + src/app/components/transactions-list/transactions-list.component.html + 583 + + transactions-list.taproot.leaf-version + + + parity + parzystość + + src/app/components/transactions-list/transactions-list.component.html + 587 + + transactions-list.taproot.parity + + + key path + ścieżka klucza + + src/app/components/transactions-list/transactions-list.component.html + 592 + + transactions-list.taproot.keypath + + + script depth + głębokość skryptu + + src/app/components/transactions-list/transactions-list.component.html + 597 + + transactions-list.taproot.script-depth + + + Bitcoin Supply + Podaż Bitcoina + + src/app/components/treasuries/supply/treasuries-supply.component.html + 1 + + treasuries.bitcoin-supply + + + in treasuries + w skarbcach + + src/app/components/treasuries/supply/treasuries-supply.component.html + 35 + + treasuries.held-in-treasuries + + + of total supply + z całkowitej podaży + + src/app/components/treasuries/supply/treasuries-supply.component.html + 42 + + treasuries.percent-of-total-supply + + + yet to be mined + pozostało do wydobycia + + src/app/components/treasuries/supply/treasuries-supply.component.html + 48 + + treasuries.yet-to-be-mined + Treasury Leaderboard + Ranking skarbców src/app/components/treasuries/treasuries.component.html - 7 + 14 dashboard.treasury-leaderboard BTC Balance + Saldo BTC src/app/components/treasuries/treasuries.component.html - 12 + 19 dashboard.treasury-leaderboard.balance USD Value + Wartość w USD src/app/components/treasuries/treasuries.component.html - 13 + 20 dashboard.treasury-leaderboard.value Treasury Distribution + Rozkład skarbców src/app/components/treasuries/treasuries.component.html - 43 + 50 dashboard.treasury-distribution + + Verified Treasuries + Zweryfikowane skarbce + + src/app/components/treasuries/verify/treasuries-verify.component.html + 1 + + treasuries.verified-treasuries + + + verified addresses + zweryfikowane adresy + + src/app/components/treasuries/verify/treasuries-verify.component.html + 35 + + treasuries.held-in-treasuries + + + verified of total + zweryfikowane z całości + + src/app/components/treasuries/verify/treasuries-verify.component.html + 42 + + treasuries.percent-of-total-verify + + + verified holdings + zweryfikowane zasoby + + src/app/components/treasuries/verify/treasuries-verify.component.html + 48 + + treasuries.yet-to-be-mined + other inputs inne wejścia @@ -8186,6 +8662,7 @@ Wallet + Portfel src/app/components/wallet/wallet-preview.component.html 3 @@ -8194,6 +8671,7 @@ Balance (BTC) + Saldo (BTC) src/app/components/wallet/wallet-preview.component.html 17 @@ -8202,6 +8680,7 @@ Balance (USD) + Saldo (USD) src/app/components/wallet/wallet-preview.component.html 20 @@ -8210,17 +8689,7 @@ Wallet: - - src/app/components/wallet/wallet-preview.component.ts - 149 - - - src/app/components/wallet/wallet.component.ts - 69 - - - - See mempool transactions, confirmed transactions, balance, and more for wallet . + Portfel: src/app/components/wallet/wallet-preview.component.ts 150 @@ -8230,8 +8699,21 @@ 70 + + See mempool transactions, confirmed transactions, balance, and more for wallet . + Zobacz transakcje w mempoolu, potwierdzone transakcje, saldo i więcej dla portfela. + + src/app/components/wallet/wallet-preview.component.ts + 151 + + + src/app/components/wallet/wallet.component.ts + 71 + + Error loading wallet data. + Błąd podczas wczytywania danych portfela. src/app/components/wallet/wallet.component.html 139 @@ -8270,6 +8752,7 @@ LBTC Supply Against BTC Holdings + Podaż LBTC względem zasobów BTC src/app/dashboard/dashboard.component.html 184 @@ -8280,23 +8763,6 @@ dashboard.lbtc-supply-against-btc-holdings - - Indexing in progress - Indeksowanie w toku - - src/app/dashboard/dashboard.component.html - 364 - - - src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html - 102 - - - src/app/lightning/statistics-chart/lightning-statistics-chart.component.html - 52 - - lightning.indexing-in-progress - mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, wallet issues, etc.For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc). mempool.space dostarcza jedynie dane o sieci Bitcoin. Nie może pomóc w odzyskaniu środków, problemach z portfelem itp.W przypadku takich próśb należy się z nami skontaktować z podmiotem, który pomógł w dokonaniu transakcji (oprogramowanie portfela, firma zajmująca się wymianą itp.). @@ -8335,6 +8801,10 @@ src/app/docs/api-docs/api-docs.component.html 137 + + src/app/docs/api-docs/api-docs.component.html + 203 + src/app/lightning/group/group.component.html 17 @@ -8393,7 +8863,7 @@ FAQ src/app/docs/docs/docs.component.ts - 46 + 47 @@ -8401,7 +8871,7 @@ Znajdź odpowiedzi na często zadawane pytania, takie jak: Co to jest mempool? Dlaczego moja transakcja nie zostaje potwierdzona? Jak mogę uruchomić własną instancję Projektu Open Source The Mempool? I inne. src/app/docs/docs/docs.component.ts - 47 + 48 @@ -8409,7 +8879,7 @@ REST API src/app/docs/docs/docs.component.ts - 51 + 52 @@ -8417,7 +8887,7 @@ Dokumentacja dla usługi REST API liquid.network: uzyskaj informacje o adresach, transakcjach, aktywach, blokach i więcej. src/app/docs/docs/docs.component.ts - 53 + 54 @@ -8425,7 +8895,7 @@ Dokumentacja dla usługi REST API mempool.space: uzyskaj informacje o adresach, transakcjach, blokach, opłatach, wydobyciu, sieci Lightning i więcej. src/app/docs/docs/docs.component.ts - 55 + 56 @@ -8433,7 +8903,7 @@ WebSocket API src/app/docs/docs/docs.component.ts - 59 + 60 @@ -8441,7 +8911,7 @@ Dokumentacja dla usługi WebSocket API liquid.network: uzyskuj informacje w czasie rzeczywistym o blokach, mempoolach, transakcjach, adresach i więcej. src/app/docs/docs/docs.component.ts - 61 + 62 @@ -8449,7 +8919,7 @@ Dokumentacja dla usługi WebSocket API mempool.space: uzyskuj informacje w czasie rzeczywistym o blokach, mempoolach, transakcjach, adresach i więcej. src/app/docs/docs/docs.component.ts - 63 + 64 @@ -8457,7 +8927,7 @@ Electrum RPC src/app/docs/docs/docs.component.ts - 67 + 68 @@ -8465,7 +8935,7 @@ Dokumentacja naszego interfejsu Electrum RPC: uzyskaj natychmiastowy, wygodny i niezawodny dostęp do instancji Esplora. src/app/docs/docs/docs.component.ts - 68 + 69 @@ -8578,11 +9048,11 @@ src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 313 + 314 src/app/lightning/nodes-map/nodes-map.component.ts - 213 + 214 lightning.x-channels @@ -8708,11 +9178,11 @@ src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 159 + 160 src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 229 + 230 src/app/lightning/node-statistics/node-statistics.component.html @@ -8748,11 +9218,11 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 213 + 214 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 293 + 294 lightning.capacity @@ -8782,11 +9252,11 @@ Przegląd kanału Lightning . Zobacz przepustowość kanału, zaangażowane węzły Lightning, powiązane transakcje w łańcuchu i nie tylko. src/app/lightning/channel/channel-preview.component.ts - 39 + 40 src/app/lightning/channel/channel.component.ts - 38 + 39 @@ -8888,7 +9358,7 @@ Kanał: src/app/lightning/channel/channel.component.ts - 37 + 38 @@ -8896,7 +9366,7 @@ Obustronnie zamknięty src/app/lightning/channel/closing-type/closing-type.component.ts - 20 + 21 @@ -8904,7 +9374,7 @@ Wymuszone zamknięcie src/app/lightning/channel/closing-type/closing-type.component.ts - 24 + 25 @@ -8912,7 +9382,7 @@ Wymuszone zamknięcie z karą src/app/lightning/channel/closing-type/closing-type.component.ts - 28 + 29 @@ -9203,11 +9673,11 @@ src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 151 + 152 src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts - 206 + 207 src/app/lightning/node-statistics/node-statistics.component.html @@ -9255,11 +9725,11 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 205 + 206 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 270 + 271 lightning.channels @@ -9376,7 +9846,7 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 34 + 35 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -9397,7 +9867,7 @@ src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.ts - 38 + 39 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -9410,7 +9880,7 @@ Eksplorator Lightning src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts - 33 + 34 src/app/shared/components/global-footer/global-footer.component.html @@ -9422,7 +9892,7 @@ Uzyskaj statystyki dotyczące sieci Lightning (łączna pojemność, łączność itp.), węzłów Lightning (kanały, płynność finansowa itp.) oraz kanałów Lightning (status, opłaty itp.). src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts - 34 + 35 @@ -9439,11 +9909,11 @@ Opłaty wychodzące src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 179 + 180 src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 217 + 218 @@ -9451,11 +9921,11 @@ Opłaty przychodzące src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 187 + 188 src/app/lightning/node-fee-chart/node-fee-chart.component.ts - 231 + 232 @@ -9532,11 +10002,11 @@ Przegląd węzła sieci Lightning o nazwie . Zobacz kanały, pojemność, lokalizację, statystyki opłat i nie tylko. src/app/lightning/node/node-preview.component.ts - 54 + 55 src/app/lightning/node/node.component.ts - 64 + 65 @@ -9695,7 +10165,7 @@ Węzeł: src/app/lightning/node/node.component.ts - 63 + 64 @@ -9719,20 +10189,12 @@ lightning.tor-nodes-excluded - - Lightning Nodes Channels World Map - Mapa światowa kanałów węzłów sieci Lightning - - src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 73 - - See the channels of non-Tor Lightning network nodes visualized on a world map. Hover/tap on points on the map for node names and details. Zobacz kanały węzłów Lightning w sieci innych niż Tor zwizualizowane na mapie świata. Najedź kursorem/dotknij punktów na mapie, aby wyświetlić nazwy węzłów i szczegóły. src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 74 + 75 @@ -9740,7 +10202,7 @@ Brak danych geolokalizacyjnych src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 245 + 246 @@ -9757,7 +10219,7 @@ Zobacz lokalizacje węzłów sieci innych niż Tor Lightning wizualizowane na mapie świata. Najedź kursorem/dotknij punktów na mapie, aby wyświetlić nazwy węzłów i szczegóły. src/app/lightning/nodes-map/nodes-map.component.ts - 52 + 53 @@ -9765,19 +10227,27 @@ Zobacz liczbę węzłów sieci Lightning wizualizowanych w czasie według sieci: tylko clearnet (IPv4, IPv6), darknet (Tor, I2p, cjdns) lub obie. src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 74 + 75 - + Indexing in progress Indeksowanie w toku src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 133 + 134 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html + 102 + + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.html + 52 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 123 + 124 @@ -9785,11 +10255,11 @@ Clearnet i Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 176 + 177 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 315 + 316 @@ -9797,11 +10267,11 @@ Tylko Clearnet (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 197 + 198 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 307 + 308 @@ -9809,11 +10279,11 @@ Tylko Darknet (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 218 + 219 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts - 299 + 300 @@ -9834,7 +10304,7 @@ Zobacz rozkład geograficzny sieci Lightning: ile węzłów Lightning jest hostowanych w krajach na całym świecie, łączną pojemność BTC dla każdego kraju i nie tylko. src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 47 + 48 @@ -9842,19 +10312,19 @@ węzłów src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104 + 105 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 137 + 138 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 163 + 164 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 196 + 197 @@ -9862,7 +10332,7 @@ pojemność BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 105 + 106 @@ -9897,7 +10367,7 @@ Węzły Lightning w src/app/lightning/nodes-per-country/nodes-per-country.component.ts - 43 + 44 @@ -9905,7 +10375,7 @@ Przeglądaj wszystkie węzły Lightning hostowane w i zobacz przegląd pojemności każdego węzła, liczbę otwartych kanałów i nie tylko. src/app/lightning/nodes-per-country/nodes-per-country.component.ts - 44 + 45 @@ -9988,7 +10458,7 @@ Przeglądaj 100 wiodących ISP hostujących węzły Lightning wraz ze statystykami takimi jak łączna liczba węzłów na dostawcę, łączna pojemność BTC na dostawcę i więcej. src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 54 + 55 @@ -9996,11 +10466,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 164 + 165 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 197 + 198 @@ -10039,11 +10509,11 @@ Węzły lightning na ISP: [AS] src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts - 46 + 47 src/app/lightning/nodes-per-isp/nodes-per-isp.component.ts - 46 + 47 @@ -10051,11 +10521,11 @@ Przeglądaj wszystkie węzły Bitcoin Lightning korzystające z ISP [AS] i zobacz zbiorcze statystyki, takie jak łączna liczba węzłów, łączna pojemność i więcej dla tego dostawcy. src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts - 47 + 48 src/app/lightning/nodes-per-isp/nodes-per-isp.component.ts - 47 + 48 @@ -10099,7 +10569,7 @@ Najstarsze węzły Lightning src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts - 27 + 28 @@ -10107,7 +10577,7 @@ Zobacz najstarsze węzły w sieci Lightning wraz z ich pojemnością, liczbą kanałów, lokalizacją itp. src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts - 28 + 29 @@ -10115,7 +10585,7 @@ Zobacz węzły Lightning z największą płynnością BTC wraz z kluczowymi statystykami, takimi jak liczba otwartych kanałów, lokalizacja, wiek węzła i więcej. src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 35 + 36 @@ -10123,7 +10593,7 @@ Zobacz węzły Lightning z największą liczbą otwartych kanałów wraz z kluczowymi statystykami, takimi jak całkowita pojemność węzła, jego wiek i więcej. src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.ts - 39 + 40 @@ -10140,7 +10610,7 @@ Ranking węzłów lightning src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts - 22 + 23 @@ -10148,7 +10618,7 @@ Zobacz wiodące węzły sieci Lightning, klasyfikowane według płynności finansowej, łączności i wieku. src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts - 23 + 24 @@ -10156,7 +10626,7 @@ Zobacz pojemność sieci Lightning wizualizowaną w czasie pod względem liczby otwartych kanałów i całkowitej ilości bitcoinów. src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts - 71 + 72 @@ -10485,6 +10955,7 @@ This address is deceptively similar to another output. It may be part of an address poisoning attack. + Ten adres jest myląco podobny do innego wyjścia. Może być częścią ataku typu "address poisoning". src/app/shared/components/address-text/address-text.component.html 9 @@ -10527,14 +10998,6 @@ address.bare-multisig - - unknown - - src/app/shared/components/address-type/address-type.component.html - 27 - - unknown - confirmation potwierdzenie @@ -10565,16 +11028,6 @@ Transaction replaced state transaction.replaced - - Unconfirmed - Niepotwierdzona - - src/app/shared/components/confirmations/confirmations.component.html - 18 - - Transaction unconfirmed state - transaction.unconfirmed - sat/WU sat/WU @@ -10747,12 +11200,21 @@ footer.signet-explorer + + Regtest Explorer + Eksplorator Regtest + + src/app/shared/components/global-footer/global-footer.component.html + 100 + + footer.regtest-explorer + Liquid Testnet Explorer Eksplorator Liquid Testnet src/app/shared/components/global-footer/global-footer.component.html - 100 + 101 footer.liquid-testnet-explorer @@ -10761,7 +11223,7 @@ Eksplorator Liquid src/app/shared/components/global-footer/global-footer.component.html - 101 + 102 footer.liquid-explorer @@ -10770,7 +11232,7 @@ Narzędzia src/app/shared/components/global-footer/global-footer.component.html - 105 + 106 footer.tools @@ -10779,7 +11241,7 @@ Zegar (wydobyty) src/app/shared/components/global-footer/global-footer.component.html - 107 + 108 footer.clock-mined @@ -10788,7 +11250,7 @@ Informacje prawne src/app/shared/components/global-footer/global-footer.component.html - 112 + 113 footer.legal @@ -10797,7 +11259,7 @@ Warunki korzystania z usługi src/app/shared/components/global-footer/global-footer.component.html - 113 + 114 Terms of Service shared.terms-of-service @@ -10807,7 +11269,7 @@ Polityka prywatności src/app/shared/components/global-footer/global-footer.component.html - 114 + 115 Privacy Policy shared.privacy-policy @@ -10817,7 +11279,7 @@ Polityka znaku towarowego src/app/shared/components/global-footer/global-footer.component.html - 115 + 116 Trademark Policy shared.trademark-policy @@ -10827,13 +11289,14 @@ Licencje stron trzecich src/app/shared/components/global-footer/global-footer.component.html - 116 + 117 Third-party Licenses shared.trademark-policy Your balance is too low.Please top up your account. + Twoja saldo jest za niskie.Proszę doładować swoje konto. src/app/shared/components/mempool-error/mempool-error.component.html 9 @@ -11015,7 +11478,7 @@ Opłaty transakcyjne src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts - 11 + 12 @@ -11023,7 +11486,7 @@ Multisig z src/app/shared/script.utils.ts - 172 + 173 From 4d10a476f10d515271f5aa688515b6b4f5696985 Mon Sep 17 00:00:00 2001 From: natsoni Date: Fri, 13 Feb 2026 11:08:15 +0100 Subject: [PATCH 10/12] Trigger hashrate weekly reindexing when mining pools are updated --- backend/src/api/mining/mining.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/src/api/mining/mining.ts b/backend/src/api/mining/mining.ts index 386f22c17..d3fadbcce 100644 --- a/backend/src/api/mining/mining.ts +++ b/backend/src/api/mining/mining.ts @@ -218,7 +218,7 @@ class Mining { const now = new Date(); // Run only if: - // * this.lastWeeklyHashrateIndexingDate is set to null (node backend restart, reorg) + // * this.lastWeeklyHashrateIndexingDate is set to null (node backend restart, reorg, or re-indexing was requested after mining pools update) // * we started a new week (around Monday midnight) const runIndexing = this.lastWeeklyHashrateIndexingDate === null || now.getUTCDay() === 1 && this.lastWeeklyHashrateIndexingDate !== now.getUTCDate(); @@ -334,6 +334,7 @@ class Mining { logger.notice(`hashrates will now be re-indexed`); await database.query(`TRUNCATE hashrates`); this.lastHashrateIndexingDate = 0; + this.lastWeeklyHashrateIndexingDate = null; this.reindexHashrateRequested = false; } From 134df3724bc775b4e365ea9d4df8d15f4c2052d6 Mon Sep 17 00:00:00 2001 From: Levi_PM241595 <151584999+most-improve123@users.noreply.github.com> Date: Sat, 14 Feb 2026 08:51:33 -0600 Subject: [PATCH 11/12] feat: improve UX by changing cursor to grab on blockchain wrapper --- .../components/blockchain/blockchain.component.scss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/components/blockchain/blockchain.component.scss b/frontend/src/app/components/blockchain/blockchain.component.scss index 32225598a..701e44673 100644 --- a/frontend/src/app/components/blockchain/blockchain.component.scss +++ b/frontend/src/app/components/blockchain/blockchain.component.scss @@ -113,4 +113,12 @@ .blockchain-wrapper .blocks-wrapper { direction: rtl; } -} \ No newline at end of file +} +.blockchain-wrapper { + cursor: grab; +} + +.blockchain-wrapper:active { + cursor: grabbing; +} + From d9ae3d9c1bbd38f51d13c1001d8d035bcbbccb1f Mon Sep 17 00:00:00 2001 From: most-improve123 Date: Sun, 15 Feb 2026 20:41:14 -0600 Subject: [PATCH 12/12] Add CLA acceptance for most-improve123 --- contributors/most-improve123.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 contributors/most-improve123.txt diff --git a/contributors/most-improve123.txt b/contributors/most-improve123.txt new file mode 100644 index 000000000..1fa329369 --- /dev/null +++ b/contributors/most-improve123.txt @@ -0,0 +1,3 @@ +I hereby accept the terms of the Contributor License Agreement in the CONTRIBUTING.md file of the mempool/mempool git repository as of January 25, 2022. + +Signed: most-improve123