diff --git a/backend/README.md b/backend/README.md index d0376408f..cd96a672c 100644 --- a/backend/README.md +++ b/backend/README.md @@ -103,7 +103,7 @@ In particular, make sure: - the correct Bitcoin Core RPC credentials are specified in `CORE_RPC` - the correct `BACKEND` is specified in `MEMPOOL`: - "electrum" if you're using [romanz/electrs](https://github.com/romanz/electrs) or [cculianu/Fulcrum](https://github.com/cculianu/Fulcrum) - - "esplora" if you're using [Blockstream/electrs](https://github.com/Blockstream/electrs) + - "esplora" if you're using [mempool/electrs](https://github.com/mempool/electrs) - "none" if you're not using any Electrum Server ### 6. Run Mempool Backend diff --git a/frontend/src/app/components/accelerate-preview/accelerate-fee-graph.component.ts b/frontend/src/app/components/accelerate-preview/accelerate-fee-graph.component.ts index b5aebd35f..ebfa019a1 100644 --- a/frontend/src/app/components/accelerate-preview/accelerate-fee-graph.component.ts +++ b/frontend/src/app/components/accelerate-preview/accelerate-fee-graph.component.ts @@ -52,7 +52,7 @@ export class AccelerateFeeGraphComponent implements OnInit, OnChanges { rate: option.rate, style: this.getStyle(option.rate, maxRate, baseHeight), class: 'max', - label: 'maximum', + label: $localize`maximum`, active: option.index === this.maxRateIndex, rateIndex: option.index, fee: option.fee, @@ -63,7 +63,7 @@ export class AccelerateFeeGraphComponent implements OnInit, OnChanges { rate: this.estimate.targetFeeRate, style: this.getStyle(this.estimate.targetFeeRate, maxRate, baseHeight), class: 'target', - label: 'next block', + label: $localize`:@@bdf0e930eb22431140a2eaeacd809cc5f8ebd38c:Next Block`.toLowerCase(), fee: this.estimate.nextBlockFee - this.estimate.txSummary.effectiveFee }); } diff --git a/frontend/src/app/components/accelerate-preview/accelerate-preview.component.html b/frontend/src/app/components/accelerate-preview/accelerate-preview.component.html index a848a645b..0005c5c29 100644 --- a/frontend/src/app/components/accelerate-preview/accelerate-preview.component.html +++ b/frontend/src/app/components/accelerate-preview/accelerate-preview.component.html @@ -32,18 +32,16 @@
You are currently on the waitlist
-
Your transaction
+
Your transaction
- Plus {{ estimate.txSummary.ancestorCount - 1 }} unconfirmed ancestor{{ estimate.txSummary.ancestorCount > 2 ? 's' : ''}}. + Plus {{ estimate.txSummary.ancestorCount - 1 }} unconfirmed ancestor(s) - + @@ -52,9 +50,7 @@ - + @@ -69,13 +65,10 @@
-
How much more are you willing to pay?
+
How much more are you willing to pay?
- - Choose the maximum extra transaction fee you're willing to pay to get into the next block.
- If the estimated next block rate rises beyond this limit, we will automatically cancel your acceleration request. -
+ Choose the maximum extra transaction fee you're willing to pay to get into the next block.
@@ -99,9 +92,7 @@
- + @@ -109,7 +100,7 @@ - + @@ -179,7 +168,7 @@ @@ -203,9 +192,7 @@ - + @@ -219,12 +206,12 @@ - + @@ -233,7 +220,7 @@ @@ -242,13 +229,21 @@ -
+
- +
+ +
+
+
+ Loading +
+
+
@@ -257,4 +252,6 @@

-
\ No newline at end of file + + +If your tx is accelerated to ~{{ i | number : '1.0-0' }} sat/vB \ No newline at end of file diff --git a/frontend/src/app/components/accelerate-preview/accelerate-preview.component.ts b/frontend/src/app/components/accelerate-preview/accelerate-preview.component.ts index 3e8dbb6ff..97b9a71dd 100644 --- a/frontend/src/app/components/accelerate-preview/accelerate-preview.component.ts +++ b/frontend/src/app/components/accelerate-preview/accelerate-preview.component.ts @@ -1,5 +1,4 @@ import { Component, OnInit, Input, OnDestroy, OnChanges, SimpleChanges, HostListener, ChangeDetectorRef } from '@angular/core'; -import { ApiService } from '../../services/api.service'; import { Subscription, catchError, of, tap } from 'rxjs'; import { StorageService } from '../../services/storage.service'; import { Transaction } from '../../interfaces/electrs.interface'; @@ -40,7 +39,7 @@ export const MAX_BID_RATIO = 4; templateUrl: 'accelerate-preview.component.html', styleUrls: ['accelerate-preview.component.scss'] }) -export class AcceleratePreviewComponent implements OnInit, OnDestroy, OnChanges { +export class AcceleratePreviewComponent implements OnDestroy, OnChanges { @Input() tx: Transaction | undefined; @Input() scrollEvent: boolean; @@ -63,18 +62,38 @@ export class AcceleratePreviewComponent implements OnInit, OnDestroy, OnChanges maxRateOptions: RateOption[] = []; + // Cashapp payment + paymentType: 'bitcoin' | 'cashapp' = 'bitcoin'; + cashAppSubscription: Subscription; + conversionsSubscription: Subscription; + payments: any; + showSpinner = false; + square: any; + cashAppPay: any; + hideCashApp = false; + constructor( public stateService: StateService, private servicesApiService: ServicesApiServices, private storageService: StorageService, private audioService: AudioService, private cd: ChangeDetectorRef - ) { } + ) { + if (window.document.referrer === 'https://cash.app/') { + this.insertSquare(); + this.paymentType = 'cashapp'; + } else { + this.paymentType = 'bitcoin'; + } + } ngOnDestroy(): void { if (this.estimateSubscription) { this.estimateSubscription.unsubscribe(); } + if (this.cashAppPay) { + this.cashAppPay.destroy(); + } } ngOnChanges(changes: SimpleChanges): void { @@ -83,69 +102,85 @@ export class AcceleratePreviewComponent implements OnInit, OnDestroy, OnChanges } } - ngOnInit() { + ngAfterViewInit() { + this.showSpinner = true; + this.user = this.storageService.getAuth()?.user ?? null; - this.estimateSubscription = this.servicesApiService.estimate$(this.tx.txid).pipe( - tap((response) => { - if (response.status === 204) { - this.estimate = undefined; - this.error = `cannot_accelerate_tx`; - this.scrollToPreviewWithTimeout('mempoolError', 'center'); - this.estimateSubscription.unsubscribe(); - } else { - this.estimate = response.body; - if (!this.estimate) { + this.servicesApiService.setupSquare$().subscribe(ids => { + this.square = { + appId: ids.squareAppId, + locationId: ids.squareLocationId + }; + this.estimateSubscription = this.servicesApiService.estimate$(this.tx.txid).pipe( + tap((response) => { + if (response.status === 204) { + this.estimate = undefined; this.error = `cannot_accelerate_tx`; this.scrollToPreviewWithTimeout('mempoolError', 'center'); this.estimateSubscription.unsubscribe(); - } - - if (this.estimate.hasAccess === true && this.estimate.userBalance <= 0) { - if (this.isLoggedIn()) { - this.error = `not_enough_balance`; + } else { + this.estimate = response.body; + if (!this.estimate) { + this.error = `cannot_accelerate_tx`; this.scrollToPreviewWithTimeout('mempoolError', 'center'); + this.estimateSubscription.unsubscribe(); + } + + if (this.paymentType === 'cashapp') { + this.estimate.userBalance = 999999999; + this.estimate.enoughBalance = true; + } + + if (this.estimate.hasAccess === true && this.estimate.userBalance <= 0) { + if (this.isLoggedIn()) { + this.error = `not_enough_balance`; + this.scrollToPreviewWithTimeout('mempoolError', 'center'); + } + } + + this.hasAncestors = this.estimate.txSummary.ancestorCount > 1; + + // Make min extra fee at least 50% of the current tx fee + this.minExtraCost = nextRoundNumber(Math.max(this.estimate.cost * 2, this.estimate.txSummary.effectiveFee)); + + this.maxRateOptions = [1, 2, 4].map((multiplier, index) => { + return { + fee: this.minExtraCost * multiplier, + rate: (this.estimate.txSummary.effectiveFee + (this.minExtraCost * multiplier)) / this.estimate.txSummary.effectiveVsize, + index, + }; + }); + + this.minBidAllowed = this.minExtraCost * MIN_BID_RATIO; + this.defaultBid = this.minExtraCost * DEFAULT_BID_RATIO; + this.maxBidAllowed = this.minExtraCost * MAX_BID_RATIO; + + this.userBid = this.defaultBid; + if (this.userBid < this.minBidAllowed) { + this.userBid = this.minBidAllowed; + } else if (this.userBid > this.maxBidAllowed) { + this.userBid = this.maxBidAllowed; + } + this.maxCost = this.userBid + this.estimate.mempoolBaseFee + this.estimate.vsizeFee; + + if (!this.error) { + this.scrollToPreview('acceleratePreviewAnchor', 'start'); + if (this.paymentType === 'cashapp') { + this.setupSquare(); + } } } - - this.hasAncestors = this.estimate.txSummary.ancestorCount > 1; - - // Make min extra fee at least 50% of the current tx fee - this.minExtraCost = nextRoundNumber(Math.max(this.estimate.cost * 2, this.estimate.txSummary.effectiveFee)); - - this.maxRateOptions = [1, 2, 4].map((multiplier, index) => { - return { - fee: this.minExtraCost * multiplier, - rate: (this.estimate.txSummary.effectiveFee + (this.minExtraCost * multiplier)) / this.estimate.txSummary.effectiveVsize, - index, - }; - }); - - this.minBidAllowed = this.minExtraCost * MIN_BID_RATIO; - this.defaultBid = this.minExtraCost * DEFAULT_BID_RATIO; - this.maxBidAllowed = this.minExtraCost * MAX_BID_RATIO; - - this.userBid = this.defaultBid; - if (this.userBid < this.minBidAllowed) { - this.userBid = this.minBidAllowed; - } else if (this.userBid > this.maxBidAllowed) { - this.userBid = this.maxBidAllowed; - } - this.maxCost = this.userBid + this.estimate.mempoolBaseFee + this.estimate.vsizeFee; - - if (!this.error) { - this.scrollToPreview('acceleratePreviewAnchor', 'start'); - } - } - }), - catchError((response) => { - this.estimate = undefined; - this.error = response.error; - this.scrollToPreviewWithTimeout('mempoolError', 'center'); - this.estimateSubscription.unsubscribe(); - return of(null); - }) - ).subscribe(); + }), + catchError((response) => { + this.estimate = undefined; + this.error = response.error; + this.scrollToPreviewWithTimeout('mempoolError', 'center'); + this.estimateSubscription.unsubscribe(); + return of(null); + }) + ).subscribe(); + }); } /** @@ -216,4 +251,112 @@ export class AcceleratePreviewComponent implements OnInit, OnDestroy, OnChanges onResize(): void { this.isMobile = window.innerWidth <= 767.98; } + + /** + * CashApp payment + */ + setupSquare() { + const init = () => { + this.initSquare(); + }; + + //@ts-ignore + if (!window.Square) { + console.warn('Square.js failed to load properly. Retrying in 1 second.'); + setTimeout(init, 1000); + } else { + init(); + } + } + + async initSquare(): Promise { + try { + //@ts-ignore + this.payments = window.Square.payments(this.square.appId, this.square.locationId) + await this.requestCashAppPayment(); + } catch (e) { + console.error(e); + this.error = 'Error loading Square Payments'; + return; + } + } + + async requestCashAppPayment() { + if (this.cashAppSubscription) { + this.cashAppSubscription.unsubscribe(); + } + if (this.conversionsSubscription) { + this.conversionsSubscription.unsubscribe(); + } + this.hideCashApp = false; + + + this.conversionsSubscription = this.stateService.conversions$.subscribe( + async (conversions) => { + const maxCostUsd = this.maxCost / 100_000_000 * conversions.USD; + const paymentRequest = this.payments.paymentRequest({ + countryCode: 'US', + currencyCode: 'USD', + total: { + amount: maxCostUsd.toString(), + label: 'Total', + pending: true, + productUrl: `https://mempool.space/tx/${this.tx.txid}`, + } + }); + this.cashAppPay = await this.payments.cashAppPay(paymentRequest, { + redirectURL: `https://mempool.space/tx/${this.tx.txid}`, + referenceId: `accelerator-${this.tx.txid.substring(0, 15)}-${Math.round(new Date().getTime() / 1000)}`, + }); + await this.cashAppPay.attach('#cash-app-pay'); + this.showSpinner = false; + + const that = this; + this.cashAppPay.addEventListener('ontokenization', function (event) { + const { tokenResult, error } = event.detail; + if (error) { + this.error = error; + } else if (tokenResult.status === 'OK') { + that.hideCashApp = true; + + that.accelerationSubscription = that.servicesApiService.accelerateWithCashApp$( + that.tx.txid, + that.userBid, + tokenResult.token, + tokenResult.details.cashAppPay.cashtag, + tokenResult.details.cashAppPay.referenceId + ).subscribe({ + next: () => { + that.audioService.playSound('ascend-chime-cartoon'); + that.showSuccess = true; + that.scrollToPreviewWithTimeout('successAlert', 'center'); + that.estimateSubscription.unsubscribe(); + }, + error: (response) => { + if (response.status === 403 && response.error === 'not_available') { + that.error = 'waitlisted'; + } else { + that.error = response.error; + } + that.scrollToPreviewWithTimeout('mempoolError', 'center'); + } + }); + } + }); + } + ); + } + + insertSquare(): void { + let statsUrl = 'https://sandbox.web.squarecdn.com/v1/square.js'; + if (document.location.hostname === 'mempool-staging.tk7.mempool.space' || document.location.hostname === 'mempool.space') { + statsUrl = 'https://web.squarecdn.com/v1/square.js'; + } + + (function() { + const d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; + // @ts-ignore + g.type='text/javascript'; g.src=statsUrl; s.parentNode.insertBefore(g, s); + })(); + } } diff --git a/frontend/src/app/components/acceleration/accelerations-list/accelerations-list.component.html b/frontend/src/app/components/acceleration/accelerations-list/accelerations-list.component.html index 8d217cb6b..74c8ed3d1 100644 --- a/frontend/src/app/components/acceleration/accelerations-list/accelerations-list.component.html +++ b/frontend/src/app/components/acceleration/accelerations-list/accelerations-list.component.html @@ -1,5 +1,5 @@
-

Accelerations

+

Accelerations

diff --git a/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html b/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html index 147e07e69..3488e1075 100644 --- a/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html +++ b/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html @@ -38,7 +38,7 @@
-
Mempool Goggles: Accelerations
+
Mempool Goggles™ : Accelerations
 
diff --git a/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts b/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts index 1d3603739..2524975e3 100644 --- a/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts +++ b/frontend/src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts @@ -13,7 +13,7 @@ import { ServicesApiServices } from '../../../services/services-api.service'; import { detectWebGL } from '../../../shared/graphs.utils'; const acceleratedColor: Color = hexToColor('8F5FF6'); -const normalColors = mempoolFeeColors.map(hex => hexToColor(hex + '5F')); +const normalColors = mempoolFeeColors.map(hex => hexToColor(hex.slice(0,6) + '5F')); interface AccelerationBlock extends BlockExtended { accelerationCount: number, diff --git a/frontend/src/app/components/block-filters/block-filters.component.html b/frontend/src/app/components/block-filters/block-filters.component.html index 21fd0959c..2a22681d6 100644 --- a/frontend/src/app/components/block-filters/block-filters.component.html +++ b/frontend/src/app/components/block-filters/block-filters.component.html @@ -1,10 +1,10 @@
- + beta
-
@@ -27,10 +27,10 @@
-
Gradient
+
Tint
diff --git a/frontend/src/app/components/block/block.component.html b/frontend/src/app/components/block/block.component.html index 0020f56be..d2f84116c 100644 --- a/frontend/src/app/components/block/block.component.html +++ b/frontend/src/app/components/block/block.component.html @@ -182,13 +182,13 @@ diff --git a/frontend/src/app/components/master-page/master-page.component.ts b/frontend/src/app/components/master-page/master-page.component.ts index 6f376f923..f3472f204 100644 --- a/frontend/src/app/components/master-page/master-page.component.ts +++ b/frontend/src/app/components/master-page/master-page.component.ts @@ -7,7 +7,6 @@ import { EnterpriseService } from '../../services/enterprise.service'; import { NavigationService } from '../../services/navigation.service'; import { MenuComponent } from '../menu/menu.component'; import { StorageService } from '../../services/storage.service'; -import { ApiService } from '../../services/api.service'; @Component({ selector: 'app-master-page', @@ -45,7 +44,6 @@ export class MasterPageComponent implements OnInit, OnDestroy { private enterpriseService: EnterpriseService, private navigationService: NavigationService, private storageService: StorageService, - private apiService: ApiService, private router: Router, ) { } diff --git a/frontend/src/app/components/mempool-block-overview/mempool-block-overview.component.html b/frontend/src/app/components/mempool-block-overview/mempool-block-overview.component.html index f02f1bb4f..bb0698123 100644 --- a/frontend/src/app/components/mempool-block-overview/mempool-block-overview.component.html +++ b/frontend/src/app/components/mempool-block-overview/mempool-block-overview.component.html @@ -8,6 +8,7 @@ [showFilters]="showFilters" [filterFlags]="filterFlags" [filterMode]="filterMode" + [gradientMode]="gradientMode" [excludeFilters]="['nonstandard']" [overrideColors]="overrideColors" (txClickEvent)="onTxClick($event)" diff --git a/frontend/src/app/components/mempool-block-overview/mempool-block-overview.component.ts b/frontend/src/app/components/mempool-block-overview/mempool-block-overview.component.ts index 48cd6cccb..4d01bd9b9 100644 --- a/frontend/src/app/components/mempool-block-overview/mempool-block-overview.component.ts +++ b/frontend/src/app/components/mempool-block-overview/mempool-block-overview.component.ts @@ -11,7 +11,7 @@ import { RelativeUrlPipe } from '../../shared/pipes/relative-url/relative-url.pi import { Router } from '@angular/router'; import { Color } from '../block-overview-graph/sprite-types'; import TxView from '../block-overview-graph/tx-view'; -import { FilterMode } from '../../shared/filters.utils'; +import { FilterMode, GradientMode } from '../../shared/filters.utils'; @Component({ selector: 'app-mempool-block-overview', @@ -25,6 +25,7 @@ export class MempoolBlockOverviewComponent implements OnInit, OnDestroy, OnChang @Input() overrideColors: ((tx: TxView) => Color) | null = null; @Input() filterFlags: bigint | undefined = undefined; @Input() filterMode: FilterMode = 'and'; + @Input() gradientMode: GradientMode = 'fee'; @Output() txPreviewEvent = new EventEmitter(); @ViewChild('blockGraph') blockGraph: BlockOverviewGraphComponent; diff --git a/frontend/src/app/components/menu/menu.component.scss b/frontend/src/app/components/menu/menu.component.scss index 8a2e55c20..fe5e74ff9 100644 --- a/frontend/src/app/components/menu/menu.component.scss +++ b/frontend/src/app/components/menu/menu.component.scss @@ -5,8 +5,7 @@ height: calc(100vh - 65px); position: absolute; top: 65px; - left: -250px; - transition: left 0.25s; + transition: 0.25s; box-shadow: 5px 0px 30px 0px #000; padding-bottom: 20px; @media (max-width: 613px) { @@ -14,6 +13,14 @@ } } +:host-context(.ltr-layout) .sidenav { + left: -250px; +} + +:host-context(.rtl-layout) .sidenav { + right: -250px; +} + .ellipsis { display: block; overflow: hidden; @@ -26,11 +33,18 @@ } .sidenav.open { - left: 0px; display: block; background-color: #1d1f31; } +:host-context(.ltr-layout) .sidenav.open { + left: 0; +} + +:host-context(.rtl-layout) .sidenav.open { + right: 0; +} + .sidenav a, button{ text-decoration: none; color: lightgray; diff --git a/frontend/src/app/components/pool-ranking/pool-ranking.component.ts b/frontend/src/app/components/pool-ranking/pool-ranking.component.ts index 11ee6e506..299a95582 100644 --- a/frontend/src/app/components/pool-ranking/pool-ranking.component.ts +++ b/frontend/src/app/components/pool-ranking/pool-ranking.component.ts @@ -175,13 +175,15 @@ export class PoolRankingComponent implements OnInit { } as PieSeriesOption); }); + const percentage = totalShareOther.toFixed(2) + '%'; + // 'Other' data.push({ itemStyle: { color: '#6b6b6b', }, value: totalShareOther, - name: 'Other' + (isMobile() ? `` : ` (${totalShareOther.toFixed(2)}%)`), + name: $localize`Other (${percentage})`, label: { overflow: 'none', color: '#b1b1b1', @@ -197,7 +199,6 @@ export class PoolRankingComponent implements OnInit { }, borderColor: '#000', formatter: () => { - const percentage = totalShareOther.toFixed(2) + '%'; const i = totalBlockOther.toString(); if (this.miningWindowPreference === '24h') { return `` + $localize`Other (${percentage})` + `
` + diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index bcc8ff332..4e3425d5e 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -40,70 +40,45 @@
- - - - -
-
+ @if (!error) { +
+
+ @if (isMobile) {
- Virtual size - Virtual size
- In-band fees - In-band fees {{ estimate.txSummary.effectiveFee | number : '1.0-0' }} sats
- Next block market rate - Next block market rate {{ estimate.targetFeeRate | number : '1.0-0' }}
- Estimated extra fee required + Estimated extra fee required {{ math.max(0, estimate.nextBlockFee - estimate.txSummary.effectiveFee) | number }} @@ -123,13 +114,11 @@
- Mempool Accelerator™ fees - Mempool Accelerator™ fees
- Accelerator Service Fee + Accelerator Service Fee +{{ estimate.mempoolBaseFee | number }} @@ -141,7 +130,7 @@
- Transaction Size Surcharge + Transaction Size Surcharge +{{ estimate.vsizeFee | number }} @@ -156,7 +145,7 @@
- Estimated acceleration cost + Estimated acceleration cost @@ -170,7 +159,7 @@
- If your tx is accelerated to {{ estimate.targetFeeRate | number : '1.0-0' }} sat/vB +
- Maximum acceleration cost + Maximum acceleration cost @@ -195,7 +184,7 @@
- If your tx is accelerated to ~{{ ((estimate.txSummary.effectiveFee + userBid) / estimate.txSummary.effectiveVsize) | number : '1.0-0' }} sat/vB +
- Available balance - Available balance {{ estimate.userBalance | number }}
- Login + Sign In
- Accelerate on mempool.space + Accelerate on mempool.space
Miner + [class]="!block?.extras.pool.name || block?.extras.pool.slug === 'unknown' ? 'badge-secondary' : 'badge-primary'"> {{ block?.extras.pool.name }} + [class]="!block?.extras.pool.name || block?.extras.pool.slug === 'unknown' ? 'badge-secondary' : 'badge-primary'"> {{ block?.extras.pool.name }} Miner + [class]="block.extras.pool.slug === 'unknown' ? 'badge-secondary' : 'badge-primary'"> {{ block.extras.pool.name }} + [class]="block.extras.pool.slug === 'unknown' ? 'badge-secondary' : 'badge-primary'"> {{ block.extras.pool.name }}
- - - - - - - - - - - - - - - - - - - - + + + +
Timestamp - ‎{{ tx.status.block_time * 1000 | date:'yyyy-MM-dd HH:mm' }} -
- () -
-
Confirmed
Features - -
Audit - - Coinbase - Expected in Block - Seen in Mempool - Not seen in Mempool - Added - Prioritized - Conflict - - - -
+
+ } @else { +
+ + +
- + + + + +
-
+ } + + } - +
-

Accelerate

+

Accelerate

@@ -113,69 +88,6 @@
- - -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - -
First seen
ETA - - - - - - - In several hours (or more) - Accelerate - - - - - - - - - - Accelerate - - - - -
Features - -
-
-
- -
-
-
-
-
@@ -364,42 +276,7 @@
- -
-
-
- - - - - - - - - - - -
-
-
- - - - - - - - - - - -
-
-
-
-
-

Flow

@@ -525,65 +402,264 @@
- - - - + + @if (tx?.status?.confirmed) { + + + } @else { + + + } + + @if (tx?.status?.confirmed) { + + } + + + + + + + + @if (tx?.status?.confirmed) { + + } + + + + @if (!isLoadingTx) { + + + + + } @else { + + } + + + + @if (!isLoadingTx) { + @if (transactionTime > 0) { - - + + + } + } @else { + + } + + + + @if (!isLoadingTx && transactionTime !== -1) { + + + + + } @else { + + } + + + + @if (network !== 'liquid' && network !== 'liquidtestnet') { + @if (!isLoadingTx) { + @if (featuresEnabled) { + + + + + } + } @else { + + } + } + + + + @if (network === '') { + @if (!isLoadingTx) { + @if (auditStatus) { + + + + + } + } @else { + + } + } + + + + @if (!isLoadingTx) { + @if (!replaced && !isCached) { - + - - - + } + } @else { + + } + + + + @if (!isLoadingTx) { + @if (((auditStatus && auditStatus.accelerated) || accelerationInfo || (tx && tx.acceleration)) || filters.length) { + + + + + } + } @else { + + } + + + + @if (!isLoadingTx) { + + + + + } @else { + + } + + + + @if (!isLoadingTx) { + + + + + } @else { + + } + + + + @if (!isLoadingTx) { + @if ((cpfpInfo && hasEffectiveFeeRate) || accelerationInfo) { + + @if (tx.acceleration || accelerationInfo) { + + } @else { + + } - - - - - - -
Timestamp + ‎{{ tx.status.block_time * 1000 | date:'yyyy-MM-dd HH:mm' }} +
+ () +
+
Fee{{ tx.fee | number }} sat Confirmed
First seen
Features + +
Audit + + @if (auditStatus.coinbase) { + Coinbase + } @else if (auditStatus.expected) { + Expected in Block + } @else if (auditStatus.seen) { + Seen in Mempool + } @else if (!auditStatus.conflict) { + Not seen in Mempool + } + @if (auditStatus.added) { + Added + } + @if (auditStatus.prioritized) { + Prioritized + } + @if (auditStatus.conflict) { + Conflict + } + +
Fee rateETA - - -   - - + @if (this.mempoolPosition?.block == null) { + + } @else if (this.mempoolPosition.block >= 7) { + + In several hours (or more) + @if (!tx.acceleration && acceleratorAvailable && accelerateCtaType === 'button' && !tx?.acceleration) { + Accelerate + } + + } @else if (network === 'liquid' || network === 'liquidtestnet') { + + } @else { + + + @if (!tx.acceleration && acceleratorAvailable && accelerateCtaType === 'button' && !tx?.acceleration) { + Accelerate + } + + }
Accelerated fee rateEffective fee rate
+ + + @if ((auditStatus && auditStatus.accelerated) || accelerationInfo || (tx && tx.acceleration)) { + Accelerated + } + + {{ filter.label }} + +
Fee{{ tx.fee | number }} sat
Fee rate + + @if (tx?.status?.confirmed && tx.fee && !hasEffectiveFeeRate && !accelerationInfo) { +   + + } +
Accelerated fee rateEffective fee rate
- - + @if (accelerationInfo) { + + } @else { + + } - - - + @if (tx?.status?.confirmed && !tx.acceleration && !accelerationInfo && tx.fee && tx.effectiveFeePerVsize) { + + }
- + @if (hasCpfp) { + + }
Miner - - {{ pool.name }} - - - -
+ } + } @else { + + }
- - - - - - - Accelerated - - {{ filter.label }} - - - + + @if (network === '') { + @if (!isLoadingTx) { + + Miner + @if (pool) { + + + {{ pool.name }} + + + } @else { + + + + } + + } @else { + + } + } + + + + + + \ No newline at end of file diff --git a/frontend/src/app/components/transaction/transaction.component.ts b/frontend/src/app/components/transaction/transaction.component.ts index 93fb97fac..ab55d706a 100644 --- a/frontend/src/app/components/transaction/transaction.component.ts +++ b/frontend/src/app/components/transaction/transaction.component.ts @@ -87,6 +87,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { rbfReplaces: string[]; rbfInfo: RbfTree; cpfpInfo: CpfpInfo | null; + hasCpfp: boolean = false; accelerationInfo: Acceleration | null = null; sigops: number | null; adjustedVsize: number | null; @@ -491,10 +492,10 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { txFeePerVSize: tx.effectiveFeePerVsize, mempoolPosition: this.mempoolPosition, }); - this.cpfpInfo = { + this.setCpfpInfo({ ancestors: tx.ancestors, bestDescendant: tx.bestDescendant, - }; + }); const hasRelatives = !!(tx.ancestors?.length || tx.bestDescendant); this.hasEffectiveFeeRate = hasRelatives || (tx.effectiveFeePerVsize && (Math.abs(tx.effectiveFeePerVsize - tx.feePerVsize) > 0.01)); } else { @@ -646,6 +647,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { setCpfpInfo(cpfpInfo: CpfpInfo): void { if (!cpfpInfo || !this.tx) { this.cpfpInfo = null; + this.hasCpfp = false; this.hasEffectiveFeeRate = false; return; } @@ -675,6 +677,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { this.sigops = this.cpfpInfo.sigops; this.adjustedVsize = this.cpfpInfo.adjustedVsize; } + this.hasCpfp =!!(this.cpfpInfo && (this.cpfpInfo.bestDescendant || this.cpfpInfo.descendants?.length || this.cpfpInfo.ancestors?.length)); this.hasEffectiveFeeRate = hasRelatives || (this.tx.effectiveFeePerVsize && (Math.abs(this.tx.effectiveFeePerVsize - this.tx.feePerVsize) > 0.01)); } diff --git a/frontend/src/app/dashboard/dashboard.component.html b/frontend/src/app/dashboard/dashboard.component.html index 5df8256ca..1e5efd217 100644 --- a/frontend/src/app/dashboard/dashboard.component.html +++ b/frontend/src/app/dashboard/dashboard.component.html @@ -18,7 +18,7 @@
-
Mempool Goggles: {{ goggleCycle[goggleIndex].name }}
+
Mempool Goggles™ : {{ goggleCycle[goggleIndex].name }}
 
@@ -35,6 +35,7 @@ [resolution]="goggleResolution" [filterFlags]="goggleFlags" [filterMode]="goggleMode" + [gradientMode]="gradientMode" >
diff --git a/frontend/src/app/dashboard/dashboard.component.ts b/frontend/src/app/dashboard/dashboard.component.ts index b877b5336..1660e7310 100644 --- a/frontend/src/app/dashboard/dashboard.component.ts +++ b/frontend/src/app/dashboard/dashboard.component.ts @@ -75,14 +75,14 @@ export class DashboardComponent implements OnInit, OnDestroy, AfterViewInit { goggleResolution = 82; goggleCycle: { index: number, name: string, mode: FilterMode, filters: string[], gradient: GradientMode }[] = [ - { index: 0, name: $localize`:@@dfc3c34e182ea73c5d784ff7c8135f087992dac1:All`, mode: 'and', filters: [], gradient: 'fee' }, + { index: 0, name: $localize`:@@dfc3c34e182ea73c5d784ff7c8135f087992dac1:All`, mode: 'and', filters: [], gradient: 'age' }, { index: 1, name: $localize`Consolidation`, mode: 'and', filters: ['consolidation'], gradient: 'fee' }, { index: 2, name: $localize`Coinjoin`, mode: 'and', filters: ['coinjoin'], gradient: 'fee' }, { index: 3, name: $localize`Data`, mode: 'or', filters: ['inscription', 'fake_pubkey', 'op_return'], gradient: 'fee' }, ]; goggleFlags = 0n; goggleMode: FilterMode = 'and'; - gradientMode: GradientMode = 'fee'; + gradientMode: GradientMode = 'age'; goggleIndex = 0; private destroy$ = new Subject(); @@ -132,7 +132,7 @@ export class DashboardComponent implements OnInit, OnDestroy, AfterViewInit { this.goggleIndex = goggle.index; this.goggleFlags = toFlags(goggle.filters); this.goggleMode = goggle.mode; - this.gradientMode = goggle.gradient; + this.gradientMode = active.gradient; return; } } 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 39a873f1f..8332afbe2 100644 --- a/frontend/src/app/docs/api-docs/api-docs-data.ts +++ b/frontend/src/app/docs/api-docs/api-docs-data.ts @@ -9584,7 +9584,7 @@ export const faqData = [ category: "advanced", showConditions: bitcoinNetworks, fragment: "how-do-mempool-goggles-work", - title: "How do Mempool Goggles work?", + title: "How do Mempool Goggles™ work?", }, { type: "endpoint", diff --git a/frontend/src/app/docs/api-docs/api-docs.component.html b/frontend/src/app/docs/api-docs/api-docs.component.html index 95c86693e..6a561a4f0 100644 --- a/frontend/src/app/docs/api-docs/api-docs.component.html +++ b/frontend/src/app/docs/api-docs/api-docs.component.html @@ -290,8 +290,8 @@
-

Mempool Goggles are a set of filters that can be applied to the mempool block visualizations to highlight different types of transactions.

-

There are currently 25 different Mempool Goggles filters, grouped into six categories:

+

Mempool Goggles™ are a set of filters that can be applied to the mempool block visualizations to highlight different types of transactions.

+

There are currently 25 different Mempool Goggles™ filters, grouped into six categories:

Features
@@ -418,5 +418,5 @@ -

If you're getting errors when doing address lookups, it's probably because of your Electrum server backend.

Mempool uses an Electrum server to do address lookups. There are several implementations of the Electrum server protocol, and Mempool can use any of them, but the implementation you use affects performance:

  1. romanz/electrs. This is a common choice for its low resource requirements, and most full-node distros use it. But while this implementation works great for basic queries, it will struggle with heavier ones (e.g. looking up addresses with many transactions)—especially when running on low-power hardware like a Raspberry Pi.
  2. Fulcrum. Fulcrum requires more resources than romanz/electrs but it can still run on a Raspberry Pi, and it handles heavy queries much more efficiently. If you're having issues with romanz/electrs, Fulcrum is worth a try.
  3. blockstream/electrs. If you have stronger hardware, consider running Blockstream's electrs implementation. It's the backend mempool.space uses, and is also what powers blockstream.info.
+

If you're getting errors when doing address lookups, it's probably because of your Electrum server backend.

Mempool uses an Electrum server to do address lookups. There are several implementations of the Electrum server protocol, and Mempool can use any of them, but the implementation you use affects performance:

  1. romanz/electrs. This is a common choice for its low resource requirements, and most full-node distros use it. But while this implementation works great for basic queries, it will struggle with heavier ones (e.g. looking up addresses with many transactions)—especially when running on low-power hardware like a Raspberry Pi.
  2. Fulcrum. Fulcrum requires more resources than romanz/electrs but it can still run on a Raspberry Pi, and it handles heavy queries much more efficiently. If you're having issues with romanz/electrs, Fulcrum is worth a try.
  3. mempool/electrs. If you have stronger hardware, you could consider running mempool/electrs, the backend that powers mempool.space. It's a fork of Blockstream's Esplora, which is in turn a fork of romanz/electrs, intended for maximum performance and larger-scale deployments.
diff --git a/frontend/src/app/interfaces/node-api.interface.ts b/frontend/src/app/interfaces/node-api.interface.ts index 8441acc14..6d28612f0 100644 --- a/frontend/src/app/interfaces/node-api.interface.ts +++ b/frontend/src/app/interfaces/node-api.interface.ts @@ -163,6 +163,7 @@ export interface PoolInfo { emptyBlocks: number; slug: string; poolUniqueId: number; + unique_id: number; } export interface PoolStat { pool: PoolInfo; diff --git a/frontend/src/app/services/api.service.ts b/frontend/src/app/services/api.service.ts index 9879255c1..145a8705e 100644 --- a/frontend/src/app/services/api.service.ts +++ b/frontend/src/app/services/api.service.ts @@ -2,7 +2,7 @@ import { Injectable } from '@angular/core'; import { HttpClient, HttpParams, HttpResponse } from '@angular/common/http'; import { CpfpInfo, OptimizedMempoolStats, AddressInformation, LiquidPegs, ITranslators, PoolStat, BlockExtended, TransactionStripped, RewardStats, AuditScore, BlockSizesAndWeights, RbfTree, BlockAudit, Acceleration, AccelerationHistoryParams, CurrentPegs, AuditStatus, FederationAddress, FederationUtxo, RecentPeg, PegsVolume, AccelerationInfo } from '../interfaces/node-api.interface'; -import { BehaviorSubject, Observable, catchError, filter, of, shareReplay, take, tap } from 'rxjs'; +import { BehaviorSubject, Observable, catchError, filter, map, of, shareReplay, take, tap } from 'rxjs'; import { StateService } from './state.service'; import { Transaction } from '../interfaces/electrs.interface'; import { Conversion } from './price.service'; @@ -246,11 +246,29 @@ export class ApiService { return this.httpClient.get( this.apiBaseUrl + this.apiBasePath + `/api/v1/mining/pools` + (interval !== undefined ? `/${interval}` : ''), { observe: 'response' } + ) + .pipe( + map((response) => { + response.body.pools.forEach((pool) => { + if (pool.poolUniqueId === 0) { + pool.name = $localize`:@@e5d8bb389c702588877f039d72178f219453a72d:Unknown`; + } + }); + return response; + }) ); } getPoolStats$(slug: string): Observable { - return this.httpClient.get(this.apiBaseUrl + this.apiBasePath + `/api/v1/mining/pool/${slug}`); + return this.httpClient.get(this.apiBaseUrl + this.apiBasePath + `/api/v1/mining/pool/${slug}`) + .pipe( + map((poolStats) => { + if (poolStats.pool.unique_id === 0) { + poolStats.pool.name = $localize`:@@e5d8bb389c702588877f039d72178f219453a72d:Unknown`; + } + return poolStats; + }) + ); } getPoolHashrate$(slug: string): Observable { diff --git a/frontend/src/app/services/services-api.service.ts b/frontend/src/app/services/services-api.service.ts index 0caa06168..4a8314e4b 100644 --- a/frontend/src/app/services/services-api.service.ts +++ b/frontend/src/app/services/services-api.service.ts @@ -132,6 +132,10 @@ export class ServicesApiServices { return this.httpClient.post(`${SERVICES_API_PREFIX}/accelerator/accelerate`, { txInput: txInput, userBid: userBid }); } + accelerateWithCashApp$(txInput: string, userBid: number, token: string, cashtag: string, referenceId: string) { + return this.httpClient.post(`${SERVICES_API_PREFIX}/accelerator/accelerate/cashapp`, { txInput: txInput, userBid: userBid, token: token, cashtag: cashtag, referenceId: referenceId }); + } + getAccelerations$(): Observable { return this.httpClient.get(`${SERVICES_API_PREFIX}/accelerator/accelerations`); } @@ -151,4 +155,8 @@ export class ServicesApiServices { getAccelerationStats$(): Observable { return this.httpClient.get(`${SERVICES_API_PREFIX}/accelerator/accelerations/stats`); } + + setupSquare$(): Observable<{squareAppId: string, squareLocationId: string}> { + return this.httpClient.get<{squareAppId: string, squareLocationId: string}>(`${SERVICES_API_PREFIX}/square/setup`); + } } diff --git a/frontend/src/app/services/state.service.ts b/frontend/src/app/services/state.service.ts index 4ea574c8e..010ca6b09 100644 --- a/frontend/src/app/services/state.service.ts +++ b/frontend/src/app/services/state.service.ts @@ -154,7 +154,7 @@ export class StateService { searchFocus$: Subject = new Subject(); menuOpen$: BehaviorSubject = new BehaviorSubject(false); - activeGoggles$: BehaviorSubject = new BehaviorSubject({ mode: 'and', filters: [], gradient: 'fee' }); + activeGoggles$: BehaviorSubject = new BehaviorSubject({ mode: 'and', filters: [], gradient: 'age' }); constructor( @Inject(PLATFORM_ID) private platformId: any, diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index e079b4589..cf8d72d65 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -399,7 +399,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -448,40 +448,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + الكتلة القادمة + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + الحجم الافتراضي + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats ساتوشي src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -545,20 +622,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB ساتوشي/بايت src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -571,6 +664,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -719,7 +925,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -734,11 +944,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -810,7 +1020,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -886,14 +1096,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » عرض المزيد 》 @@ -935,7 +1137,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1173,7 +1375,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1463,6 +1665,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1491,6 +1697,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1674,7 +1884,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1685,10 +1895,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + مطابق + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1894,7 +2149,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1923,7 +2178,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1981,28 +2236,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - الحجم الافتراضي - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2029,15 +2262,6 @@ transaction.audit-status - - Match - مطابق - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2142,6 +2366,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2237,7 +2465,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2456,23 +2684,6 @@ Block reorg block.reorged - - Next Block - الكتلة القادمة - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block الكتلة السابقة @@ -2547,6 +2758,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2896,7 +3115,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2925,7 +3144,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3017,11 +3236,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3092,7 +3311,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3110,7 +3329,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3482,7 +3701,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3708,11 +3927,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3788,7 +4007,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3801,7 +4024,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3814,7 +4041,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3827,7 +4054,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3840,7 +4067,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3857,7 +4084,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4212,7 +4439,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4229,7 +4456,7 @@ مستكشف البرق src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4291,22 +4518,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats إحصائيات المكافأة @@ -4333,7 +4544,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4551,23 +4762,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - اخرى () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4756,11 +4970,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4781,18 +4995,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4865,7 +5079,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4905,7 +5119,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5535,6 +5749,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5641,19 +5859,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type نوع @@ -6197,19 +6402,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6217,7 +6414,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6225,7 +6422,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6233,7 +6430,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6241,11 +6438,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6253,11 +6450,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6265,11 +6462,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6278,7 +6475,7 @@ الحد الادنى للعمولة src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6288,7 +6485,7 @@ تطهير src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6298,7 +6495,7 @@ تجري الفهرسة src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6310,6 +6507,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8387,6 +8617,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year سنه diff --git a/frontend/src/locale/messages.ca.xlf b/frontend/src/locale/messages.ca.xlf index cfabf1e0d..4ae53a825 100644 --- a/frontend/src/locale/messages.ca.xlf +++ b/frontend/src/locale/messages.ca.xlf @@ -390,7 +390,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -438,39 +438,115 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Mida virtual + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -534,20 +610,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -560,6 +652,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -708,7 +913,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -723,11 +932,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -798,7 +1007,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -874,14 +1083,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » @@ -922,7 +1123,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1158,7 +1359,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1432,6 +1633,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1460,6 +1665,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1641,7 +1850,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1651,10 +1860,54 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1857,7 +2110,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1886,7 +2139,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1944,28 +2197,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Mida virtual - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -1991,14 +2222,6 @@ transaction.audit-status - - Match - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2101,6 +2324,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2194,7 +2421,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2411,22 +2638,6 @@ Block reorg block.reorged - - Next Block - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block @@ -2499,6 +2710,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2835,7 +3054,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2864,7 +3083,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -2953,11 +3172,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3027,7 +3246,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3044,7 +3263,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3391,7 +3610,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3604,11 +3823,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3679,7 +3898,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3692,7 +3915,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3705,7 +3932,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3718,7 +3945,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3731,7 +3958,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3747,7 +3974,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4100,7 +4327,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4116,7 +4343,7 @@ Lightning Explorer src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4174,22 +4401,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats @@ -4214,7 +4425,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4419,22 +4630,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4617,11 +4832,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4641,18 +4856,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4723,7 +4938,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4763,7 +4978,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5373,6 +5588,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5479,19 +5698,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Tipus @@ -6003,19 +6209,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6023,7 +6221,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6031,7 +6229,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6039,7 +6237,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6047,11 +6245,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6059,11 +6257,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6071,11 +6269,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6084,7 +6282,7 @@ Quota mínima src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6093,7 +6291,7 @@ Purging src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6102,7 +6300,7 @@ Indexing in progress src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6114,6 +6312,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8073,6 +8304,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index 5d7b72211..13c3f2dfb 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -397,7 +397,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -445,40 +445,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Další blok + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Virtuální velikost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -542,20 +619,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -568,6 +661,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -716,7 +922,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -731,11 +941,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -807,7 +1017,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -883,14 +1093,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Zobrazit více » @@ -932,7 +1134,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1170,7 +1372,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1460,6 +1662,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1488,6 +1694,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1671,7 +1881,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,10 +1892,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Shoda + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1891,7 +2146,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2175,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1978,28 +2233,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Virtuální velikost - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2026,15 +2259,6 @@ transaction.audit-status - - Match - Shoda - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2139,6 +2363,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2234,7 +2462,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2453,23 +2681,6 @@ Block reorg block.reorged - - Next Block - Další blok - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Předchozí blok @@ -2544,6 +2755,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2893,7 +3112,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3141,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,11 +3233,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3089,7 +3308,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3326,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3479,7 +3698,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3705,11 +3924,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3785,7 +4004,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3798,7 +4021,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3811,7 +4038,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3824,7 +4051,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3837,7 +4064,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3854,7 +4081,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4209,7 +4436,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4226,7 +4453,7 @@ Lightning průzkumník src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4288,22 +4515,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Statistiky odměn @@ -4330,7 +4541,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4548,23 +4759,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Další () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4753,11 +4967,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4778,18 +4992,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4862,7 +5076,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4902,7 +5116,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5532,6 +5746,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5638,19 +5856,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Typ @@ -6194,19 +6399,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6214,7 +6411,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6222,7 +6419,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6230,7 +6427,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6238,11 +6435,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6250,11 +6447,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6262,11 +6459,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6275,7 +6472,7 @@ Minimální poplatek src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6285,7 +6482,7 @@ Čištění src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6295,7 +6492,7 @@ Probíhající indexace src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6307,6 +6504,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8384,6 +8614,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year rok diff --git a/frontend/src/locale/messages.da.xlf b/frontend/src/locale/messages.da.xlf index a496a2248..eb5c02848 100644 --- a/frontend/src/locale/messages.da.xlf +++ b/frontend/src/locale/messages.da.xlf @@ -397,7 +397,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -445,40 +445,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Næste blok + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Virtuel størrelse + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -542,20 +619,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -568,6 +661,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -716,7 +922,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -731,11 +941,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -807,7 +1017,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -883,14 +1093,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Se mere » @@ -932,7 +1134,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1170,7 +1372,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1460,6 +1662,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1488,6 +1694,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1671,7 +1881,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,10 +1892,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Match + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1891,7 +2146,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2175,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1978,28 +2233,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Virtuel størrelse - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2026,15 +2259,6 @@ transaction.audit-status - - Match - Match - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2139,6 +2363,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2234,7 +2462,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2453,23 +2681,6 @@ Block reorg block.reorged - - Next Block - Næste blok - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Forrige blok @@ -2544,6 +2755,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2893,7 +3112,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3141,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,11 +3233,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3089,7 +3308,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3326,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3479,7 +3698,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3705,11 +3924,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3785,7 +4004,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3798,7 +4021,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3811,7 +4038,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3824,7 +4051,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3837,7 +4064,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3854,7 +4081,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4209,7 +4436,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4226,7 +4453,7 @@ Lightning Explorer src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4288,22 +4515,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Belønningsstatistik @@ -4330,7 +4541,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4548,23 +4759,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Andet () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4753,11 +4967,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4778,18 +4992,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4862,7 +5076,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4902,7 +5116,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5532,6 +5746,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5638,19 +5856,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Type @@ -6194,19 +6399,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6214,7 +6411,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6222,7 +6419,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6230,7 +6427,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6238,11 +6435,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6250,11 +6447,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6262,11 +6459,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6275,7 +6472,7 @@ Minimumsgebyr src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6285,7 +6482,7 @@ Udrensning src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6295,7 +6492,7 @@ Indeksering i gang src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6307,6 +6504,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8384,6 +8614,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year år diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index ea0e2229d..a0ae4de90 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -453,40 +453,121 @@ sat shared.sat + + maximum + maximal + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Nächster Block + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + Deine Transaktion + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + Plus unbestätigte(r) Vorfahre(n) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Virtuelle Größe + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + In-Band-Gebühren + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -550,20 +631,39 @@ shared.sats + + How much more are you willing to pay? + Wie viel mehr bist Du bereit zu zahlen? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + Wähle die maximale zusätzliche Transaktionsgebühr, die Du zu zahlen bereit sind, um in den nächsten Block zu gelangen. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + Nächster Blockmarktpreis + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -576,6 +676,130 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + Geschätzte zusätzlich erforderliche Gebühr + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + Mempool Accelerator™ Gebühren + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + Accelerator-Servicegebühr + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + Zuschlag für Transaktionsgröße + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + Geschätzte Beschleunigungskosten + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + Maximale Beschleunigungskosten + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + Verfügbares Guthaben + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + Anmelden + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + Beschleunigen auf mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + Beschleunigen + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + Wenn Deine tx auf ~ sat/vB beschleunigt wird + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees Beschleunigungsgebühren @@ -735,7 +959,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -750,11 +978,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -831,7 +1059,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -915,15 +1143,6 @@ mining.3-months - - Mempool Goggles: Accelerations - Mempool Goggles: Beschleunigungen - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Mehr anzeigen » @@ -981,7 +1200,7 @@ Avg Max Bid - Durchschnittliches Höchstgebot + Ø Max.-Gebot src/app/components/acceleration/pending-stats/pending-stats.component.html 11 @@ -1213,7 +1432,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1735,7 +1954,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1772,23 +1991,23 @@ mempool-goggles.any - - Gradient - Gradient + + Tint + Farbton src/app/components/block-filters/block-filters.component.html 30 - mempool-goggles.gradient + mempool-goggles.tint - - Default - Standard + + Classic + Klassisch src/app/components/block-filters/block-filters.component.html 33 - mempool-goggles.default + mempool-goggles.classic Age @@ -2008,7 +2227,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -2037,7 +2256,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -2096,28 +2315,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Virtuelle Größe - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight Gewicht @@ -2357,7 +2554,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2579,23 +2776,6 @@ Block reorg block.reorged - - Next Block - Nächster Block - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Vorheriger Block @@ -2671,6 +2851,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -3052,7 +3240,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3144,11 +3332,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3223,7 +3411,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3241,7 +3429,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3621,7 +3809,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3675,7 +3863,7 @@ Pools Ranking - Pool-Ranking + Pool-Rangliste src/app/components/graphs/graphs.component.html 10 @@ -4324,7 +4512,7 @@ Avg Peg Ratio - Durchschnittliches Peg-Verhältnis + Ø PEG-Ratio src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 14 @@ -4474,23 +4662,6 @@ 328 - - Sign In - Anmelden - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Belohnungsstatistiken @@ -4518,7 +4689,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4741,23 +4912,27 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Andere () + Sonstiges () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4950,11 +5125,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -5065,7 +5240,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -5107,7 +5282,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5739,7 +5914,7 @@ Features - Features + Merkmale src/app/components/transaction/transaction.component.html 68 @@ -5872,20 +6047,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - Beschleunigen - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Typ @@ -6440,21 +6601,12 @@ fees-box.transaction-fees - - Mempool Goggles - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements Aktuelle Ersetzungen src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6463,7 +6615,7 @@ Vorherige Gebühr src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6472,7 +6624,7 @@ Neue Gebühr src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6481,7 +6633,7 @@ Kürzliche Transaktionen src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6490,11 +6642,11 @@ Liquid Föderation Bestand src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6503,11 +6655,11 @@ Föderation Timelock-Abgelaufene UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6516,11 +6668,11 @@ L-BTC-Angebot gegen BTC-Bestände src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6529,7 +6681,7 @@ Mindestgebühr src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6539,7 +6691,7 @@ Streichung src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6549,7 +6701,7 @@ Indizierung läuft src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -7669,7 +7821,7 @@ Liquidity Ranking - Liquiditäts Rangfolge + Liquiditäts Ranking src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 66 @@ -7690,7 +7842,7 @@ Connectivity Ranking - Verbindungs Rangfolge + Verbindungs Rangliste src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 80 diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index 08c2be6e7..0d6ecc3b4 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -404,7 +404,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -453,40 +453,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Siguiente bloque + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Tamaño virtual + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -550,20 +627,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -576,8 +669,123 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + Acelerar + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees + Comisiones de aceleración src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.html 6 @@ -724,7 +932,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -739,11 +951,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -816,7 +1028,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -892,14 +1104,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Ver más » @@ -941,7 +1145,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1179,7 +1383,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1469,6 +1673,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1497,6 +1705,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1683,7 +1895,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1694,10 +1906,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Coincide + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health Salud del Bloque @@ -1906,7 +2163,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1935,7 +2192,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1993,28 +2250,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Tamaño virtual - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2041,15 +2276,6 @@ transaction.audit-status - - Match - Coincide - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2154,6 +2380,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2249,7 +2479,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2468,23 +2698,6 @@ Block reorg block.reorged - - Next Block - Siguiente bloque - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Bloque previo @@ -2559,6 +2772,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2908,7 +3129,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2937,7 +3158,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3029,11 +3250,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3105,7 +3326,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3123,7 +3344,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3496,7 +3717,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3722,11 +3943,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3802,7 +4023,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3815,7 +4040,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3828,7 +4057,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3841,7 +4070,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3854,7 +4083,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3871,7 +4100,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4226,7 +4455,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4243,7 +4472,7 @@ Explorador Lightning src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4305,22 +4534,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Estadísticas de recompensa @@ -4348,7 +4561,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4567,23 +4780,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Otros () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4773,11 +4989,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4798,18 +5014,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4882,7 +5098,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4922,7 +5138,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5552,6 +5768,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5658,20 +5878,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - Acelerar - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Tipo @@ -6215,20 +6421,12 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements Reemplazos Recientes src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6237,7 +6435,7 @@ Tasa anterior src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6246,7 +6444,7 @@ Nueva tasa src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6255,7 +6453,7 @@ Transacciones Recientes src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6263,11 +6461,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6275,11 +6473,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6287,11 +6485,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6300,7 +6498,7 @@ Tarifa mínima src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6310,7 +6508,7 @@ Purga src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6320,7 +6518,7 @@ Indexado en progreso src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6332,6 +6530,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8424,6 +8655,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year año diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index 95706f6ee..556d56009 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -404,7 +404,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -452,40 +452,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + بلاک بعدی + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + اندازه مجازی + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -549,20 +626,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB ‏sat بر vB‏ src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -575,6 +668,120 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + ورود + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -723,7 +930,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -738,11 +949,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -815,7 +1026,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -891,14 +1102,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » بیشتر » @@ -940,7 +1143,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1178,7 +1381,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1468,6 +1671,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1496,6 +1703,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1679,7 +1890,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1690,10 +1901,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + همتا + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health سلامت بلاک @@ -1901,7 +2157,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1930,7 +2186,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1988,28 +2244,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - اندازه مجازی - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight وزن @@ -2037,15 +2271,6 @@ transaction.audit-status - - Match - همتا - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed حذف‌شده @@ -2153,6 +2378,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2248,7 +2477,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2467,23 +2696,6 @@ Block reorg block.reorged - - Next Block - بلاک بعدی - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block بلاک قبلی @@ -2558,6 +2770,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2907,7 +3127,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2936,7 +3156,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3028,11 +3248,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3104,7 +3324,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3122,7 +3342,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3496,7 +3716,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3722,11 +3942,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3802,7 +4022,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3815,7 +4039,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3828,7 +4056,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3841,7 +4069,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3854,7 +4082,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3871,7 +4099,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4226,7 +4454,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4243,7 +4471,7 @@ کاوشگر لایتنینگ src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4305,23 +4533,6 @@ 328 - - Sign In - ورود - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats وضعیت پاداش @@ -4348,7 +4559,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4569,23 +4780,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - دیگر () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4775,11 +4989,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4800,18 +5014,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4886,7 +5100,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4926,7 +5140,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5557,6 +5771,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5663,19 +5881,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type نوع @@ -6221,20 +6426,12 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements جایگزینی‌های اخیر src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6243,7 +6440,7 @@ کارمزد قبلی src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6252,7 +6449,7 @@ کارمزد جدید src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6261,7 +6458,7 @@ تراکنش‌های اخیر src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6269,11 +6466,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6281,11 +6478,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6293,11 +6490,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6306,7 +6503,7 @@ حداقل کارمزد src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6316,7 +6513,7 @@ آستانه حذف src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6326,7 +6523,7 @@ در حال فهرست‌سازی src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6338,6 +6535,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8442,6 +8672,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year سال diff --git a/frontend/src/locale/messages.fi.xlf b/frontend/src/locale/messages.fi.xlf index 66652ce76..e81449155 100644 --- a/frontend/src/locale/messages.fi.xlf +++ b/frontend/src/locale/messages.fi.xlf @@ -404,7 +404,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -453,40 +453,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Seuraava lohko + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Virtuaalikoko + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -550,20 +627,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -576,6 +669,121 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + Kirjaudu sisään + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + Kiihdytä + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -724,7 +932,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -739,11 +951,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -816,7 +1028,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -892,14 +1104,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Näytä lisää » @@ -941,7 +1145,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1179,7 +1383,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1469,6 +1673,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1497,6 +1705,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1683,7 +1895,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1694,10 +1906,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Osuma + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health Lohkoeheys @@ -1906,7 +2163,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1935,7 +2192,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1994,28 +2251,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Virtuaalikoko - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight Paino @@ -2043,15 +2278,6 @@ transaction.audit-status - - Match - Osuma - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed Poistettu @@ -2160,6 +2386,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2257,7 +2487,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2479,23 +2709,6 @@ Block reorg block.reorged - - Next Block - Seuraava lohko - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Edellinen lohko @@ -2571,6 +2784,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2920,7 +3141,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2949,7 +3170,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3041,11 +3262,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3120,7 +3341,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3138,7 +3359,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3512,7 +3733,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3739,11 +3960,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3820,7 +4041,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3833,7 +4058,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3846,7 +4075,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3859,7 +4088,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3872,7 +4101,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3889,7 +4118,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4244,7 +4473,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4261,7 +4490,7 @@ Salamaverkko selain src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4325,23 +4554,6 @@ 328 - - Sign In - Kirjaudu sisään - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Palkkiotilastot @@ -4369,7 +4581,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4592,23 +4804,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Muut () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4799,11 +5014,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4824,18 +5039,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4912,7 +5127,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4954,7 +5169,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5588,6 +5803,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5694,20 +5913,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - Kiihdytä - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Tyyppi @@ -6253,20 +6458,12 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements Viimeaikaiset korvikkeet src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6275,7 +6472,7 @@ Edellinen kulu src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6284,7 +6481,7 @@ Uusi kulu src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6293,7 +6490,7 @@ Viimeaikaiset tapahtumat src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6301,11 +6498,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6313,11 +6510,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6325,11 +6522,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6338,7 +6535,7 @@ Vähimmäis siirtomaksu src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6348,7 +6545,7 @@ Tyhjennys src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6358,7 +6555,7 @@ Indeksointi käynnissä src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6370,6 +6567,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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 tarjoaa vain tietoja Bitcoin-verkosta. Se ei voi auttaa sinua varojen palauttamisessa, lompakko-ongelmissa jne. Tällaisissa pyynnöissä sinun on otettava yhteyttä tahoon, joka auttoi suorittamaan tapahtuman (lompakkosovellus, vaihtoyhtiö jne). @@ -8500,6 +8730,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year vuosi diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index 7802b1b3a..3afa3c41d 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -453,40 +453,121 @@ sat shared.sat + + maximum + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Bloc suivant + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + Votre transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + Plus ancêtre(s) non confirmé(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Taille virtuelle + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + Frais intra-bande + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -550,20 +631,39 @@ shared.sats + + How much more are you willing to pay? + Combien êtes-vous prêt à payer en plus ? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + Choisissez le montant maximum des frais de transaction supplémentaires que vous êtes prêt à payer pour accéder au bloc suivant. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + Frais du block suivant + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -576,6 +676,130 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + Estimation des frais supplémentaires requis + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + Frais de Mempool Accelerator™ + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + Frais de service d'accélération + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + Supplément sur la taille de transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + Coût d’accélération estimé + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + Coût d'accélération maximum + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + Solde disponible + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + Se connecter + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + Accélérer sur mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + Accélérer + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + Si votre transaction est accélérée à ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees Frais d'accélération @@ -735,7 +959,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -750,11 +978,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -793,6 +1021,7 @@ Bid Boost + Augmentation des frais src/app/components/acceleration/accelerations-list/accelerations-list.component.html 17 @@ -830,7 +1059,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -898,6 +1127,7 @@ Acceleration stats + Statistiques d'accélération src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 24 @@ -906,20 +1136,13 @@ (3 months) + (3 mois) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 25 mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Voir plus » @@ -947,6 +1170,7 @@ Recent Accelerations + Accélérations récentes src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 86 @@ -955,6 +1179,7 @@ Accelerator Dashboard + Tableau de bord de l'accélérateur src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts 47 @@ -966,6 +1191,7 @@ pending + en attente src/app/components/acceleration/pending-stats/pending-stats.component.html 7 @@ -974,6 +1200,7 @@ Avg Max Bid + Augmentation des frais moyens src/app/components/acceleration/pending-stats/pending-stats.component.html 11 @@ -986,6 +1213,7 @@ Total Vsize + Vsize total src/app/components/acceleration/pending-stats/pending-stats.component.html 20 @@ -998,6 +1226,7 @@ of next block + du prochain bloc src/app/components/acceleration/pending-stats/pending-stats.component.html 23 @@ -1006,6 +1235,7 @@ Balance History + Historique du solde src/app/components/address-graph/address-graph.component.html 6 @@ -1014,6 +1244,7 @@ Balance:Balance + Solde : Solde src/app/components/address-graph/address-graph.component.ts 162 @@ -1021,6 +1252,7 @@ Balances + Soldes src/app/components/address-group/address-group.component.html 4 @@ -1029,6 +1261,7 @@ Total + Total src/app/components/address-group/address-group.component.html 9 @@ -1199,7 +1432,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1217,6 +1450,7 @@ See mempool transactions, confirmed transactions, balance, and more for address . + 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 72 @@ -1228,6 +1462,7 @@ of transaction + de transaction src/app/components/address/address.component.html 69 @@ -1236,6 +1471,7 @@ of transactions + des transactions src/app/components/address/address.component.html 70 @@ -1257,6 +1493,7 @@ There 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 existe de nombreuses 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 consulter cette adresse sur le site officiel de Mempool : src/app/components/address/address.component.html 143,146 @@ -1428,6 +1665,7 @@ Browse an overview of the Liquid asset (): see issued amount, burned amount, circulating amount, related transactions, and more. + 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 @@ -1447,6 +1685,7 @@ No featured assets + Aucun actif mis en avant src/app/components/assets/assets-featured/assets-featured.component.html 3 @@ -1619,6 +1858,7 @@ Avg Block Fee (24h) + Frais de bloc moyens (24h) src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 51 @@ -1631,6 +1871,7 @@ Avg Block Fee (1m) + Frais globaux moyens (1M) src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 57 @@ -1651,6 +1892,7 @@ Block Fees + Frais de bloc src/app/components/block-fees-graph/block-fees-graph.component.html 6 @@ -1707,11 +1949,12 @@ select filter categories to highlight matching transactions + sélectionnez les catégories de filtre pour mettre en évidence les transactions correspondantes src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1741,30 +1984,34 @@ Any + Quelconque src/app/components/block-filters/block-filters.component.html 25 mempool-goggles.any - - Gradient + + Tint + Teinte src/app/components/block-filters/block-filters.component.html 30 - mempool-goggles.gradient + mempool-goggles.tint - - Default + + Classic + Classique src/app/components/block-filters/block-filters.component.html 33 - mempool-goggles.default + mempool-goggles.classic Age + Âge src/app/components/block-filters/block-filters.component.html 36 @@ -1859,6 +2106,7 @@ Your browser does not support this feature. + Votre navigateur ne prend pas en charge cette fonctionnalité. src/app/components/block-overview-graph/block-overview-graph.component.html 21 @@ -1979,7 +2227,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -2008,7 +2256,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -2067,28 +2315,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Taille virtuelle - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight Poids @@ -2172,6 +2398,7 @@ Added + Ajoutée src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -2185,6 +2412,7 @@ Prioritized + Priorisée src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 77 @@ -2198,6 +2426,7 @@ Conflict + Conflit src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -2325,7 +2554,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2547,23 +2776,6 @@ Block reorg block.reorged - - Next Block - Bloc suivant - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Bloc précédent @@ -2639,6 +2851,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2899,6 +3119,7 @@ transaction + transaction src/app/components/block/block.component.html 331 @@ -2915,6 +3136,7 @@ transactions + transactions src/app/components/block/block.component.html 332 @@ -2965,6 +3187,7 @@ Acceleration fees paid out-of-band + Frais d'accélération payés hors bande src/app/components/block/block.component.html 433 @@ -3017,7 +3240,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3109,11 +3332,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3188,7 +3411,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3206,7 +3429,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3441,6 +3664,7 @@ Halving Countdown + Compte à rebours du Halving src/app/components/difficulty/difficulty.component.html 2 @@ -3449,6 +3673,7 @@ difficulty + difficulté src/app/components/difficulty/difficulty.component.html 7 @@ -3457,6 +3682,7 @@ halving + halving src/app/components/difficulty/difficulty.component.html 10 @@ -3474,6 +3700,7 @@ New subsidy + Nouvelle subvention src/app/components/difficulty/difficulty.component.html 103 @@ -3482,6 +3709,7 @@ Blocks remaining + Blocs restants src/app/components/difficulty/difficulty.component.html 111 @@ -3490,6 +3718,7 @@ Block remaining + Bloc restant src/app/components/difficulty/difficulty.component.html 112 @@ -3580,7 +3809,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3858,6 +4087,7 @@ See Bitcoin mining pool dominance visualized over time: see how top mining pools' share of total hashrate has fluctuated over time. + 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 @@ -3975,6 +4205,7 @@ Non-Dust Expired + Non-dust expirée src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 3 @@ -3983,6 +4214,7 @@ Total amount of BTC held in non-dust Federation UTXOs that have expired timelocks + Montant total de BTC détenus dans des UTXO non-dust de la Fédération dont les timelocks ont expiré src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 5 @@ -3991,6 +4223,7 @@ UTXOs + UTXOs src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 6 @@ -4007,6 +4240,7 @@ Total Expired + Total expiré src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 12 @@ -4015,6 +4249,7 @@ Total amount of BTC held in Federation UTXOs that have expired timelocks + Montant total de BTC détenus dans les UTXO de la Fédération dont les timelocks ont expiré src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 15 @@ -4023,6 +4258,7 @@ Liquid Federation Wallet + Portefeuille de la Fédération Liquid src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 5 @@ -4043,6 +4279,7 @@ addresses + adresses src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 8 @@ -4068,6 +4305,7 @@ Related Peg-In + Peg-In associé src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 11 @@ -4093,6 +4331,7 @@ Expires in + Expire dans src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 13 @@ -4101,6 +4340,7 @@ Expired since + Expiré depuis src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 14 @@ -4109,6 +4349,7 @@ Dust + Dust src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 15 @@ -4117,6 +4358,7 @@ Change output + UTXO de change src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 55 @@ -4125,6 +4367,7 @@ blocks + blocs src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 63 @@ -4133,6 +4376,7 @@ Timelock-Expired UTXOs + UTXOs expirés par timelock src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.html 12 @@ -4166,6 +4410,7 @@ Recent Peg-In / Out's + Peg-In / Out récents src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 4 @@ -4186,6 +4431,7 @@ Fund / Redemption Tx + Fonds / Rachat Tx src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 15 @@ -4194,6 +4440,7 @@ BTC Address + Adresse BTC src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -4202,6 +4449,7 @@ Peg out in progress... + Peg-Out en cours... src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 70 @@ -4210,6 +4458,7 @@ 24h Peg-In Volume + Volume de Peg-In sur 24 heures src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 12 @@ -4218,6 +4467,7 @@ Peg-Ins + Peg-Ins src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 13 @@ -4226,6 +4476,7 @@ 24h Peg-Out Volume + Volume de Peg-Out sur 24h src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 18 @@ -4234,6 +4485,7 @@ Peg-Outs + Peg-Outs src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 19 @@ -4242,6 +4494,7 @@ Unpeg + Unpeg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 3 @@ -4250,6 +4503,7 @@ Unpeg Event + Événement Unpeg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 7 @@ -4258,6 +4512,7 @@ Avg Peg Ratio + Ratio de Peg moyen src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 14 @@ -4266,6 +4521,7 @@ Emergency Keys + Clés d'urgence src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 28 @@ -4274,6 +4530,7 @@ usage + utilisation src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 31 @@ -4282,6 +4539,7 @@ Assets vs Liabilities + Actif vs Passif src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts 162 @@ -4298,6 +4556,7 @@ As of block + Au bloc src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 7 @@ -4310,6 +4569,7 @@ BTC Holdings + Avoirs BTC src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 12 @@ -4318,6 +4578,7 @@ Mining Dashboard + Tableau de bord Minage src/app/components/master-page/master-page.component.html 80 @@ -4401,23 +4662,6 @@ 328 - - Sign In - Se connecter - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Statistiques de récompense @@ -4445,7 +4689,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4668,23 +4912,27 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Autre ( ) + Autre () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4840,6 +5088,7 @@ Out-of-band Fees (1w) + Frais hors bande (1w) src/app/components/pool/pool.component.html 143 @@ -4848,6 +5097,7 @@ 1m + 1m src/app/components/pool/pool.component.html 144 @@ -4875,11 +5125,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4898,6 +5148,7 @@ Not enough data yet + Pas encore assez de données src/app/components/pool/pool.component.ts 144 @@ -4905,6 +5156,7 @@ Pool Dominance + Dominance de la pool de minage src/app/components/pool/pool.component.ts 224 @@ -4988,7 +5240,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -5030,7 +5282,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5054,6 +5306,7 @@ remaining + restants src/app/components/rbf-timeline/rbf-timeline.component.html 86 @@ -5173,6 +5426,7 @@ Block Height + Hauteur de bloc src/app/components/search-form/search-results/search-results.component.html 3 @@ -5181,6 +5435,7 @@ Transaction + Transaction src/app/components/search-form/search-results/search-results.component.html 21 @@ -5189,6 +5444,7 @@ Address + Adresse src/app/components/search-form/search-results/search-results.component.html 27 @@ -5197,6 +5453,7 @@ Block + Bloc src/app/components/search-form/search-results/search-results.component.html 33 @@ -5205,6 +5462,7 @@ Other Network Address + Adresse d'un autre réseau src/app/components/search-form/search-results/search-results.component.html 39 @@ -5213,6 +5471,7 @@ Addresses + Adresses src/app/components/search-form/search-results/search-results.component.html 47 @@ -5239,6 +5498,7 @@ Liquid Asset + Actif Liquid src/app/components/search-form/search-results/search-results.component.html 71 @@ -5343,6 +5603,7 @@ Immediately + Immédiatement src/app/components/time/time.component.ts 90 @@ -5538,6 +5799,7 @@ before + avant src/app/components/time/time.component.ts 214 @@ -5630,6 +5892,7 @@ Get real-time status, addresses, fees, script info, and more for transaction with txid . + 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/transaction/transaction-preview.component.ts 93 @@ -5673,6 +5936,7 @@ This transaction was projected to be included in the block + Cette transaction était prévue dans le bloc src/app/components/transaction/transaction.component.html 78 @@ -5681,6 +5945,7 @@ Expected in Block + Attendue dans le bloc src/app/components/transaction/transaction.component.html 78 @@ -5690,6 +5955,7 @@ This transaction was seen in the mempool prior to mining + Cette transaction a été vue dans la mempool avant d'être minée src/app/components/transaction/transaction.component.html 79 @@ -5698,6 +5964,7 @@ Seen in Mempool + Vu dans la mempool src/app/components/transaction/transaction.component.html 79 @@ -5707,6 +5974,7 @@ This transaction was missing from our mempool prior to mining + Cette transaction n'était pas dans notre mempool avant d'être minée src/app/components/transaction/transaction.component.html 80 @@ -5715,6 +5983,7 @@ Not seen in Mempool + Pas vu dans la mempool src/app/components/transaction/transaction.component.html 80 @@ -5724,6 +5993,7 @@ This transaction may have been added out-of-band + Cette transaction a peut-être été ajoutée hors bande src/app/components/transaction/transaction.component.html 81 @@ -5732,6 +6002,7 @@ This transaction may have been prioritized out-of-band + Cette transaction a peut-être été priorisée hors bande src/app/components/transaction/transaction.component.html 82 @@ -5740,6 +6011,7 @@ This transaction conflicted with another version in our mempool + Cette transaction est en conflit avec une autre version dans notre mempool src/app/components/transaction/transaction.component.html 83 @@ -5748,6 +6020,7 @@ Hide accelerator + Masquer l'accélérateur src/app/components/transaction/transaction.component.html 108 @@ -5774,20 +6047,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - Accélérer - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Type @@ -5900,6 +6159,7 @@ Adjusted vsize + Vsize ajustée src/app/components/transaction/transaction.component.html 321 @@ -5918,6 +6178,7 @@ Sigops + Sigops src/app/components/transaction/transaction.component.html 347 @@ -5945,6 +6206,7 @@ Error loading transaction data. + Erreur lors du chargement des données de transaction. src/app/components/transaction/transaction.component.html 521 @@ -6133,6 +6395,7 @@ 1 block earlier + 1 bloc plus tôt src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 123 @@ -6141,6 +6404,7 @@ 1 block later + 1 bloc plus tard src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 127 @@ -6149,6 +6413,7 @@ in the same block + dans le même bloc src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 131 @@ -6157,6 +6422,7 @@ blocks earlier + blocs plus tôt src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 137 @@ -6165,6 +6431,7 @@ spent + dépensé src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 148 @@ -6173,6 +6440,7 @@ blocks later + blocs plus tard src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 150 @@ -6333,20 +6601,12 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements Remplacements récents src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6355,7 +6615,7 @@ Frais antérieurs src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6364,7 +6624,7 @@ Nouveaux frais src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6373,43 +6633,46 @@ Transactions récentes src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions Liquid Federation Holdings + Avoirs de la Fédération Liquid src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings Federation Timelock-Expired UTXOs + UTXO de la Fédération expirés par Timelock src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos L-BTC Supply Against BTC Holdings + Offre de L-BTC contre les avoirs de BTC src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6418,7 +6681,7 @@ Frais minimums src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6428,7 +6691,7 @@ Purgées src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6438,7 +6701,7 @@ Indexation en cours src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6452,6 +6715,7 @@ Consolidation + Consolidation src/app/dashboard/dashboard.component.ts 79 @@ -6463,6 +6727,7 @@ Coinjoin + Coinjoin src/app/dashboard/dashboard.component.ts 80 @@ -6474,6 +6739,7 @@ Data + Données src/app/dashboard/dashboard.component.ts 81 @@ -7597,6 +7863,7 @@ Get stats on the Lightning network (aggregate capacity, connectivity, etc), Lightning nodes (channels, liquidity, etc) and Lightning channels (status, fees, etc). + 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 @@ -8162,6 +8429,7 @@ Browse the top 100 ISPs hosting Lightning nodes along with stats like total number of nodes per ISP, aggregate BTC capacity per ISP, and more + 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 @@ -8321,6 +8589,7 @@ See the top Lightning network nodes ranked by liquidity, connectivity, and age. + 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 @@ -8595,6 +8864,7 @@ Third-party Licenses + Licences tierces src/app/shared/components/global-footer/global-footer.component.html 79 @@ -8613,6 +8883,7 @@ Address Types + Types d'adresses src/app/shared/filters.utils.ts 119 @@ -8620,6 +8891,7 @@ Behavior + Comportement src/app/shared/filters.utils.ts 120 @@ -8627,6 +8899,7 @@ Heuristics + Heuristique src/app/shared/filters.utils.ts 122 @@ -8634,6 +8907,7 @@ Sighash Flags + Drapeaux Sighash src/app/shared/filters.utils.ts 123 diff --git a/frontend/src/locale/messages.he.xlf b/frontend/src/locale/messages.he.xlf index 9110b96a3..feb20b6ec 100644 --- a/frontend/src/locale/messages.he.xlf +++ b/frontend/src/locale/messages.he.xlf @@ -398,7 +398,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -446,40 +446,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + הבלוק הבא + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + גודל וירטואלי + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats סאטושיז src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -543,20 +620,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB סאט/בית src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -569,6 +662,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees עמלות האצה @@ -723,7 +929,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -738,11 +948,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -815,7 +1025,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -891,14 +1101,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » צפה בעוד » @@ -940,7 +1142,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1178,7 +1380,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1468,6 +1670,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1496,6 +1702,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1679,7 +1889,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1690,10 +1900,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + התאמה + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1899,7 +2154,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1928,7 +2183,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1986,28 +2241,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - גודל וירטואלי - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2034,15 +2267,6 @@ transaction.audit-status - - Match - התאמה - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2147,6 +2371,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2242,7 +2470,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2461,23 +2689,6 @@ Block reorg block.reorged - - Next Block - הבלוק הבא - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block הבלוק הקודם @@ -2552,6 +2763,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2901,7 +3120,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2930,7 +3149,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3022,11 +3241,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3097,7 +3316,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3115,7 +3334,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3487,7 +3706,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3713,11 +3932,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3793,7 +4012,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3806,7 +4029,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3819,7 +4046,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3832,7 +4059,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3845,7 +4072,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3862,7 +4089,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4217,7 +4444,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4234,7 +4461,7 @@ חוקר רשת הברק src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4296,22 +4523,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats סטטיסטיקת פרסים @@ -4338,7 +4549,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4556,23 +4767,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - אחר () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4761,11 +4975,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4786,18 +5000,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4870,7 +5084,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4910,7 +5124,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5540,6 +5754,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5646,19 +5864,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type סוּג @@ -6202,19 +6407,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6222,7 +6419,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6230,7 +6427,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6238,7 +6435,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6246,11 +6443,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6258,11 +6455,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6270,11 +6467,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6283,7 +6480,7 @@ עמלה מינימלית src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6293,7 +6490,7 @@ סף עמלה src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6303,7 +6500,7 @@ מפתוח בתהליך src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6315,6 +6512,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8392,6 +8622,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year שנה diff --git a/frontend/src/locale/messages.hi.xlf b/frontend/src/locale/messages.hi.xlf index 5e4639b4e..d562a608b 100644 --- a/frontend/src/locale/messages.hi.xlf +++ b/frontend/src/locale/messages.hi.xlf @@ -393,7 +393,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -441,39 +441,116 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + अगला ब्लॉक + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + वर्चुअल साइज + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -537,20 +614,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB सैट/वीबी src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -563,6 +656,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -711,7 +917,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -726,11 +936,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -801,7 +1011,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -877,14 +1087,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » और देखें » @@ -926,7 +1128,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1163,7 +1365,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1450,6 +1652,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1478,6 +1684,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1659,7 +1869,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1669,10 +1879,54 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1875,7 +2129,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1904,7 +2158,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1962,28 +2216,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - वर्चुअल साइज - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2009,14 +2241,6 @@ transaction.audit-status - - Match - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2119,6 +2343,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2212,7 +2440,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2430,23 +2658,6 @@ Block reorg block.reorged - - Next Block - अगला ब्लॉक - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block पिछला ब्लॉक @@ -2520,6 +2731,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2860,7 +3079,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2889,7 +3108,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -2978,11 +3197,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3052,7 +3271,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3070,7 +3289,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3420,7 +3639,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3634,11 +3853,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3709,7 +3928,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3722,7 +3945,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3735,7 +3962,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3748,7 +3975,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3761,7 +3988,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3778,7 +4005,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4132,7 +4359,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4148,7 +4375,7 @@ Lightning Explorer src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4210,22 +4437,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats @@ -4250,7 +4461,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4455,22 +4666,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4653,11 +4868,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4677,18 +4892,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4760,7 +4975,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4800,7 +5015,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5417,6 +5632,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5523,19 +5742,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type प्रकार @@ -6062,19 +6268,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6082,7 +6280,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6090,7 +6288,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6098,7 +6296,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6106,11 +6304,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6118,11 +6316,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6130,11 +6328,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6143,7 +6341,7 @@ न्यूनतम शुल्क src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6153,7 +6351,7 @@ पर्जिंग src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6162,7 +6360,7 @@ Indexing in progress src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6174,6 +6372,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8136,6 +8367,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year वर्ष diff --git a/frontend/src/locale/messages.hr.xlf b/frontend/src/locale/messages.hr.xlf index e4061af96..6c641a37a 100644 --- a/frontend/src/locale/messages.hr.xlf +++ b/frontend/src/locale/messages.hr.xlf @@ -358,7 +358,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -405,39 +405,115 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Virtualna veličina + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -501,20 +577,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -527,6 +619,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -675,7 +880,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -689,11 +898,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -764,7 +973,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -840,14 +1049,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » @@ -888,7 +1089,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1117,7 +1318,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1386,6 +1587,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1414,6 +1619,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1589,7 +1798,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1599,10 +1808,54 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1804,7 +2057,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1833,7 +2086,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1889,28 +2142,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Virtualna veličina - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -1936,14 +2167,6 @@ transaction.audit-status - - Match - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2046,6 +2269,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2138,7 +2365,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2349,22 +2576,6 @@ Block reorg block.reorged - - Next Block - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block @@ -2436,6 +2647,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2767,7 +2986,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2795,7 +3014,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -2883,11 +3102,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -2955,7 +3174,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -2972,7 +3191,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3317,7 +3536,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3528,11 +3747,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3602,7 +3821,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3614,7 +3837,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3626,7 +3853,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3638,7 +3865,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3650,7 +3877,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3666,7 +3893,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4017,7 +4244,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4033,7 +4260,7 @@ Lightning Explorer src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4091,22 +4318,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats @@ -4131,7 +4342,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4336,22 +4547,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4533,11 +4748,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4557,18 +4772,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4639,7 +4854,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4678,7 +4893,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5283,6 +5498,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5387,19 +5606,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type @@ -5900,19 +6106,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -5920,7 +6118,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -5928,7 +6126,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -5936,7 +6134,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -5944,11 +6142,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -5956,11 +6154,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -5968,11 +6166,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -5980,7 +6178,7 @@ Minimum fee src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -5989,7 +6187,7 @@ Purging src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -5998,7 +6196,7 @@ Indexing in progress src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6010,6 +6208,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -7964,6 +8195,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year diff --git a/frontend/src/locale/messages.hu.xlf b/frontend/src/locale/messages.hu.xlf index 3d1be4661..4cdf6f860 100644 --- a/frontend/src/locale/messages.hu.xlf +++ b/frontend/src/locale/messages.hu.xlf @@ -397,7 +397,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -445,40 +445,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Következő blokk + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Virtuális méret + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -542,20 +619,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -568,6 +661,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -716,7 +922,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -731,11 +941,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -807,7 +1017,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -883,14 +1093,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Továbbiak » @@ -932,7 +1134,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1170,7 +1372,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1460,6 +1662,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1488,6 +1694,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1671,7 +1881,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,10 +1892,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Találat + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1891,7 +2146,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2175,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1978,28 +2233,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Virtuális méret - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2026,15 +2259,6 @@ transaction.audit-status - - Match - Találat - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2139,6 +2363,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2234,7 +2462,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2453,23 +2681,6 @@ Block reorg block.reorged - - Next Block - Következő blokk - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Előző blokk @@ -2544,6 +2755,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2893,7 +3112,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3141,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,11 +3233,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3089,7 +3308,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3326,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3479,7 +3698,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3705,11 +3924,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3785,7 +4004,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3798,7 +4021,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3811,7 +4038,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3824,7 +4051,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3837,7 +4064,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3854,7 +4081,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4209,7 +4436,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4226,7 +4453,7 @@ Villám Felfedező src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4288,22 +4515,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Jutalmi statisztikák @@ -4330,7 +4541,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4548,23 +4759,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Egyéb () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4753,11 +4967,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4778,18 +4992,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4862,7 +5076,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4902,7 +5116,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5532,6 +5746,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5638,19 +5856,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Típus @@ -6194,19 +6399,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6214,7 +6411,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6222,7 +6419,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6230,7 +6427,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6238,11 +6435,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6250,11 +6447,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6262,11 +6459,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6275,7 +6472,7 @@ Minimum Díj src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6285,7 +6482,7 @@ Törlés src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6295,7 +6492,7 @@ Indexelés folyamatban src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6307,6 +6504,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8384,6 +8614,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year év diff --git a/frontend/src/locale/messages.it.xlf b/frontend/src/locale/messages.it.xlf index 9b0998242..c56b409c0 100644 --- a/frontend/src/locale/messages.it.xlf +++ b/frontend/src/locale/messages.it.xlf @@ -404,7 +404,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -453,40 +453,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Blocco Successivo + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Dimensione virtuale + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -550,20 +627,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -576,6 +669,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees Commisioni di Accelerazione @@ -732,7 +938,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -747,11 +957,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -828,7 +1038,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -909,14 +1119,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Scopri di più » @@ -960,7 +1162,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1202,7 +1404,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1492,6 +1694,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1520,6 +1726,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1710,7 +1920,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1721,10 +1931,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Corrispondenza + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health Salute del Blocco @@ -1933,7 +2188,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1962,7 +2217,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -2021,28 +2276,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Dimensione virtuale - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight Peso @@ -2070,15 +2303,6 @@ transaction.audit-status - - Match - Corrispondenza - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2186,6 +2410,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2283,7 +2511,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2505,23 +2733,6 @@ Block reorg block.reorged - - Next Block - Blocco Successivo - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Blocco Precedente @@ -2597,6 +2808,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2946,7 +3165,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2975,7 +3194,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3067,11 +3286,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3146,7 +3365,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3164,7 +3383,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3537,7 +3756,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3764,11 +3983,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3845,7 +4064,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3858,7 +4081,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3871,7 +4098,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3884,7 +4111,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3897,7 +4124,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3914,7 +4141,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4269,7 +4496,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4286,7 +4513,7 @@ Lightning Explorer src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4350,22 +4577,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Statistiche di ricompensa @@ -4393,7 +4604,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4616,23 +4827,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Altro () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4821,11 +5035,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4846,18 +5060,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4930,7 +5144,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4970,7 +5184,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5600,6 +5814,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5706,19 +5924,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Tipo @@ -6262,19 +6467,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6282,7 +6479,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6290,7 +6487,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6298,7 +6495,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6306,11 +6503,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6318,11 +6515,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6330,11 +6527,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6343,7 +6540,7 @@ Commissione minima src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6353,7 +6550,7 @@ Scartate src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6363,7 +6560,7 @@ Indicizzazione in corso src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6375,6 +6572,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8452,6 +8682,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year anno diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index 41b96fa87..b24eda767 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -404,7 +404,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -453,40 +453,121 @@ sat shared.sat + + maximum + 最大 + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + 次のブロック + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + ご自身の取引 + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + さらに 個の未承認のancestor + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + vSize + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + ネットワーク手数料 + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats サトシ src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -550,20 +631,39 @@ shared.sats + + How much more are you willing to pay? + いくら追加で支払ってもいいですか? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + 次のブロックに入るために支払う追加の取引手数料の上限を選択してください。 + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + 次のブロックの手数料レート + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB サトシ/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -576,8 +676,133 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + 推定追加手数料 + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + Mempool Accelerator™ 手数料 + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + 高速化サービス手数料 + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + 取引サイズ追加料金 + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + 推定高速化コスト + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + 最大高速化コスト + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + 利用可能残高 + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + ログイン + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + mempool.space で高速化 + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + 高速化 + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + 取引が ~ sat/vB まで高速化された場合 + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees + 高速化手数料 src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.html 6 @@ -590,6 +815,7 @@ No accelerated transaction for this timeframe + この期間には高速化取引がありません src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 121 @@ -597,6 +823,7 @@ At block: + ブロック: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 165 @@ -616,6 +843,7 @@ Around block: + 近くのブロック: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 167 @@ -635,6 +863,7 @@ Requests + リクエスト src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 4 @@ -655,6 +884,7 @@ accelerated + 高速化済み src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 7 @@ -663,6 +893,7 @@ Total Bid Boost + 合計入札ブースト src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 11 @@ -679,6 +910,7 @@ BTC + BTC src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 13 @@ -700,6 +932,7 @@ Success Rate + 成功率 src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 20 @@ -712,6 +945,7 @@ mined + 採掘済み src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 23 @@ -720,11 +954,16 @@ Accelerations + 高速化取引 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -739,16 +978,17 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid Fee Rate + 手数料レート src/app/components/acceleration/accelerations-list/accelerations-list.component.html 12 @@ -758,6 +998,7 @@ Acceleration Bid + 高速化入札 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 13 @@ -767,6 +1008,7 @@ Requested + リクエスト済み src/app/components/acceleration/accelerations-list/accelerations-list.component.html 14 @@ -779,6 +1021,7 @@ Bid Boost + 入札ブースト src/app/components/acceleration/accelerations-list/accelerations-list.component.html 17 @@ -805,6 +1048,7 @@ Status + ステータス src/app/components/acceleration/accelerations-list/accelerations-list.component.html 19 @@ -815,7 +1059,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -826,6 +1070,7 @@ Pending + 保留中 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 53 @@ -834,6 +1079,7 @@ Completed 🔄 + 完了 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 54,55 @@ -841,6 +1087,7 @@ Failed 🔄 + 失敗 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 55,56 @@ -849,6 +1096,7 @@ There are no active accelerations + アクティブな高速化取引はありません src/app/components/acceleration/accelerations-list/accelerations-list.component.html 96 @@ -857,6 +1105,7 @@ There are no recent accelerations + 最近の高速化取引はありません src/app/components/acceleration/accelerations-list/accelerations-list.component.html 97 @@ -865,6 +1114,7 @@ Active Accelerations + アクティブな高速化取引 src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 10 @@ -877,6 +1127,7 @@ Acceleration stats + 高速化情報 src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 24 @@ -885,20 +1136,13 @@ (3 months) + (3ヶ月) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 25 mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » 詳細を表示 » @@ -926,6 +1170,7 @@ Recent Accelerations + 最近の高速化取引 src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 86 @@ -934,17 +1179,19 @@ Accelerator Dashboard + 高速化ダッシュボード src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts 47 src/app/components/master-page/master-page.component.html - 56 + 75 pending + 保留中 src/app/components/acceleration/pending-stats/pending-stats.component.html 7 @@ -953,6 +1200,7 @@ Avg Max Bid + 平均最高入札額 src/app/components/acceleration/pending-stats/pending-stats.component.html 11 @@ -965,6 +1213,7 @@ Total Vsize + 合計 Vsize src/app/components/acceleration/pending-stats/pending-stats.component.html 20 @@ -977,6 +1226,7 @@ of next block + 10% 次のブロック占有率 src/app/components/acceleration/pending-stats/pending-stats.component.html 23 @@ -985,6 +1235,7 @@ Balance History + 残高履歴 src/app/components/address-graph/address-graph.component.html 6 @@ -993,6 +1244,7 @@ Balance:Balance + 残高:残高 src/app/components/address-graph/address-graph.component.ts 162 @@ -1000,6 +1252,7 @@ Balances + 残高 src/app/components/address-group/address-group.component.html 4 @@ -1008,6 +1261,7 @@ Total + 合計 src/app/components/address-group/address-group.component.html 9 @@ -1178,7 +1432,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1196,6 +1450,7 @@ See mempool transactions, confirmed transactions, balance, and more for address . + のアドレスに関するmempoolの取引、承認済み取引、残高などを表示する。 src/app/components/address/address-preview.component.ts 72 @@ -1207,6 +1462,7 @@ of transaction + / 取引 src/app/components/address/address.component.html 69 @@ -1215,6 +1471,7 @@ of transactions + / 取引 src/app/components/address/address.component.html 70 @@ -1236,6 +1493,7 @@ There 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 143,146 @@ -1407,6 +1665,7 @@ Browse an overview of the Liquid asset (): see issued amount, burned amount, circulating amount, related transactions, and more. + Liquid アセット () の概要を参照する: 発行額、燃焼額、流通額、関連トランザクション、およびもっと。 src/app/components/asset/asset.component.ts 108 @@ -1426,6 +1685,7 @@ No featured assets + 注目のアセットはありません src/app/components/assets/assets-featured/assets-featured.component.html 3 @@ -1468,6 +1728,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1496,6 +1760,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1517,6 +1785,7 @@ Explore all the assets issued on the Liquid network like L-BTC, L-CAD, USDT, and more. + L-BTC、L-CAD、USDT など、Liquid ネットワークで発行されたすべての資産を閲覧。 src/app/components/assets/assets-nav/assets-nav.component.ts 43 @@ -1589,6 +1858,7 @@ Avg Block Fee (24h) + 平均ブロック手数料 (24 時間) src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 51 @@ -1601,6 +1871,7 @@ Avg Block Fee (1m) + 平均ブロック手数料(1分) src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 57 @@ -1613,6 +1884,7 @@ See Bitcoin feerates visualized over time, including minimum and maximum feerates per block along with feerates at various percentiles. + ブロックあたりの最小手数料と最大手数料、さまざまなパーセンタイルの手数料など、時間の経過に伴うビットコインの手数料を視覚化して表示します。 src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts 73 @@ -1620,6 +1892,7 @@ Block Fees + ブロック手数料 src/app/components/block-fees-graph/block-fees-graph.component.html 6 @@ -1636,6 +1909,7 @@ See the average mining fees earned per Bitcoin block visualized in BTC and USD over time. + 時間の経過に伴う、BTC と USD で視覚化された、ビットコイン ブロックごとに獲得された平均マイニング手数料を確認します。 src/app/components/block-fees-graph/block-fees-graph.component.ts 70 @@ -1675,11 +1949,12 @@ select filter categories to highlight matching transactions + 一致する取引を強調表示するには、フィルター カテゴリを選択します。 src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1690,12 +1965,60 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + マッチ + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + 全て + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + 古さ + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health + ブロックヘルス src/app/components/block-health-graph/block-health-graph.component.html 6 @@ -1708,6 +2031,7 @@ Block Health + ブロックヘルス src/app/components/block-health-graph/block-health-graph.component.ts 63 @@ -1715,6 +2039,7 @@ See Bitcoin block health visualized over time. Block health is a measure of how many expected transactions were included in an actual mined block. Expected transactions are determined using Mempool's re-implementation of Bitcoin Core's transaction selection algorithm. + 時間の経過とともに視覚化されたビットコインブロックの健全性をご覧ください。ブロックの健全性は、実際にマイニングされたブロックに予想される取引の数が含まれているかを示す尺度です。予想される取引は、Mempool による Bitcoin Core の取引選択アルゴリズムの再実装を使用して決定されます。 src/app/components/block-health-graph/block-health-graph.component.ts 64 @@ -1779,6 +2104,7 @@ Your browser does not support this feature. + お使いのブラウザはこの機能をサポートしていません。 src/app/components/block-overview-graph/block-overview-graph.component.html 21 @@ -1899,7 +2225,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1928,7 +2254,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1979,6 +2305,7 @@ Accelerated fee rate + 高速化後手数料レート src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 53 @@ -1986,30 +2313,9 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - vSize - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight + ウェイト src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 63 @@ -2034,17 +2340,9 @@ transaction.audit-status - - Match - マッチ - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed + 取り除かれた src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 71 @@ -2071,6 +2369,7 @@ High sigop count + 高sigop src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 73 @@ -2088,6 +2387,7 @@ Recently CPFP'd + 最近CPFPされた src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 75 @@ -2096,6 +2396,7 @@ Added + 追加された src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -2109,6 +2410,7 @@ Prioritized + 優先された src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 77 @@ -2122,6 +2424,7 @@ Conflict + 衝突 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -2135,6 +2438,7 @@ Accelerated + 高速化済み src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 80 @@ -2147,6 +2451,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2168,6 +2476,7 @@ See Bitcoin block rewards in BTC and USD visualized over time. Block rewards are the total funds miners earn from the block subsidy and fees. + ビットコインのブロック報酬を BTC と USD で時系列で視覚化して表示します。ブロック報酬は、マイナーがブロック補助金と手数料から得る合計資金です。 src/app/components/block-rewards-graph/block-rewards-graph.component.ts 68 @@ -2192,6 +2501,7 @@ See Bitcoin block sizes (MB) and block weights (weight units) visualized over time. + ビットコインのブロック サイズ (MB) とブロックのウェイト (WU) を時間の経過に沿って視覚化して表示します。 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 65 @@ -2242,7 +2552,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2311,6 +2621,7 @@ See size, weight, fee range, included transactions, and more for Liquid block (). + Liquid ブロック () のサイズ、ウェイト、手数料範囲、含まれるトランザクションなどを確認します。 src/app/components/block-view/block-view.component.ts 112 @@ -2326,6 +2637,7 @@ See size, weight, fee range, included transactions, audit (expected v actual), and more for Bitcoin block (). + ビットコイン ブロック () のサイズ、ウェイト、手数料範囲、含まれる取引、監査 (予想と実際) などを確認します。 src/app/components/block-view/block-view.component.ts 114 @@ -2454,6 +2766,7 @@ This block does not belong to the main chain, it has been replaced by: + このブロックはメイン チェーンに属しておらず、次のものに置き換えられています: src/app/components/block/block.component.html 5 @@ -2461,23 +2774,6 @@ Block reorg block.reorged - - Next Block - 次のブロック - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block 前のブロック @@ -2489,6 +2785,7 @@ Stale + 陳腐化 src/app/components/block/block.component.html 30 @@ -2552,6 +2849,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2812,6 +3117,7 @@ transaction + 取引 src/app/components/block/block.component.html 331 @@ -2828,6 +3134,7 @@ transactions + 取引 src/app/components/block/block.component.html 332 @@ -2878,6 +3185,7 @@ Acceleration fees paid out-of-band + ネットワーク外で支払われた高速化手数料 src/app/components/block/block.component.html 433 @@ -2901,7 +3209,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2930,7 +3238,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3022,16 +3330,17 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs See the most recent Liquid blocks along with basic stats such as block height, block size, and more. + 最新の Liquid ブロックと、ブロックの高さ、ブロック サイズなどの基本的な情報を確認します。 src/app/components/blocks-list/blocks-list.component.ts 71 @@ -3039,6 +3348,7 @@ See the most recent Bitcoin blocks along with basic stats such as block height, block reward, block size, and more. + 最新の Bitcoin ブロックと、ブロックの高さ、ブロック報酬、ブロック サイズなどの基本情報を確認します。 src/app/components/blocks-list/blocks-list.component.ts 73 @@ -3046,6 +3356,7 @@ Calculator + 電卓 src/app/components/calculator/calculator.component.html 3 @@ -3091,13 +3402,14 @@ Memory Usage + メモリ使用量 src/app/components/clock/clock.component.html 65 src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3115,7 +3427,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3170,6 +3482,7 @@ blocks + ブロック src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 @@ -3349,6 +3662,7 @@ Halving Countdown + 半減期カウントダウン src/app/components/difficulty/difficulty.component.html 2 @@ -3357,6 +3671,7 @@ difficulty + 難易度 src/app/components/difficulty/difficulty.component.html 7 @@ -3365,6 +3680,7 @@ halving + 半減期 src/app/components/difficulty/difficulty.component.html 10 @@ -3382,6 +3698,7 @@ New subsidy + 新たな報酬額 src/app/components/difficulty/difficulty.component.html 103 @@ -3390,6 +3707,7 @@ Blocks remaining + 残りのブロック数 src/app/components/difficulty/difficulty.component.html 111 @@ -3398,6 +3716,7 @@ Block remaining + 残りのブロック数 src/app/components/difficulty/difficulty.component.html 112 @@ -3481,13 +3800,14 @@ Incoming Transactions + 着信トランザクション src/app/components/footer/footer.component.html 5 src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3512,6 +3832,7 @@ WU/s + ウェイト/秒 src/app/components/footer/footer.component.html 14 @@ -3713,11 +4034,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3736,6 +4057,7 @@ See hashrate and difficulty for the Bitcoin network visualized over time. + Bitcoin ネットワークのハッシュレートと難易度を時間の経過に沿って視覚化して表示します。 src/app/components/hashrate-chart/hashrate-chart.component.ts 76 @@ -3763,6 +4085,7 @@ See Bitcoin mining pool dominance visualized over time: see how top mining pools' share of total hashrate has fluctuated over time. + ビットコイン マイニング プールの優位性を時間の経過とともに視覚化します。上位のマイニング プールの合計ハッシュレートのシェアが時間の経過とともにどのように変動したかを確認します。 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts 75 @@ -3793,7 +4116,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3806,7 +4133,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3819,7 +4150,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3832,7 +4163,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3845,7 +4176,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3862,7 +4193,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -3872,6 +4203,7 @@ Non-Dust Expired + 非ダスト期限切れ src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 3 @@ -3880,6 +4212,7 @@ Total amount of BTC held in non-dust Federation UTXOs that have expired timelocks + 期限切れのタイムロックを持つ非ダストフェデレーションUTXOに保持されているBTCの合計量 src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 5 @@ -3888,6 +4221,7 @@ UTXOs + UTXO src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 6 @@ -3904,6 +4238,7 @@ Total Expired + 合計期限切れ src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 12 @@ -3912,6 +4247,7 @@ Total amount of BTC held in Federation UTXOs that have expired timelocks + 期限切れのタイムロックを持つフェデレーションUTXOに保持されているBTCの合計量 src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 15 @@ -3920,6 +4256,7 @@ Liquid Federation Wallet + Liquid Federation ウォレット src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 5 @@ -3940,6 +4277,7 @@ addresses + アドレス src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 8 @@ -3965,6 +4303,7 @@ Related Peg-In + 関連するペグイン src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 11 @@ -3990,6 +4329,7 @@ Expires in + 有効期限は src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 13 @@ -3998,6 +4338,7 @@ Expired since + 有効期限過ぎた日付 src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 14 @@ -4006,6 +4347,7 @@ Dust + ダスト src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 15 @@ -4014,6 +4356,7 @@ Change output + お釣り出力 src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 55 @@ -4022,6 +4365,7 @@ blocks + ブロック src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 63 @@ -4030,6 +4374,7 @@ Timelock-Expired UTXOs + タイムロックの期限が切れた UTXO src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.html 12 @@ -4063,6 +4408,7 @@ Recent Peg-In / Out's + 最近のペグイン/アウト src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 4 @@ -4083,6 +4429,7 @@ Fund / Redemption Tx + 入庫/出庫取引 src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 15 @@ -4091,6 +4438,7 @@ BTC Address + BTCアドレス src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -4099,6 +4447,7 @@ Peg out in progress... + ペグアウト進行中... src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 70 @@ -4107,6 +4456,7 @@ 24h Peg-In Volume + 24時間ペグイン量 src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 12 @@ -4115,6 +4465,7 @@ Peg-Ins + ペグイン src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 13 @@ -4123,6 +4474,7 @@ 24h Peg-Out Volume + 24時間ペグアウト量 src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 18 @@ -4131,6 +4483,7 @@ Peg-Outs + ペグアウト src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 19 @@ -4139,6 +4492,7 @@ Unpeg + ペグ解除 src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 3 @@ -4147,6 +4501,7 @@ Unpeg Event + ペグ解除イベント src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 7 @@ -4155,6 +4510,7 @@ Avg Peg Ratio + 平均ペグ比率 src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 14 @@ -4163,6 +4519,7 @@ Emergency Keys + 緊急キー src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 28 @@ -4171,6 +4528,7 @@ usage + 使い道 src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 31 @@ -4179,6 +4537,7 @@ Assets vs Liabilities + 資産と負債 src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts 162 @@ -4195,6 +4554,7 @@ As of block + ブロック現在 src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 7 @@ -4207,6 +4567,7 @@ BTC Holdings + BTC保有量 src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 12 @@ -4215,9 +4576,10 @@ Mining Dashboard + マイニング・ダッシュボード src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4234,7 +4596,7 @@ ライトニングエキスプローラ src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4248,6 +4610,7 @@ See stats for transactions in the mempool: fee range, aggregate size, and more. Mempool blocks are updated in real-time as the network receives new transactions. + mempool内の 取引の情報:手数料の範囲、合計サイズなど。ネットワークが新しい取引を受信すると、mempool ブロックはリアルタイムで更新されます。 src/app/components/mempool-block/mempool-block.component.ts 62 @@ -4271,6 +4634,7 @@ Count + カウント src/app/components/mempool-graph/mempool-graph.component.ts 325 @@ -4296,22 +4660,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats 報酬の統計値 @@ -4332,13 +4680,14 @@ Recent Blocks + 最近のブロック src/app/components/mining-dashboard/mining-dashboard.component.html 56 src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4357,6 +4706,7 @@ Get real-time Bitcoin mining stats like hashrate, difficulty adjustment, block rewards, pool dominance, and more. + ハッシュレート、難易度調整、ブロック報酬、プールの優位性などのリアルタイムのビットコインマイニング統計を取得します。 src/app/components/mining-dashboard/mining-dashboard.component.ts 29 @@ -4373,6 +4723,7 @@ Pools Luck + プールの運 src/app/components/pool-ranking/pool-ranking.component.html 9 @@ -4403,6 +4754,7 @@ Pools Count + プール数 src/app/components/pool-ranking/pool-ranking.component.html 17 @@ -4513,6 +4865,7 @@ Empty Blocks + 空のブロック src/app/components/pool-ranking/pool-ranking.component.html 98 @@ -4538,6 +4891,7 @@ See the top Bitcoin mining pools ranked by number of blocks mined, over your desired timeframe. + 希望の期間にわたってマイニングされたブロック数でランク付けされた上位のビットコイン マイニング プールを表示します。 src/app/components/pool-ranking/pool-ranking.component.ts 60 @@ -4556,23 +4910,27 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - その他 ( ) + その他 () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4627,6 +4985,7 @@ See mining pool stats for : most recent mined blocks, hashrate over time, total block reward to date, known coinbase addresses, and more. + のマイニング プールの情報を表示します。最新のマイニング ブロック、一定期間のハッシュレート、現在までの合計ブロック報酬、既知のコインベース アドレスなどです。 src/app/components/pool/pool-preview.component.ts 86 @@ -4693,6 +5052,7 @@ Blocks (24h) + ブロック数 (24 時間) src/app/components/pool/pool.component.html 120 @@ -4726,6 +5086,7 @@ Out-of-band Fees (1w) + ネットワーク外手数料 (1w) src/app/components/pool/pool.component.html 143 @@ -4734,6 +5095,7 @@ 1m + 1m src/app/components/pool/pool.component.html 144 @@ -4761,11 +5123,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4784,20 +5146,22 @@ Not enough data yet + まだデータが足りません src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance + プールの優位性 src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4834,6 +5198,7 @@ Broadcast Transaction + ブロードキャストトランザクション src/app/components/push-transaction/push-transaction.component.ts 33 @@ -4841,6 +5206,7 @@ Broadcast a transaction to the network using the transaction's hash. + 取引のハッシュを使用して、取引を ネットワークにブロードキャストします。 src/app/components/push-transaction/push-transaction.component.ts 34 @@ -4848,6 +5214,7 @@ RBF Replacements + RBFの置き換え src/app/components/rbf-list/rbf-list.component.html 2 @@ -4860,6 +5227,7 @@ Full RBF + フルRBF src/app/components/rbf-list/rbf-list.component.html 24 @@ -4870,12 +5238,13 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf There are no replacements in the mempool yet! + mempool にはまだ置換えがない src/app/components/rbf-list/rbf-list.component.html 34 @@ -4884,6 +5253,7 @@ See the most recent RBF replacements on the Bitcoin network, updated in real-time. + リアルタイムで更新される、ビットコイン ネットワーク上の最新の RBF 置換を確認します。 src/app/components/rbf-list/rbf-list.component.ts 61 @@ -4910,7 +5280,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -4934,6 +5304,7 @@ remaining + 残り src/app/components/rbf-timeline/rbf-timeline.component.html 86 @@ -5053,6 +5424,7 @@ Block Height + ブロックの高さ src/app/components/search-form/search-results/search-results.component.html 3 @@ -5061,6 +5433,7 @@ Transaction + 取引 src/app/components/search-form/search-results/search-results.component.html 21 @@ -5069,6 +5442,7 @@ Address + アドレス src/app/components/search-form/search-results/search-results.component.html 27 @@ -5077,6 +5451,7 @@ Block + ブロック src/app/components/search-form/search-results/search-results.component.html 33 @@ -5085,6 +5460,7 @@ Other Network Address + 他のネットワークのアドレス src/app/components/search-form/search-results/search-results.component.html 39 @@ -5093,6 +5469,7 @@ Addresses + アドレス src/app/components/search-form/search-results/search-results.component.html 47 @@ -5119,6 +5496,7 @@ Liquid Asset + リキッドアセット src/app/components/search-form/search-results/search-results.component.html 71 @@ -5145,6 +5523,7 @@ Clock (Mempool) + 時計 (mempool) src/app/components/statistics/statistics.component.html 17 @@ -5197,6 +5576,7 @@ Cap outliers + 外れ値の上限 src/app/components/statistics/statistics.component.html 122 @@ -5205,6 +5585,7 @@ See mempool size (in MvB) and transactions per second (in vB/s) visualized over time. + 時間の経過に伴って視覚化されたmempool サイズ (MvB 単位) と 1 秒あたりの取引数 (vB/s 単位) を表示します。 src/app/components/statistics/statistics.component.ts 67 @@ -5212,6 +5593,7 @@ See Bitcoin blocks and mempool congestion in real-time in a simplified format perfect for a TV. + テレビに最適な簡略化された形式で、ビットコイン ブロックとmempoolの混雑をリアルタイムで確認できます。 src/app/components/television/television.component.ts 40 @@ -5219,6 +5601,7 @@ Immediately + すぐに src/app/components/time/time.component.ts 90 @@ -5414,6 +5797,7 @@ before + src/app/components/time/time.component.ts 214 @@ -5506,6 +5890,7 @@ Get real-time status, addresses, fees, script info, and more for transaction with txid . + txid 取引のリアルタイムのステータス、アドレス、料金、スクリプト情報などを取得します。 src/app/components/transaction/transaction-preview.component.ts 93 @@ -5540,11 +5925,16 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features This transaction was projected to be included in the block + この取引はブロックに含まれると予測されていた src/app/components/transaction/transaction.component.html 78 @@ -5553,6 +5943,7 @@ Expected in Block + ブロックに入ると推定 src/app/components/transaction/transaction.component.html 78 @@ -5562,6 +5953,7 @@ This transaction was seen in the mempool prior to mining + この取引は採掘前にmempoolで発見された src/app/components/transaction/transaction.component.html 79 @@ -5570,6 +5962,7 @@ Seen in Mempool + Mempoolで見られた src/app/components/transaction/transaction.component.html 79 @@ -5579,6 +5972,7 @@ This transaction was missing from our mempool prior to mining + この取引は採掘前にmempoolで発見されていない src/app/components/transaction/transaction.component.html 80 @@ -5587,6 +5981,7 @@ Not seen in Mempool + mempoolで未発見 src/app/components/transaction/transaction.component.html 80 @@ -5596,6 +5991,7 @@ This transaction may have been added out-of-band + このトランザクションはネットワーク外で追加された可能性があります src/app/components/transaction/transaction.component.html 81 @@ -5604,6 +6000,7 @@ This transaction may have been prioritized out-of-band + このトランザクションはネットワーク外で優先された可能性があります src/app/components/transaction/transaction.component.html 82 @@ -5612,6 +6009,7 @@ This transaction conflicted with another version in our mempool + この取引はmempool内の別の取引と競合した src/app/components/transaction/transaction.component.html 83 @@ -5620,6 +6018,7 @@ Hide accelerator + 高速化画面を非表示 src/app/components/transaction/transaction.component.html 108 @@ -5646,19 +6045,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type タイプ @@ -5698,6 +6084,7 @@ RBF History + RBF履歴 src/app/components/transaction/transaction.component.html 241 @@ -5770,6 +6157,7 @@ Adjusted vsize + 調整済みvsize src/app/components/transaction/transaction.component.html 321 @@ -5788,6 +6176,7 @@ Sigops + Sigop src/app/components/transaction/transaction.component.html 347 @@ -5815,6 +6204,7 @@ Error loading transaction data. + 取引データの読み込み中にエラーが発生しました。 src/app/components/transaction/transaction.component.html 521 @@ -5823,6 +6213,7 @@ Accelerated fee rate + 高速化後手数料レート src/app/components/transaction/transaction.component.html 547 @@ -6002,6 +6393,7 @@ 1 block earlier + 1ブロック前 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 123 @@ -6010,6 +6402,7 @@ 1 block later + 1ブロック後 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 127 @@ -6018,6 +6411,7 @@ in the same block + 同じブロック内 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 131 @@ -6026,6 +6420,7 @@ blocks earlier + ブロック前 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 137 @@ -6034,6 +6429,7 @@ spent + 使用済み src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 148 @@ -6042,6 +6438,7 @@ blocks later + ブロック後 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 150 @@ -6202,79 +6599,78 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements + 最近の置き換え src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements Previous fee + 旧手数料 src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee New fee + 新手数料 src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee Recent Transactions + 最近の取引 src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions Liquid Federation Holdings + リキッド・フェデレーションの保有量 src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings Federation Timelock-Expired UTXOs + フェデレーション タイムロック期限切れ UTXO src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos L-BTC Supply Against BTC Holdings + BTC保有に対するL-BTCの供給 src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6283,7 +6679,7 @@ 最低料金 src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6293,7 +6689,7 @@ 削除中 src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6303,7 +6699,7 @@ インデックス構築中 src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6315,8 +6711,45 @@ lightning.indexing-in-progress + + Consolidation + 集約 + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + データ + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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 は Bitcoin ネットワークに関するデータを提供するだけです。 資金の回収やウォレットの問題などには対応できません。このようなリクエストについては、取引の実行を支援した組織 (ウォレット ソフトウェア、取引所など) に連絡する必要があります。 src/app/docs/api-docs/api-docs.component.html 15,16 @@ -6411,6 +6844,7 @@ FAQ + よくある質問 src/app/docs/docs/docs.component.ts 46 @@ -6418,6 +6852,7 @@ Get answers to common questions like: What is a mempool? Why isn't my transaction confirming? How can I run my own instance of The Mempool Open Source Project? And more. + 「mempool とは何ですか?」「取引が承認されないのはなぜですか?」 「Mempool オープンソース プロジェクトの独自のインスタンスを実行するにはどうすればよいですか?」などの一般的な質問に対する回答が得られます。 src/app/docs/docs/docs.component.ts 47 @@ -6425,6 +6860,7 @@ REST API + REST API src/app/docs/docs/docs.component.ts 51 @@ -6432,6 +6868,7 @@ Documentation for the liquid.network REST API service: get info on addresses, transactions, assets, blocks, and more. + liquid.network REST API サービスのドキュメント: アドレス、トランザクション、アセット、ブロックなどに関する情報を取得します。 src/app/docs/docs/docs.component.ts 53 @@ -6439,6 +6876,7 @@ Documentation for the mempool.space REST API service: get info on addresses, transactions, blocks, fees, mining, the Lightning network, and more. + mempool.space REST API サービスのドキュメント: アドレス、トランザクション、ブロック、手数料、マイニング、Lightning ネットワークなどに関する情報を入手します。 src/app/docs/docs/docs.component.ts 55 @@ -6446,6 +6884,7 @@ WebSocket API + WebSocket API src/app/docs/docs/docs.component.ts 59 @@ -6453,6 +6892,7 @@ Documentation for the liquid.network WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more. + liquid.network WebSocket API サービスのドキュメント: ブロック、メモリプール、トランザクション、アドレスなどに関するリアルタイム情報を取得します。 src/app/docs/docs/docs.component.ts 61 @@ -6460,6 +6900,7 @@ Documentation for the mempool.space WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more. + mempool.space WebSocket API サービスのドキュメント: ブロック、メモリプール、トランザクション、アドレスなどに関するリアルタイム情報を取得します。 src/app/docs/docs/docs.component.ts 63 @@ -6467,6 +6908,7 @@ Electrum RPC + Electrum RPC src/app/docs/docs/docs.component.ts 67 @@ -6474,6 +6916,7 @@ Documentation for our Electrum RPC interface: get instant, convenient, and reliable access to an Esplora instance. + Electrum RPC インターフェイスのドキュメント: Esplora インスタンスへの即時、便利、信頼性の高いアクセスを取得します。 src/app/docs/docs/docs.component.ts 68 @@ -6790,6 +7233,7 @@ Overview for Lightning channel . See channel capacity, the Lightning nodes involved, related on-chain transactions, and more. + Lightning チャネル の概要。チャネル容量、関係する Lightning ノード、関連するオンチェーン トランザクションなどを確認します。 src/app/lightning/channel/channel-preview.component.ts 37 @@ -7288,6 +7732,7 @@ Connect + 接続する src/app/lightning/group/group.component.html 73 @@ -7338,6 +7783,7 @@ Penalties + 懲罰 src/app/lightning/justice-list/justice-list.component.html 4 @@ -7415,6 +7861,7 @@ Get stats on the Lightning network (aggregate capacity, connectivity, etc), Lightning nodes (channels, liquidity, etc) and Lightning channels (status, fees, etc). + Lightning ネットワーク (総容量、接続性など)、Lightning ノード (チャネル、流動性など)、および Lightning チャネル (ステータス、手数料など) に関する情報を取得します。 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts 34 @@ -7524,6 +7971,7 @@ Overview for the Lightning network node named . See channels, capacity, location, fee stats, and more. + という名前の Lightning ネットワーク ノードの概要。チャネル、容量、場所、手数料情報などを確認します。 src/app/lightning/node/node-preview.component.ts 52 @@ -7584,6 +8032,7 @@ Decoded + デコード済み src/app/lightning/node/node.component.html 134 @@ -7722,6 +8171,7 @@ 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 Lightning ネットワーク ノードのチャネルを世界地図上に視覚化して表示します。マップ上のポイントにカーソルを合わせるかタップすると、ノード名と詳細が表示されます。 src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 74 @@ -7746,6 +8196,7 @@ See the locations of non-Tor Lightning network nodes visualized on a world map. Hover/tap on points on the map for node names and details. + 非 Tor Lightning ネットワーク ノードの位置を世界地図上に視覚化して表示します。マップ上のポイントにカーソルを合わせるかタップすると、ノード名と詳細が表示されます。 src/app/lightning/nodes-map/nodes-map.component.ts 52 @@ -7753,6 +8204,7 @@ See the number of Lightning network nodes visualized over time by network: clearnet only (IPv4, IPv6), darknet (Tor, I2p, cjdns), and both. + ネットワーク別:クリアネットのみ (IPv4、IPv6)、ダークネット (Tor、I2p、cjdns)、およびその両方に応じて、Lightning ネットワーク ノードの数を経時的に視覚化します。 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 74 @@ -7821,6 +8273,7 @@ See a geographical breakdown of the Lightning network: how many Lightning nodes are hosted in countries around the world, aggregate BTC capacity for each country, and more. + Lightning ネットワークの地理的内訳、世界各国でホストされている Lightning ノードの数、各国の合計 BTC 容量などを確認します。 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts 47 @@ -7891,6 +8344,7 @@ Explore all the Lightning nodes hosted in and see an overview of each node's capacity, number of open channels, and more. + でホストされているすべての Lightning ノードを調べて、各ノードの容量、開いているチャネルの数などの概要を確認します。 src/app/lightning/nodes-per-country/nodes-per-country.component.ts 44 @@ -7973,6 +8427,7 @@ Browse the top 100 ISPs hosting Lightning nodes along with stats like total number of nodes per ISP, aggregate BTC capacity per ISP, and more + Lightning ノードをホストしている上位 100 の ISP を、ISP ごとのノードの総数、ISP ごとの総 BTC 容量などの統計とともに閲覧します。 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts 54 @@ -8035,6 +8490,7 @@ Browse all Bitcoin Lightning nodes using the [AS] ISP and see aggregate stats like total number of nodes, total capacity, and more for the ISP. + [AS] ISP を使用しているすべての Bitcoin Lightning ノードを参照し、ISP の合計ノード数、合計容量などの集計統計情報を確認します。 src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts 45 @@ -8090,6 +8546,7 @@ See the oldest nodes on the Lightning network along with their capacity, number of channels, location, etc. + Lightning ネットワーク上の最も古いノードとその容量、チャネル数、場所などを確認します。 src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts 28 @@ -8097,6 +8554,7 @@ See Lightning nodes with the most BTC liquidity deployed along with high-level stats like number of open channels, location, node age, and more. + オープンチャネルの数、場所、ノードの年齢などの高レベルの統計とともに、最も多くの BTC 流動性が導入されている Lightning ノードを確認します。 src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts 35 @@ -8104,6 +8562,7 @@ See Lightning nodes with the most channels open along with high-level stats like total node capacity, node age, and more. + 最も多くのチャネルが開いている Lightning ノードを、合計ノード容量、ノードの経過時間などの高レベルの情報とともに表示します。 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.ts 39 @@ -8128,6 +8587,7 @@ See the top Lightning network nodes ranked by liquidity, connectivity, and age. + 流動性、接続性、稼働期間によってランク付けされた上位の Lightning ネットワーク ノードをご覧ください。 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts 23 @@ -8135,6 +8595,7 @@ See the capacity of the Lightning network visualized over time in terms of the number of open channels and total bitcoin capacity. + 開いているチャネルの数とビットコインの合計容量の観点から、時間の経過に伴って視覚化された Lightning ネットワークの容量を確認します。 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 71 @@ -8142,6 +8603,7 @@ confirmation + 承認 src/app/shared/components/confirmations/confirmations.component.html 4 @@ -8151,6 +8613,7 @@ confirmations + 承認 src/app/shared/components/confirmations/confirmations.component.html 5 @@ -8160,6 +8623,7 @@ Replaced + 置換済み src/app/shared/components/confirmations/confirmations.component.html 12 @@ -8179,6 +8643,7 @@ sat/WU + sat/WU src/app/shared/components/fee-rate/fee-rate.component.html 4 @@ -8192,6 +8657,7 @@ My Account + マイアカウント src/app/shared/components/global-footer/global-footer.component.html 25 @@ -8204,6 +8670,7 @@ Explore + 探検 src/app/shared/components/global-footer/global-footer.component.html 41 @@ -8212,6 +8679,7 @@ Connect to our Nodes + mempoolノードに接続する src/app/shared/components/global-footer/global-footer.component.html 46 @@ -8220,6 +8688,7 @@ API Documentation + APIドキュメント src/app/shared/components/global-footer/global-footer.component.html 47 @@ -8228,6 +8697,7 @@ Learn + 学ぶ src/app/shared/components/global-footer/global-footer.component.html 50 @@ -8236,6 +8706,7 @@ What is a mempool? + mempoolとは何ですか? src/app/shared/components/global-footer/global-footer.component.html 51 @@ -8244,6 +8715,7 @@ What is a block explorer? + ブロックエクスプローラーとは何ですか? src/app/shared/components/global-footer/global-footer.component.html 52 @@ -8252,6 +8724,7 @@ What is a mempool explorer? + mempoolエクスプローラーとは何ですか? src/app/shared/components/global-footer/global-footer.component.html 53 @@ -8260,6 +8733,7 @@ Why isn't my transaction confirming? + 取引が承認されないのはなぜですか? src/app/shared/components/global-footer/global-footer.component.html 54 @@ -8268,6 +8742,7 @@ More FAQs » + その他のよくある質問 » src/app/shared/components/global-footer/global-footer.component.html 55 @@ -8276,6 +8751,7 @@ Networks + ネットワーク src/app/shared/components/global-footer/global-footer.component.html 59 @@ -8284,6 +8760,7 @@ Mainnet Explorer + メインネットエクスプローラー src/app/shared/components/global-footer/global-footer.component.html 60 @@ -8292,6 +8769,7 @@ Testnet Explorer + テストネットエクスプローラー src/app/shared/components/global-footer/global-footer.component.html 61 @@ -8300,6 +8778,7 @@ Signet Explorer + シグネットエクスプローラー src/app/shared/components/global-footer/global-footer.component.html 62 @@ -8308,6 +8787,7 @@ Liquid Testnet Explorer + リキッドテストネットエクスプローラー src/app/shared/components/global-footer/global-footer.component.html 63 @@ -8316,6 +8796,7 @@ Liquid Explorer + リキッドエクスプローラー src/app/shared/components/global-footer/global-footer.component.html 64 @@ -8324,6 +8805,7 @@ Tools + ツール src/app/shared/components/global-footer/global-footer.component.html 68 @@ -8332,6 +8814,7 @@ Clock (Mined) + 時計 (採掘済み) src/app/shared/components/global-footer/global-footer.component.html 70 @@ -8340,6 +8823,7 @@ Legal + 法令に関する事項 src/app/shared/components/global-footer/global-footer.component.html 75 @@ -8368,6 +8852,7 @@ Trademark Policy + 商標ポリシー src/app/shared/components/global-footer/global-footer.component.html 78 @@ -8377,6 +8862,7 @@ Third-party Licenses + サードパーティライセンス src/app/shared/components/global-footer/global-footer.component.html 79 @@ -8386,12 +8872,45 @@ This is a test network. Coins have no value. + これはテストネットワークです。コインには価値がありません。 src/app/shared/components/testnet-alert/testnet-alert.component.html 3 warning-testnet + + Address Types + アドレスの種類 + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + 行動 + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + 発見法 + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + Sighashフラグ + + src/app/shared/filters.utils.ts + 123 + + year diff --git a/frontend/src/locale/messages.ka.xlf b/frontend/src/locale/messages.ka.xlf index 68ea2ed20..c9df84f0e 100644 --- a/frontend/src/locale/messages.ka.xlf +++ b/frontend/src/locale/messages.ka.xlf @@ -397,7 +397,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -445,40 +445,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + შემდეგი ბლოკი + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + ვირტუალური ზომა + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -542,20 +619,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB სატ/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -568,6 +661,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -716,7 +922,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -731,11 +941,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -807,7 +1017,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -883,14 +1093,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » მეტის ნახვა » @@ -932,7 +1134,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1170,7 +1372,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1460,6 +1662,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1488,6 +1694,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1671,7 +1881,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,10 +1892,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + დამთხვევა + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1891,7 +2146,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2175,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1978,28 +2233,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - ვირტუალური ზომა - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2026,15 +2259,6 @@ transaction.audit-status - - Match - დამთხვევა - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2139,6 +2363,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2234,7 +2462,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2453,23 +2681,6 @@ Block reorg block.reorged - - Next Block - შემდეგი ბლოკი - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block წინა ბლოკი @@ -2544,6 +2755,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2893,7 +3112,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3141,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,11 +3233,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3089,7 +3308,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3326,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3468,7 +3687,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3694,11 +3913,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3774,7 +3993,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3787,7 +4010,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3800,7 +4027,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3813,7 +4040,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3826,7 +4053,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3843,7 +4070,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4198,7 +4425,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4215,7 +4442,7 @@ Lightning ექსპლორერი src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4277,22 +4504,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats ანაზღაურების სტატისტიკა @@ -4319,7 +4530,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4536,22 +4747,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4740,11 +4955,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4765,18 +4980,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4849,7 +5064,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4889,7 +5104,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5518,6 +5733,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5624,19 +5843,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type ტიპი @@ -6180,19 +6386,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6200,7 +6398,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6208,7 +6406,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6216,7 +6414,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6224,11 +6422,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6236,11 +6434,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6248,11 +6446,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6261,7 +6459,7 @@ მინ. საკომისიო src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6271,7 +6469,7 @@ წაშლა src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6281,7 +6479,7 @@ ინდექსაცია მიმდინარეობს src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6293,6 +6491,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8369,6 +8600,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year წელი diff --git a/frontend/src/locale/messages.ko.xlf b/frontend/src/locale/messages.ko.xlf index 9791143bb..ae6c05ec4 100644 --- a/frontend/src/locale/messages.ko.xlf +++ b/frontend/src/locale/messages.ko.xlf @@ -404,7 +404,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -453,40 +453,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + 다음 블록 + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + 가상 크기 + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -550,20 +627,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -576,6 +669,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees 가속 수수료 @@ -729,7 +935,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -744,11 +954,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -820,7 +1030,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -896,14 +1106,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » 더 보기 » @@ -945,7 +1147,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1183,7 +1385,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1473,6 +1675,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1501,6 +1707,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1684,7 +1894,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1695,10 +1905,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + 일치 + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1904,7 +2159,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1933,7 +2188,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1991,28 +2246,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - 가상 크기 - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2039,15 +2272,6 @@ transaction.audit-status - - Match - 일치 - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2152,6 +2376,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2248,7 +2476,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2467,23 +2695,6 @@ Block reorg block.reorged - - Next Block - 다음 블록 - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block 이전 블록 @@ -2558,6 +2769,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2907,7 +3126,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2936,7 +3155,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3028,11 +3247,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3103,7 +3322,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3121,7 +3340,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3493,7 +3712,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3719,11 +3938,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3799,7 +4018,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3812,7 +4035,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3825,7 +4052,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3838,7 +4065,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3851,7 +4078,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3868,7 +4095,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4223,7 +4450,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4240,7 +4467,7 @@ 라이트닝 탐색기 src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4302,22 +4529,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats 보상 관련 데이터 @@ -4344,7 +4555,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4562,23 +4773,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - 기타 () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4767,11 +4981,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4792,18 +5006,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4876,7 +5090,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4916,7 +5130,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5546,6 +5760,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5652,19 +5870,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type 종류 @@ -6208,19 +6413,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6228,7 +6425,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6236,7 +6433,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6244,7 +6441,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6252,11 +6449,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6264,11 +6461,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6276,11 +6473,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6289,7 +6486,7 @@ 최소 수수료 src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6299,7 +6496,7 @@ 퍼징 src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6309,7 +6506,7 @@ 인덱싱 진행 중 src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6321,6 +6518,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8398,6 +8628,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year diff --git a/frontend/src/locale/messages.lt.xlf b/frontend/src/locale/messages.lt.xlf index 965166e60..7ed167a3b 100644 --- a/frontend/src/locale/messages.lt.xlf +++ b/frontend/src/locale/messages.lt.xlf @@ -397,7 +397,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -445,40 +445,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Kitas Blokas + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Virtualus dydis + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -542,20 +619,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -568,6 +661,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -716,7 +922,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -731,11 +941,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -807,7 +1017,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -883,14 +1093,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Rodyti daugiau » @@ -932,7 +1134,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1170,7 +1372,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1460,6 +1662,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1488,6 +1694,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1671,7 +1881,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,10 +1892,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Atitikmuo + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1891,7 +2146,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2175,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1978,28 +2233,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Virtualus dydis - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2026,15 +2259,6 @@ transaction.audit-status - - Match - Atitikmuo - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2139,6 +2363,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2234,7 +2462,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2453,23 +2681,6 @@ Block reorg block.reorged - - Next Block - Kitas Blokas - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Ankstesnis Blokas @@ -2544,6 +2755,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2893,7 +3112,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3141,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,11 +3233,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3089,7 +3308,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3326,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3479,7 +3698,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3705,11 +3924,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3785,7 +4004,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3798,7 +4021,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3811,7 +4038,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3824,7 +4051,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3837,7 +4064,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3854,7 +4081,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4209,7 +4436,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4226,7 +4453,7 @@ "Lightning" Naršyklė src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4288,22 +4515,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Atlygio statistika @@ -4330,7 +4541,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4548,23 +4759,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Kita () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4753,11 +4967,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4778,18 +4992,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4862,7 +5076,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4902,7 +5116,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5532,6 +5746,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5638,19 +5856,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Rūšis @@ -6194,19 +6399,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6214,7 +6411,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6222,7 +6419,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6230,7 +6427,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6238,11 +6435,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6250,11 +6447,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6262,11 +6459,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6275,7 +6472,7 @@ Minimalus mokestis src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6285,7 +6482,7 @@ Valymas src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6295,7 +6492,7 @@ Vyksta indeksavimas src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6307,6 +6504,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8384,6 +8614,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year metai diff --git a/frontend/src/locale/messages.mk.xlf b/frontend/src/locale/messages.mk.xlf index 6556b9b03..3fb39eb48 100644 --- a/frontend/src/locale/messages.mk.xlf +++ b/frontend/src/locale/messages.mk.xlf @@ -397,7 +397,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -445,40 +445,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Нареден Блок + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Виртуелна големина + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -542,20 +619,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -568,6 +661,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -716,7 +922,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -731,11 +941,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -807,7 +1017,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -883,14 +1093,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Види повеќе » @@ -932,7 +1134,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1170,7 +1372,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1460,6 +1662,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1488,6 +1694,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1671,7 +1881,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,10 +1892,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Се совпаѓа + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1891,7 +2146,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2175,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1978,28 +2233,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Виртуелна големина - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2026,15 +2259,6 @@ transaction.audit-status - - Match - Се совпаѓа - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2139,6 +2363,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2234,7 +2462,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2453,23 +2681,6 @@ Block reorg block.reorged - - Next Block - Нареден Блок - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Претходен Блок @@ -2544,6 +2755,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2893,7 +3112,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3141,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,11 +3233,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3089,7 +3308,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3326,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3479,7 +3698,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3705,11 +3924,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3785,7 +4004,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3798,7 +4021,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3811,7 +4038,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3824,7 +4051,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3837,7 +4064,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3854,7 +4081,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4209,7 +4436,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4226,7 +4453,7 @@ Lightning Прелистувач src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4288,22 +4515,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Статистика за награди @@ -4330,7 +4541,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4548,23 +4759,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Други () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4753,11 +4967,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4778,18 +4992,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4862,7 +5076,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4902,7 +5116,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5532,6 +5746,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5638,19 +5856,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Тип @@ -6194,19 +6399,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6214,7 +6411,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6222,7 +6419,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6230,7 +6427,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6238,11 +6435,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6250,11 +6447,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6262,11 +6459,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6275,7 +6472,7 @@ Минимум src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6285,7 +6482,7 @@ Отфрлање src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6295,7 +6492,7 @@ Индексирањето е во прогрес src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6307,6 +6504,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8384,6 +8614,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year година diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf index ebc8dc05f..1bbea8c54 100644 --- a/frontend/src/locale/messages.nb.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -404,7 +404,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -453,40 +453,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Neste blokk + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Virtuell størrelse + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -550,20 +627,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -576,6 +669,121 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + Logg inn + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + Akselerer + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -724,7 +932,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -739,11 +951,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -816,7 +1028,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -892,14 +1104,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Se mer » @@ -941,7 +1145,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1179,7 +1383,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1469,6 +1673,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1497,6 +1705,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1683,7 +1895,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1694,10 +1906,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Identisk + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health Blokkhelse @@ -1906,7 +2163,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1935,7 +2192,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1994,28 +2251,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Virtuell størrelse - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight Vekt @@ -2043,15 +2278,6 @@ transaction.audit-status - - Match - Identisk - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed Fjernet @@ -2160,6 +2386,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2257,7 +2487,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2479,23 +2709,6 @@ Block reorg block.reorged - - Next Block - Neste blokk - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Forrige blokk @@ -2571,6 +2784,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2920,7 +3141,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2949,7 +3170,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3041,11 +3262,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3120,7 +3341,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3138,7 +3359,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3512,7 +3733,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3739,11 +3960,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3820,7 +4041,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3833,7 +4058,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3846,7 +4075,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3859,7 +4088,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3872,7 +4101,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3889,7 +4118,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4244,7 +4473,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4261,7 +4490,7 @@ Lightning Explorer src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4325,23 +4554,6 @@ 328 - - Sign In - Logg inn - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Belønnings-statistikk @@ -4369,7 +4581,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4592,23 +4804,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Annet () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4799,11 +5014,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4824,18 +5039,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4912,7 +5127,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4954,7 +5169,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5588,6 +5803,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5694,20 +5913,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - Akselerer - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Type @@ -6253,20 +6458,12 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements Nylige erstatninger src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6275,7 +6472,7 @@ Tidligere avgift src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6284,7 +6481,7 @@ Ny avgift src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6293,7 +6490,7 @@ Nylige transaksjoner src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6301,11 +6498,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6313,11 +6510,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6325,11 +6522,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6338,7 +6535,7 @@ Minimumsavgift src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6348,7 +6545,7 @@ Fjerner src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6358,7 +6555,7 @@ Indeksering pågår src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6370,6 +6567,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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 gir bare data om Bitcoin-nettverket. Det kan ikke hjelpe deg med å hente midler, lommebokproblemer osv.For slike forespørsler må du ta kontakt med enheten som bidro til transaksjonen (lommebokprogramvare, børsselskap osv.). @@ -8500,6 +8730,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year år diff --git a/frontend/src/locale/messages.ne.xlf b/frontend/src/locale/messages.ne.xlf index 523463b99..810453da8 100644 --- a/frontend/src/locale/messages.ne.xlf +++ b/frontend/src/locale/messages.ne.xlf @@ -397,7 +397,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -445,40 +445,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + अर्को ब्लक + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + वर्चुअल साइज + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats / सैटस src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -542,20 +619,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB स्याट/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -568,6 +661,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -716,7 +922,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -731,11 +941,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -807,7 +1017,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -883,14 +1093,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » अरु पनि हेर्नुहोस् @@ -932,7 +1134,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1170,7 +1372,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1460,6 +1662,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1488,6 +1694,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1671,7 +1881,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,10 +1892,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + बराबर + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1891,7 +2146,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2175,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1978,28 +2233,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - वर्चुअल साइज - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2026,15 +2259,6 @@ transaction.audit-status - - Match - बराबर - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2139,6 +2363,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2234,7 +2462,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2453,23 +2681,6 @@ Block reorg block.reorged - - Next Block - अर्को ब्लक - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block अघिल्लो ब्लक @@ -2544,6 +2755,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2893,7 +3112,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3141,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,11 +3233,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3089,7 +3308,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3326,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3479,7 +3698,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3705,11 +3924,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3783,7 +4002,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3796,7 +4019,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3809,7 +4036,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3822,7 +4049,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3835,7 +4062,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3852,7 +4079,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4207,7 +4434,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4224,7 +4451,7 @@ लाइटनिङ एक्सप्लोरर src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4286,22 +4513,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats इनाम तथ्याङ्क @@ -4328,7 +4539,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4546,23 +4757,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - अरू () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4751,11 +4965,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4776,18 +4990,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4860,7 +5074,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4900,7 +5114,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5529,6 +5743,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5635,19 +5853,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type प्रकार @@ -6191,19 +6396,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6211,7 +6408,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6219,7 +6416,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6227,7 +6424,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6235,11 +6432,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6247,11 +6444,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6259,11 +6456,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6272,7 +6469,7 @@ न्यूनतम शुल्क src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6282,7 +6479,7 @@ पर्जिंग / सफा src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6292,7 +6489,7 @@ अनुक्रमणिका प्रगतिमा छ src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6304,6 +6501,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8361,6 +8591,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year वर्ष diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index f1726a7eb..705be6d4a 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -59,6 +59,7 @@ + node_modules/src/ngb-config.ts 13 @@ -66,6 +67,7 @@ Slide of + Slide of node_modules/src/ngb-config.ts 13 @@ -266,6 +268,7 @@ Become a Community Sponsor + Word een community-sponsor src/app/components/about/about-sponsors.component.html 4 @@ -274,6 +277,7 @@ Become an Enterprise Sponsor + Word Enterprise-sponsor src/app/components/about/about-sponsors.component.html 11 @@ -308,6 +312,7 @@ Whale Sponsors + Whale-sponsoren src/app/components/about/about.component.html 187 @@ -316,6 +321,7 @@ Chad Sponsors + Chad-sponsors src/app/components/about/about.component.html 200 @@ -324,6 +330,7 @@ OG Sponsors ❤️ + OG-sponsors ❤️ src/app/components/about/about.component.html 213 @@ -397,11 +404,12 @@ src/app/components/master-page/master-page.component.html - 77 + 96 Learn more about The Mempool Open Source Project®: enterprise sponsors, individual sponsors, integrations, who contributes, FOSS licensing, and more. + Lees meer over het Mempool Open Source Project®: Enterprise-sponsoren, individuele sponsoren, integraties, wie meehelpt, FOSS-licensering, en meer. src/app/components/about/about.component.ts 50 @@ -445,40 +453,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Volgend Blok + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Virtuele grootte + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -542,20 +627,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -568,8 +669,123 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + Versnel + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees + Versnellingstarief src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.html 6 @@ -582,6 +798,7 @@ No accelerated transaction for this timeframe + Geen versnelde transacties in dit tijdvak src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 121 @@ -589,6 +806,7 @@ At block: + Bij blok: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 165 @@ -608,6 +826,7 @@ Around block: + Rond blok: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 167 @@ -627,6 +846,7 @@ Requests + Verzoeken src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 4 @@ -647,6 +867,7 @@ accelerated + versneld src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 7 @@ -655,6 +876,7 @@ Total Bid Boost + Totaalbod versnelling src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 11 @@ -671,6 +893,7 @@ BTC + BTC src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 13 @@ -692,6 +915,7 @@ Success Rate + Succespercentage src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 20 @@ -704,6 +928,7 @@ mined + gemined src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 23 @@ -712,11 +937,16 @@ Accelerations + Versnellingen src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -731,11 +961,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -750,6 +980,7 @@ Acceleration Bid + Bod versnelling src/app/components/acceleration/accelerations-list/accelerations-list.component.html 13 @@ -807,7 +1038,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -826,6 +1057,7 @@ Completed 🔄 + Compleet 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 54,55 @@ -833,6 +1065,7 @@ Failed 🔄 + Mislukt 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 55,56 @@ -841,6 +1074,7 @@ There are no active accelerations + Geen actieve versnellingen src/app/components/acceleration/accelerations-list/accelerations-list.component.html 96 @@ -849,6 +1083,7 @@ There are no recent accelerations + Geen recente versnellingen src/app/components/acceleration/accelerations-list/accelerations-list.component.html 97 @@ -857,6 +1092,7 @@ Active Accelerations + Actieve versnellingen src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 10 @@ -869,6 +1105,7 @@ Acceleration stats + Statistieken versnellingen src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 24 @@ -883,14 +1120,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Laat meer zien » @@ -918,6 +1147,7 @@ Recent Accelerations + Recente versnellingen src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 86 @@ -926,13 +1156,14 @@ Accelerator Dashboard + Versnelling-dashboard src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts 47 src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1170,7 +1401,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1460,6 +1691,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1488,6 +1723,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1671,7 +1910,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,10 +1921,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Overeenkomst + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1891,7 +2175,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2204,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1971,6 +2255,7 @@ Accelerated fee rate + Versnel-vergoeding src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 53 @@ -1978,28 +2263,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Virtuele grootte - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2026,15 +2289,6 @@ transaction.audit-status - - Match - Overeenkomst - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2127,6 +2381,7 @@ Accelerated + Versneld src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 80 @@ -2139,6 +2394,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2234,7 +2493,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2453,23 +2712,6 @@ Block reorg block.reorged - - Next Block - Volgend Blok - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Vorig Blok @@ -2544,6 +2786,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2870,6 +3120,7 @@ Acceleration fees paid out-of-band + Betaalde versnelvergoeding buiten blockchain om src/app/components/block/block.component.html 433 @@ -2893,7 +3144,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3173,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,11 +3265,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3089,7 +3340,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3358,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3479,7 +3730,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3705,11 +3956,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3785,7 +4036,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3798,7 +4053,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3811,7 +4070,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3824,7 +4083,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3837,7 +4096,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3854,7 +4113,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4209,7 +4468,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4226,7 +4485,7 @@ Lightningexplorer src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4288,22 +4547,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Beloningstatistieken @@ -4330,7 +4573,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4548,23 +4791,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Ander () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4753,11 +4999,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4778,18 +5024,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4862,7 +5108,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4902,7 +5148,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5532,6 +5778,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5612,6 +5862,7 @@ Hide accelerator + Verberg versneller src/app/components/transaction/transaction.component.html 108 @@ -5638,19 +5889,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Type @@ -5815,6 +6053,7 @@ Accelerated fee rate + Versnelde vergoeding src/app/components/transaction/transaction.component.html 547 @@ -6194,19 +6433,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6214,7 +6445,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6222,7 +6453,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6230,7 +6461,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6238,11 +6469,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6250,11 +6481,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6262,11 +6493,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6275,7 +6506,7 @@ Minimumvergoeding src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6285,7 +6516,7 @@ Weggooien src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6295,7 +6526,7 @@ Indexering is bezig src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6307,6 +6538,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8384,6 +8648,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year jaar diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index e045fa3de..0e63d1402 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -399,7 +399,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -447,40 +447,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Następny blok + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Rozmiar wirtualny + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -544,20 +621,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -570,6 +663,120 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + Przyśpiesz + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -718,7 +925,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -733,11 +944,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -809,7 +1020,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -885,14 +1096,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Pokaż więcej » @@ -934,7 +1137,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1172,7 +1375,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1462,6 +1665,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1490,6 +1697,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1673,7 +1884,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1684,10 +1895,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Dopasowanie + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1893,7 +2149,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1922,7 +2178,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1980,28 +2236,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Rozmiar wirtualny - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2028,15 +2262,6 @@ transaction.audit-status - - Match - Dopasowanie - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2141,6 +2366,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2236,7 +2465,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2455,23 +2684,6 @@ Block reorg block.reorged - - Next Block - Następny blok - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Poprzedni blok @@ -2546,6 +2758,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2895,7 +3115,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2924,7 +3144,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3016,11 +3236,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3093,7 +3313,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3111,7 +3331,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3483,7 +3703,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3709,11 +3929,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3789,7 +4009,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3802,7 +4026,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3815,7 +4043,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3828,7 +4056,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3841,7 +4069,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3858,7 +4086,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4213,7 +4441,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4230,7 +4458,7 @@ Eksplorator Lightning src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4293,22 +4521,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Statystyki nagród @@ -4336,7 +4548,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4555,23 +4767,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Inne () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4761,11 +4976,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4786,18 +5001,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4871,7 +5086,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4911,7 +5126,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5541,6 +5756,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5647,20 +5866,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - Przyśpiesz - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Typ @@ -6204,19 +6409,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6225,7 +6422,7 @@ Poprzednia opłata src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6234,7 +6431,7 @@ Nowa opłata src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6242,7 +6439,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6250,11 +6447,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6262,11 +6459,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6274,11 +6471,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6287,7 +6484,7 @@ Minimalna opłata src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6297,7 +6494,7 @@ Próg odrzucenia src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6307,7 +6504,7 @@ Indeksowanie w toku src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6319,6 +6516,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8397,6 +8627,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year rok diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index 643d35c27..bc7c92281 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -397,7 +397,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -445,40 +445,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Próximo Bloco + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Tamanho virtual + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -542,20 +619,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -568,6 +661,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -716,7 +922,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -731,11 +941,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -807,7 +1017,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -883,14 +1093,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Ver mais » @@ -932,7 +1134,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1170,7 +1372,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1460,6 +1662,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1488,6 +1694,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1671,7 +1881,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,10 +1892,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Correspondente + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1891,7 +2146,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2175,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1978,28 +2233,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Tamanho virtual - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2026,15 +2259,6 @@ transaction.audit-status - - Match - Correspondente - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2139,6 +2363,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2234,7 +2462,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2453,23 +2681,6 @@ Block reorg block.reorged - - Next Block - Próximo Bloco - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Bloco Anterior @@ -2544,6 +2755,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2893,7 +3112,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3141,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,11 +3233,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3089,7 +3308,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3326,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3479,7 +3698,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3705,11 +3924,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3785,7 +4004,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3798,7 +4021,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3811,7 +4038,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3824,7 +4051,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3837,7 +4064,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3854,7 +4081,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4209,7 +4436,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4226,7 +4453,7 @@ Explorador Lightning src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4288,22 +4515,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Estatisticas de recompensas @@ -4330,7 +4541,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4548,23 +4759,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Outras () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4753,11 +4967,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4778,18 +4992,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4862,7 +5076,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4902,7 +5116,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5532,6 +5746,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5638,19 +5856,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Tipo @@ -6194,19 +6399,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6214,7 +6411,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6222,7 +6419,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6230,7 +6427,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6238,11 +6435,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6250,11 +6447,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6262,11 +6459,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6275,7 +6472,7 @@ Taxa mínima src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6285,7 +6482,7 @@ Mínimo exigido src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6295,7 +6492,7 @@ Indexação em progresso src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6307,6 +6504,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8384,6 +8614,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year ano diff --git a/frontend/src/locale/messages.ro.xlf b/frontend/src/locale/messages.ro.xlf index 4ffde6cce..85bd1fad2 100644 --- a/frontend/src/locale/messages.ro.xlf +++ b/frontend/src/locale/messages.ro.xlf @@ -59,6 +59,7 @@ + node_modules/src/ngb-config.ts 13 @@ -66,6 +67,7 @@ Slide of + Pagina din node_modules/src/ngb-config.ts 13 @@ -266,6 +268,7 @@ Become a Community Sponsor + Deveniți un sponsor comunitar src/app/components/about/about-sponsors.component.html 4 @@ -274,6 +277,7 @@ Become an Enterprise Sponsor + Deveniți o companie sponsor src/app/components/about/about-sponsors.component.html 11 @@ -308,6 +312,7 @@ Whale Sponsors + Sponsori Balenă src/app/components/about/about.component.html 187 @@ -316,6 +321,7 @@ Chad Sponsors + Sponsori Chad src/app/components/about/about.component.html 200 @@ -324,6 +330,7 @@ OG Sponsors ❤️ + Sponsori OG src/app/components/about/about.component.html 213 @@ -397,11 +404,12 @@ src/app/components/master-page/master-page.component.html - 77 + 96 Learn more about The Mempool Open Source Project®: enterprise sponsors, individual sponsors, integrations, who contributes, FOSS licensing, and more. + Aflați mai multe despre Proiectul Open Source Mempool®: sponsori companii, sponsori individuali, integrări, cine contribuie, licențiere FOSS și multe altele. src/app/components/about/about.component.ts 50 @@ -445,40 +453,121 @@ sat shared.sat + + maximum + maxim + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Blocul următor + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + Tranzacția dvs + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + Plus strămoși neconfirmați + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Dimensiune virtuală + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + Comisioane in-band + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -542,20 +631,39 @@ shared.sats + + How much more are you willing to pay? + Cât mai ești dispus să plătești in plus? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + Alegeți comisionul maxim suplimentar de tranzacție pe care sunteți dispus să-l plătiți pentru a intra în următorul bloc. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + Rata din piață pentru următorul bloc + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -568,8 +676,133 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + Necesar comision suplimentar estimat + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + Comisioane Mempool Accelerator™ + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + Comision pentru serviciul Accelerator + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + Suprataxă pentru dimensiunea tranzacției + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + Costul de accelerare estimat + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + Costul maxim de accelerare + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + Sold disponibil + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + Conectare + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + Accelerează pe mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + Accelerează + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + Dacă tranzacția dvs. este accelerată la ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees + Comisoane de accelerare src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.html 6 @@ -582,6 +815,7 @@ No accelerated transaction for this timeframe + Nicio tranzacție accelerată pentru acest interval de timp src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 121 @@ -589,6 +823,7 @@ At block: + La bloc: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 165 @@ -608,6 +843,7 @@ Around block: + În jurul blocului: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 167 @@ -627,6 +863,7 @@ Requests + Cereri src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 4 @@ -647,6 +884,7 @@ accelerated + accelerat(e) src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 7 @@ -655,6 +893,7 @@ Total Bid Boost + Total creștere sume licitate src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 11 @@ -671,6 +910,7 @@ BTC + BTC src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 13 @@ -692,6 +932,7 @@ Success Rate + Rata de succes src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 20 @@ -704,6 +945,7 @@ mined + minerit src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 23 @@ -712,11 +954,16 @@ Accelerations + Accelerări src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -731,16 +978,17 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid Fee Rate + Rată comision src/app/components/acceleration/accelerations-list/accelerations-list.component.html 12 @@ -750,6 +998,7 @@ Acceleration Bid + Ofertă de accelerare src/app/components/acceleration/accelerations-list/accelerations-list.component.html 13 @@ -759,6 +1008,7 @@ Requested + Solicitat src/app/components/acceleration/accelerations-list/accelerations-list.component.html 14 @@ -771,6 +1021,7 @@ Bid Boost + Creștere a solicitării src/app/components/acceleration/accelerations-list/accelerations-list.component.html 17 @@ -797,6 +1048,7 @@ Status + Stare src/app/components/acceleration/accelerations-list/accelerations-list.component.html 19 @@ -807,7 +1059,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -818,6 +1070,7 @@ Pending + În așteptare src/app/components/acceleration/accelerations-list/accelerations-list.component.html 53 @@ -826,6 +1079,7 @@ Completed 🔄 + Finalizat 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 54,55 @@ -833,6 +1087,7 @@ Failed 🔄 + Eșuat 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 55,56 @@ -841,6 +1096,7 @@ There are no active accelerations + Nu există accelerări active src/app/components/acceleration/accelerations-list/accelerations-list.component.html 96 @@ -849,6 +1105,7 @@ There are no recent accelerations + Nu există accelerări recente src/app/components/acceleration/accelerations-list/accelerations-list.component.html 97 @@ -857,6 +1114,7 @@ Active Accelerations + Accelerări active src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 10 @@ -869,6 +1127,7 @@ Acceleration stats + Statistici accelerări src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 24 @@ -877,20 +1136,13 @@ (3 months) + (3 luni) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 25 mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Vezi mai multe » @@ -918,6 +1170,7 @@ Recent Accelerations + Accelerări recente src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 86 @@ -926,17 +1179,19 @@ Accelerator Dashboard + Tabloul de bord Accelerator src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts 47 src/app/components/master-page/master-page.component.html - 56 + 75 pending + În așteptare src/app/components/acceleration/pending-stats/pending-stats.component.html 7 @@ -945,6 +1200,7 @@ Avg Max Bid + Suma licitată medie maximă src/app/components/acceleration/pending-stats/pending-stats.component.html 11 @@ -957,6 +1213,7 @@ Total Vsize + Vsize Total src/app/components/acceleration/pending-stats/pending-stats.component.html 20 @@ -969,6 +1226,7 @@ of next block + al blocului următor src/app/components/acceleration/pending-stats/pending-stats.component.html 23 @@ -977,6 +1235,7 @@ Balance History + Istoric sold src/app/components/address-graph/address-graph.component.html 6 @@ -985,6 +1244,7 @@ Balance:Balance + Sold:Sold src/app/components/address-graph/address-graph.component.ts 162 @@ -992,6 +1252,7 @@ Balances + Solduri src/app/components/address-group/address-group.component.html 4 @@ -1000,6 +1261,7 @@ Total + Total src/app/components/address-group/address-group.component.html 9 @@ -1170,7 +1432,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1188,6 +1450,7 @@ See mempool transactions, confirmed transactions, balance, and more for address . + Vedeți tranzacțiile din mempool, tranzacțiile confirmate, soldul și altele pentru adresa. src/app/components/address/address-preview.component.ts 72 @@ -1199,6 +1462,7 @@ of transaction + din tranzacție src/app/components/address/address.component.html 69 @@ -1207,6 +1471,7 @@ of transactions + din tranzacții src/app/components/address/address.component.html 70 @@ -1228,6 +1493,7 @@ There 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: + Există multe tranzacții la această adresă, mai mult decât poate suporta backend-ul dvs. Vedeți mai multe la configurarea unui backend mai puternic. Considerați în schimb să vizualizați această adresă pe site-ul oficial Mempool: src/app/components/address/address.component.html 143,146 @@ -1399,6 +1665,7 @@ Browse an overview of the Liquid asset (): see issued amount, burned amount, circulating amount, related transactions, and more. + Vedeți un sumar al activului Liquid (): vedeți cantitatea emisă, cantitatea arsă, cantitatea în circulație, tranzacțiile aferente și mai mult. src/app/components/asset/asset.component.ts 108 @@ -1418,6 +1685,7 @@ No featured assets + Nu există active prezentate src/app/components/assets/assets-featured/assets-featured.component.html 3 @@ -1460,6 +1728,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1488,6 +1760,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1509,6 +1785,7 @@ Explore all the assets issued on the Liquid network like L-BTC, L-CAD, USDT, and more. + Explorați toate activele emise în rețeaua Liquid, cum ar fi L-BTC, L-CAD, USDT și altele. src/app/components/assets/assets-nav/assets-nav.component.ts 43 @@ -1581,6 +1858,7 @@ Avg Block Fee (24h) + Comision mediu de bloc (24 ore) src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 51 @@ -1593,6 +1871,7 @@ Avg Block Fee (1m) + Comision mediu de bloc (1 m) src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 57 @@ -1605,6 +1884,7 @@ See Bitcoin feerates visualized over time, including minimum and maximum feerates per block along with feerates at various percentiles. + Vedeți comisioanele Bitcoin vizualizate în timp, inclusiv ratele minime și maxime pe bloc împreună cu ratele la diferite percentile. src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts 73 @@ -1612,6 +1892,7 @@ Block Fees + Comisioane medii de bloc src/app/components/block-fees-graph/block-fees-graph.component.html 6 @@ -1628,6 +1909,7 @@ See the average mining fees earned per Bitcoin block visualized in BTC and USD over time. + Vedeți comisoanele medii de minerit câștigate per bloc Bitcoin vizualizate în BTC și USD în timp. src/app/components/block-fees-graph/block-fees-graph.component.ts 70 @@ -1667,11 +1949,12 @@ select filter categories to highlight matching transactions + selectați categoriile de filtrare pentru a evidenția tranzacțiile care se potrivesc src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,12 +1965,62 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Potrivire + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + Oricare + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + Tentă + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + Clasic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + Vârstă + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health + Sănătate Bloc src/app/components/block-health-graph/block-health-graph.component.html 6 @@ -1700,6 +2033,7 @@ Block Health + Sănătate Bloc src/app/components/block-health-graph/block-health-graph.component.ts 63 @@ -1707,6 +2041,7 @@ See Bitcoin block health visualized over time. Block health is a measure of how many expected transactions were included in an actual mined block. Expected transactions are determined using Mempool's re-implementation of Bitcoin Core's transaction selection algorithm. + Vedeți sănătatea blocului Bitcoin vizualizată în timp. Sănătatea blocului este o măsură a câte tranzacții așteptate au fost incluse într-un bloc minat. Tranzacțiile așteptate sunt determinate folosind reimplementarea de către Mempool a algoritmului de selecție a tranzacțiilor Bitcoin Core. src/app/components/block-health-graph/block-health-graph.component.ts 64 @@ -1771,6 +2106,7 @@ Your browser does not support this feature. + Browserul dvs. nu suportă această funcționalitate. src/app/components/block-overview-graph/block-overview-graph.component.html 21 @@ -1891,7 +2227,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2256,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1971,6 +2307,7 @@ Accelerated fee rate + Tarif accelerat src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 53 @@ -1978,30 +2315,9 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Dimensiune virtuală - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight + Greutate src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 63 @@ -2026,17 +2342,9 @@ transaction.audit-status - - Match - Potrivire - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed + Eliminat src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 71 @@ -2063,6 +2371,7 @@ High sigop count + Valoare ridicată sigop src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 73 @@ -2080,6 +2389,7 @@ Recently CPFP'd + CPFP recent src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 75 @@ -2088,6 +2398,7 @@ Added + Adăugat src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -2101,6 +2412,7 @@ Prioritized + Prioritizat src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 77 @@ -2114,6 +2426,7 @@ Conflict + Conflict src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -2127,6 +2440,7 @@ Accelerated + Accelerat src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 80 @@ -2139,6 +2453,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2160,6 +2478,7 @@ See Bitcoin block rewards in BTC and USD visualized over time. Block rewards are the total funds miners earn from the block subsidy and fees. + Vedeți recompensele de bloc Bitcoin în BTC și USD vizualizate în timp. Recompensele de bloc reprezintă totalul fondurilor pe care minerii le câștigă din subvenția blocului și comisioane. src/app/components/block-rewards-graph/block-rewards-graph.component.ts 68 @@ -2184,6 +2503,7 @@ See Bitcoin block sizes (MB) and block weights (weight units) visualized over time. + Vedeți dimensiunile blocurilor Bitcoin (MB) și greutățile blocurilor (unități de greutate) vizualizate în timp. src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 65 @@ -2234,7 +2554,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2303,6 +2623,7 @@ See size, weight, fee range, included transactions, and more for Liquid block (). + Vedeți dimensiunea, greutatea, intervalul de comisionare, tranzacțiile incluse și altele pentru Liquid blocul (). src/app/components/block-view/block-view.component.ts 112 @@ -2318,6 +2639,7 @@ See size, weight, fee range, included transactions, audit (expected v actual), and more for Bitcoin block (). + Vedeți dimensiunea, greutatea, intervalul de comisionare, tranzacțiile incluse, auditul (așteptat vs real) și multe altele pentru Bitcoin bloc ( ). src/app/components/block-view/block-view.component.ts 114 @@ -2446,6 +2768,7 @@ This block does not belong to the main chain, it has been replaced by: + Acest bloc nu aparține lanțului principal, a fost înlocuit de: src/app/components/block/block.component.html 5 @@ -2453,23 +2776,6 @@ Block reorg block.reorged - - Next Block - Blocul următor - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Blocul anterior @@ -2481,6 +2787,7 @@ Stale + Stare src/app/components/block/block.component.html 30 @@ -2544,6 +2851,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2804,6 +3119,7 @@ transaction + tranzacție src/app/components/block/block.component.html 331 @@ -2820,6 +3136,7 @@ transactions + tranzacții src/app/components/block/block.component.html 332 @@ -2870,6 +3187,7 @@ Acceleration fees paid out-of-band + Comisioane de accelerare plătite extern src/app/components/block/block.component.html 433 @@ -2893,7 +3211,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3240,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,16 +3332,17 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs See the most recent Liquid blocks along with basic stats such as block height, block size, and more. + Vedeți cele mai recente blocuri Liquid împreună cu statistici de bază, cum ar fi înălțimea blocului, dimensiunea blocului și altele. src/app/components/blocks-list/blocks-list.component.ts 71 @@ -3031,6 +3350,7 @@ See the most recent Bitcoin blocks along with basic stats such as block height, block reward, block size, and more. + Vedeți cele mai recente blocuri Bitcoin împreună cu statistici de bază, cum ar fi înălțimea blocului, recompensa blocului, dimensiunea blocului și altele. src/app/components/blocks-list/blocks-list.component.ts 73 @@ -3038,6 +3358,7 @@ Calculator + Calculator src/app/components/calculator/calculator.component.html 3 @@ -3083,13 +3404,14 @@ Memory Usage + Memorie folosită src/app/components/clock/clock.component.html 65 src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3429,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3162,6 +3484,7 @@ blocks + blocuri src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 @@ -3341,6 +3664,7 @@ Halving Countdown + Numărătoare inversă Halving src/app/components/difficulty/difficulty.component.html 2 @@ -3349,6 +3673,7 @@ difficulty + dificultate src/app/components/difficulty/difficulty.component.html 7 @@ -3357,6 +3682,7 @@ halving + halving src/app/components/difficulty/difficulty.component.html 10 @@ -3374,6 +3700,7 @@ New subsidy + Noua subvenție src/app/components/difficulty/difficulty.component.html 103 @@ -3382,6 +3709,7 @@ Blocks remaining + Blocuri rămase src/app/components/difficulty/difficulty.component.html 111 @@ -3390,6 +3718,7 @@ Block remaining + Bloc rămas src/app/components/difficulty/difficulty.component.html 112 @@ -3473,13 +3802,14 @@ Incoming Transactions + Tranzacții primite src/app/components/footer/footer.component.html 5 src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3504,6 +3834,7 @@ WU/s + WU/s src/app/components/footer/footer.component.html 14 @@ -3705,11 +4036,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3728,6 +4059,7 @@ See hashrate and difficulty for the Bitcoin network visualized over time. + Vedeți rata hash și dificultatea rețelei Bitcoin vizualizate în timp. src/app/components/hashrate-chart/hashrate-chart.component.ts 76 @@ -3755,6 +4087,7 @@ See Bitcoin mining pool dominance visualized over time: see how top mining pools' share of total hashrate has fluctuated over time. + Vedeți dominația pool-ului de minerit Bitcoin vizualizată în timp: vedeți cum a fluctuat în timp hashrate-ul grupurilor miniere de top. src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts 75 @@ -3785,7 +4118,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3798,7 +4135,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3811,7 +4152,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3824,7 +4165,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3837,7 +4178,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3854,7 +4195,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -3864,6 +4205,7 @@ Non-Dust Expired + Non-Dust Expirat src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 3 @@ -4209,7 +4551,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4226,7 +4568,7 @@ Explorator Lightning src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4288,22 +4630,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Statistici Recompense @@ -4330,7 +4656,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4349,6 +4675,7 @@ Get real-time Bitcoin mining stats like hashrate, difficulty adjustment, block rewards, pool dominance, and more. + Obțineți statistici în timp real despre minerit Bitcoin, cum ar fi hashrate, ajustarea dificultății, recompense de bloc, dominarea pool-ului și multe altele. src/app/components/mining-dashboard/mining-dashboard.component.ts 29 @@ -4548,23 +4875,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Altele () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4619,6 +4949,7 @@ See mining pool stats for : most recent mined blocks, hashrate over time, total block reward to date, known coinbase addresses, and more. + Vedeți statisticile grupului de minerit pentru : cele mai recente blocuri minerite, hashrate în timp, recompensa totală de bloc până în prezent, adresele coinbase cunoscute și multe altele. src/app/components/pool/pool-preview.component.ts 86 @@ -4718,6 +5049,7 @@ Out-of-band Fees (1w) + Comisioane plătite extern (1 săpt) src/app/components/pool/pool.component.html 143 @@ -4753,11 +5085,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4778,18 +5110,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4862,7 +5194,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4902,7 +5234,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5532,6 +5864,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5588,6 +5924,7 @@ This transaction may have been added out-of-band + Probabil că această tranzacție a fost adăugată din extern src/app/components/transaction/transaction.component.html 81 @@ -5596,6 +5933,7 @@ This transaction may have been prioritized out-of-band + Probabil că această tranzacție a fost prioritizată din extern src/app/components/transaction/transaction.component.html 82 @@ -5638,19 +5976,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Tip @@ -5815,6 +6140,7 @@ Accelerated fee rate + Comision accelerat src/app/components/transaction/transaction.component.html 547 @@ -6194,19 +6520,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6214,7 +6532,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6222,7 +6540,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6230,7 +6548,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6238,11 +6556,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6250,11 +6568,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6262,11 +6580,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6275,7 +6593,7 @@ Comision minim src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6285,7 +6603,7 @@ Înlăturare src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6295,7 +6613,7 @@ Indexare în curs src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6307,6 +6625,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8384,6 +8735,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year an diff --git a/frontend/src/locale/messages.ru.xlf b/frontend/src/locale/messages.ru.xlf index ac181960b..4de9556ae 100644 --- a/frontend/src/locale/messages.ru.xlf +++ b/frontend/src/locale/messages.ru.xlf @@ -404,7 +404,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -453,40 +453,119 @@ sat shared.sat + + maximum + максимум + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Следующий блок + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + Ваша транзакция + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Виртуальный размер + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats сат src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -550,20 +629,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -576,6 +671,121 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + Войти + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + Протолкнуть + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees Комиссия за ускорение @@ -731,7 +941,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -746,11 +960,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -824,7 +1038,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -901,14 +1115,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Подробнее » @@ -950,7 +1156,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1190,7 +1396,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1480,6 +1686,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1508,6 +1718,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1694,7 +1908,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1705,10 +1919,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Совпадение + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health Здоровье блока @@ -1917,7 +2176,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1946,7 +2205,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -2005,28 +2264,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Виртуальный размер - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight Вес @@ -2054,15 +2291,6 @@ transaction.audit-status - - Match - Совпадение - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed Удалено @@ -2170,6 +2398,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2267,7 +2499,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2489,23 +2721,6 @@ Block reorg block.reorged - - Next Block - Следующий блок - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Предыдущий блок @@ -2581,6 +2796,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2930,7 +3153,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2959,7 +3182,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3051,11 +3274,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3130,7 +3353,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3148,7 +3371,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3522,7 +3745,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3749,11 +3972,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3830,7 +4053,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3843,7 +4070,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3856,7 +4087,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3869,7 +4100,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3882,7 +4113,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3899,7 +4130,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4254,7 +4485,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4271,7 +4502,7 @@ Lightning-обозреватель src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4335,23 +4566,6 @@ 328 - - Sign In - Войти - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Статистика вознаграждений @@ -4379,7 +4593,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4602,23 +4816,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Другое ( ) src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4809,11 +5026,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4835,18 +5052,18 @@ Недостаточно данных src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4923,7 +5140,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4965,7 +5182,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5600,6 +5817,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5707,20 +5928,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - Протолкнуть - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Тип @@ -6268,20 +6475,12 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements Недавние замены src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6290,7 +6489,7 @@ Предыдущая комиссия src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6299,7 +6498,7 @@ Новая комиссия src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6308,7 +6507,7 @@ Недавние транзакции src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6316,11 +6515,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6328,11 +6527,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6340,11 +6539,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6353,7 +6552,7 @@ Мин. комиссия src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6363,7 +6562,7 @@ Очистка src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6373,7 +6572,7 @@ Выполняется индексирование src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6385,6 +6584,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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 просто предоставляет данные о сети Биткоин. Сервис не может помочь вам с получением средств, проблемами с кошельком и т.д.По любым подобным запросам вам необходимо связаться с сервисом, который помог совершить транзакцию (программное обеспечение кошелька, биржа и т.д.). @@ -8515,6 +8747,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year год diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index d1a0552c6..8ab629ef7 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -396,7 +396,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -444,39 +444,116 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Naslednji blok + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Navidezna velikost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -540,20 +617,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -566,6 +659,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -714,7 +920,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -729,11 +939,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -804,7 +1014,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -880,14 +1090,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Prikaži več » @@ -929,7 +1131,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1166,7 +1368,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1456,6 +1658,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1484,6 +1690,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1667,7 +1877,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1677,10 +1887,54 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1883,7 +2137,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1912,7 +2166,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1970,28 +2224,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Navidezna velikost - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2017,14 +2249,6 @@ transaction.audit-status - - Match - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2127,6 +2351,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2222,7 +2450,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2440,23 +2668,6 @@ Block reorg block.reorged - - Next Block - Naslednji blok - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Prejšnji blok @@ -2530,6 +2741,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2871,7 +3090,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2900,7 +3119,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -2992,11 +3211,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3067,7 +3286,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3085,7 +3304,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3446,7 +3665,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3664,11 +3883,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3744,7 +3963,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3757,7 +3980,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3770,7 +3997,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3783,7 +4010,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3796,7 +4023,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3813,7 +4040,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4167,7 +4394,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4183,7 +4410,7 @@ Lightning Explorer src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4245,22 +4472,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Statistika nagrad @@ -4287,7 +4498,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4502,22 +4713,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4705,11 +4920,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4730,18 +4945,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4814,7 +5029,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4854,7 +5069,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5475,6 +5690,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5581,19 +5800,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Tip @@ -6121,19 +6327,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6141,7 +6339,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6149,7 +6347,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6157,7 +6355,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6165,11 +6363,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6177,11 +6375,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6189,11 +6387,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6202,7 +6400,7 @@ Najnižja omrežnina src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6212,7 +6410,7 @@ Prag src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6221,7 +6419,7 @@ Indexing in progress src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6233,6 +6431,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8196,6 +8427,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year leto diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index 7ec9d1ece..3b7c879d8 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -453,40 +453,121 @@ sat shared.sat + + maximum + maximal + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Nästa block + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + Din transaktion + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + Plus obekräftade förfäder + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Virtuell storlek + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + In-band avgifter + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -550,20 +631,39 @@ shared.sats + + How much more are you willing to pay? + Hur mycket mer är du villig att betala? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + Välj den maximala extra transaktionsavgift du är villig att betala för att komma med i nästa block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + Marknadspriset för nästa block + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -576,6 +676,130 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + Uppskattad extra avgift som krävs + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + Mempool Accelerator™ avgifter + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + Acceleratorserviceavgift + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + Transaktionsstorlekstillägg + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + Beräknad accelerationskostnad + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + Maximal accelerationskostnad + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + Tillgängligt saldo + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + Logga in + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + Accelerera på mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + Accelerera + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + Om din tx accelereras till ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees Accelerationsavgifter @@ -735,7 +959,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -750,11 +978,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -831,7 +1059,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -915,15 +1143,6 @@ mining.3-months - - Mempool Goggles: Accelerations - Mempool Goggles: Accelerationer - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Visa mer » @@ -1213,7 +1432,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1735,7 +1954,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1772,23 +1991,23 @@ mempool-goggles.any - - Gradient - Gradient + + Tint + Färgton src/app/components/block-filters/block-filters.component.html 30 - mempool-goggles.gradient + mempool-goggles.tint - - Default - Standard + + Classic + Klassisk src/app/components/block-filters/block-filters.component.html 33 - mempool-goggles.default + mempool-goggles.classic Age @@ -2008,7 +2227,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -2037,7 +2256,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -2096,28 +2315,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Virtuell storlek - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight Vikt @@ -2357,7 +2554,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2579,23 +2776,6 @@ Block reorg block.reorged - - Next Block - Nästa block - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Föregående block @@ -2671,6 +2851,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -3052,7 +3240,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3144,11 +3332,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3223,7 +3411,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3241,7 +3429,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3621,7 +3809,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -4474,23 +4662,6 @@ 328 - - Sign In - Logga in - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Belöningsstats @@ -4518,7 +4689,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4741,23 +4912,27 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Övriga () + Annat () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4950,11 +5125,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -5065,7 +5240,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -5107,7 +5282,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5872,20 +6047,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - Accelerera - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Typ @@ -5975,7 +6136,7 @@ Inputs & Outputs - In- och utdata + Inputs & Outputs src/app/components/transaction/transaction.component.html 292 @@ -6203,7 +6364,7 @@ other inputs - annan indata + andra inputs src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 12 @@ -6440,21 +6601,12 @@ fees-box.transaction-fees - - Mempool Goggles - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements Senaste ersättningarna src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6463,7 +6615,7 @@ Tidigare avgift src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6472,7 +6624,7 @@ Ny avgift src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6481,7 +6633,7 @@ Senaste transaktionerna src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6490,11 +6642,11 @@ Liquidfederationsinnehav src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6503,11 +6655,11 @@ Federationens timelock-utgågna UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6516,11 +6668,11 @@ L-BTC-tillgångar mot BTC-tillgångar src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6529,7 +6681,7 @@ Minimumavgift src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6539,7 +6691,7 @@ Förkastar src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6549,7 +6701,7 @@ Indexering pågår src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html diff --git a/frontend/src/locale/messages.th.xlf b/frontend/src/locale/messages.th.xlf index 5da87ac82..e73d2deab 100644 --- a/frontend/src/locale/messages.th.xlf +++ b/frontend/src/locale/messages.th.xlf @@ -397,7 +397,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -445,40 +445,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + บล็อกถัดไป + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + ขนาดเสมือน + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -542,20 +619,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -568,6 +661,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -716,7 +922,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -731,11 +941,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -807,7 +1017,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -883,14 +1093,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » เรียกดูเพิ่มเติม » @@ -932,7 +1134,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1170,7 +1372,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1460,6 +1662,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1488,6 +1694,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1671,7 +1881,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,10 +1892,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + ตรงกัน + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1891,7 +2146,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2175,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1978,28 +2233,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - ขนาดเสมือน - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2026,15 +2259,6 @@ transaction.audit-status - - Match - ตรงกัน - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2139,6 +2363,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2234,7 +2462,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2453,23 +2681,6 @@ Block reorg block.reorged - - Next Block - บล็อกถัดไป - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block บล็อกก่อนหน้า @@ -2544,6 +2755,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2893,7 +3112,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3141,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,11 +3233,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3089,7 +3308,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3326,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3479,7 +3698,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3705,11 +3924,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3785,7 +4004,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3798,7 +4021,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3811,7 +4038,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3824,7 +4051,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3837,7 +4064,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3854,7 +4081,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4209,7 +4436,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4226,7 +4453,7 @@ ตัวสำรวจ lightning src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4288,22 +4515,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats สถานะค่าตอบแทน @@ -4330,7 +4541,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4548,23 +4759,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - อื่นๆ () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4753,11 +4967,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4778,18 +4992,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4862,7 +5076,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4902,7 +5116,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5532,6 +5746,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5638,19 +5856,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type ชนิด @@ -6194,19 +6399,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6214,7 +6411,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6222,7 +6419,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6230,7 +6427,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6238,11 +6435,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6250,11 +6447,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6262,11 +6459,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6275,7 +6472,7 @@ ค่าธรรมเนียมขั้นต่ำ src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6285,7 +6482,7 @@ กำลังล้าง src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6295,7 +6492,7 @@ กำลังทำการจัดเรียงข้อมูล src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6307,6 +6504,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8384,6 +8614,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year ปี diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index 2a94e9955..2db9b5436 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -397,7 +397,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -445,40 +445,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Sonraki Blok + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Sanal Boyut + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -542,20 +619,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -568,6 +661,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -716,7 +922,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -731,11 +941,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -807,7 +1017,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -883,14 +1093,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Daha fazlasını gör » @@ -932,7 +1134,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1170,7 +1372,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1460,6 +1662,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1488,6 +1694,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1671,7 +1881,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,10 +1892,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Eşleşti + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1891,7 +2146,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2175,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1978,28 +2233,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Sanal Boyut - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2026,15 +2259,6 @@ transaction.audit-status - - Match - Eşleşti - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2139,6 +2363,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2234,7 +2462,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2453,23 +2681,6 @@ Block reorg block.reorged - - Next Block - Sonraki Blok - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Önceki Blok @@ -2544,6 +2755,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2893,7 +3112,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3141,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,11 +3233,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3089,7 +3308,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3326,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3479,7 +3698,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3705,11 +3924,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3785,7 +4004,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3798,7 +4021,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3811,7 +4038,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3824,7 +4051,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3837,7 +4064,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3854,7 +4081,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4209,7 +4436,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4226,7 +4453,7 @@ Lightning tarayıcı src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4288,22 +4515,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Ödül İstatistikleri @@ -4330,7 +4541,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4548,23 +4759,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Diğer () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4753,11 +4967,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4778,18 +4992,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4862,7 +5076,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4902,7 +5116,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5532,6 +5746,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5638,19 +5856,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Tip @@ -6194,19 +6399,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6214,7 +6411,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6222,7 +6419,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6230,7 +6427,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6238,11 +6435,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6250,11 +6447,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6262,11 +6459,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6275,7 +6472,7 @@ Minimum ücret src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6285,7 +6482,7 @@ Temizleme src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6295,7 +6492,7 @@ İndeksleniyor src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6307,6 +6504,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8384,6 +8614,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year yıl diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index ece8c310d..150a8b8ba 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -59,6 +59,7 @@ + node_modules/src/ngb-config.ts 13 @@ -66,6 +67,7 @@ Slide of + Слайд з node_modules/src/ngb-config.ts 13 @@ -266,6 +268,7 @@ Become a Community Sponsor + Стати спонсором від спільноти src/app/components/about/about-sponsors.component.html 4 @@ -274,6 +277,7 @@ Become an Enterprise Sponsor + Стати спонсором від бізнесу src/app/components/about/about-sponsors.component.html 11 @@ -308,6 +312,7 @@ Whale Sponsors + Спонсори-кити src/app/components/about/about.component.html 187 @@ -316,6 +321,7 @@ Chad Sponsors + Спонсори-гігачади src/app/components/about/about.component.html 200 @@ -324,6 +330,7 @@ OG Sponsors ❤️ + Перші спонсори ❤️ src/app/components/about/about.component.html 213 @@ -397,11 +404,12 @@ src/app/components/master-page/master-page.component.html - 77 + 96 Learn more about The Mempool Open Source Project®: enterprise sponsors, individual sponsors, integrations, who contributes, FOSS licensing, and more. + Дізнайтесь більше про проєкт з відкритим кодом Mempool : корпоративні спонсори, індивідуальні спонсори, інтеграції, хто робить внесок, ліцензування FOSS та багато іншого. src/app/components/about/about.component.ts 50 @@ -445,40 +453,121 @@ sat shared.sat + + maximum + максимум + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Наступний блок + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + Ваша транзакція + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + Та непідтверджений предок(-ки) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Віртуальний розмір + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + Мережеві комісії + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -542,20 +631,39 @@ shared.sats + + How much more are you willing to pay? + Наскільки більше ви готові заплатити? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + Виберіть максимальну додаткову комісію за транзакцію, яку ви готові заплатити, аби потрапити до наступного блоку. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + Ринковий курс комісії наступного блоку + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -568,8 +676,133 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + Орієнтовна необхідна додаткова комісія + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + Комісії Mempool Accelerator™ + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + Комісія сервісу пришвидшення + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + Комісія за розмір транзакції + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + Орієнтовна вартість пришвидшення + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + Максимальна вартість пришвидшення + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + Доступний баланс + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + Увійти + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + Пришвидшити на mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + Пришвидшити + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + Якщо ваша транзакція пришвидшена до ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees + Комісії за пришвидшення src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.html 6 @@ -582,6 +815,7 @@ No accelerated transaction for this timeframe + Немає пришвидшених транзакцій у цьому часовому діапазоні src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 121 @@ -589,6 +823,7 @@ At block: + У блоці: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 165 @@ -608,6 +843,7 @@ Around block: + Біля блоку: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 167 @@ -627,6 +863,7 @@ Requests + Запити src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 4 @@ -647,6 +884,7 @@ accelerated + пришвидшено src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 7 @@ -655,6 +893,7 @@ Total Bid Boost + Загальне підвищення ставки src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 11 @@ -671,6 +910,7 @@ BTC + BTC src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 13 @@ -692,6 +932,7 @@ Success Rate + Рівень успіху src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 20 @@ -704,6 +945,7 @@ mined + створено src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 23 @@ -712,11 +954,16 @@ Accelerations + Пришвидшення src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -731,16 +978,17 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid Fee Rate + Ставка комісії src/app/components/acceleration/accelerations-list/accelerations-list.component.html 12 @@ -750,6 +998,7 @@ Acceleration Bid + Заявка на пришвидшення src/app/components/acceleration/accelerations-list/accelerations-list.component.html 13 @@ -759,6 +1008,7 @@ Requested + Запит відправлено src/app/components/acceleration/accelerations-list/accelerations-list.component.html 14 @@ -771,6 +1021,7 @@ Bid Boost + Підвищити ставку src/app/components/acceleration/accelerations-list/accelerations-list.component.html 17 @@ -797,6 +1048,7 @@ Status + Статус src/app/components/acceleration/accelerations-list/accelerations-list.component.html 19 @@ -807,7 +1059,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -818,6 +1070,7 @@ Pending + Очікується src/app/components/acceleration/accelerations-list/accelerations-list.component.html 53 @@ -826,6 +1079,7 @@ Completed 🔄 + Завершено 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 54,55 @@ -833,6 +1087,7 @@ Failed 🔄 + Провалено 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 55,56 @@ -841,6 +1096,7 @@ There are no active accelerations + На даний момент немає активних пришвидшень src/app/components/acceleration/accelerations-list/accelerations-list.component.html 96 @@ -849,6 +1105,7 @@ There are no recent accelerations + Останнім часом пришвидшень не було src/app/components/acceleration/accelerations-list/accelerations-list.component.html 97 @@ -857,6 +1114,7 @@ Active Accelerations + Активні пришвидшення src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 10 @@ -869,6 +1127,7 @@ Acceleration stats + Статистика пришвидшень src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 24 @@ -877,20 +1136,13 @@ (3 months) + (3 місяці) src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 25 mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Дивитись більше » @@ -918,6 +1170,7 @@ Recent Accelerations + Останні пришвидшення src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 86 @@ -926,17 +1179,19 @@ Accelerator Dashboard + Панель пришвидшення src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts 47 src/app/components/master-page/master-page.component.html - 56 + 75 pending + очікується src/app/components/acceleration/pending-stats/pending-stats.component.html 7 @@ -945,6 +1200,7 @@ Avg Max Bid + Сер макс ставка src/app/components/acceleration/pending-stats/pending-stats.component.html 11 @@ -957,6 +1213,7 @@ Total Vsize + Загальний Vsize src/app/components/acceleration/pending-stats/pending-stats.component.html 20 @@ -969,6 +1226,7 @@ of next block + з наступного блоку src/app/components/acceleration/pending-stats/pending-stats.component.html 23 @@ -977,6 +1235,7 @@ Balance History + Історія балансу src/app/components/address-graph/address-graph.component.html 6 @@ -985,6 +1244,7 @@ Balance:Balance + Баланс:Баланс src/app/components/address-graph/address-graph.component.ts 162 @@ -992,6 +1252,7 @@ Balances + Баланси src/app/components/address-group/address-group.component.html 4 @@ -1000,6 +1261,7 @@ Total + Всього src/app/components/address-group/address-group.component.html 9 @@ -1170,7 +1432,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1188,6 +1450,7 @@ See mempool transactions, confirmed transactions, balance, and more for address . + Переглянути не підтверджені та підтверджені транзакції, баланс та більше для адреси . src/app/components/address/address-preview.component.ts 72 @@ -1199,6 +1462,7 @@ of transaction + з транзакції src/app/components/address/address.component.html 69 @@ -1207,6 +1471,7 @@ of transactions + з транзакцій src/app/components/address/address.component.html 70 @@ -1228,6 +1493,7 @@ There 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 143,146 @@ -1399,6 +1665,7 @@ Browse an overview of the Liquid asset (): see issued amount, burned amount, circulating amount, related transactions, and more. + Ознайомитись з активами Liquid (): переглянути випущені та спалені суми, обіг, пов'язані транзакції та більше. src/app/components/asset/asset.component.ts 108 @@ -1418,6 +1685,7 @@ No featured assets + Немає вибраних активів src/app/components/assets/assets-featured/assets-featured.component.html 3 @@ -1460,6 +1728,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1488,6 +1760,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1509,6 +1785,7 @@ Explore all the assets issued on the Liquid network like L-BTC, L-CAD, USDT, and more. + Перегляньте всі активи випущені у мережі Liquid, такі як L-BTC, L-CAD, USDT, та інші. src/app/components/assets/assets-nav/assets-nav.component.ts 43 @@ -1581,6 +1858,7 @@ Avg Block Fee (24h) + Сер комісія блоку (24г) src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 51 @@ -1593,6 +1871,7 @@ Avg Block Fee (1m) + Сер комісія блоку (1хв) src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 57 @@ -1605,6 +1884,7 @@ See Bitcoin feerates visualized over time, including minimum and maximum feerates per block along with feerates at various percentiles. + Перегляньте візуалізацію ставок комісії біткоїна з плином часу, включаючи мінімальну і максимальну ставку комісі за блок, а також ставки в різних процентилях. src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts 73 @@ -1612,6 +1892,7 @@ Block Fees + Комісії блоку src/app/components/block-fees-graph/block-fees-graph.component.html 6 @@ -1628,6 +1909,7 @@ See the average mining fees earned per Bitcoin block visualized in BTC and USD over time. + Перегляньте середні комісії зароблені за майнінг блоку біткоїна візуалізовані у BTC та USD протягом часу. src/app/components/block-fees-graph/block-fees-graph.component.ts 70 @@ -1667,11 +1949,12 @@ select filter categories to highlight matching transactions + виберіть категорії фільтрів, щоб виділити відповідні транзакції src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,12 +1965,60 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Обмін + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + Будь-які + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + Вік + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health + Здоров'я блоку src/app/components/block-health-graph/block-health-graph.component.html 6 @@ -1700,6 +2031,7 @@ Block Health + Здоров'я блоку src/app/components/block-health-graph/block-health-graph.component.ts 63 @@ -1707,6 +2039,7 @@ See Bitcoin block health visualized over time. Block health is a measure of how many expected transactions were included in an actual mined block. Expected transactions are determined using Mempool's re-implementation of Bitcoin Core's transaction selection algorithm. + Перегляньте здоров'я блоку біткоїна візуалізоване протягом часу. Здоров'я блоку - це показник того, скільки очікуваних транзакцій було включено до видобутого блоку. Очікувані транзакції визначаються за допомогою повторної реалізації Mempool алгоритму відбору транзакцій з Bitcoin Core. src/app/components/block-health-graph/block-health-graph.component.ts 64 @@ -1771,6 +2104,7 @@ Your browser does not support this feature. + Ваш браузер не підтримує цю функцію. src/app/components/block-overview-graph/block-overview-graph.component.html 21 @@ -1891,7 +2225,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2254,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1971,6 +2305,7 @@ Accelerated fee rate + Ставка комісії пришвидшення src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 53 @@ -1978,30 +2313,9 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Віртуальний розмір - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight + Вага src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 63 @@ -2026,17 +2340,9 @@ transaction.audit-status - - Match - Обмін - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed + Вилучено src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 71 @@ -2063,6 +2369,7 @@ High sigop count + Висока кількість sigop src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 73 @@ -2080,6 +2387,7 @@ Recently CPFP'd + Нещодавні CPFP src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 75 @@ -2088,6 +2396,7 @@ Added + Додано src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -2101,6 +2410,7 @@ Prioritized + Приорітетно src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 77 @@ -2114,6 +2424,7 @@ Conflict + Конфлікт src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -2127,6 +2438,7 @@ Accelerated + Пришвидшено src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 80 @@ -2139,6 +2451,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2160,6 +2476,7 @@ See Bitcoin block rewards in BTC and USD visualized over time. Block rewards are the total funds miners earn from the block subsidy and fees. + Перегляньте нагороди за блок біткоїну у BTC та USD візуалізовані протягом часу. Нагороди за блок це загальна сума, яку майнери отримують з субсидії блоку та комісій. src/app/components/block-rewards-graph/block-rewards-graph.component.ts 68 @@ -2184,6 +2501,7 @@ See Bitcoin block sizes (MB) and block weights (weight units) visualized over time. + Перегляньте розміри (MB) блоку біткоїна та їх вагу (юніти ваги) візуалізовану протягом часу. src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 65 @@ -2234,7 +2552,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2303,6 +2621,7 @@ See size, weight, fee range, included transactions, and more for Liquid block (). + Перегляньте розмір, вагу, діапазон комісій, включені транзакції та більше для блоку () Liquid. src/app/components/block-view/block-view.component.ts 112 @@ -2318,6 +2637,7 @@ See size, weight, fee range, included transactions, audit (expected v actual), and more for Bitcoin block (). + Перегляньте розмір, вагу, діапазон комісій, включені транзакції, аудит (очікувано/насправді) та більше для блоку () біткоїна. src/app/components/block-view/block-view.component.ts 114 @@ -2446,6 +2766,7 @@ This block does not belong to the main chain, it has been replaced by: + Цей блок не належить до основного ланцюжка, та був замінений блоком: src/app/components/block/block.component.html 5 @@ -2453,23 +2774,6 @@ Block reorg block.reorged - - Next Block - Наступний блок - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Попередній блок @@ -2481,6 +2785,7 @@ Stale + Застій src/app/components/block/block.component.html 30 @@ -2544,6 +2849,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2804,6 +3117,7 @@ transaction + тразакція src/app/components/block/block.component.html 331 @@ -2820,6 +3134,7 @@ transactions + тразакції src/app/components/block/block.component.html 332 @@ -2870,6 +3185,7 @@ Acceleration fees paid out-of-band + Комісії за пришвидшення сплачуються поза мережею src/app/components/block/block.component.html 433 @@ -2893,7 +3209,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3238,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,16 +3330,17 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs See the most recent Liquid blocks along with basic stats such as block height, block size, and more. + Перегляньте останні блоки Liquid з їх базовими характеристиками, такими як висота, розмір та іншими. src/app/components/blocks-list/blocks-list.component.ts 71 @@ -3031,6 +3348,7 @@ See the most recent Bitcoin blocks along with basic stats such as block height, block reward, block size, and more. + Перегляньте останні блоки Біткоїна з їх базовими характеристиками, такими як висота, нагорода, розмір та іншими. src/app/components/blocks-list/blocks-list.component.ts 73 @@ -3038,6 +3356,7 @@ Calculator + Калькулятор src/app/components/calculator/calculator.component.html 3 @@ -3083,13 +3402,14 @@ Memory Usage + Використання пам'яті src/app/components/clock/clock.component.html 65 src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3427,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3162,6 +3482,7 @@ blocks + блоки src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 @@ -3341,6 +3662,7 @@ Halving Countdown + Відлік до халвінгу src/app/components/difficulty/difficulty.component.html 2 @@ -3349,6 +3671,7 @@ difficulty + складність src/app/components/difficulty/difficulty.component.html 7 @@ -3357,6 +3680,7 @@ halving + халвінг src/app/components/difficulty/difficulty.component.html 10 @@ -3374,6 +3698,7 @@ New subsidy + Нова субсидія src/app/components/difficulty/difficulty.component.html 103 @@ -3382,6 +3707,7 @@ Blocks remaining + Блоків лишається src/app/components/difficulty/difficulty.component.html 111 @@ -3390,6 +3716,7 @@ Block remaining + Блок лишається src/app/components/difficulty/difficulty.component.html 112 @@ -3473,13 +3800,14 @@ Incoming Transactions + Вхідні транзакції src/app/components/footer/footer.component.html 5 src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3504,6 +3832,7 @@ WU/s + WU/s src/app/components/footer/footer.component.html 14 @@ -3576,7 +3905,7 @@ Lightning Nodes Per Network - Lightning нод на мережу + Lightning вузлів на мережу src/app/components/graphs/graphs.component.html 33 @@ -3618,7 +3947,7 @@ Lightning Nodes Per ISP - Lightning нод на ISP + Lightning вузлів на ISP src/app/components/graphs/graphs.component.html 37 @@ -3631,7 +3960,7 @@ Lightning Nodes Per Country - Lightning нод на країну + Lightning вузлів на країну src/app/components/graphs/graphs.component.html 39 @@ -3648,7 +3977,7 @@ Lightning Nodes World Map - Мапа Lightning нод + Мапа Lightning вузлів src/app/components/graphs/graphs.component.html 41 @@ -3705,11 +4034,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3728,6 +4057,7 @@ See hashrate and difficulty for the Bitcoin network visualized over time. + Перегляньте гешрейт та складність для мережі Біткоїн візуалізованої протягом часу. src/app/components/hashrate-chart/hashrate-chart.component.ts 76 @@ -3755,6 +4085,7 @@ See Bitcoin mining pool dominance visualized over time: see how top mining pools' share of total hashrate has fluctuated over time. + Перегляньте домінування майнінг пулу біткоїна візуалізовану протягом часу: як змінювалась доля гешрейту найбільших пулів протягом часу. src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts 75 @@ -3785,7 +4116,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3798,7 +4133,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3811,7 +4150,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3824,7 +4163,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3837,7 +4176,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3854,7 +4193,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -3864,6 +4203,7 @@ Non-Dust Expired + Прострочений не пил src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 3 @@ -3872,6 +4212,7 @@ Total amount of BTC held in non-dust Federation UTXOs that have expired timelocks + Загальна сума BTC, яку тримають федерації у не пильових UTXO, у яких сплили таймлоки src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 5 @@ -3880,6 +4221,7 @@ UTXOs + UTXO src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 6 @@ -3896,6 +4238,7 @@ Total Expired + Всього прострочено src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 12 @@ -3904,6 +4247,7 @@ Total amount of BTC held in Federation UTXOs that have expired timelocks + Загальна сума BTC, яку тримають федерації у UTXO, у яких сплили таймлоки src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 15 @@ -3912,6 +4256,7 @@ Liquid Federation Wallet + Гаманець федерації Liquid src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 5 @@ -3932,6 +4277,7 @@ addresses + адреси src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 8 @@ -3957,6 +4303,7 @@ Related Peg-In + Пов'язані прив'язки src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 11 @@ -3982,6 +4329,7 @@ Expires in + Термін дії закінчується через src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 13 @@ -3990,6 +4338,7 @@ Expired since + Термін дії сплив з src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 14 @@ -3998,6 +4347,7 @@ Dust + Пил src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 15 @@ -4006,6 +4356,7 @@ Change output + Змінити вихід src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 55 @@ -4014,6 +4365,7 @@ blocks + блоки src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 63 @@ -4022,6 +4374,7 @@ Timelock-Expired UTXOs + UTXO з простроченим таймлоком src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.html 12 @@ -4055,6 +4408,7 @@ Recent Peg-In / Out's + Нещодавні прив'язки/відв'язки src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 4 @@ -4075,6 +4429,7 @@ Fund / Redemption Tx + Транзакція фінансування/погашення src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 15 @@ -4083,6 +4438,7 @@ BTC Address + Адреса BTC src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -4091,6 +4447,7 @@ Peg out in progress... + Відв'язка триває... src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 70 @@ -4099,6 +4456,7 @@ 24h Peg-In Volume + Об'єм прив'язок за 24г src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 12 @@ -4107,6 +4465,7 @@ Peg-Ins + Прив'язки src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 13 @@ -4115,6 +4474,7 @@ 24h Peg-Out Volume + Об'єм відв'язок за 24г src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 18 @@ -4123,6 +4483,7 @@ Peg-Outs + Відв'язки src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 19 @@ -4131,6 +4492,7 @@ Unpeg + Відв'язати src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 3 @@ -4139,6 +4501,7 @@ Unpeg Event + Подія відв'язки src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 7 @@ -4147,6 +4510,7 @@ Avg Peg Ratio + Сер коеф прив'язок src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 14 @@ -4155,6 +4519,7 @@ Emergency Keys + Аварійні ключі src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 28 @@ -4163,6 +4528,7 @@ usage + використання src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 31 @@ -4171,6 +4537,7 @@ Assets vs Liabilities + Активи / Забов'язання src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts 162 @@ -4187,6 +4554,7 @@ As of block + Станом на блок src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 7 @@ -4199,6 +4567,7 @@ BTC Holdings + BTC на утриманні src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 12 @@ -4207,9 +4576,10 @@ Mining Dashboard + Панель майнінгу src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4226,7 +4596,7 @@ Lightning експлорер src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4240,6 +4610,7 @@ See stats for transactions in the mempool: fee range, aggregate size, and more. Mempool blocks are updated in real-time as the network receives new transactions. + Перегляньте статистику для транзакцій у мемпулі: діапазон комісій, агрегований розмір та більше. Мемпул блоки оновлюються у реальному часі із врахуванням нових транзакцій в мережі. src/app/components/mempool-block/mempool-block.component.ts 62 @@ -4263,6 +4634,7 @@ Count + Кількість src/app/components/mempool-graph/mempool-graph.component.ts 325 @@ -4288,22 +4660,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Статистика нагороди @@ -4324,13 +4680,14 @@ Recent Blocks + Останні блоки src/app/components/mining-dashboard/mining-dashboard.component.html 56 src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4349,6 +4706,7 @@ Get real-time Bitcoin mining stats like hashrate, difficulty adjustment, block rewards, pool dominance, and more. + Отримуйте статистику в реальному часі про майнінг біткоїна, таку як гешрейт, коригування складності, нагороди за блок, домінування пулу та інші. src/app/components/mining-dashboard/mining-dashboard.component.ts 29 @@ -4365,6 +4723,7 @@ Pools Luck + Удача пулу src/app/components/pool-ranking/pool-ranking.component.html 9 @@ -4395,6 +4754,7 @@ Pools Count + Кількість пулів src/app/components/pool-ranking/pool-ranking.component.html 17 @@ -4505,6 +4865,7 @@ Empty Blocks + Пусті блоки src/app/components/pool-ranking/pool-ranking.component.html 98 @@ -4530,6 +4891,7 @@ See the top Bitcoin mining pools ranked by number of blocks mined, over your desired timeframe. + Перегляньте топ майнінг пулів біткоїна відсортованих по кількості добутих блоків за вказаний проміжок часу. src/app/components/pool-ranking/pool-ranking.component.ts 60 @@ -4548,23 +4910,27 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Інші () + Інше () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4619,6 +4985,7 @@ See mining pool stats for : most recent mined blocks, hashrate over time, total block reward to date, known coinbase addresses, and more. + Перегляньте статистику майнінг пулу для : останні добуті блоки, гешрейт протягом часу, загальна кількість нагород за блок до сьогодні, відомі коїнбейс адреси та інше. src/app/components/pool/pool-preview.component.ts 86 @@ -4685,6 +5052,7 @@ Blocks (24h) + Блоки (24г) src/app/components/pool/pool.component.html 120 @@ -4718,6 +5086,7 @@ Out-of-band Fees (1w) + Позамережеві комісії (1тиж) src/app/components/pool/pool.component.html 143 @@ -4726,6 +5095,7 @@ 1m + 1хв src/app/components/pool/pool.component.html 144 @@ -4753,11 +5123,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4776,20 +5146,22 @@ Not enough data yet + Поки що не достатньо даних src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance + Домінування пулу src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4826,6 +5198,7 @@ Broadcast Transaction + Надіслати транзакцію src/app/components/push-transaction/push-transaction.component.ts 33 @@ -4833,6 +5206,7 @@ Broadcast a transaction to the network using the transaction's hash. + Надіслати транзакцію до мережі використовуючи її геш. src/app/components/push-transaction/push-transaction.component.ts 34 @@ -4840,6 +5214,7 @@ RBF Replacements + Заміна RBF src/app/components/rbf-list/rbf-list.component.html 2 @@ -4852,6 +5227,7 @@ Full RBF + Повний RBF src/app/components/rbf-list/rbf-list.component.html 24 @@ -4862,12 +5238,13 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf There are no replacements in the mempool yet! + У мемпулі, поки що, немає заміни! src/app/components/rbf-list/rbf-list.component.html 34 @@ -4876,6 +5253,7 @@ See the most recent RBF replacements on the Bitcoin network, updated in real-time. + Перегляньте останні RBF заміни в мережі Біткоїн , у реальному часі. src/app/components/rbf-list/rbf-list.component.ts 61 @@ -4902,7 +5280,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -4926,6 +5304,7 @@ remaining + лишається src/app/components/rbf-timeline/rbf-timeline.component.html 86 @@ -5045,6 +5424,7 @@ Block Height + висота блоку src/app/components/search-form/search-results/search-results.component.html 3 @@ -5053,6 +5433,7 @@ Transaction + транзакція src/app/components/search-form/search-results/search-results.component.html 21 @@ -5061,6 +5442,7 @@ Address + адреса src/app/components/search-form/search-results/search-results.component.html 27 @@ -5069,6 +5451,7 @@ Block + блок src/app/components/search-form/search-results/search-results.component.html 33 @@ -5077,6 +5460,7 @@ Other Network Address + Адреса з іншої мережі src/app/components/search-form/search-results/search-results.component.html 39 @@ -5085,6 +5469,7 @@ Addresses + адреси src/app/components/search-form/search-results/search-results.component.html 47 @@ -5093,7 +5478,7 @@ Lightning Nodes - Lightning ноди + Lightning вузли src/app/components/search-form/search-results/search-results.component.html 55 @@ -5111,6 +5496,7 @@ Liquid Asset + Актив Liquid src/app/components/search-form/search-results/search-results.component.html 71 @@ -5137,6 +5523,7 @@ Clock (Mempool) + Годинник (Mempool) src/app/components/statistics/statistics.component.html 17 @@ -5189,6 +5576,7 @@ Cap outliers + Перевищення лімітів src/app/components/statistics/statistics.component.html 122 @@ -5197,6 +5585,7 @@ See mempool size (in MvB) and transactions per second (in vB/s) visualized over time. + Перегляньте розмір мемпулу (в MvB) та транзакції за секунду (в vB/s) візуалізовані протягом часу. src/app/components/statistics/statistics.component.ts 67 @@ -5204,6 +5593,7 @@ See Bitcoin blocks and mempool congestion in real-time in a simplified format perfect for a TV. + Перегляньте блоки біткоїну та заповнення мемпулу у реальному часі у форматі ідеальному для телевізора. src/app/components/television/television.component.ts 40 @@ -5211,6 +5601,7 @@ Immediately + Негайно src/app/components/time/time.component.ts 90 @@ -5406,6 +5797,7 @@ before + до src/app/components/time/time.component.ts 214 @@ -5498,6 +5890,7 @@ Get real-time status, addresses, fees, script info, and more for transaction with txid . + Отримайти інформацію у реальному часу про статус, адреси, комісії, інформацію про скрипти, та більше для транзакції з txid . src/app/components/transaction/transaction-preview.component.ts 93 @@ -5532,11 +5925,16 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features This transaction was projected to be included in the block + Ця транзакція мала бути підтверджена у блоці src/app/components/transaction/transaction.component.html 78 @@ -5545,6 +5943,7 @@ Expected in Block + Очікується у блоці src/app/components/transaction/transaction.component.html 78 @@ -5554,6 +5953,7 @@ This transaction was seen in the mempool prior to mining + Ця транзакція була помічена в мемпулі пере майнінгом src/app/components/transaction/transaction.component.html 79 @@ -5562,6 +5962,7 @@ Seen in Mempool + Помічена в Mempool src/app/components/transaction/transaction.component.html 79 @@ -5571,6 +5972,7 @@ This transaction was missing from our mempool prior to mining + Цієї транзакції не було в нашому мемпулі перед майнінгом src/app/components/transaction/transaction.component.html 80 @@ -5579,6 +5981,7 @@ Not seen in Mempool + Не помічена в Mempool src/app/components/transaction/transaction.component.html 80 @@ -5588,6 +5991,7 @@ This transaction may have been added out-of-band + Ця транзакція могла бути додана поза чергою src/app/components/transaction/transaction.component.html 81 @@ -5596,6 +6000,7 @@ This transaction may have been prioritized out-of-band + Ця транзакція могла бути пріоритетною поза чергою src/app/components/transaction/transaction.component.html 82 @@ -5604,6 +6009,7 @@ This transaction conflicted with another version in our mempool + Ця транзакція конфліктує з іншою версією у нашому мемпулі src/app/components/transaction/transaction.component.html 83 @@ -5612,6 +6018,7 @@ Hide accelerator + Сховати пришвидшувач src/app/components/transaction/transaction.component.html 108 @@ -5638,19 +6045,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Тип @@ -5690,6 +6084,7 @@ RBF History + Історія RBF src/app/components/transaction/transaction.component.html 241 @@ -5762,6 +6157,7 @@ Adjusted vsize + Корегований vsize src/app/components/transaction/transaction.component.html 321 @@ -5780,6 +6176,7 @@ Sigops + Sigop src/app/components/transaction/transaction.component.html 347 @@ -5807,6 +6204,7 @@ Error loading transaction data. + Сталася помилка при завантаженні даних транзакції. src/app/components/transaction/transaction.component.html 521 @@ -5815,6 +6213,7 @@ Accelerated fee rate + Ставка комісії пришвидшення src/app/components/transaction/transaction.component.html 547 @@ -5994,6 +6393,7 @@ 1 block earlier + На 1 блок раніше src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 123 @@ -6002,6 +6402,7 @@ 1 block later + На 1 блок пізніше src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 127 @@ -6010,6 +6411,7 @@ in the same block + У тому ж блоці src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 131 @@ -6018,6 +6420,7 @@ blocks earlier + блоків раніше src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 137 @@ -6026,6 +6429,7 @@ spent + витрачено src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 148 @@ -6034,6 +6438,7 @@ blocks later + блоків пізніше src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 150 @@ -6194,79 +6599,78 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements + Останні заміни src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements Previous fee + Попередня комісія src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee New fee + Нова комісія src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee Recent Transactions + Останні транзакції src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions Liquid Federation Holdings + На утриманні у федерації Liquid src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings Federation Timelock-Expired UTXOs + Прострочені таймлок UTXO федерації src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos L-BTC Supply Against BTC Holdings + Кількість L-BTC відносно BTC на утриманні src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6275,7 +6679,7 @@ Мінімальна комісія src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6285,7 +6689,7 @@ Очищення src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6295,7 +6699,7 @@ Йде індексування src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6307,8 +6711,45 @@ lightning.indexing-in-progress + + Consolidation + Консолідація + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + Коджоїн + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + Дані + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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 лише надає дані про мережу Біткоїн. він не допоможе вам з поверненням коштів, проблемами з гаманцем та іншим.З подібними запитами, ви повинні звернутись до особи/організації яка допомогла вам зробити транзакцію (гаманець, обмінник і т п). src/app/docs/api-docs/api-docs.component.html 15,16 @@ -6403,6 +6844,7 @@ FAQ + ЧаПи src/app/docs/docs/docs.component.ts 46 @@ -6410,6 +6852,7 @@ Get answers to common questions like: What is a mempool? Why isn't my transaction confirming? How can I run my own instance of The Mempool Open Source Project? And more. + Отримайте відповіді на часті запитання на кшталт: Що таке мемпул? Чому моя транзакція не підтверджується? Як я можу запустити власну копію проєкту з відкритим кодом Mempol? Та інше. src/app/docs/docs/docs.component.ts 47 @@ -6417,6 +6860,7 @@ REST API + REST API src/app/docs/docs/docs.component.ts 51 @@ -6424,6 +6868,7 @@ Documentation for the liquid.network REST API service: get info on addresses, transactions, assets, blocks, and more. + Документація для REST API сервісу liquid.network: отримайте інформацію про адреси, транзакції, активи, блоки та інше. src/app/docs/docs/docs.component.ts 53 @@ -6431,6 +6876,7 @@ Documentation for the mempool.space REST API service: get info on addresses, transactions, blocks, fees, mining, the Lightning network, and more. + Документація для REST API сервісу mempool.space: отримайте інформацію про адреси, транзакції, блоки, комісії, майнінг, мережу Lightning та інше. src/app/docs/docs/docs.component.ts 55 @@ -6438,6 +6884,7 @@ WebSocket API + WebSocket API src/app/docs/docs/docs.component.ts 59 @@ -6445,6 +6892,7 @@ Documentation for the liquid.network WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more. + Документація WebSocket API для сервісу liquid.network: отримуйте інформацію про блоки, мемпул, транзакції, адреси та інше в реальному часі. src/app/docs/docs/docs.component.ts 61 @@ -6452,6 +6900,7 @@ Documentation for the mempool.space WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more. + Документація WebSocket API для сервісу mempool.space: отримуйте інформацію про блоки, мемпул, транзакції, адреси та інше в реальному часі. src/app/docs/docs/docs.component.ts 63 @@ -6459,6 +6908,7 @@ Electrum RPC + Electrum RPC src/app/docs/docs/docs.component.ts 67 @@ -6466,6 +6916,7 @@ Documentation for our Electrum RPC interface: get instant, convenient, and reliable access to an Esplora instance. + Документація для нашого Electrum RPC інтерфейсу: отримуйте миттєвий, зручний та надійний доступ до сервісу Esplora. src/app/docs/docs/docs.component.ts 68 @@ -6782,6 +7233,7 @@ Overview for Lightning channel . See channel capacity, the Lightning nodes involved, related on-chain transactions, and more. + Огляд Lightning каналу . Перегляньте ємність каналу, причетні Lightning вузли, пов'язані транзакції та інше. src/app/lightning/channel/channel-preview.component.ts 37 @@ -7031,7 +7483,7 @@ The average fee rate charged by routing nodes, ignoring fee rates > 0.5% or 5000ppm - Середній тариф, що стягується нодами маршрутизації, без урахування ставок комісії > 0.5% або 5000ppm + Середній тариф, що стягується вузлами маршрутизації, без урахування ставок комісії > 0.5% або 5000ppm src/app/lightning/channels-statistics/channels-statistics.component.html 28 @@ -7053,7 +7505,7 @@ The average base fee charged by routing nodes, ignoring base fees > 5000ppm - Середня комісія, що стягується нодами маршрутизації, без урахування комісії > 5000ppm + Середня комісія, що стягується вузлами маршрутизації, без урахування комісії > 5000ppm src/app/lightning/channels-statistics/channels-statistics.component.html 43 @@ -7080,7 +7532,7 @@ The median fee rate charged by routing nodes, ignoring fee rates > 0.5% or 5000ppm - Медіана ставки комісії яка стягується нодами маршрутизації, без урахування ставки комісії > 0.5% чи 5000ppm + Медіана ставки комісії яка стягується вузлами маршрутизації, без урахування ставки комісії > 0.5% чи 5000ppm src/app/lightning/channels-statistics/channels-statistics.component.html 74 @@ -7098,7 +7550,7 @@ The median base fee charged by routing nodes, ignoring base fees > 5000ppm - Медіана базової комісії, що стягується нодами маршрутизації, без урахування базової комісії > 5000ppm + Медіана базової комісії, що стягується вузлами маршрутизації, без урахування базової комісії > 5000ppm src/app/lightning/channels-statistics/channels-statistics.component.html 89 @@ -7107,7 +7559,7 @@ Lightning node group - Група Lightning нод + Група Lightning вузлів src/app/lightning/group/group-preview.component.html 3 @@ -7120,7 +7572,7 @@ Nodes - Ноди + Вузли src/app/lightning/group/group-preview.component.html 25 @@ -7280,6 +7732,7 @@ Connect + З'єднатись src/app/lightning/group/group.component.html 73 @@ -7330,6 +7783,7 @@ Penalties + Покарання src/app/lightning/justice-list/justice-list.component.html 4 @@ -7407,6 +7861,7 @@ Get stats on the Lightning network (aggregate capacity, connectivity, etc), Lightning nodes (channels, liquidity, etc) and Lightning channels (status, fees, etc). + Отримайте статистику для мережі Lightning (агрегована ємність, з'єднаність і т п), Lightning вузлів (канали, ліквідність і т п) та Lightning канали (статус, комісії і т п). src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts 34 @@ -7464,7 +7919,7 @@ Lightning node - Lightning нода + Lightning вузол src/app/lightning/node/node-preview.component.html 3 @@ -7516,6 +7971,7 @@ Overview for the Lightning network node named . See channels, capacity, location, fee stats, and more. + Огляди вузлу Lightning мережі під назвою . Перегляньте канали, ємність, локації, статистику комісії та інше. src/app/lightning/node/node-preview.component.ts 52 @@ -7576,6 +8032,7 @@ Decoded + Розкодовано src/app/lightning/node/node.component.html 134 @@ -7677,7 +8134,7 @@ Node: - Нода: + Вузол: src/app/lightning/node/node.component.ts 63 @@ -7685,7 +8142,7 @@ (Tor nodes excluded) - (Без Tor нод) + (Без Tor вузлів) src/app/lightning/nodes-channels-map/nodes-channels-map.component.html 22 @@ -7706,7 +8163,7 @@ Lightning Nodes Channels World Map - Мапа каналів Lightning нод + Мапа каналів Lightning вузлів src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 73 @@ -7714,6 +8171,7 @@ 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 вузлів мережі Lightning візуалізованій на мапі світу. Наведіть/тапніть на точки на мапі щоб побачити назви та деталі вузлу. src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 74 @@ -7738,6 +8196,7 @@ See the locations of non-Tor Lightning network nodes visualized on a world map. Hover/tap on points on the map for node names and details. + Перегляньте локації для не Tor вузлів мережі Lightning візуалізованій на мапі світу. Наведіть/тапніть на точки на мапі щоб побачити назви та деталі вузлу. src/app/lightning/nodes-map/nodes-map.component.ts 52 @@ -7745,6 +8204,7 @@ See the number of Lightning network nodes visualized over time by network: clearnet only (IPv4, IPv6), darknet (Tor, I2p, cjdns), and both. + Перегляньте число вузлів мережі Lightning візуалізованої протягом часу за мережею: (IPv4, IPv6), даркнет (Tor, I2p, cjdns), та їх обох. src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 74 @@ -7813,6 +8273,7 @@ See a geographical breakdown of the Lightning network: how many Lightning nodes are hosted in countries around the world, aggregate BTC capacity for each country, and more. + Дивіться географічний розподіл мережі Lightning: скільки вузлів Lightning розміщено в різних країнах світу, сукупну ємність BTC для кожної країни та інше. src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts 47 @@ -7820,7 +8281,7 @@ nodes - нод + вузлів src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts 104 @@ -7848,7 +8309,7 @@ Lightning nodes in - Lightning нод в + Lightning вузлів в src/app/lightning/nodes-per-country/nodes-per-country.component.html 3,4 @@ -7875,7 +8336,7 @@ Lightning nodes in - Lightning нод в + Lightning вузлів в src/app/lightning/nodes-per-country/nodes-per-country.component.ts 43 @@ -7883,6 +8344,7 @@ Explore all the Lightning nodes hosted in and see an overview of each node's capacity, number of open channels, and more. + Перегляньте всі вузли Lightning розміщені у та побачте огляд ємності кожного вузла, кількість відкритих каналів та інше. src/app/lightning/nodes-per-country/nodes-per-country.component.ts 44 @@ -7903,7 +8365,7 @@ How much liquidity is running on nodes advertising at least one clearnet IP address - Скільки ліквідності доступно на нодах, що мають хоча б одну Клірнет IP-адресу + Скільки ліквідності доступно на вузлах, що мають хоча б одну Клірнет IP-адресу src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 8 @@ -7925,7 +8387,7 @@ How much liquidity is running on nodes which ISP was not identifiable - Скільки ліквідності доступно на нодах, чий ISP неможливо ідентифікувати + Скільки ліквідності доступно на вузлах, чий ISP неможливо ідентифікувати src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 15 @@ -7947,7 +8409,7 @@ How much liquidity is running on nodes advertising only Tor addresses - Скільки ліквідності доступно на нодах, що доступні тільки через Tor адресу + Скільки ліквідності доступно на вузлах, що доступні тільки через Tor адресу src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 22 @@ -7956,7 +8418,7 @@ Top 100 ISPs hosting LN nodes - Топ 100 ISP провайдерів, які надають послуги хостингу LN нод + Топ 100 ISP провайдерів, які надають послуги хостингу LN вузлів src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 31 @@ -7965,6 +8427,7 @@ Browse the top 100 ISPs hosting Lightning nodes along with stats like total number of nodes per ISP, aggregate BTC capacity per ISP, and more + Перегляньте топ 100 ISP, які хостять вузли Lightning разом з такою статистикою, як загальна кількість вузлів на провайдера, агреговану ємність BTC на ISP та інше. src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts 54 @@ -8006,7 +8469,7 @@ Top node - Рейтинг нод + Рейтинг вузлів src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.html 45 @@ -8015,7 +8478,7 @@ Lightning nodes on ISP: [AS] - Lightning ноди на ISP: [НА ] + Lightning вузлів на ISP: [НА ] src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts 44 @@ -8027,6 +8490,7 @@ Browse all Bitcoin Lightning nodes using the [AS] ISP and see aggregate stats like total number of nodes, total capacity, and more for the ISP. + Перегляньте всі Lightning вузли мережі Біткоїн використовуючи [НА ] ISP та побачте агреговану статистику, таку як загальна кількість вузлів, загальна ємність та більше для ISP. src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts 45 @@ -8038,7 +8502,7 @@ Lightning nodes on ISP: - Lightning ноди на ISP: + Lightning вузли на ISP: src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 2,4 @@ -8056,7 +8520,7 @@ Active nodes - Активні ноди + Активні вузли src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 14 @@ -8065,7 +8529,7 @@ Top 100 oldest lightning nodes - Топ 100 найстаріших lightning нод + Топ 100 найстаріших lightning вузлів src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html 3 @@ -8074,7 +8538,7 @@ Oldest lightning nodes - Найстаріші lightning ноди + Найстаріші lightning вузли src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts 27 @@ -8082,6 +8546,7 @@ See the oldest nodes on the Lightning network along with their capacity, number of channels, location, etc. + Перегляньте найстаріші вузли мережі Lightning разом з їх ємністю, кількістю каналів, локацією та іншим. src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts 28 @@ -8089,6 +8554,7 @@ See Lightning nodes with the most BTC liquidity deployed along with high-level stats like number of open channels, location, node age, and more. + Перегляньте вузли Lightning з найбільшою ліквідністю BTC разом з загальною статистикою, такою як кількість відкритих каналів, локацією, віком та іншим. src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts 35 @@ -8096,6 +8562,7 @@ See Lightning nodes with the most channels open along with high-level stats like total node capacity, node age, and more. + Перегляньте вузли Lightning з найбільшою кількістю відкритих каналів та загальною статистикою, такою як загальна ємність, вік та інше. src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.ts 39 @@ -8103,7 +8570,7 @@ Oldest nodes - Найстаріші ноди + Найстаріші вузли src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html 36 @@ -8112,7 +8579,7 @@ Top lightning nodes - Рейтинг lightning нод + Рейтинг lightning вузлів src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts 22 @@ -8120,6 +8587,7 @@ See the top Lightning network nodes ranked by liquidity, connectivity, and age. + Перегляньте топ вузлів Lightning відсортованих по ліквідності, з'єднаності та віку. src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts 23 @@ -8127,6 +8595,7 @@ See the capacity of the Lightning network visualized over time in terms of the number of open channels and total bitcoin capacity. + Перегляньте ємність мережі Lightning візуалізованої протягом часу з точки зору відкритих каналів та загальної ємності біткоїна. src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 71 @@ -8134,6 +8603,7 @@ confirmation + підтвердження src/app/shared/components/confirmations/confirmations.component.html 4 @@ -8143,6 +8613,7 @@ confirmations + підтверджень src/app/shared/components/confirmations/confirmations.component.html 5 @@ -8152,6 +8623,7 @@ Replaced + Замінена src/app/shared/components/confirmations/confirmations.component.html 12 @@ -8171,6 +8643,7 @@ sat/WU + sat/WU src/app/shared/components/fee-rate/fee-rate.component.html 4 @@ -8184,6 +8657,7 @@ My Account + Мій акаунт src/app/shared/components/global-footer/global-footer.component.html 25 @@ -8196,6 +8670,7 @@ Explore + Дослідити src/app/shared/components/global-footer/global-footer.component.html 41 @@ -8204,6 +8679,7 @@ Connect to our Nodes + Під'єднатись до наших вузлів src/app/shared/components/global-footer/global-footer.component.html 46 @@ -8212,6 +8688,7 @@ API Documentation + Документація API src/app/shared/components/global-footer/global-footer.component.html 47 @@ -8220,6 +8697,7 @@ Learn + Навчитись src/app/shared/components/global-footer/global-footer.component.html 50 @@ -8228,6 +8706,7 @@ What is a mempool? + Що таке мемпул? src/app/shared/components/global-footer/global-footer.component.html 51 @@ -8236,6 +8715,7 @@ What is a block explorer? + Що таке експлорер блоків? src/app/shared/components/global-footer/global-footer.component.html 52 @@ -8244,6 +8724,7 @@ What is a mempool explorer? + Що таке експлорер мемпулу? src/app/shared/components/global-footer/global-footer.component.html 53 @@ -8252,6 +8733,7 @@ Why isn't my transaction confirming? + Чому моя транзакція не підтверджується? src/app/shared/components/global-footer/global-footer.component.html 54 @@ -8260,6 +8742,7 @@ More FAQs » + Більше ЧаПів » src/app/shared/components/global-footer/global-footer.component.html 55 @@ -8268,6 +8751,7 @@ Networks + Мережі src/app/shared/components/global-footer/global-footer.component.html 59 @@ -8276,6 +8760,7 @@ Mainnet Explorer + Mainnet експлорер src/app/shared/components/global-footer/global-footer.component.html 60 @@ -8284,6 +8769,7 @@ Testnet Explorer + Testnet експлорер src/app/shared/components/global-footer/global-footer.component.html 61 @@ -8292,6 +8778,7 @@ Signet Explorer + Signet експлорер src/app/shared/components/global-footer/global-footer.component.html 62 @@ -8300,6 +8787,7 @@ Liquid Testnet Explorer + Liquid Testnet експлорер src/app/shared/components/global-footer/global-footer.component.html 63 @@ -8308,6 +8796,7 @@ Liquid Explorer + Liquid експлорер src/app/shared/components/global-footer/global-footer.component.html 64 @@ -8316,6 +8805,7 @@ Tools + Інструменти src/app/shared/components/global-footer/global-footer.component.html 68 @@ -8324,6 +8814,7 @@ Clock (Mined) + Годинник (майнінг) src/app/shared/components/global-footer/global-footer.component.html 70 @@ -8332,6 +8823,7 @@ Legal + Юридичне src/app/shared/components/global-footer/global-footer.component.html 75 @@ -8360,6 +8852,7 @@ Trademark Policy + Політика щодо торгових марок src/app/shared/components/global-footer/global-footer.component.html 78 @@ -8369,6 +8862,7 @@ Third-party Licenses + Ліцензії третіх сторін src/app/shared/components/global-footer/global-footer.component.html 79 @@ -8378,12 +8872,45 @@ This is a test network. Coins have no value. + Це тестова мережа. Монети не мають цінності. src/app/shared/components/testnet-alert/testnet-alert.component.html 3 warning-testnet + + Address Types + Типи адрес + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + Поведінка + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + Евристика + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + Sighash прапорці + + src/app/shared/filters.utils.ts + 123 + + year рік diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf index 40955d76b..f709f223d 100644 --- a/frontend/src/locale/messages.vi.xlf +++ b/frontend/src/locale/messages.vi.xlf @@ -397,7 +397,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -445,40 +445,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + Khối tiếp theo + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + Kích thước ảo + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats satoshi src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -542,20 +619,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -568,6 +661,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -716,7 +922,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -731,11 +941,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -807,7 +1017,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -883,14 +1093,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » Xem thêm » @@ -932,7 +1134,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1170,7 +1372,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1460,6 +1662,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1488,6 +1694,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1671,7 +1881,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,10 +1892,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Khớp + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1891,7 +2146,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2175,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1978,28 +2233,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - Kích thước ảo - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2026,15 +2259,6 @@ transaction.audit-status - - Match - Khớp - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2139,6 +2363,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2234,7 +2462,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2453,23 +2681,6 @@ Block reorg block.reorged - - Next Block - Khối tiếp theo - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block Khối trước @@ -2544,6 +2755,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2893,7 +3112,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3141,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,11 +3233,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3089,7 +3308,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3326,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3469,7 +3688,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3695,11 +3914,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3775,7 +3994,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3788,7 +4011,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3801,7 +4028,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3814,7 +4041,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3827,7 +4054,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3844,7 +4071,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4199,7 +4426,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4216,7 +4443,7 @@ Trình duyệt Lightning src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4278,22 +4505,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats Các chỉ số phần thưởng @@ -4320,7 +4531,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4538,23 +4749,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - Khác () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4743,11 +4957,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4768,18 +4982,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4852,7 +5066,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4892,7 +5106,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5522,6 +5736,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5628,19 +5846,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type Kiểu @@ -6184,19 +6389,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6204,7 +6401,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6212,7 +6409,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6220,7 +6417,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6228,11 +6425,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6240,11 +6437,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6252,11 +6449,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6265,7 +6462,7 @@ Phí tối thiểu src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6275,7 +6472,7 @@ Thanh lọc src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6285,7 +6482,7 @@ Đang lập chỉ mục src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6297,6 +6494,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -8374,6 +8604,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year năm diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index 51351b151..b4dd11f58 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -406,39 +406,114 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -502,19 +577,35 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -527,6 +618,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -675,7 +879,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -689,11 +897,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -764,7 +972,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -840,14 +1048,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » @@ -1117,7 +1317,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1597,7 +1797,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1631,21 +1831,21 @@ mempool-goggles.any - - Gradient + + Tint src/app/components/block-filters/block-filters.component.html 30 - mempool-goggles.gradient + mempool-goggles.tint - - Default + + Classic src/app/components/block-filters/block-filters.component.html 33 - mempool-goggles.default + mempool-goggles.classic Age @@ -1853,7 +2053,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1881,7 +2081,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1937,27 +2137,6 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight @@ -2181,7 +2360,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2392,22 +2571,6 @@ Block reorg block.reorged - - Next Block - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block @@ -2479,6 +2642,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2841,7 +3012,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -2929,11 +3100,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3001,7 +3172,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3018,7 +3189,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3365,7 +3536,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -4147,22 +4318,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats @@ -4187,7 +4342,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4392,22 +4547,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4589,11 +4748,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4695,7 +4854,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4734,7 +4893,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5446,19 +5605,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type @@ -5958,19 +6104,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -5978,7 +6116,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -5986,7 +6124,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -5994,7 +6132,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6002,11 +6140,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6014,11 +6152,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6026,11 +6164,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6038,7 +6176,7 @@ Minimum fee src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6047,7 +6185,7 @@ Purging src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6056,7 +6194,7 @@ Indexing in progress src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index a8e2f435c..7a6daf8fa 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -399,7 +399,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -447,40 +447,117 @@ sat shared.sat + + maximum + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 55 + + + + Next Block + 下一个区块 + + src/app/components/accelerate-preview/accelerate-fee-graph.component.ts + 66 + + + src/app/components/block/block.component.html + 12 + + + src/app/components/difficulty/difficulty-tooltip.component.html + 28 + + + src/app/components/mempool-block/mempool-block.component.ts + 87 + + + + Your transaction + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + + src/app/components/accelerate-preview/accelerate-preview.component.html + 39 + + accelerator.plus-unconfirmed-ancestors + + + Virtual size + 虚拟大小 + + src/app/components/accelerate-preview/accelerate-preview.component.html + 44 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 59 + + + src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html + 25 + + + src/app/components/transaction/transaction.component.html + 189 + + + src/app/components/transaction/transaction.component.html + 317 + + Transaction Virtual Size + transaction.vsize + + + In-band fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 53 + + accelerator.in-band-fees + sats sats src/app/components/accelerate-preview/accelerate-preview.component.html - 59 + 55 src/app/components/accelerate-preview/accelerate-preview.component.html - 84 + 77 src/app/components/accelerate-preview/accelerate-preview.component.html - 118 + 109 src/app/components/accelerate-preview/accelerate-preview.component.html - 138 + 127 src/app/components/accelerate-preview/accelerate-preview.component.html - 150 + 139 src/app/components/accelerate-preview/accelerate-preview.component.html - 167 + 156 src/app/components/accelerate-preview/accelerate-preview.component.html - 190 + 179 src/app/components/accelerate-preview/accelerate-preview.component.html - 213 + 200 src/app/components/calculator/calculator.component.html @@ -544,20 +621,36 @@ shared.sats + + How much more are you willing to pay? + + src/app/components/accelerate-preview/accelerate-preview.component.html + 68 + + accelerator.pay-how-much + + + Choose the maximum extra transaction fee you're willing to pay to get into the next block. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 95 + + accelerator.next-block-rate + sat/vB 聪/字节 src/app/components/accelerate-preview/accelerate-preview.component.html - 108 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 173 - - - src/app/components/accelerate-preview/accelerate-preview.component.html - 198 + 99 src/app/shared/components/fee-rate/fee-rate.component.html @@ -570,6 +663,119 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + + src/app/components/accelerate-preview/accelerate-preview.component.html + 214 + + + src/app/components/menu/menu.component.html + 21 + + + src/app/shared/components/global-footer/global-footer.component.html + 26 + + + src/app/shared/components/global-footer/global-footer.component.html + 31 + + shared.sign-in + + + Accelerate on mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + + src/app/components/accelerate-preview/accelerate-preview.component.html + 235 + + + src/app/components/transaction/transaction.component.html + 106 + + + src/app/components/transaction/transaction.component.html + 145 + + + src/app/components/transaction/transaction.component.html + 155 + + Accelerate button label + transaction.accelerate + + + If your tx is accelerated to ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees @@ -673,6 +879,7 @@ BTC + 比特币 src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 13 @@ -718,7 +925,11 @@ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 2 - master-page.blocks + + src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html + 41 + + accelerator.accelerations TXID @@ -733,11 +944,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -799,6 +1010,7 @@ Status + 状态 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 19 @@ -809,7 +1021,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -885,14 +1097,6 @@ mining.3-months - - Mempool Goggles: Accelerations - - src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html - 41 - - dashboard.mempool-goggles-accelerations - View more » 更多 » @@ -934,7 +1138,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1172,7 +1376,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1462,6 +1666,10 @@ src/app/components/assets/assets-nav/assets-nav.component.html 13 + + src/app/components/block-filters/block-filters.component.html + 22 + src/app/components/pool-ranking/pool-ranking.component.html 72 @@ -1490,6 +1698,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1673,7 +1885,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1684,10 +1896,55 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + 匹配 + + src/app/components/block-filters/block-filters.component.html + 19 + + + src/app/components/block-overview-tooltip/block-overview-tooltip.component.html + 70 + + mempool-goggles.match + + + Any + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health @@ -1893,7 +2150,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1922,7 +2179,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1980,30 +2237,9 @@ Effective transaction fee rate transaction.effective-fee-rate - - Virtual size - 虚拟大小 - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 59 - - - src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html - 25 - - - src/app/components/transaction/transaction.component.html - 189 - - - src/app/components/transaction/transaction.component.html - 317 - - Transaction Virtual Size - transaction.vsize - Weight + 重量 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 63 @@ -2028,17 +2264,9 @@ transaction.audit-status - - Match - 匹配 - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed + 已移除 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 71 @@ -2090,6 +2318,7 @@ Added + 添加 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -2103,6 +2332,7 @@ Prioritized + 优先 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 77 @@ -2116,6 +2346,7 @@ Conflict + 冲突 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -2141,6 +2372,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2236,7 +2471,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2455,23 +2690,6 @@ Block reorg block.reorged - - Next Block - 下一个区块 - - src/app/components/block/block.component.html - 12 - - - src/app/components/difficulty/difficulty-tooltip.component.html - 28 - - - src/app/components/mempool-block/mempool-block.component.ts - 87 - - Next Block - Previous Block 上一个区块 @@ -2546,6 +2764,14 @@ src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 323 + + src/app/services/api.service.ts + 254 + + + src/app/services/api.service.ts + 267 + unknown @@ -2806,6 +3032,7 @@ transaction + 个交易 src/app/components/block/block.component.html 331 @@ -2822,6 +3049,7 @@ transactions + 个交易 src/app/components/block/block.component.html 332 @@ -2895,7 +3123,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2924,7 +3152,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3016,11 +3244,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3091,7 +3319,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3109,7 +3337,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3164,6 +3392,7 @@ blocks + 区块 src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 @@ -3481,7 +3710,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3707,11 +3936,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3787,7 +4016,11 @@ src/app/components/master-page/master-page.component.html - 28 + 30 + + + src/app/components/master-page/master-page.component.html + 47 master-page.offline @@ -3800,7 +4033,11 @@ src/app/components/master-page/master-page.component.html - 29 + 31 + + + src/app/components/master-page/master-page.component.html + 48 master-page.reconnecting @@ -3813,7 +4050,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3826,7 +4063,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3839,7 +4076,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3856,7 +4093,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4085,6 +4322,7 @@ BTC Address + 比特币地址 src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -4211,7 +4449,7 @@ Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4228,7 +4466,7 @@ 闪电网络浏览器 src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4290,22 +4528,6 @@ 328 - - Sign In - - src/app/components/menu/menu.component.html - 21 - - - src/app/shared/components/global-footer/global-footer.component.html - 26 - - - src/app/shared/components/global-footer/global-footer.component.html - 31 - - shared.sign-in - Reward stats 奖励统计 @@ -4332,7 +4554,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4550,23 +4772,26 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 Other () - 其他 () src/app/components/pool-ranking/pool-ranking.component.ts - 203 + 186 src/app/components/pool-ranking/pool-ranking.component.ts - 207 + 204 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 208 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -4755,11 +4980,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4780,18 +5005,18 @@ Not enough data yet src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4864,7 +5089,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4904,7 +5129,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5534,6 +5759,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5640,19 +5869,6 @@ Transaction ETA in several hours or more transaction.eta.in-several-hours - - Accelerate - - src/app/components/transaction/transaction.component.html - 145 - - - src/app/components/transaction/transaction.component.html - 155 - - Accelerate button label - transaction.accelerate - Type 类型 @@ -6196,19 +6412,11 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6216,7 +6424,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6224,7 +6432,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6232,7 +6440,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6240,11 +6448,11 @@ Liquid Federation Holdings src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings @@ -6252,11 +6460,11 @@ Federation Timelock-Expired UTXOs src/app/dashboard/dashboard.component.html - 173 + 174 src/app/dashboard/dashboard.component.html - 313 + 314 liquid.federation-expired-utxos @@ -6264,11 +6472,11 @@ L-BTC Supply Against BTC Holdings src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6277,7 +6485,7 @@ 最低费用 src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6287,7 +6495,7 @@ 吹扫中 src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6297,7 +6505,7 @@ 正在统计 src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6309,6 +6517,39 @@ lightning.indexing-in-progress + + Consolidation + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + + src/app/dashboard/dashboard.component.ts + 81 + + + src/app/shared/filters.utils.ts + 121 + + 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). @@ -7282,6 +7523,7 @@ Connect + 连接 src/app/lightning/group/group.component.html 73 @@ -8136,6 +8378,7 @@ confirmation + 确认 src/app/shared/components/confirmations/confirmations.component.html 4 @@ -8145,6 +8388,7 @@ confirmations + 确认 src/app/shared/components/confirmations/confirmations.component.html 5 @@ -8154,6 +8398,7 @@ Replaced + 已替换 src/app/shared/components/confirmations/confirmations.component.html 12 @@ -8186,6 +8431,7 @@ My Account + 我的账户 src/app/shared/components/global-footer/global-footer.component.html 25 @@ -8386,6 +8632,34 @@ warning-testnet + + Address Types + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + + src/app/shared/filters.utils.ts + 123 + + year diff --git a/frontend/tsconfig.base.json b/frontend/tsconfig.base.json index bfb2e2d71..9057fa5cf 100644 --- a/frontend/tsconfig.base.json +++ b/frontend/tsconfig.base.json @@ -7,15 +7,15 @@ "declaration": false, "downlevelIteration": true, "experimentalDecorators": true, - "module": "ES2022", + "module": "ES2020", "moduleResolution": "node", "importHelpers": true, - "target": "ES2022", + "target": "ES2020", "typeRoots": [ "node_modules/@types" ], "lib": [ - "ES2022", + "ES2020", "dom", "dom.iterable" ] diff --git a/frontend/tsconfig.server.json b/frontend/tsconfig.server.json index 34632f4ee..31d9eed27 100644 --- a/frontend/tsconfig.server.json +++ b/frontend/tsconfig.server.json @@ -2,7 +2,7 @@ "extends": "./tsconfig.app.json", "compilerOptions": { "outDir": "./out-tsc/server", - "target": "ES2022", + "target": "ES2020", "sourceMap": true, "types": [ "node"