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/backend/src/api/acceleration/acceleration.routes.ts b/backend/src/api/acceleration/acceleration.routes.ts new file mode 100644 index 000000000..69b320171 --- /dev/null +++ b/backend/src/api/acceleration/acceleration.routes.ts @@ -0,0 +1,75 @@ +import { Application, Request, Response } from "express"; +import config from "../../config"; +import axios from "axios"; +import logger from "../../logger"; + +class AccelerationRoutes { + private tag = 'Accelerator'; + + public initRoutes(app: Application) { + app + .get(config.MEMPOOL.API_URL_PREFIX + 'services/accelerator/accelerations', this.$getAcceleratorAccelerations.bind(this)) + .get(config.MEMPOOL.API_URL_PREFIX + 'services/accelerator/accelerations/history', this.$getAcceleratorAccelerationsHistory.bind(this)) + .get(config.MEMPOOL.API_URL_PREFIX + 'services/accelerator/accelerations/history/aggregated', this.$getAcceleratorAccelerationsHistoryAggregated.bind(this)) + .get(config.MEMPOOL.API_URL_PREFIX + 'services/accelerator/accelerations/stats', this.$getAcceleratorAccelerationsStats.bind(this)) + ; + } + + private async $getAcceleratorAccelerations(req: Request, res: Response) { + const url = `${config.MEMPOOL_SERVICES.API}/${req.originalUrl.replace('/api/v1/services/', '')}`; + try { + const response = await axios.get(url, { responseType: 'stream', timeout: 10000 }); + for (const key in response.headers) { + res.setHeader(key, response.headers[key]); + } + response.data.pipe(res); + } catch (e) { + logger.err(`Unable to get current accelerations from ${url} in $getAcceleratorAccelerations(), ${e}`, this.tag); + res.status(500).end(); + } + } + + private async $getAcceleratorAccelerationsHistory(req: Request, res: Response) { + const url = `${config.MEMPOOL_SERVICES.API}/${req.originalUrl.replace('/api/v1/services/', '')}`; + try { + const response = await axios.get(url, { responseType: 'stream', timeout: 10000 }); + for (const key in response.headers) { + res.setHeader(key, response.headers[key]); + } + response.data.pipe(res); + } catch (e) { + logger.err(`Unable to get acceleration history from ${url} in $getAcceleratorAccelerationsHistory(), ${e}`, this.tag); + res.status(500).end(); + } + } + + private async $getAcceleratorAccelerationsHistoryAggregated(req: Request, res: Response) { + const url = `${config.MEMPOOL_SERVICES.API}/${req.originalUrl.replace('/api/v1/services/', '')}`; + try { + const response = await axios.get(url, { responseType: 'stream', timeout: 10000 }); + for (const key in response.headers) { + res.setHeader(key, response.headers[key]); + } + response.data.pipe(res); + } catch (e) { + logger.err(`Unable to get aggregated acceleration history from ${url} in $getAcceleratorAccelerationsHistoryAggregated(), ${e}`, this.tag); + res.status(500).end(); + } + } + + private async $getAcceleratorAccelerationsStats(req: Request, res: Response) { + const url = `${config.MEMPOOL_SERVICES.API}/${req.originalUrl.replace('/api/v1/services/', '')}`; + try { + const response = await axios.get(url, { responseType: 'stream', timeout: 10000 }); + for (const key in response.headers) { + res.setHeader(key, response.headers[key]); + } + response.data.pipe(res); + } catch (e) { + logger.err(`Unable to get acceleration stats from ${url} in $getAcceleratorAccelerationsStats(), ${e}`, this.tag); + res.status(500).end(); + } + } +} + +export default new AccelerationRoutes(); \ No newline at end of file diff --git a/backend/src/api/acceleration.ts b/backend/src/api/acceleration/acceleration.ts similarity index 99% rename from backend/src/api/acceleration.ts rename to backend/src/api/acceleration/acceleration.ts index 412d65231..2dbaa8b07 100644 --- a/backend/src/api/acceleration.ts +++ b/backend/src/api/acceleration/acceleration.ts @@ -1,6 +1,6 @@ -import logger from '../logger'; -import { MempoolTransactionExtended } from '../mempool.interfaces'; -import { IEsploraApi } from './bitcoin/esplora-api.interface'; +import logger from '../../logger'; +import { MempoolTransactionExtended } from '../../mempool.interfaces'; +import { IEsploraApi } from '../bitcoin/esplora-api.interface'; const BLOCK_WEIGHT_UNITS = 4_000_000; const BLOCK_SIGOPS = 80_000; diff --git a/backend/src/api/common.ts b/backend/src/api/common.ts index 5053d4da3..92dfceb52 100644 --- a/backend/src/api/common.ts +++ b/backend/src/api/common.ts @@ -373,6 +373,21 @@ export class Common { ].includes(pubkey); } + static isInscription(vin, flags): bigint { + // in taproot, if the last witness item begins with 0x50, it's an annex + const hasAnnex = vin.witness?.[vin.witness.length - 1].startsWith('50'); + // script spends have more than one witness item, not counting the annex (if present) + if (vin.witness.length > (hasAnnex ? 2 : 1)) { + // the script itself is the second-to-last witness item, not counting the annex + const asm = vin.inner_witnessscript_asm || transactionUtils.convertScriptSigAsm(vin.witness[vin.witness.length - (hasAnnex ? 3 : 2)]); + // inscriptions smuggle data within an 'OP_0 OP_IF ... OP_ENDIF' envelope + if (asm?.includes('OP_0 OP_IF')) { + flags |= TransactionFlags.inscription; + } + } + return flags; + } + static getTransactionFlags(tx: TransactionExtended): number { let flags = tx.flags ? BigInt(tx.flags) : 0n; @@ -409,30 +424,31 @@ export class Common { if (vin.sequence < 0xfffffffe) { rbf = true; } - switch (vin.prevout?.scriptpubkey_type) { - case 'p2pk': flags |= TransactionFlags.p2pk; break; - case 'multisig': flags |= TransactionFlags.p2ms; break; - case 'p2pkh': flags |= TransactionFlags.p2pkh; break; - case 'p2sh': flags |= TransactionFlags.p2sh; break; - case 'v0_p2wpkh': flags |= TransactionFlags.p2wpkh; break; - case 'v0_p2wsh': flags |= TransactionFlags.p2wsh; break; - case 'v1_p2tr': { - if (!vin.witness?.length) { - throw new Error('Taproot input missing witness data'); - } - flags |= TransactionFlags.p2tr; - // in taproot, if the last witness item begins with 0x50, it's an annex - const hasAnnex = vin.witness?.[vin.witness.length - 1].startsWith('50'); - // script spends have more than one witness item, not counting the annex (if present) - if (vin.witness.length > (hasAnnex ? 2 : 1)) { - // the script itself is the second-to-last witness item, not counting the annex - const asm = vin.inner_witnessscript_asm || transactionUtils.convertScriptSigAsm(vin.witness[vin.witness.length - (hasAnnex ? 3 : 2)]); - // inscriptions smuggle data within an 'OP_0 OP_IF ... OP_ENDIF' envelope - if (asm?.includes('OP_0 OP_IF')) { - flags |= TransactionFlags.inscription; + if (vin.prevout?.scriptpubkey_type) { + switch (vin.prevout?.scriptpubkey_type) { + case 'p2pk': flags |= TransactionFlags.p2pk; break; + case 'multisig': flags |= TransactionFlags.p2ms; break; + case 'p2pkh': flags |= TransactionFlags.p2pkh; break; + case 'p2sh': flags |= TransactionFlags.p2sh; break; + case 'v0_p2wpkh': flags |= TransactionFlags.p2wpkh; break; + case 'v0_p2wsh': flags |= TransactionFlags.p2wsh; break; + case 'v1_p2tr': { + if (!vin.witness?.length) { + throw new Error('Taproot input missing witness data'); } + flags |= TransactionFlags.p2tr; + flags = Common.isInscription(vin, flags); + } break; + } + } else { + // no prevouts, optimistically check witness-bearing inputs + if (vin.witness?.length >= 2) { + try { + flags = Common.isInscription(vin, flags); + } catch { + // witness script parsing will fail if this isn't really a taproot output } - } break; + } } // sighash flags diff --git a/backend/src/api/database-migration.ts b/backend/src/api/database-migration.ts index 278cd2631..81f2caa44 100644 --- a/backend/src/api/database-migration.ts +++ b/backend/src/api/database-migration.ts @@ -655,6 +655,7 @@ class DatabaseMigration { await this.$executeQuery('TRUNCATE hashrates'); await this.$executeQuery('TRUNCATE difficulty_adjustments'); + await this.$executeQuery(`UPDATE state SET string = NULL WHERE name = 'pools_json_sha'`); await this.updateToSchemaVersion(75); } diff --git a/backend/src/api/mempool-blocks.ts b/backend/src/api/mempool-blocks.ts index 3af2a9967..bded93846 100644 --- a/backend/src/api/mempool-blocks.ts +++ b/backend/src/api/mempool-blocks.ts @@ -343,7 +343,7 @@ class MempoolBlocks { if (txid in mempool) { mempool[txid].cpfpDirty = (rate !== mempool[txid].effectiveFeePerVsize); mempool[txid].effectiveFeePerVsize = rate; - mempool[txid].cpfpChecked = false; + mempool[txid].cpfpChecked = true; } } diff --git a/backend/src/api/websocket-handler.ts b/backend/src/api/websocket-handler.ts index 66f134b2a..ef4a02d4f 100644 --- a/backend/src/api/websocket-handler.ts +++ b/backend/src/api/websocket-handler.ts @@ -739,7 +739,7 @@ class WebsocketHandler { accelerated: mempoolTx.acceleration || undefined, } }; - if (!mempoolTx.cpfpChecked) { + if (!mempoolTx.cpfpChecked && !mempoolTx.acceleration) { calculateCpfp(mempoolTx, newMempool); } if (mempoolTx.cpfpDirty) { diff --git a/backend/src/index.ts b/backend/src/index.ts index f17020cf8..0b2cbb003 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -43,6 +43,7 @@ import redisCache from './api/redis-cache'; import accelerationApi from './api/services/acceleration'; import bitcoinCoreRoutes from './api/bitcoin/bitcoin-core.routes'; import bitcoinSecondClient from './api/bitcoin/bitcoin-second-client'; +import accelerationRoutes from './api/acceleration/acceleration.routes'; import aboutRoutes from './api/about.routes'; class Server { @@ -306,6 +307,9 @@ class Server { nodesRoutes.initRoutes(this.app); channelsRoutes.initRoutes(this.app); } + if (config.MEMPOOL_SERVICES.ACCELERATIONS) { + accelerationRoutes.initRoutes(this.app); + } aboutRoutes.initRoutes(this.app); } diff --git a/backend/src/repositories/AccelerationRepository.ts b/backend/src/repositories/AccelerationRepository.ts index 1c91df050..4969013c4 100644 --- a/backend/src/repositories/AccelerationRepository.ts +++ b/backend/src/repositories/AccelerationRepository.ts @@ -1,4 +1,4 @@ -import { AccelerationInfo, makeBlockTemplate } from '../api/acceleration'; +import { AccelerationInfo, makeBlockTemplate } from '../api/acceleration/acceleration'; import { RowDataPacket } from 'mysql2'; import DB from '../database'; import logger from '../logger'; @@ -7,7 +7,7 @@ import { Common } from '../api/common'; import config from '../config'; import blocks from '../api/blocks'; import accelerationApi, { Acceleration } from '../api/services/acceleration'; -import accelerationCosts from '../api/acceleration'; +import accelerationCosts from '../api/acceleration/acceleration'; import bitcoinApi from '../api/bitcoin/bitcoin-api-factory'; import transactionUtils from '../api/transaction-utils'; import { BlockExtended, MempoolTransactionExtended } from '../mempool.interfaces'; diff --git a/contributors/daweilv.txt b/contributors/daweilv.txt new file mode 100644 index 000000000..2abb9f73b --- /dev/null +++ b/contributors/daweilv.txt @@ -0,0 +1,3 @@ +I hereby accept the terms of the Contributor License Agreement in the CONTRIBUTING.md file of the mempool/mempool git repository as of April 7, 2024. + +Signed: daweilv diff --git a/frontend/src/app/components/about/about.component.html b/frontend/src/app/components/about/about.component.html index 009040889..4d2be4744 100644 --- a/frontend/src/app/components/about/about.component.html +++ b/frontend/src/app/components/about/about.component.html @@ -32,7 +32,7 @@ - + @@ -181,7 +181,7 @@ - +

Whale Sponsors

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 622da3744..bb451d039 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,22 @@ -
+
- +
+ +
+
Accelerate with
+
+
+ Loading +
+
+
@@ -257,4 +253,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..aee0189aa 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'; @@ -63,18 +62,44 @@ 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 (this.stateService.ref === 'https://cash.app/') { + this.insertSquare(); + } + } ngOnDestroy(): void { if (this.estimateSubscription) { this.estimateSubscription.unsubscribe(); } + if (this.cashAppPay) { + this.cashAppPay.destroy(); + } + } + + ngOnInit() { + if (this.stateService.ref === 'https://cash.app/') { + this.paymentType = 'cashapp'; + this.stateService.ref = ''; + } else { + this.paymentType = 'bitcoin'; + } } ngOnChanges(changes: SimpleChanges): void { @@ -83,69 +108,87 @@ export class AcceleratePreviewComponent implements OnInit, OnDestroy, OnChanges } } - ngOnInit() { + ngAfterViewInit() { + if (this.paymentType === 'cashapp') { + 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 +259,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 0e1c65382..39abfa461 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 44335f4b8..2330e19e9 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 @@ -11,11 +11,12 @@ import TxView from '../../block-overview-graph/tx-view'; import { feeLevels, defaultMempoolFeeColors, contrastMempoolFeeColors } from '../../../app.constants'; import { ServicesApiServices } from '../../../services/services-api.service'; import { detectWebGL } from '../../../shared/graphs.utils'; +import { AudioService } from '../../../services/audio.service'; import { ThemeService } from '../../../services/theme.service'; const acceleratedColor: Color = hexToColor('8F5FF6'); const normalColors = defaultMempoolFeeColors.map(hex => hexToColor(hex + '5F')); -const contrastColors = contrastMempoolFeeColors.map(hex => hexToColor(hex + '5F')); +const contrastColors = contrastMempoolFeeColors.map(hex => hexToColor(hex.slice(0,6) + '5F')); interface AccelerationBlock extends BlockExtended { accelerationCount: number, @@ -34,6 +35,8 @@ export class AcceleratorDashboardComponent implements OnInit { minedAccelerations$: Observable; loadingBlocks: boolean = true; webGlEnabled = true; + seen: Set = new Set(); + firstLoad = true; graphHeight: number = 300; theme: ThemeService; @@ -43,6 +46,7 @@ export class AcceleratorDashboardComponent implements OnInit { private ogService: OpenGraphService, private websocketService: WebsocketService, private serviceApiServices: ServicesApiServices, + private audioService: AudioService, private stateService: StateService, @Inject(PLATFORM_ID) private platformId: Object, ) { @@ -64,6 +68,15 @@ export class AcceleratorDashboardComponent implements OnInit { }), ); }), + tap(accelerations => { + if (!this.firstLoad && accelerations.some(acc => !this.seen.has(acc.txid))) { + this.audioService.playSound('bright-harmony'); + } + for(const acc of accelerations) { + this.seen.add(acc.txid); + } + this.firstLoad = false; + }), share(), ); diff --git a/frontend/src/app/components/address-graph/address-graph.component.ts b/frontend/src/app/components/address-graph/address-graph.component.ts index a73229495..fc3cf24dd 100644 --- a/frontend/src/app/components/address-graph/address-graph.component.ts +++ b/frontend/src/app/components/address-graph/address-graph.component.ts @@ -6,6 +6,7 @@ import { ChainStats } from '../../interfaces/electrs.interface'; import { ElectrsApiService } from '../../services/electrs-api.service'; import { AmountShortenerPipe } from '../../shared/pipes/amount-shortener.pipe'; import { Router } from '@angular/router'; +import { RelativeUrlPipe } from '../../shared/pipes/relative-url/relative-url.pipe'; @Component({ selector: 'app-address-graph', @@ -46,6 +47,7 @@ export class AddressGraphComponent implements OnChanges { private router: Router, private amountShortenerPipe: AmountShortenerPipe, private cd: ChangeDetectorRef, + private relativeUrlPipe: RelativeUrlPipe, ) {} ngOnChanges(changes: SimpleChanges): void { @@ -122,7 +124,7 @@ export class AddressGraphComponent implements OnChanges {
${date}
- `; + `; }.bind(this) }, xAxis: { @@ -178,7 +180,7 @@ export class AddressGraphComponent implements OnChanges { onChartClick(e) { if (this.hoverData?.length && this.hoverData[0]?.[2]?.txid) { - this.router.navigate(['/tx/', this.hoverData[0][2].txid]); + this.router.navigate([this.relativeUrlPipe.transform('/tx/'), this.hoverData[0][2].txid]); } } diff --git a/frontend/src/app/components/amount/amount.component.html b/frontend/src/app/components/amount/amount.component.html index aba600380..9ca0ba939 100644 --- a/frontend/src/app/components/amount/amount.component.html +++ b/frontend/src/app/components/amount/amount.component.html @@ -20,8 +20,7 @@ Confidential - - ‎{{ addPlus && satoshis >= 0 ? '+' : '' }}{{ satoshis / 100000000 | number : digitsInfo }} + ‎{{ addPlus && satoshis >= 0 ? '+' : '' }}{{ satoshis / 100000000 | number : digitsInfo }} L- tL- t 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 8c79cd438..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
-
@@ -14,14 +14,29 @@
-
Match
-
- - +
+
+
Match
+
+ + +
+
+
+
Tint
+
+ + +
+
{{ group.label }}
diff --git a/frontend/src/app/components/block-filters/block-filters.component.scss b/frontend/src/app/components/block-filters/block-filters.component.scss index d5f1d5968..e6da842c0 100644 --- a/frontend/src/app/components/block-filters/block-filters.component.scss +++ b/frontend/src/app/components/block-filters/block-filters.component.scss @@ -45,6 +45,13 @@ } .filter-menu { + .filter-row { + display: flex; + flex-direction: row; + justify-content: start; + align-items: baseline; + } + h5 { font-size: 0.8rem; color: white; @@ -118,6 +125,12 @@ background: var(--success); } } + &.yellow { + border: solid 1px #bf7815; + &.active { + background: #bf7815; + } + } } :host-context(.block-overview-graph:hover) &, &:hover, &:active { diff --git a/frontend/src/app/components/block-filters/block-filters.component.ts b/frontend/src/app/components/block-filters/block-filters.component.ts index a16475c23..7f997617c 100644 --- a/frontend/src/app/components/block-filters/block-filters.component.ts +++ b/frontend/src/app/components/block-filters/block-filters.component.ts @@ -1,5 +1,5 @@ import { Component, EventEmitter, Output, HostListener, Input, ChangeDetectorRef, OnChanges, SimpleChanges, OnInit, OnDestroy } from '@angular/core'; -import { ActiveFilter, FilterGroups, FilterMode, TransactionFilters } from '../../shared/filters.utils'; +import { ActiveFilter, FilterGroups, FilterMode, GradientMode, TransactionFilters } from '../../shared/filters.utils'; import { StateService } from '../../services/state.service'; import { Subscription } from 'rxjs'; @@ -22,6 +22,7 @@ export class BlockFiltersComponent implements OnInit, OnChanges, OnDestroy { activeFilters: string[] = []; filterFlags: { [key: string]: boolean } = {}; filterMode: FilterMode = 'and'; + gradientMode: GradientMode = 'fee'; menuOpen: boolean = false; constructor( @@ -32,6 +33,7 @@ export class BlockFiltersComponent implements OnInit, OnChanges, OnDestroy { ngOnInit(): void { this.filterSubscription = this.stateService.activeGoggles$.subscribe((active: ActiveFilter) => { this.filterMode = active.mode; + this.gradientMode = active.gradient; for (const key of Object.keys(this.filterFlags)) { this.filterFlags[key] = false; } @@ -39,7 +41,7 @@ export class BlockFiltersComponent implements OnInit, OnChanges, OnDestroy { this.filterFlags[key] = !this.disabledFilters[key]; } this.activeFilters = [...active.filters.filter(key => !this.disabledFilters[key])]; - this.onFilterChanged.emit({ mode: active.mode, filters: this.activeFilters }); + this.onFilterChanged.emit({ mode: active.mode, filters: this.activeFilters, gradient: this.gradientMode }); }); } @@ -57,8 +59,14 @@ export class BlockFiltersComponent implements OnInit, OnChanges, OnDestroy { setFilterMode(mode): void { this.filterMode = mode; - this.onFilterChanged.emit({ mode: this.filterMode, filters: this.activeFilters }); - this.stateService.activeGoggles$.next({ mode: this.filterMode, filters: [...this.activeFilters] }); + this.onFilterChanged.emit({ mode: this.filterMode, filters: this.activeFilters, gradient: this.gradientMode }); + this.stateService.activeGoggles$.next({ mode: this.filterMode, filters: [...this.activeFilters], gradient: this.gradientMode }); + } + + setGradientMode(mode): void { + this.gradientMode = mode; + this.onFilterChanged.emit({ mode: this.filterMode, filters: this.activeFilters, gradient: this.gradientMode }); + this.stateService.activeGoggles$.next({ mode: this.filterMode, filters: [...this.activeFilters], gradient: this.gradientMode }); } toggleFilter(key): void { @@ -81,8 +89,8 @@ export class BlockFiltersComponent implements OnInit, OnChanges, OnDestroy { this.activeFilters = this.activeFilters.filter(f => f != key); } const booleanFlags = this.getBooleanFlags(); - this.onFilterChanged.emit({ mode: this.filterMode, filters: this.activeFilters }); - this.stateService.activeGoggles$.next({ mode: this.filterMode, filters: [...this.activeFilters] }); + this.onFilterChanged.emit({ mode: this.filterMode, filters: this.activeFilters, gradient: this.gradientMode }); + this.stateService.activeGoggles$.next({ mode: this.filterMode, filters: [...this.activeFilters], gradient: this.gradientMode }); } getBooleanFlags(): bigint | null { diff --git a/frontend/src/app/components/block-overview-graph/block-overview-graph.component.ts b/frontend/src/app/components/block-overview-graph/block-overview-graph.component.ts index 15e084dec..f6847c93a 100644 --- a/frontend/src/app/components/block-overview-graph/block-overview-graph.component.ts +++ b/frontend/src/app/components/block-overview-graph/block-overview-graph.component.ts @@ -9,14 +9,11 @@ import { Price } from '../../services/price.service'; import { StateService } from '../../services/state.service'; import { ThemeService } from 'src/app/services/theme.service'; import { Subscription } from 'rxjs'; -import { defaultColorFunction, setOpacity, defaultFeeColors, defaultAuditFeeColors, defaultMarginalFeeColors, defaultAuditColors, contrastFeeColors, contrastAuditFeeColors, contrastMarginalFeeColors, contrastAuditColors, contrastColorFunction } from './utils'; +import { defaultColorFunction, setOpacity, defaultFeeColors, defaultAuditFeeColors, defaultMarginalFeeColors, defaultAuditColors } from './utils'; import { ActiveFilter, FilterMode, toFlags } from '../../shared/filters.utils'; import { detectWebGL } from '../../shared/graphs.utils'; const unmatchedOpacity = 0.2; -const unmatchedFeeColors = defaultFeeColors.map(c => setOpacity(c, unmatchedOpacity)); -const unmatchedAuditFeeColors = defaultAuditFeeColors.map(c => setOpacity(c, unmatchedOpacity)); -const unmatchedMarginalFeeColors = defaultMarginalFeeColors.map(c => setOpacity(c, unmatchedOpacity)); const unmatchedAuditColors = { censored: setOpacity(defaultAuditColors.censored, unmatchedOpacity), missing: setOpacity(defaultAuditColors.missing, unmatchedOpacity), @@ -57,6 +54,7 @@ export class BlockOverviewGraphComponent implements AfterViewInit, OnDestroy, On @Input() excludeFilters: string[] = []; @Input() filterFlags: bigint | null = null; @Input() filterMode: FilterMode = 'and'; + @Input() gradientMode: 'fee' | 'age' = 'fee'; @Input() relativeTime: number | null; @Input() blockConversion: Price; @Input() overrideColors: ((tx: TxView) => Color) | null = null; @@ -137,21 +135,22 @@ export class BlockOverviewGraphComponent implements AfterViewInit, OnDestroy, On this.setHighlightingEnabled(this.auditHighlighting); } if (changes.overrideColor && this.scene) { - this.scene.setColorFunction(this.overrideColors); + this.scene.setColorFunction(this.getFilterColorFunction(0n, this.gradientMode)); } - if ((changes.filterFlags || changes.showFilters || changes.filterMode)) { + if ((changes.filterFlags || changes.showFilters || changes.filterMode || changes.gradientMode)) { this.setFilterFlags(); } } setFilterFlags(goggle?: ActiveFilter): void { this.filterMode = goggle?.mode || this.filterMode; + this.gradientMode = goggle?.gradient || this.gradientMode; this.activeFilterFlags = goggle?.filters ? toFlags(goggle.filters) : this.filterFlags; if (this.scene) { if (this.activeFilterFlags != null && this.filtersAvailable) { - this.scene.setColorFunction(this.getFilterColorFunction(this.activeFilterFlags)); + this.scene.setColorFunction(this.getFilterColorFunction(this.activeFilterFlags, this.gradientMode)); } else { - this.scene.setColorFunction(this.overrideColors); + this.scene.setColorFunction(this.getFilterColorFunction(0n, this.gradientMode)); } } this.start(); @@ -229,6 +228,9 @@ export class BlockOverviewGraphComponent implements AfterViewInit, OnDestroy, On remove = remove.filter(txid => this.scene.txs[txid]); change = change.filter(tx => this.scene.txs[tx.txid]); + if (this.gradientMode === 'age') { + this.scene.updateAllColors(); + } this.scene.update(add, remove, change, direction, resetLayout); this.start(); this.updateSearchHighlight(); @@ -564,32 +566,27 @@ export class BlockOverviewGraphComponent implements AfterViewInit, OnDestroy, On } getColorFunction(): ((tx: TxView) => Color) { - if (this.filterFlags) { - return this.getFilterColorFunction(this.filterFlags); - } else if (this.activeFilterFlags) { - return this.getFilterColorFunction(this.activeFilterFlags); - } else { + if (this.overrideColors) { return this.overrideColors; + } else if (this.filterFlags) { + return this.getFilterColorFunction(this.filterFlags, this.gradientMode); + } else if (this.activeFilterFlags) { + return this.getFilterColorFunction(this.activeFilterFlags, this.gradientMode); + } else { + return this.getFilterColorFunction(0n, this.gradientMode); } } - getFilterColorFunction(flags: bigint): ((tx: TxView) => Color) { + getFilterColorFunction(flags: bigint, gradient: 'fee' | 'age'): ((tx: TxView) => Color) { return (tx: TxView) => { if ((this.filterMode === 'and' && (tx.bigintFlags & flags) === flags) || (this.filterMode === 'or' && (flags === 0n || (tx.bigintFlags & flags) > 0n))) { - return this.themeService.theme !== 'default' ? contrastColorFunction(tx) : defaultColorFunction(tx); + return defaultColorFunction(tx); } else { - return this.themeService.theme !== 'default' ? contrastColorFunction( + return defaultColorFunction( tx, - unmatchedContrastFeeColors, - unmatchedContrastAuditFeeColors, - unmatchedContrastMarginalFeeColors, - unmatchedContrastAuditColors - ) : defaultColorFunction( - tx, - unmatchedFeeColors, - unmatchedAuditFeeColors, - unmatchedMarginalFeeColors, - unmatchedAuditColors + defaultColors.unmatchedfee, + unmatchedAuditColors, + this.relativeTime || (Date.now() / 1000) ); } }; diff --git a/frontend/src/app/components/block-overview-graph/block-scene.ts b/frontend/src/app/components/block-overview-graph/block-scene.ts index 840a8b662..4651cea34 100644 --- a/frontend/src/app/components/block-overview-graph/block-scene.ts +++ b/frontend/src/app/components/block-overview-graph/block-scene.ts @@ -69,7 +69,7 @@ export default class BlockScene { } setColorFunction(colorFunction: ((tx: TxView) => Color) | null): void { - this.theme.theme !== 'default' ? this.getColor = colorFunction || contrastColorFunction : this.getColor = colorFunction || defaultColorFunction; + this.getColor = colorFunction || defaultColorFunction; this.dirty = true; if (this.initialised && this.scene) { this.updateColors(performance.now(), 50); diff --git a/frontend/src/app/components/block-overview-graph/utils.ts b/frontend/src/app/components/block-overview-graph/utils.ts index ba4415e1c..62fbe5e8e 100644 --- a/frontend/src/app/components/block-overview-graph/utils.ts +++ b/frontend/src/app/components/block-overview-graph/utils.ts @@ -37,8 +37,15 @@ export function setOpacity(color: Color, opacity: number): Color { }; } +interface ColorPalette { + base: Color[], + audit: Color[], + marginal: Color[], + baseLevel: (tx: TxView, rate: number, time: number) => number, +} + // precomputed colors -export const defaultFeeColors = defaultMempoolFeeColors.map(hexToColor); +export const defaultFeeColors = mempoolFeeColors.map(hexToColor); export const defaultAuditFeeColors = defaultFeeColors.map((color) => darken(desaturate(color, 0.3), 0.9)); export const defaultMarginalFeeColors = defaultFeeColors.map((color) => darken(desaturate(color, 0.8), 1.1)); export const defaultAuditColors = { @@ -62,22 +69,21 @@ export const contrastAuditColors = { export function defaultColorFunction( tx: TxView, - feeColors: Color[] = defaultFeeColors, - auditFeeColors: Color[] = defaultAuditFeeColors, - marginalFeeColors: Color[] = defaultMarginalFeeColors, - auditColors: { [status: string]: Color } = defaultAuditColors + colors: { base: Color[], audit: Color[], marginal: Color[], baseLevel: (tx: TxView, rate: number, time: number) => number } = defaultColors.fee, + auditColors: { [status: string]: Color } = defaultAuditColors, + relativeTime?: number, ): Color { const rate = tx.fee / tx.vsize; // color by simple single-tx fee rate const feeLevelIndex = feeLevels.findIndex((feeLvl) => Math.max(1, rate) < feeLvl) - 1; - const feeLevelColor = feeColors[feeLevelIndex] || feeColors[defaultMempoolFeeColors.length - 1]; + const feeLevelColor = feeColors[feeLevelIndex] || feeColors[mempoolFeeColors.length - 1]; // Normal mode if (!tx.scene?.highlightingEnabled) { if (tx.acc) { return auditColors.accelerated; } else { - return feeLevelColor; + return levelColor; } - return feeLevelColor; + return levelColor; } // Block audit switch(tx.status) { @@ -86,7 +92,7 @@ export function defaultColorFunction( case 'missing': case 'sigop': case 'rbf': - return marginalFeeColors[feeLevelIndex] || marginalFeeColors[defaultMempoolFeeColors.length - 1]; + return marginalFeeColors[feeLevelIndex] || marginalFeeColors[mempoolFeeColors.length - 1]; case 'fresh': case 'freshcpfp': return auditColors.missing; @@ -95,24 +101,45 @@ export function defaultColorFunction( case 'prioritized': return auditColors.prioritized; case 'selected': - return marginalFeeColors[feeLevelIndex] || marginalFeeColors[defaultMempoolFeeColors.length - 1]; + return marginalFeeColors[feeLevelIndex] || marginalFeeColors[mempoolFeeColors.length - 1]; case 'accelerated': return auditColors.accelerated; case 'found': if (tx.context === 'projected') { - return auditFeeColors[feeLevelIndex] || auditFeeColors[defaultMempoolFeeColors.length - 1]; + return auditFeeColors[feeLevelIndex] || auditFeeColors[mempoolFeeColors.length - 1]; } else { - return feeLevelColor; + return levelColor; } default: if (tx.acc) { return auditColors.accelerated; } else { - return feeLevelColor; + return levelColor; } } } +export function ageColorFunction( + tx: TxView, + colors: { base: Color[], audit: Color[], marginal: Color[], baseLevel: (tx: TxView, rate: number, time: number) => number } = defaultColors.fee, + auditColors: { [status: string]: Color } = defaultAuditColors, + relativeTime?: number, +): Color { + if (tx.acc || tx.status === 'accelerated') { + return auditColors.accelerated; + } + + const color = defaultColorFunction(tx, colors, auditColors, relativeTime); + + const ageLevel = (!tx.time ? 0 : (0.8 * Math.tanh((1 / 15) * Math.log2((Math.max(1, 0.6 * ((relativeTime - tx.time) - 60))))))); + return { + r: color.r, + g: color.g, + b: color.b, + a: color.a * (1 - ageLevel) + }; +} + export function contrastColorFunction( tx: TxView, feeColors: Color[] = contrastFeeColors, diff --git a/frontend/src/app/components/block/block-preview.component.html b/frontend/src/app/components/block/block-preview.component.html index 02fe62774..2bb749e80 100644 --- a/frontend/src/app/components/block/block-preview.component.html +++ b/frontend/src/app/components/block/block-preview.component.html @@ -53,13 +53,13 @@
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 ec7e7250f..3bec556fd 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: var(--bg); } +: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 91422d2d4..f7862d120 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: 'var(--tooltip-grey)', @@ -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..a42975016 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 4ffae4dc4..1b3eef543 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 f396ba6ae..1660e7310 100644 --- a/frontend/src/app/dashboard/dashboard.component.ts +++ b/frontend/src/app/dashboard/dashboard.component.ts @@ -7,7 +7,7 @@ import { ApiService } from '../services/api.service'; import { StateService } from '../services/state.service'; import { WebsocketService } from '../services/websocket.service'; import { SeoService } from '../services/seo.service'; -import { ActiveFilter, FilterMode, toFlags } from '../shared/filters.utils'; +import { ActiveFilter, FilterMode, GradientMode, toFlags } from '../shared/filters.utils'; import { detectWebGL } from '../shared/graphs.utils'; interface MempoolBlocksData { @@ -74,14 +74,15 @@ export class DashboardComponent implements OnInit, OnDestroy, AfterViewInit { private lastReservesBlockUpdate: number = 0; goggleResolution = 82; - goggleCycle: { index: number, name: string, mode: FilterMode, filters: string[] }[] = [ - { index: 0, name: 'All', mode: 'and', filters: [] }, - { index: 1, name: 'Consolidation', mode: 'and', filters: ['consolidation'] }, - { index: 2, name: 'Coinjoin', mode: 'and', filters: ['coinjoin'] }, - { index: 3, name: 'Data', mode: 'or', filters: ['inscription', 'fake_pubkey', 'op_return'] }, + goggleCycle: { index: number, name: string, mode: FilterMode, filters: string[], gradient: GradientMode }[] = [ + { 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 = 'age'; goggleIndex = 0; private destroy$ = new Subject(); @@ -131,6 +132,7 @@ export class DashboardComponent implements OnInit, OnDestroy, AfterViewInit { this.goggleIndex = goggle.index; this.goggleFlags = toFlags(goggle.filters); this.goggleMode = goggle.mode; + this.gradientMode = active.gradient; return; } } @@ -140,6 +142,7 @@ export class DashboardComponent implements OnInit, OnDestroy, AfterViewInit { name: 'Custom', mode: active.mode, filters: active.filters, + gradient: active.gradient, }); this.goggleIndex = this.goggleCycle.length - 1; this.goggleFlags = toFlags(active.filters); 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 12caf9f53..6d99d278a 100644 --- a/frontend/src/app/services/state.service.ts +++ b/frontend/src/app/services/state.service.ts @@ -86,6 +86,7 @@ const defaultEnv: Env = { providedIn: 'root' }) export class StateService { + ref: string = ''; isBrowser: boolean = isPlatformBrowser(this.platformId); isMempoolSpaceBuild = window['isMempoolSpaceBuild'] ?? false; backend: 'esplora' | 'electrum' | 'none' = 'esplora'; @@ -154,7 +155,7 @@ export class StateService { searchFocus$: Subject = new Subject(); menuOpen$: BehaviorSubject = new BehaviorSubject(false); - activeGoggles$: BehaviorSubject = new BehaviorSubject({ mode: 'and', filters: [] }); + activeGoggles$: BehaviorSubject = new BehaviorSubject({ mode: 'and', filters: [], gradient: 'age' }); constructor( @Inject(PLATFORM_ID) private platformId: any, @@ -162,6 +163,8 @@ export class StateService { private router: Router, private storageService: StorageService, ) { + this.ref = window.document.referrer; + const browserWindow = window || {}; // @ts-ignore const browserWindowEnv = browserWindow.__env || {}; diff --git a/frontend/src/app/shared/filters.utils.ts b/frontend/src/app/shared/filters.utils.ts index ab99e00ce..5ba3724ff 100644 --- a/frontend/src/app/shared/filters.utils.ts +++ b/frontend/src/app/shared/filters.utils.ts @@ -11,9 +11,12 @@ export interface Filter { export type FilterMode = 'and' | 'or'; +export type GradientMode = 'fee' | 'age'; + export interface ActiveFilter { mode: FilterMode, filters: string[], + gradient: GradientMode, } // binary flags for transaction classification @@ -93,15 +96,15 @@ export const TransactionFilters: { [key: string]: Filter } = { cpfp_parent: { key: 'cpfp_parent', label: 'Paid for by child', flag: TransactionFlags.cpfp_parent, important: true, tooltip: true, txPage: false, }, cpfp_child: { key: 'cpfp_child', label: 'Pays for parent', flag: TransactionFlags.cpfp_child, important: true, tooltip: true, txPage: false, }, replacement: { key: 'replacement', label: 'Replacement', flag: TransactionFlags.replacement, important: true, tooltip: true, txPage: false, }, - acceleration: window?.['__env']?.ACCELERATOR ? { key: 'acceleration', label: 'Accelerated', flag: TransactionFlags.acceleration, important: false } : undefined, + acceleration: window?.['__env']?.ACCELERATOR ? { key: 'acceleration', label: $localize`:@@b484583f0ce10f3341ab36750d05271d9d22c9a1:Accelerated`, flag: TransactionFlags.acceleration, important: false } : undefined, /* data */ op_return: { key: 'op_return', label: 'OP_RETURN', flag: TransactionFlags.op_return, important: true, tooltip: true, txPage: true, }, fake_pubkey: { key: 'fake_pubkey', label: 'Fake pubkey', flag: TransactionFlags.fake_pubkey, tooltip: true, txPage: true, }, inscription: { key: 'inscription', label: 'Inscription', flag: TransactionFlags.inscription, important: true, tooltip: true, txPage: true, }, fake_scripthash: { key: 'fake_scripthash', label: 'Fake scripthash', flag: TransactionFlags.fake_scripthash, tooltip: true, txPage: true,}, /* heuristics */ - coinjoin: { key: 'coinjoin', label: 'Coinjoin', flag: TransactionFlags.coinjoin, important: true, tooltip: true, txPage: true, }, - consolidation: { key: 'consolidation', label: 'Consolidation', flag: TransactionFlags.consolidation, tooltip: true, txPage: true, }, + coinjoin: { key: 'coinjoin', label: $localize`Coinjoin`, flag: TransactionFlags.coinjoin, important: true, tooltip: true, txPage: true, }, + consolidation: { key: 'consolidation', label: $localize`Consolidation`, flag: TransactionFlags.consolidation, tooltip: true, txPage: true, }, batch_payout: { key: 'batch_payout', label: 'Batch payment', flag: TransactionFlags.batch_payout, tooltip: true, txPage: true, }, /* sighash */ sighash_all: { key: 'sighash_all', label: 'sighash_all', flag: TransactionFlags.sighash_all }, @@ -112,10 +115,10 @@ export const TransactionFilters: { [key: string]: Filter } = { }; export const FilterGroups: { label: string, filters: Filter[]}[] = [ - { label: 'Features', filters: ['rbf', 'no_rbf', 'v1', 'v2', 'v3', 'nonstandard'] }, - { label: 'Address Types', filters: ['p2pk', 'p2ms', 'p2pkh', 'p2sh', 'p2wpkh', 'p2wsh', 'p2tr'] }, - { label: 'Behavior', filters: ['cpfp_parent', 'cpfp_child', 'replacement', 'acceleration'] }, - { label: 'Data', filters: ['op_return', 'fake_pubkey', 'fake_scripthash', 'inscription'] }, - { label: 'Heuristics', filters: ['coinjoin', 'consolidation', 'batch_payout'] }, - { label: 'Sighash Flags', filters: ['sighash_all', 'sighash_none', 'sighash_single', 'sighash_default', 'sighash_acp'] }, + { label: $localize`:@@885666551418fd59011ceb09d5c481095940193b:Features`, filters: ['rbf', 'no_rbf', 'v1', 'v2', 'v3', 'nonstandard'] }, + { label: $localize`Address Types`, filters: ['p2pk', 'p2ms', 'p2pkh', 'p2sh', 'p2wpkh', 'p2wsh', 'p2tr'] }, + { label: $localize`Behavior`, filters: ['cpfp_parent', 'cpfp_child', 'replacement', 'acceleration'] }, + { label: $localize`Data`, filters: ['op_return', 'fake_pubkey', 'fake_scripthash', 'inscription'] }, + { label: $localize`Heuristics`, filters: ['coinjoin', 'consolidation', 'batch_payout'] }, + { label: $localize`Sighash Flags`, filters: ['sighash_all', 'sighash_none', 'sighash_single', 'sighash_default', 'sighash_acp'] }, ].map(group => ({ label: group.label, filters: group.filters.map(filter => TransactionFilters[filter] || null).filter(f => f != null) })); \ No newline at end of file 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..198e1403e 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -266,6 +266,7 @@ Become a Community Sponsor + Stát se Community sponzorem src/app/components/about/about-sponsors.component.html 4 @@ -274,6 +275,7 @@ Become an Enterprise Sponsor + Stát se Enterprise sponzorem src/app/components/about/about-sponsors.component.html 11 @@ -397,7 +399,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -445,40 +447,118 @@ 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 + Vaše transakce + + 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 +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 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 +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 @@ -716,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 @@ -731,11 +944,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -807,7 +1020,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -883,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 » Zobrazit více » @@ -932,7 +1137,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1170,7 +1375,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1207,6 +1412,7 @@ of transactions + z transakcí src/app/components/address/address.component.html 70 @@ -1460,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 @@ -1488,6 +1698,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1671,7 +1885,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,10 +1896,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 +2150,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2179,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1978,28 +2237,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 +2263,6 @@ transaction.audit-status - - Match - Shoda - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2139,6 +2367,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2234,7 +2466,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2453,23 +2685,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 +2759,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 +3027,7 @@ transaction + transakce src/app/components/block/block.component.html 331 @@ -2820,6 +3044,7 @@ transactions + transakcí src/app/components/block/block.component.html 332 @@ -2893,7 +3118,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3147,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,11 +3239,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3089,7 +3314,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3107,7 +3332,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3473,13 +3698,14 @@ Incoming Transactions + Příchozí Transakce src/app/components/footer/footer.component.html 5 src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3705,11 +3931,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3785,7 +4011,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 +4028,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 +4045,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3824,7 +4058,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3837,7 +4071,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3854,7 +4088,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4209,7 +4443,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 +4460,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 +4522,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 +4548,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4548,23 +4766,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 +4974,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4778,18 +4999,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 +5083,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4902,7 +5123,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5197,6 +5418,7 @@ See mempool size (in MvB) and transactions per second (in vB/s) visualized over time. + Zobrazit velikost mempoolu (v MvB) a transakce za vteřinu (v vB/s) visualizované v čase. src/app/components/statistics/statistics.component.ts 67 @@ -5532,6 +5754,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5638,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 Typ @@ -6194,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 @@ -6214,7 +6419,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6222,15 +6427,16 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee Recent Transactions + Nedávné Transakce src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6238,11 +6444,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 +6456,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 +6468,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 +6481,7 @@ Minimální poplatek src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6285,7 +6491,7 @@ Čištění src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6295,7 +6501,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 +6513,40 @@ lightning.indexing-in-progress + + Consolidation + Konsolidace + + 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 +8624,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 6e3a960f5..5c6a56d9a 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -295,7 +295,7 @@ Our mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, completely self-hosted without any trusted third-parties. - Unser Mempool- und Blockchain-Explorer für die Bitcoin-Community, der sich auf den Markt für Transaktionsgebühren und das mehrschichtige Ökosystem konzentriert und vollständig selbst gehostet wird, ohne vertrauenswürdige Drittanbieter. + Unser Mempool- und Blockchain-Explorer für die Bitcoin-Community, der sich auf den Markt für Transaktionsgebühren und das mehrschichtige Ökosystem konzentriert und vollständig selbst gehostet wird, ohne vertrauten Drittanbieter. src/app/components/about/about.component.html 14 @@ -404,12 +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. - Mehr über das Mempool Open Source Project® erfahren: Unternehmenssponsoren, Einzelsponsoren, Integrationen, wer beiträgt, FOSS-Lizenzierung und mehr. + Mehr über das Mempool Open Source Project® erfahren: Unternehmenssponsoren, Einzelsponsoren, Integrationen, Beitragende, FOSS-Lizenzierung und mehr. src/app/components/about/about.component.ts 50 @@ -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 bist, 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,8 +676,133 @@ 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 src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.html 6 @@ -590,6 +815,7 @@ No accelerated transaction for this timeframe + Für diesen Zeitraum gibt es keine beschleunigte Transaktion src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 121 @@ -597,6 +823,7 @@ At block: + Im Block: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 165 @@ -616,6 +843,7 @@ Around block: + Um den Block herum: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 167 @@ -635,6 +863,7 @@ Requests + Anfragen src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 4 @@ -655,6 +884,7 @@ accelerated + beschleunigt src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 7 @@ -663,6 +893,7 @@ Total Bid Boost + Gesamtgebotserhöhung 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 + Erfolgsrate src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 20 @@ -712,6 +945,7 @@ mined + gemined src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 23 @@ -720,11 +954,16 @@ Accelerations + Beschleunigungen 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 + Gebührensatz src/app/components/acceleration/accelerations-list/accelerations-list.component.html 12 @@ -758,6 +998,7 @@ Acceleration Bid + Beschleunigungsgebot src/app/components/acceleration/accelerations-list/accelerations-list.component.html 13 @@ -767,6 +1008,7 @@ Requested + Angefordert src/app/components/acceleration/accelerations-list/accelerations-list.component.html 14 @@ -779,6 +1021,7 @@ Bid Boost + Gebotserhöhung src/app/components/acceleration/accelerations-list/accelerations-list.component.html 17 @@ -816,7 +1059,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -827,6 +1070,7 @@ Pending + Ausstehend src/app/components/acceleration/accelerations-list/accelerations-list.component.html 53 @@ -835,6 +1079,7 @@ Completed 🔄 + Abgeschlossen 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 54,55 @@ -842,6 +1087,7 @@ Failed 🔄 + Fehlgeschlagen 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 55,56 @@ -850,6 +1096,7 @@ There are no active accelerations + Es gibt keine aktiven Beschleunigungen src/app/components/acceleration/accelerations-list/accelerations-list.component.html 96 @@ -858,6 +1105,7 @@ There are no recent accelerations + Es gibt keine aktuellen Beschleunigungen src/app/components/acceleration/accelerations-list/accelerations-list.component.html 97 @@ -866,6 +1114,7 @@ Active Accelerations + Aktive Beschleunigungen src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 10 @@ -878,6 +1127,7 @@ Acceleration stats + Beschleunigungsstatistiken src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 24 @@ -886,20 +1136,13 @@ (3 months) + (3 Monate) 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 » Mehr anzeigen » @@ -927,6 +1170,7 @@ Recent Accelerations + Aktuelle Beschleunigungen src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 86 @@ -935,17 +1179,19 @@ Accelerator Dashboard + 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 + ausstehend src/app/components/acceleration/pending-stats/pending-stats.component.html 7 @@ -954,6 +1200,7 @@ Avg Max Bid + Ø Max.-Gebot src/app/components/acceleration/pending-stats/pending-stats.component.html 11 @@ -966,6 +1213,7 @@ Total Vsize + Gesamt-V-Größe src/app/components/acceleration/pending-stats/pending-stats.component.html 20 @@ -978,6 +1226,7 @@ of next block + des nächsten Blocks src/app/components/acceleration/pending-stats/pending-stats.component.html 23 @@ -986,6 +1235,7 @@ Balance History + Kontostandverlauf src/app/components/address-graph/address-graph.component.html 6 @@ -994,6 +1244,7 @@ Balance:Balance + Guthaben: Guthaben src/app/components/address-graph/address-graph.component.ts 162 @@ -1001,6 +1252,7 @@ Balances + Guthaben src/app/components/address-group/address-group.component.html 4 @@ -1009,6 +1261,7 @@ Total + Gesamt src/app/components/address-group/address-group.component.html 9 @@ -1179,7 +1432,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1197,6 +1450,7 @@ See mempool transactions, confirmed transactions, balance, and more for address . + Zeige Mempool-Transaktionen, bestätigte Transaktionen, Saldo und mehr für Adresse . src/app/components/address/address-preview.component.ts 72 @@ -1208,6 +1462,7 @@ of transaction + der Transaktion src/app/components/address/address.component.html 69 @@ -1216,6 +1471,7 @@ of transactions + von -Transaktionen src/app/components/address/address.component.html 70 @@ -1237,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: + Es gibt viele Transaktionen auf diese Adresse, mehr als dein Backend verarbeiten kann. Weitere Informationen findest du unter Einrichten eines stärkeren Backends. Oder verwende für diese Addresse die offiziellen Mempool-Website: src/app/components/address/address.component.html 143,146 @@ -1408,6 +1665,7 @@ Browse an overview of the Liquid asset (): see issued amount, burned amount, circulating amount, related transactions, and more. + Durchsuche eine Übersicht über das Liquid Asset (): Sieh den ausgegebenen Betrag, den verbrannten Betrag, den Umlaufbetrag, zugehörige Transaktionen usw. an. src/app/components/asset/asset.component.ts 108 @@ -1427,6 +1685,7 @@ No featured assets + Keine vorgestellten Assets src/app/components/assets/assets-featured/assets-featured.component.html 3 @@ -1464,11 +1723,15 @@ All - Alle + Alles 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 +1760,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1591,6 +1858,7 @@ Avg Block Fee (24h) + Durchschnittliche Blockgebühr (24h) src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 51 @@ -1603,6 +1871,7 @@ Avg Block Fee (1m) + Durchschnittliche Blockgebühr (1m) src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 57 @@ -1623,6 +1892,7 @@ Block Fees + Blockgebühren src/app/components/block-fees-graph/block-fees-graph.component.html 6 @@ -1679,11 +1949,12 @@ select filter categories to highlight matching transactions + Wähle Filterkategorien aus, um passende Transaktionen hervorzuheben src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1694,10 +1965,59 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Übereinstimmung + + 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 + Beliebig + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + Farbton + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + Klassisch + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + Alter + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health Blockzustand @@ -1786,6 +2106,7 @@ Your browser does not support this feature. + Der Browser unterstützt diese Funktion nicht. src/app/components/block-overview-graph/block-overview-graph.component.html 21 @@ -1906,7 +2227,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1935,7 +2256,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1994,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 @@ -2043,15 +2342,6 @@ transaction.audit-status - - Match - Übereinstimmung - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed Entfernt @@ -2108,6 +2398,7 @@ Added + Hinzugefügt src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -2121,6 +2412,7 @@ Prioritized + Priorisiert src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 77 @@ -2134,6 +2426,7 @@ Conflict + Konflikt src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -2160,6 +2453,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2257,7 +2554,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2479,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 @@ -2571,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 @@ -2719,7 +3007,7 @@ Merkle root - Merkle root + Merkle Root src/app/components/block/block.component.html 281 @@ -2831,6 +3119,7 @@ transaction + Transaktion src/app/components/block/block.component.html 331 @@ -2847,6 +3136,7 @@ transactions + Transaktionen src/app/components/block/block.component.html 332 @@ -2897,6 +3187,7 @@ Acceleration fees paid out-of-band + Beschleunigungsgebühren out-of-band gezahlt src/app/components/block/block.component.html 433 @@ -2920,7 +3211,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2949,7 +3240,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3041,11 +3332,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3120,7 +3411,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3138,7 +3429,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3373,6 +3664,7 @@ Halving Countdown + Halving-Countdown src/app/components/difficulty/difficulty.component.html 2 @@ -3381,6 +3673,7 @@ difficulty + Schwierigkeit src/app/components/difficulty/difficulty.component.html 7 @@ -3389,6 +3682,7 @@ halving + Halving src/app/components/difficulty/difficulty.component.html 10 @@ -3406,6 +3700,7 @@ New subsidy + Neue Subvention src/app/components/difficulty/difficulty.component.html 103 @@ -3414,6 +3709,7 @@ Blocks remaining + Verbleibende Blöcke src/app/components/difficulty/difficulty.component.html 111 @@ -3422,6 +3718,7 @@ Block remaining + Verbleibender Block src/app/components/difficulty/difficulty.component.html 112 @@ -3430,7 +3727,7 @@ Either 2x the minimum, or the Low Priority rate (whichever is lower) - Entweder das 2-fache des Minimums oder die niedrige Prioritätsrate (je nachdem, welcher Wert niedriger ist) + Entweder das doppelte des Minimums oder die niedrige Prioritätsrate (je nachdem, welcher Wert niedriger ist) src/app/components/fees-box/fees-box.component.html 4 @@ -3512,7 +3809,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3566,7 +3863,7 @@ Pools Ranking - Pool-Ranking + Pool-Rangliste src/app/components/graphs/graphs.component.html 10 @@ -3739,11 +4036,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3790,6 +4087,7 @@ See Bitcoin mining pool dominance visualized over time: see how top mining pools' share of total hashrate has fluctuated over time. + Sieh die Dominanz der Bitcoin-Mining-Pools im Zeitverlauf an: Sieh , wie sich der Anteil der Top-Mining-Pools an der Gesamt-Hashrate im Laufe der Zeit verändert hat. src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts 75 @@ -3820,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 @@ -3833,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 @@ -3846,7 +4152,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3859,7 +4165,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3872,7 +4178,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3889,7 +4195,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -3899,6 +4205,7 @@ Non-Dust Expired + Non-Dust abgelaufen src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 3 @@ -3907,6 +4214,7 @@ Total amount of BTC held in non-dust Federation UTXOs that have expired timelocks + Gesamtmenge an BTC, die in Nicht-Dust-Federation-UTXOs gehalten wird, deren Zeitsperre abgelaufen ist src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 5 @@ -3915,6 +4223,7 @@ UTXOs + UTXOs src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 6 @@ -3931,6 +4240,7 @@ Total Expired + Gesamt abgelaufen src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 12 @@ -3939,6 +4249,7 @@ Total amount of BTC held in Federation UTXOs that have expired timelocks + Gesamtmenge an BTC, die in Föderations-UTXOs gehalten werden, deren Zeitsperre abgelaufen ist src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 15 @@ -3947,6 +4258,7 @@ Liquid Federation Wallet + Liquid Federation Wallet src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 5 @@ -3967,6 +4279,7 @@ addresses + Adressen src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 8 @@ -3992,6 +4305,7 @@ Related Peg-In + Zugehörige Peg-In src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 11 @@ -4017,6 +4331,7 @@ Expires in + Läuft ab in src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 13 @@ -4025,6 +4340,7 @@ Expired since + Abgelaufen seit src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 14 @@ -4033,6 +4349,7 @@ Dust + Dust src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 15 @@ -4041,6 +4358,7 @@ Change output + Change-Output src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 55 @@ -4049,6 +4367,7 @@ blocks + Blöcke src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 63 @@ -4057,6 +4376,7 @@ Timelock-Expired UTXOs + UTXOs mit abgelaufener Zeitsperre src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.html 12 @@ -4090,6 +4410,7 @@ Recent Peg-In / Out's + Aktuelle Peg-Ins/Outs src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 4 @@ -4110,6 +4431,7 @@ Fund / Redemption Tx + Fund / Redemption Tx src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 15 @@ -4118,6 +4440,7 @@ BTC Address + BTC-Adresse src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -4126,6 +4449,7 @@ Peg out in progress... + Peg-Out läuft... src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 70 @@ -4134,6 +4458,7 @@ 24h Peg-In Volume + 24h Peg-In Volumen src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 12 @@ -4142,6 +4467,7 @@ Peg-Ins + Peg-Ins src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 13 @@ -4150,6 +4476,7 @@ 24h Peg-Out Volume + 24-Stunden-Peg-Out-Volumen src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 18 @@ -4158,6 +4485,7 @@ Peg-Outs + Peg-Outs src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 19 @@ -4166,6 +4494,7 @@ Unpeg + Unpeg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 3 @@ -4174,6 +4503,7 @@ Unpeg Event + Unpeg Event src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 7 @@ -4182,6 +4512,7 @@ Avg Peg Ratio + Ø PEG-Ratio src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 14 @@ -4190,6 +4521,7 @@ Emergency Keys + Notschlüssel src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 28 @@ -4198,6 +4530,7 @@ usage + Verwendung src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 31 @@ -4206,6 +4539,7 @@ Assets vs Liabilities + Vermögenswerte vs. Verbindlichkeiten src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts 162 @@ -4222,6 +4556,7 @@ As of block + Stand Block src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 7 @@ -4234,6 +4569,7 @@ BTC Holdings + BTC-Bestände src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 12 @@ -4242,9 +4578,10 @@ Mining Dashboard + Mining-Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4261,7 +4598,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 +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 @@ -4369,7 +4689,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4388,7 +4708,7 @@ Get real-time Bitcoin mining stats like hashrate, difficulty adjustment, block rewards, pool dominance, and more. - Erhalten Sie Bitcoin-Mining-Statistiken in Echtzeit wie Hashrate, Schwierigkeitsanpassung, Blockbelohnungen, Pool-Dominanz und mehr. + Erhalte Bitcoin-Mining-Statistiken in Echtzeit wie Hashrate, Schwierigkeitsanpassung, Blockbelohnungen, Pool-Dominanz und mehr. src/app/components/mining-dashboard/mining-dashboard.component.ts 29 @@ -4405,7 +4725,7 @@ Pools Luck - Pools Glück + Poolglück src/app/components/pool-ranking/pool-ranking.component.html 9 @@ -4573,7 +4893,7 @@ See the top Bitcoin mining pools ranked by number of blocks mined, over your desired timeframe. - Zeige die Top-Bitcoin-Mining-Pools an, sortiert nach der Anzahl der im gewünschten Zeitraum abgebauten Blöcke. + Zeige die Top-Bitcoin-Mining-Pools an, sortiert nach der Anzahl der im gewünschten Zeitraum geschürften Blöcke. src/app/components/pool-ranking/pool-ranking.component.ts 60 @@ -4592,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 @@ -4764,6 +5088,7 @@ Out-of-band Fees (1w) + Out-of-Band-Gebühren (1 W) src/app/components/pool/pool.component.html 143 @@ -4772,6 +5097,7 @@ 1m + 1m src/app/components/pool/pool.component.html 144 @@ -4799,11 +5125,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4822,20 +5148,22 @@ Not enough data yet + Noch nicht genügend Daten src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance + Pool-Dominanz src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4859,7 +5187,7 @@ Transaction hex - Transaktion hex + Transaktion in Hex src/app/components/push-transaction/push-transaction.component.html 6 @@ -4912,7 +5240,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4954,7 +5282,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -4978,6 +5306,7 @@ remaining + übrig src/app/components/rbf-timeline/rbf-timeline.component.html 86 @@ -5097,6 +5426,7 @@ Block Height + Blockhöhe src/app/components/search-form/search-results/search-results.component.html 3 @@ -5105,6 +5435,7 @@ Transaction + Transaktion src/app/components/search-form/search-results/search-results.component.html 21 @@ -5113,6 +5444,7 @@ Address + Adresse src/app/components/search-form/search-results/search-results.component.html 27 @@ -5121,6 +5453,7 @@ Block + Block src/app/components/search-form/search-results/search-results.component.html 33 @@ -5129,6 +5462,7 @@ Other Network Address + Andere Netzwerkadresse src/app/components/search-form/search-results/search-results.component.html 39 @@ -5137,6 +5471,7 @@ Addresses + Adressen src/app/components/search-form/search-results/search-results.component.html 47 @@ -5163,6 +5498,7 @@ Liquid Asset + Liquid Asset src/app/components/search-form/search-results/search-results.component.html 71 @@ -5267,6 +5603,7 @@ Immediately + Sofort src/app/components/time/time.component.ts 90 @@ -5462,6 +5799,7 @@ before + vorher src/app/components/time/time.component.ts 214 @@ -5554,6 +5892,7 @@ Get real-time status, addresses, fees, script info, and more for transaction with txid . + Erhalte Status, Adressen, Gebühren, Skriptinformationen und mehr in Echtzeit für -Transaktionen mit der Txid . src/app/components/transaction/transaction-preview.component.ts 93 @@ -5575,7 +5914,7 @@ Features - Features + Merkmale src/app/components/transaction/transaction.component.html 68 @@ -5588,11 +5927,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 + Diese Transaktion sollte in den Block aufgenommen werden src/app/components/transaction/transaction.component.html 78 @@ -5601,6 +5945,7 @@ Expected in Block + Erwartet im Block src/app/components/transaction/transaction.component.html 78 @@ -5610,6 +5955,7 @@ This transaction was seen in the mempool prior to mining + Diese Transaktion wurde vor dem Mining im Mempool gesehen src/app/components/transaction/transaction.component.html 79 @@ -5618,6 +5964,7 @@ Seen in Mempool + Gesehen im Mempool src/app/components/transaction/transaction.component.html 79 @@ -5627,6 +5974,7 @@ This transaction was missing from our mempool prior to mining + Diese Transaktion fehlte vor dem Mining in unserem Mempool src/app/components/transaction/transaction.component.html 80 @@ -5635,6 +5983,7 @@ Not seen in Mempool + Nicht im Mempool gesehen src/app/components/transaction/transaction.component.html 80 @@ -5644,6 +5993,7 @@ This transaction may have been added out-of-band + Diese Transaktion wurde möglicherweise out-of-band hinzugefügt src/app/components/transaction/transaction.component.html 81 @@ -5652,6 +6002,7 @@ This transaction may have been prioritized out-of-band + Diese Transaktion wurde möglicherweise out-of-band priorisiert src/app/components/transaction/transaction.component.html 82 @@ -5660,6 +6011,7 @@ This transaction conflicted with another version in our mempool + Diese Transaktion stand im Konflikt mit einer anderen Version in unserem Mempool src/app/components/transaction/transaction.component.html 83 @@ -5668,6 +6020,7 @@ Hide accelerator + Accelerator ausblenden src/app/components/transaction/transaction.component.html 108 @@ -5694,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 @@ -5820,6 +6159,7 @@ Adjusted vsize + Angepasste vsize src/app/components/transaction/transaction.component.html 321 @@ -5838,6 +6178,7 @@ Sigops + Sigops src/app/components/transaction/transaction.component.html 347 @@ -5865,6 +6206,7 @@ Error loading transaction data. + Fehler beim Laden der Transaktionsdaten. src/app/components/transaction/transaction.component.html 521 @@ -6053,6 +6395,7 @@ 1 block earlier + 1 Block früher src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 123 @@ -6061,6 +6404,7 @@ 1 block later + 1 Block später src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 127 @@ -6069,6 +6413,7 @@ in the same block + im selben Block src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 131 @@ -6077,6 +6422,7 @@ blocks earlier + Blöcke früher src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 137 @@ -6085,6 +6431,7 @@ spent + ausgegeben src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 148 @@ -6093,6 +6440,7 @@ blocks later + Blöcke später src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 150 @@ -6253,20 +6601,12 @@ fees-box.transaction-fees - - 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 @@ -6275,7 +6615,7 @@ Vorherige Gebühr src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6284,7 +6624,7 @@ Neue Gebühr src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6293,43 +6633,46 @@ Kürzliche Transaktionen src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions Liquid Federation Holdings + Liquid Föderation Bestand src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings Federation Timelock-Expired UTXOs + Föderation UTXOs mit abgelaufenem 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 + 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 @@ -6338,7 +6681,7 @@ Mindestgebühr src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6348,7 +6691,7 @@ Streichung src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6358,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 @@ -6370,6 +6713,42 @@ lightning.indexing-in-progress + + Consolidation + Konsolidierung + + 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 + Daten + + 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 stellt lediglich Daten über das Bitcoin-Netzwerk bereit. Es kann Ihnen beim Abrufen von Geldern, bei Problemen mit der Wallet usw. nicht helfen.Bei solchen Anfragen müssen Sie Kontakt mit der Entität aufnehmen, die bei der Transaktion geholfen hat (Wallet-Software, Börsenunternehmen usw.). @@ -7164,7 +7543,7 @@ Med Base Fee - Media Basisgebühr + Median Basisgebühr src/app/lightning/channels-statistics/channels-statistics.component.html 87 @@ -7406,7 +7785,7 @@ Penalties - Strafen + Bestrafungen src/app/lightning/justice-list/justice-list.component.html 4 @@ -7442,7 +7821,7 @@ Liquidity Ranking - Liquiditäts Rangfolge + Liquiditäts Ranking src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 66 @@ -7463,7 +7842,7 @@ Connectivity Ranking - Verbindungs Rangfolge + Verbindungs Rangliste src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 80 @@ -7484,6 +7863,7 @@ Get stats on the Lightning network (aggregate capacity, connectivity, etc), Lightning nodes (channels, liquidity, etc) and Lightning channels (status, fees, etc). + Erhalte Statistiken zum Lightning-Netzwerk (Gesamtkapazität, Konnektivität usw.), zu Lightning-Nodes (Kanäle, Liquidität usw.) und zu Lightning-Kanälen (Status, Gebühren usw.). src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts 34 @@ -7720,7 +8100,7 @@ Compact lease - Compact_lease + Compact Lease src/app/lightning/node/node.component.html 234 @@ -7793,7 +8173,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. - Zeige die Kanäle von Nicht-Tor-Lightning-Netzwerkknoten visualisiert auf einer Weltkarte an. Bewegen Sie den Mauszeiger/tippen Sie auf Punkte auf der Karte, um Knotennamen und Details anzuzeigen. + Zeige die Kanäle von Nicht-Tor-Lightning-Netzwerkknoten visualisiert auf einer Weltkarte an. Bewege den Mauszeiger/tippe auf Punkte auf der Karte, um Knotennamen und Details anzuzeigen. src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 74 @@ -7818,7 +8198,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. - Zeige die Standorte von Nicht-Tor-Lightning-Netzwerkknoten visualisiert auf einer Weltkarte an. Bewegen Sie den Mauszeiger/tippen Sie auf Punkte auf der Karte, um Knotennamen und Details anzuzeigen. + Zeige die Standorte von Nicht-Tor-Lightning-Netzwerkknoten visualisiert auf einer Weltkarte an. Bewege den Mauszeiger/tippe auf Punkte auf der Karte, um Knotennamen und Details anzuzeigen. src/app/lightning/nodes-map/nodes-map.component.ts 52 @@ -7903,7 +8283,7 @@ nodes - nodes + Nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts 104 @@ -7966,7 +8346,7 @@ Explore all the Lightning nodes hosted in and see an overview of each node's capacity, number of open channels, and more. - Erkunde alle Lightning-Knoten, die in gehostet werden, und sehe einen Überblick über die Kapazität jedes Knotens, die Anzahl der offenen Kanäle und mehr an. + Erkunde alle Lightning-Knoten, die in gehostet werden, und sieh einen Überblick über die Kapazität jedes Knotens, die Anzahl der offenen Kanäle und mehr an. src/app/lightning/nodes-per-country/nodes-per-country.component.ts 44 @@ -7987,7 +8367,7 @@ How much liquidity is running on nodes advertising at least one clearnet IP address - Wie viel Liquidität auf Nodes liegt, die mindestens eine Klarnetz IP Adresse verbreiten + Wie viel Liquidität auf Nodes liegt, die mindestens eine Clearnet IP Adresse verbreiten src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 8 @@ -8049,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 + Durchsuche die Top 100 ISPs, die Lightning-Nodes hosten, zusammen mit Statistiken wie der Gesamtzahl der Knoten pro ISP, der gesamten BTC-Kapazität pro ISP und mehr src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts 54 @@ -8111,7 +8492,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. - Durchsuche alle Bitcoin Lightning-Knoten, die den [AS ] ISP verwenden, und sehe aggregierte Statistiken wie die Gesamtzahl der Knoten, die Gesamtkapazität und mehr für den ISP. + Durchsuche alle Bitcoin Lightning-Knoten, die den [AS ] ISP verwenden, und sieh aggregierte Statistiken wie die Gesamtzahl der Knoten, die Gesamtkapazität und mehr für den ISP. src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts 45 @@ -8208,6 +8589,7 @@ See the top Lightning network nodes ranked by liquidity, connectivity, and age. + Zeige die wichtigsten Lightning-Netzwerkknoten an, sortiert nach Liquidität, Konnektivität und Alter. src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts 23 @@ -8434,7 +8816,7 @@ Clock (Mined) - Uhr (Mined) + Uhr (Geschürft) src/app/shared/components/global-footer/global-footer.component.html 70 @@ -8482,6 +8864,7 @@ Third-party Licenses + Lizenzen von Drittanbietern src/app/shared/components/global-footer/global-footer.component.html 79 @@ -8498,6 +8881,38 @@ warning-testnet + + Address Types + Adresstypen + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + Verhalten + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + Heuristiken + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + Sighash-Flags + + src/app/shared/filters.utils.ts + 123 + + year Jahr diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index 08c2be6e7..1bd5df42c 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,119 @@ sat shared.sat + + maximum + máximo + + 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 + Tu transacción + + 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 +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,8 +671,126 @@ 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 + Tasas del 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 + Saldo disponible + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + Iniciar sesió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 + 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 @@ -597,6 +810,7 @@ At block: + En el bloque: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 165 @@ -635,6 +849,7 @@ Requests + Solicitudes src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 4 @@ -655,6 +870,7 @@ accelerated + acelerados src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 7 @@ -679,6 +895,7 @@ BTC + BTC src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 13 @@ -712,6 +929,7 @@ mined + minado src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 23 @@ -720,11 +938,16 @@ Accelerations + Aceleraciones 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 +962,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -767,6 +990,7 @@ Requested + Solicitado src/app/components/acceleration/accelerations-list/accelerations-list.component.html 14 @@ -816,7 +1040,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -827,6 +1051,7 @@ Pending + En espera src/app/components/acceleration/accelerations-list/accelerations-list.component.html 53 @@ -886,20 +1111,13 @@ (3 months) + (3 meses) 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 » Ver más » @@ -941,11 +1159,12 @@ src/app/components/master-page/master-page.component.html - 56 + 75 pending + en espera src/app/components/acceleration/pending-stats/pending-stats.component.html 7 @@ -966,6 +1185,7 @@ Total Vsize + Vsize Total src/app/components/acceleration/pending-stats/pending-stats.component.html 20 @@ -1001,6 +1221,7 @@ Balances + Saldos src/app/components/address-group/address-group.component.html 4 @@ -1009,6 +1230,7 @@ Total + Total src/app/components/address-group/address-group.component.html 9 @@ -1179,7 +1401,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1469,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 @@ -1497,6 +1723,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1683,7 +1913,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1694,10 +1924,57 @@ 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 + Cualquiera + + 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 + Edad + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health Salud del Bloque @@ -1786,6 +2063,7 @@ Your browser does not support this feature. + Tu explorador no soporta esta función src/app/components/block-overview-graph/block-overview-graph.component.html 21 @@ -1906,7 +2184,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1935,7 +2213,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1993,30 +2271,9 @@ 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 + Peso src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 63 @@ -2041,17 +2298,9 @@ transaction.audit-status - - Match - Coincide - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed + Eliminado src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 71 @@ -2103,6 +2352,7 @@ Added + Añadido src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -2116,6 +2366,7 @@ Prioritized + Priorizado src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 77 @@ -2129,6 +2380,7 @@ Conflict + Conflicto src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -2142,6 +2394,7 @@ Accelerated + Acelerado src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 80 @@ -2154,6 +2407,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2249,7 +2506,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2468,23 +2725,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 +2799,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 @@ -2819,6 +3067,7 @@ transaction + transacción src/app/components/block/block.component.html 331 @@ -2835,6 +3084,7 @@ transactions + transacciones src/app/components/block/block.component.html 332 @@ -2908,7 +3158,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2937,7 +3187,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3029,11 +3279,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3053,6 +3303,7 @@ Calculator + Calculadora src/app/components/calculator/calculator.component.html 3 @@ -3105,7 +3356,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3123,7 +3374,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3178,6 +3429,7 @@ blocks + bloques src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 @@ -3357,6 +3609,7 @@ Halving Countdown + Cuenta atrás hasta el halving src/app/components/difficulty/difficulty.component.html 2 @@ -3365,6 +3618,7 @@ difficulty + dificultad src/app/components/difficulty/difficulty.component.html 7 @@ -3373,6 +3627,7 @@ halving + halving src/app/components/difficulty/difficulty.component.html 10 @@ -3390,6 +3645,7 @@ New subsidy + Nuevo subsidio src/app/components/difficulty/difficulty.component.html 103 @@ -3398,6 +3654,7 @@ Blocks remaining + Bloques restantes src/app/components/difficulty/difficulty.component.html 111 @@ -3406,6 +3663,7 @@ Block remaining + Bloques restantes src/app/components/difficulty/difficulty.component.html 112 @@ -3496,7 +3754,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3521,6 +3779,7 @@ WU/s + WU/s src/app/components/footer/footer.component.html 14 @@ -3722,11 +3981,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3802,7 +4061,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 +4078,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 +4095,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3841,7 +4108,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3854,7 +4121,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3871,7 +4138,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -3881,6 +4148,7 @@ Non-Dust Expired + Non-dust caducado src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 3 @@ -3897,6 +4165,7 @@ UTXOs + UTXOs src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 6 @@ -3913,6 +4182,7 @@ Total Expired + Total caducado src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 12 @@ -3949,6 +4219,7 @@ addresses + direcciones src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 8 @@ -3999,6 +4270,7 @@ Expires in + Caduca en src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 13 @@ -4007,6 +4279,7 @@ Expired since + Caducado desde src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 14 @@ -4015,6 +4288,7 @@ Dust + Polvo src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 15 @@ -4023,6 +4297,7 @@ Change output + Cambiar output src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 55 @@ -4031,6 +4306,7 @@ blocks + bloques src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 63 @@ -4100,6 +4376,7 @@ BTC Address + Dirección BTC src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -4124,6 +4401,7 @@ Peg-Ins + Peg-Ins src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 13 @@ -4140,6 +4418,7 @@ Peg-Outs + Peg-Outs src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 19 @@ -4148,6 +4427,7 @@ Unpeg + Unpeg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 3 @@ -4172,6 +4452,8 @@ Emergency Keys + Llaves de emergencia + src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 28 @@ -4180,6 +4462,7 @@ usage + uso src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 31 @@ -4216,6 +4499,7 @@ BTC Holdings + BTC en propiedad src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 12 @@ -4224,9 +4508,10 @@ Mining Dashboard + Panel de minado src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4243,7 +4528,7 @@ Explorador Lightning src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4280,6 +4565,7 @@ Count + Cantidad src/app/components/mempool-graph/mempool-graph.component.ts 325 @@ -4305,22 +4591,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 +4618,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4383,6 +4653,7 @@ Pools Luck + Suerte de las pools src/app/components/pool-ranking/pool-ranking.component.html 9 @@ -4413,6 +4684,7 @@ Pools Count + Número de pools src/app/components/pool-ranking/pool-ranking.component.html 17 @@ -4567,23 +4839,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 @@ -4746,6 +5021,7 @@ 1m + 1m src/app/components/pool/pool.component.html 144 @@ -4773,11 +5049,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4796,20 +5072,22 @@ Not enough data yet + Todavía no hay suficientes datos src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance + Dominancia de la pool src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4846,6 +5124,7 @@ Broadcast Transaction + Emitir transacción src/app/components/push-transaction/push-transaction.component.ts 33 @@ -4860,6 +5139,7 @@ RBF Replacements + Reemplazos RBF src/app/components/rbf-list/rbf-list.component.html 2 @@ -4872,6 +5152,7 @@ Full RBF + RBF total src/app/components/rbf-list/rbf-list.component.html 24 @@ -4882,7 +5163,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4922,7 +5203,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5073,6 +5354,7 @@ Transaction + Transacción src/app/components/search-form/search-results/search-results.component.html 21 @@ -5081,6 +5363,7 @@ Address + Dirección src/app/components/search-form/search-results/search-results.component.html 27 @@ -5097,6 +5380,7 @@ Other Network Address + Dirección de otra red src/app/components/search-form/search-results/search-results.component.html 39 @@ -5131,6 +5415,7 @@ Liquid Asset + Activo Liquid src/app/components/search-form/search-results/search-results.component.html 71 @@ -5157,6 +5442,7 @@ Clock (Mempool) + Reloj (Mempool) src/app/components/statistics/statistics.component.html 17 @@ -5231,6 +5517,7 @@ Immediately + Inmmediatamente src/app/components/time/time.component.ts 90 @@ -5426,6 +5713,7 @@ before + antes src/app/components/time/time.component.ts 214 @@ -5552,6 +5840,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5565,6 +5857,7 @@ Expected in Block + Previsto en bloque src/app/components/transaction/transaction.component.html 78 @@ -5582,6 +5875,7 @@ Seen in Mempool + Visto en la Mempool src/app/components/transaction/transaction.component.html 79 @@ -5599,6 +5893,7 @@ Not seen in Mempool + No encontrado en la Mempool src/app/components/transaction/transaction.component.html 80 @@ -5632,6 +5927,7 @@ Hide accelerator + Ocultar acelerador src/app/components/transaction/transaction.component.html 108 @@ -5658,20 +5954,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 @@ -5711,6 +5993,7 @@ RBF History + Historial RBF src/app/components/transaction/transaction.component.html 241 @@ -5783,6 +6066,7 @@ Adjusted vsize + Vsize ajustado src/app/components/transaction/transaction.component.html 321 @@ -5801,6 +6085,7 @@ Sigops + Sigops src/app/components/transaction/transaction.component.html 347 @@ -5836,6 +6121,7 @@ Accelerated fee rate + Tasa de aceleración src/app/components/transaction/transaction.component.html 547 @@ -5919,7 +6205,7 @@ nSequence - nSecuencia + nSequence src/app/components/transactions-list/transactions-list.component.html 148 @@ -6015,6 +6301,7 @@ 1 block earlier + 1 bloque antes src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 123 @@ -6023,6 +6310,7 @@ 1 block later + 1 bloque más tarde src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 127 @@ -6031,6 +6319,7 @@ in the same block + en el mismo bloque src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 131 @@ -6039,6 +6328,7 @@ blocks earlier + bloques antes src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 137 @@ -6047,6 +6337,7 @@ spent + gastado src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 148 @@ -6055,6 +6346,7 @@ blocks later + bloques más tarde src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 150 @@ -6215,20 +6507,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 +6521,7 @@ Tasa anterior src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6246,7 +6530,7 @@ Nueva tasa src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6255,7 +6539,7 @@ Transacciones Recientes src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6263,11 +6547,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 +6559,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 +6571,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 +6584,7 @@ Tarifa mínima src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6310,7 +6594,7 @@ Purga src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6320,7 +6604,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 +6616,41 @@ 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 + Datos + + 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). @@ -6428,6 +6747,7 @@ FAQ + Preguntas frequentes src/app/docs/docs/docs.component.ts 46 @@ -6442,6 +6762,7 @@ REST API + REST API src/app/docs/docs/docs.component.ts 51 @@ -6463,6 +6784,7 @@ WebSocket API + WebSocket API src/app/docs/docs/docs.component.ts 59 @@ -6484,6 +6806,7 @@ Electrum RPC + Electrum RPC src/app/docs/docs/docs.component.ts 67 @@ -7305,6 +7628,7 @@ Connect + Contectar src/app/lightning/group/group.component.html 73 @@ -7355,6 +7679,7 @@ Penalties + Penalizaciones src/app/lightning/justice-list/justice-list.component.html 4 @@ -7601,6 +7926,7 @@ Decoded + Decodificado src/app/lightning/node/node.component.html 134 @@ -8179,6 +8505,7 @@ Replaced + Reemplazado src/app/shared/components/confirmations/confirmations.component.html 12 @@ -8198,6 +8525,7 @@ sat/WU + sat/WU src/app/shared/components/fee-rate/fee-rate.component.html 4 @@ -8314,6 +8642,7 @@ Mainnet Explorer + Explorador Mainnet src/app/shared/components/global-footer/global-footer.component.html 60 @@ -8322,6 +8651,7 @@ Testnet Explorer + Explorador Testnet src/app/shared/components/global-footer/global-footer.component.html 61 @@ -8330,6 +8660,7 @@ Signet Explorer + Explorador Signet src/app/shared/components/global-footer/global-footer.component.html 62 @@ -8346,6 +8677,7 @@ Liquid Explorer + Explorador Liquid src/app/shared/components/global-footer/global-footer.component.html 64 @@ -8354,6 +8686,7 @@ Tools + Herramientas src/app/shared/components/global-footer/global-footer.component.html 68 @@ -8424,6 +8757,37 @@ warning-testnet + + Address Types + Tipos de dirección + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + Comportamiento + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + 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..f1902ce34 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -404,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. + در مورد پروژه متن‌باز ممپول، حامیان سازمانی، حامیان شخصی، پیاده‌سازی‌ها، مشارکت کنندگان، مجوزهای آزاد بیشتر بدانید. src/app/components/about/about.component.ts 50 @@ -452,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 @@ -549,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 @@ -575,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 + کارمزد شتاب‌دهنده ممپول + + 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 + اگر تراکنش شما تا حدود ساتوشی بر بایت مجازی شتاب‌دهی شود + + 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 @@ -589,6 +815,7 @@ No accelerated transaction for this timeframe + هیچ تراکنشی در این بازه زمانی شتاب‌دهی نشده است src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 121 @@ -596,6 +823,7 @@ At block: + در بلاک: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 165 @@ -615,6 +843,7 @@ Around block: + حدودا در بلاک: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 167 @@ -634,6 +863,7 @@ Requests + درخواست‌ها src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 4 @@ -654,6 +884,7 @@ accelerated + شتاب‌دهی شده src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 7 @@ -662,6 +893,7 @@ Total Bid Boost + مجموع افزایش از پیشنهاد src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 11 @@ -678,6 +910,7 @@ BTC + BTC src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 13 @@ -699,6 +932,7 @@ Success Rate + نرخ موفقیت src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 20 @@ -711,6 +945,7 @@ mined + استخراج‌شده src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 23 @@ -723,7 +958,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 +977,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -815,7 +1054,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -891,14 +1130,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 +1171,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1178,7 +1409,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1468,6 +1699,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 +1731,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1679,7 +1918,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1690,10 +1929,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 +2185,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1930,7 +2214,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1988,28 +2272,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 +2299,6 @@ transaction.audit-status - - Match - همتا - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed حذف‌شده @@ -2153,6 +2406,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2248,7 +2505,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2467,23 +2724,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 +2798,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 +3155,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2936,7 +3184,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3028,11 +3276,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3104,7 +3352,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3122,7 +3370,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3496,7 +3744,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3722,11 +3970,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3802,7 +4050,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 +4067,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 +4084,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3841,7 +4097,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3854,7 +4110,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3871,7 +4127,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4226,7 +4482,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 +4499,7 @@ کاوشگر لایتنینگ src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4305,23 +4561,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 +4587,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4569,23 +4808,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 +5017,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4800,18 +5042,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 +5128,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4926,7 +5168,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5557,6 +5799,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5663,19 +5909,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 +6454,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 +6468,7 @@ کارمزد قبلی src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6252,7 +6477,7 @@ کارمزد جدید src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6261,7 +6486,7 @@ تراکنش‌های اخیر src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6269,11 +6494,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 +6506,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 +6518,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 +6531,7 @@ حداقل کارمزد src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6316,7 +6541,7 @@ آستانه حذف src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6326,7 +6551,7 @@ در حال فهرست‌سازی src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6338,6 +6563,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 +8700,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 0cd2b85d1..3afa3c41d 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -404,7 +404,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -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,8 +676,133 @@ 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 src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.html 6 @@ -590,6 +815,7 @@ No accelerated transaction for this timeframe + Aucune transaction accélérée pour cette période src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 121 @@ -597,6 +823,7 @@ At block: + Au bloc : src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 165 @@ -616,6 +843,7 @@ Around block: + Autour du bloc : src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 167 @@ -635,6 +863,7 @@ Requests + Demandes src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 4 @@ -655,6 +884,7 @@ accelerated + accélérée src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 7 @@ -663,6 +893,7 @@ Total Bid Boost + Augmentation totale des frais 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 + Taux de réussite src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 20 @@ -712,6 +945,7 @@ mined + miné src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 23 @@ -720,11 +954,16 @@ Accelerations + Accélérations 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 + Taux de frais src/app/components/acceleration/accelerations-list/accelerations-list.component.html 12 @@ -758,6 +998,7 @@ Acceleration Bid + Offre d'accélération src/app/components/acceleration/accelerations-list/accelerations-list.component.html 13 @@ -767,6 +1008,7 @@ Requested + Demandé src/app/components/acceleration/accelerations-list/accelerations-list.component.html 14 @@ -779,6 +1021,7 @@ Bid Boost + Augmentation des frais src/app/components/acceleration/accelerations-list/accelerations-list.component.html 17 @@ -816,7 +1059,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -827,6 +1070,7 @@ Pending + En attente src/app/components/acceleration/accelerations-list/accelerations-list.component.html 53 @@ -835,6 +1079,7 @@ Completed 🔄 + Terminé 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 54,55 @@ -842,6 +1087,7 @@ Failed 🔄 + Échec 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 55,56 @@ -850,6 +1096,7 @@ There are no active accelerations + Il n'y a pas d'accélérations actives src/app/components/acceleration/accelerations-list/accelerations-list.component.html 96 @@ -858,6 +1105,7 @@ There are no recent accelerations + Il n'y a pas d'accélérations récentes src/app/components/acceleration/accelerations-list/accelerations-list.component.html 97 @@ -866,6 +1114,7 @@ Active Accelerations + Accélérations actives src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 10 @@ -878,6 +1127,7 @@ Acceleration stats + Statistiques d'accélération src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 24 @@ -886,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 » @@ -927,6 +1170,7 @@ Recent Accelerations + Accélérations récentes src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 86 @@ -935,17 +1179,19 @@ Accelerator Dashboard + Tableau de bord de l'accélérateur src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts 47 src/app/components/master-page/master-page.component.html - 56 + 75 pending + en attente src/app/components/acceleration/pending-stats/pending-stats.component.html 7 @@ -954,6 +1200,7 @@ Avg Max Bid + Augmentation des frais moyens src/app/components/acceleration/pending-stats/pending-stats.component.html 11 @@ -966,6 +1213,7 @@ Total Vsize + Vsize total src/app/components/acceleration/pending-stats/pending-stats.component.html 20 @@ -978,6 +1226,7 @@ of next block + du prochain bloc src/app/components/acceleration/pending-stats/pending-stats.component.html 23 @@ -986,6 +1235,7 @@ Balance History + Historique du solde src/app/components/address-graph/address-graph.component.html 6 @@ -994,6 +1244,7 @@ Balance:Balance + Solde : Solde src/app/components/address-graph/address-graph.component.ts 162 @@ -1001,6 +1252,7 @@ Balances + Soldes src/app/components/address-group/address-group.component.html 4 @@ -1009,6 +1261,7 @@ Total + Total src/app/components/address-group/address-group.component.html 9 @@ -1179,7 +1432,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1197,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 @@ -1208,6 +1462,7 @@ of transaction + de transaction src/app/components/address/address.component.html 69 @@ -1216,6 +1471,7 @@ of transactions + des transactions src/app/components/address/address.component.html 70 @@ -1237,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 @@ -1408,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 @@ -1427,6 +1685,7 @@ No featured assets + Aucun actif mis en avant src/app/components/assets/assets-featured/assets-featured.component.html 3 @@ -1469,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 @@ -1497,6 +1760,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1591,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 @@ -1603,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 @@ -1623,6 +1892,7 @@ Block Fees + Frais de bloc src/app/components/block-fees-graph/block-fees-graph.component.html 6 @@ -1679,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 @@ -1694,10 +1965,59 @@ src/app/components/master-page/master-page.component.html - 57 + 76 beta + + Match + Correspond + + 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 + Quelconque + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + Teinte + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + Classique + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + Âge + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health Santé de bloc @@ -1786,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 @@ -1906,7 +2227,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1935,7 +2256,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1994,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 @@ -2043,15 +2342,6 @@ transaction.audit-status - - Match - Correspond - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed Supprimée @@ -2108,6 +2398,7 @@ Added + Ajoutée src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -2121,6 +2412,7 @@ Prioritized + Priorisée src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 77 @@ -2134,6 +2426,7 @@ Conflict + Conflit src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -2160,6 +2453,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2257,7 +2554,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2479,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 @@ -2571,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 @@ -2831,6 +3119,7 @@ transaction + transaction src/app/components/block/block.component.html 331 @@ -2847,6 +3136,7 @@ transactions + transactions src/app/components/block/block.component.html 332 @@ -2897,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 @@ -2920,7 +3211,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2949,7 +3240,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3041,11 +3332,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3120,7 +3411,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3138,7 +3429,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3373,6 +3664,7 @@ Halving Countdown + Compte à rebours du Halving src/app/components/difficulty/difficulty.component.html 2 @@ -3381,6 +3673,7 @@ difficulty + difficulté src/app/components/difficulty/difficulty.component.html 7 @@ -3389,6 +3682,7 @@ halving + halving src/app/components/difficulty/difficulty.component.html 10 @@ -3406,6 +3700,7 @@ New subsidy + Nouvelle subvention src/app/components/difficulty/difficulty.component.html 103 @@ -3414,6 +3709,7 @@ Blocks remaining + Blocs restants src/app/components/difficulty/difficulty.component.html 111 @@ -3422,6 +3718,7 @@ Block remaining + Bloc restant src/app/components/difficulty/difficulty.component.html 112 @@ -3512,7 +3809,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3739,11 +4036,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3790,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 @@ -3820,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 @@ -3833,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 @@ -3846,7 +4152,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3859,7 +4165,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3872,7 +4178,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3889,7 +4195,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -3899,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 @@ -3907,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 @@ -3915,6 +4223,7 @@ UTXOs + UTXOs src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 6 @@ -3931,6 +4240,7 @@ Total Expired + Total expiré src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 12 @@ -3939,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 @@ -3947,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 @@ -3967,6 +4279,7 @@ addresses + adresses src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 8 @@ -3992,6 +4305,7 @@ Related Peg-In + Peg-In associé src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 11 @@ -4017,6 +4331,7 @@ Expires in + Expire dans src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 13 @@ -4025,6 +4340,7 @@ Expired since + Expiré depuis src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 14 @@ -4033,6 +4349,7 @@ Dust + Dust src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 15 @@ -4041,6 +4358,7 @@ Change output + UTXO de change src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 55 @@ -4049,6 +4367,7 @@ blocks + blocs src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 63 @@ -4057,6 +4376,7 @@ Timelock-Expired UTXOs + UTXOs expirés par timelock src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.html 12 @@ -4090,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 @@ -4110,6 +4431,7 @@ Fund / Redemption Tx + Fonds / Rachat Tx src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 15 @@ -4118,6 +4440,7 @@ BTC Address + Adresse BTC src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -4126,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 @@ -4134,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 @@ -4142,6 +4467,7 @@ Peg-Ins + Peg-Ins src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 13 @@ -4150,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 @@ -4158,6 +4485,7 @@ Peg-Outs + Peg-Outs src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 19 @@ -4166,6 +4494,7 @@ Unpeg + Unpeg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 3 @@ -4174,6 +4503,7 @@ Unpeg Event + Événement Unpeg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 7 @@ -4182,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 @@ -4190,6 +4521,7 @@ Emergency Keys + Clés d'urgence src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 28 @@ -4198,6 +4530,7 @@ usage + utilisation src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 31 @@ -4206,6 +4539,7 @@ Assets vs Liabilities + Actif vs Passif src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts 162 @@ -4222,6 +4556,7 @@ As of block + Au bloc src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 7 @@ -4234,6 +4569,7 @@ BTC Holdings + Avoirs BTC src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 12 @@ -4242,9 +4578,10 @@ Mining Dashboard + Tableau de bord Minage src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4261,7 +4598,7 @@ Explorateur Lightning src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4325,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 @@ -4369,7 +4689,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4592,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 @@ -4764,6 +5088,7 @@ Out-of-band Fees (1w) + Frais hors bande (1w) src/app/components/pool/pool.component.html 143 @@ -4772,6 +5097,7 @@ 1m + 1m src/app/components/pool/pool.component.html 144 @@ -4799,11 +5125,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4822,20 +5148,22 @@ Not enough data yet + Pas encore assez de données src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance + Dominance de la pool de minage src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4912,7 +5240,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4954,7 +5282,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -4978,6 +5306,7 @@ remaining + restants src/app/components/rbf-timeline/rbf-timeline.component.html 86 @@ -5097,6 +5426,7 @@ Block Height + Hauteur de bloc src/app/components/search-form/search-results/search-results.component.html 3 @@ -5105,6 +5435,7 @@ Transaction + Transaction src/app/components/search-form/search-results/search-results.component.html 21 @@ -5113,6 +5444,7 @@ Address + Adresse src/app/components/search-form/search-results/search-results.component.html 27 @@ -5121,6 +5453,7 @@ Block + Bloc src/app/components/search-form/search-results/search-results.component.html 33 @@ -5129,6 +5462,7 @@ Other Network Address + Adresse d'un autre réseau src/app/components/search-form/search-results/search-results.component.html 39 @@ -5137,6 +5471,7 @@ Addresses + Adresses src/app/components/search-form/search-results/search-results.component.html 47 @@ -5163,6 +5498,7 @@ Liquid Asset + Actif Liquid src/app/components/search-form/search-results/search-results.component.html 71 @@ -5267,6 +5603,7 @@ Immediately + Immédiatement src/app/components/time/time.component.ts 90 @@ -5462,6 +5799,7 @@ before + avant src/app/components/time/time.component.ts 214 @@ -5554,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 @@ -5588,11 +5927,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 + Cette transaction était prévue dans le bloc src/app/components/transaction/transaction.component.html 78 @@ -5601,6 +5945,7 @@ Expected in Block + Attendue dans le bloc src/app/components/transaction/transaction.component.html 78 @@ -5610,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 @@ -5618,6 +5964,7 @@ Seen in Mempool + Vu dans la mempool src/app/components/transaction/transaction.component.html 79 @@ -5627,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 @@ -5635,6 +5983,7 @@ Not seen in Mempool + Pas vu dans la mempool src/app/components/transaction/transaction.component.html 80 @@ -5644,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 @@ -5652,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 @@ -5660,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 @@ -5668,6 +6020,7 @@ Hide accelerator + Masquer l'accélérateur src/app/components/transaction/transaction.component.html 108 @@ -5694,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 @@ -5820,6 +6159,7 @@ Adjusted vsize + Vsize ajustée src/app/components/transaction/transaction.component.html 321 @@ -5838,6 +6178,7 @@ Sigops + Sigops src/app/components/transaction/transaction.component.html 347 @@ -5865,6 +6206,7 @@ Error loading transaction data. + Erreur lors du chargement des données de transaction. src/app/components/transaction/transaction.component.html 521 @@ -6053,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 @@ -6061,6 +6404,7 @@ 1 block later + 1 bloc plus tard src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 127 @@ -6069,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 @@ -6077,6 +6422,7 @@ blocks earlier + blocs plus tôt src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 137 @@ -6085,6 +6431,7 @@ spent + dépensé src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 148 @@ -6093,6 +6440,7 @@ blocks later + blocs plus tard src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 150 @@ -6253,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 @@ -6275,7 +6615,7 @@ Frais antérieurs src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6284,7 +6624,7 @@ Nouveaux frais src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6293,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 @@ -6338,7 +6681,7 @@ Frais minimums src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6348,7 +6691,7 @@ Purgées src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6358,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 @@ -6370,6 +6713,42 @@ lightning.indexing-in-progress + + Consolidation + 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 + Données + + 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 fournit simplement des données sur le réseau Bitcoin. Nous ne pouvons pas vous aider à récupérer des fonds, à résoudre des problèmes de portefeuille, etc.Pour toute demande de ce type, vous devez contacter l'entité qui a aidé à effectuer la transaction (logiciel de portefeuille, échange, etc.). @@ -7484,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 @@ -8049,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 @@ -8208,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 @@ -8482,6 +8864,7 @@ Third-party Licenses + Licences tierces src/app/shared/components/global-footer/global-footer.component.html 79 @@ -8498,6 +8881,38 @@ warning-testnet + + Address Types + Types d'adresses + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + Comportement + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + Heuristique + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + Drapeaux Sighash + + src/app/shared/filters.utils.ts + 123 + + year année 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..99a67b0cd 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,121 @@ sat shared.sat + + maximum + massimo + + 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 + La tua transazione + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + Più antenati non confermati + + 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 + Commissioni 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 @@ -550,20 +631,39 @@ shared.sats + + How much more are you willing to pay? + Quanto sei disposto a pagare in più? + + 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. + Scegli la commissione di transazione extra massima che sei disposto a pagare per accedere al blocco successivo. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + Tasso di mercato del blocco successivo + + 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 + Stima della commissione aggiuntiva richiesta + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + Commissioni di Mempool Accelerator™ + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + Commissione per il Servizio di Accelerazione + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + Supplemento per Dimensione della Transazione + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + Costo di accelerazione stimato + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + Costo di accelerazione massimo + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + Saldo disponibile + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + Accedi + + 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 + Accelera su mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + Accelerare + + 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 + Se la tua tx è stata accelerata a ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees Commisioni di Accelerazione @@ -591,6 +815,7 @@ No accelerated transaction for this timeframe + Nessuna transazione accelerata in questo lasso di tempo src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 121 @@ -598,6 +823,7 @@ At block: + Al blocco: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 165 @@ -617,6 +843,7 @@ Around block: + Intorno al blocco: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 167 @@ -732,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 @@ -747,11 +978,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -828,7 +1059,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -848,6 +1079,7 @@ Completed 🔄 + Completata 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 54,55 @@ -855,6 +1087,7 @@ Failed 🔄 + Non riuscita 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 55,56 @@ -903,20 +1136,13 @@ (3 months) + (3 mesi) 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 » Scopri di più » @@ -960,7 +1186,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1009,6 +1235,7 @@ Balance History + Storia del Saldo src/app/components/address-graph/address-graph.component.html 6 @@ -1017,6 +1244,7 @@ Balance:Balance + Saldo:Saldo src/app/components/address-graph/address-graph.component.ts 162 @@ -1024,6 +1252,7 @@ Balances + Saldi src/app/components/address-group/address-group.component.html 4 @@ -1032,6 +1261,7 @@ Total + Totale src/app/components/address-group/address-group.component.html 9 @@ -1202,7 +1432,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1220,6 +1450,7 @@ See mempool transactions, confirmed transactions, balance, and more for address . + Visualizza le transazioni mempool, le transazioni confermate, il saldo e altro per l'indirizzo src/app/components/address/address-preview.component.ts 72 @@ -1231,6 +1462,7 @@ of transaction + Transazione di src/app/components/address/address.component.html 69 @@ -1239,6 +1471,7 @@ of transactions + Transazioni di src/app/components/address/address.component.html 70 @@ -1260,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: + Ci sono molte transazioni su questo indirizzo, più di quelle che il tuo backend può gestire. Scopri di più sulla configurazione di un backend più potente. Considera la visualizzazione di questo indirizzo sul sito web ufficiale di Mempool: src/app/components/address/address.component.html 143,146 @@ -1431,6 +1665,7 @@ Browse an overview of the Liquid asset (): see issued amount, burned amount, circulating amount, related transactions, and more. + Sfoglia una panoramica della liquidità (): vedi importo emesso, importo bruciato, importo circolante, transazioni correlate e tanto altro. src/app/components/asset/asset.component.ts 108 @@ -1450,6 +1685,7 @@ No featured assets + Nessuna risorsa in primo piano src/app/components/assets/assets-featured/assets-featured.component.html 3 @@ -1492,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 @@ -1520,6 +1760,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1710,7 +1954,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1721,10 +1965,59 @@ 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 + Qualunque + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + Tinta + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + Classico + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + Età + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health Salute del Blocco @@ -1813,6 +2106,7 @@ Your browser does not support this feature. + Il tuo browser non supporta questa funzione. src/app/components/block-overview-graph/block-overview-graph.component.html 21 @@ -1933,7 +2227,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1962,7 +2256,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -2021,28 +2315,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,17 +2342,9 @@ transaction.audit-status - - Match - Corrispondenza - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed + Rimosso src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 71 @@ -2134,6 +2398,7 @@ Added + Aggiunta src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -2147,6 +2412,7 @@ Prioritized + Prioritizzata src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 77 @@ -2160,6 +2426,7 @@ Conflict + Conflitto src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -2186,6 +2453,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2283,7 +2554,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2505,23 +2776,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 +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 @@ -2857,6 +3119,7 @@ transaction + Transazione src/app/components/block/block.component.html 331 @@ -2873,6 +3136,7 @@ transactions + Transazioni src/app/components/block/block.component.html 332 @@ -2923,6 +3187,7 @@ Acceleration fees paid out-of-band + Commissioni di accelerazione pagate fuori banda src/app/components/block/block.component.html 433 @@ -2946,7 +3211,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2975,7 +3240,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3067,11 +3332,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3146,7 +3411,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3164,7 +3429,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3399,6 +3664,7 @@ Halving Countdown + Halving Countdown src/app/components/difficulty/difficulty.component.html 2 @@ -3407,6 +3673,7 @@ difficulty + difficoltà src/app/components/difficulty/difficulty.component.html 7 @@ -3415,6 +3682,7 @@ halving + halving src/app/components/difficulty/difficulty.component.html 10 @@ -3432,6 +3700,7 @@ New subsidy + Nuova ricompensa src/app/components/difficulty/difficulty.component.html 103 @@ -3440,6 +3709,7 @@ Blocks remaining + Blocchi rimanenti src/app/components/difficulty/difficulty.component.html 111 @@ -3448,6 +3718,7 @@ Block remaining + Blocco rimanente src/app/components/difficulty/difficulty.component.html 112 @@ -3531,13 +3802,14 @@ Incoming Transactions + Transazioni in Entrata src/app/components/footer/footer.component.html 5 src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3764,11 +4036,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3815,6 +4087,7 @@ See Bitcoin mining pool dominance visualized over time: see how top mining pools' share of total hashrate has fluctuated over time. + Guarda la dominanza delle mining pool Bitcoin visualizzata nel tempo: osserva come la quota dei principali pool minerari rispetto all'hashrate totale è fluttuata nel tempo. src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts 75 @@ -3845,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 @@ -3858,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 @@ -3871,7 +4152,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3884,7 +4165,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3897,7 +4178,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3914,7 +4195,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -3924,6 +4205,7 @@ Non-Dust Expired + Non-Dust Scaduto src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 3 @@ -3932,6 +4214,7 @@ Total amount of BTC held in non-dust Federation UTXOs that have expired timelocks + Importo totale di BTC detenuti negli UTXO della Federazione non-dust con timelock scaduti src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 5 @@ -3940,6 +4223,7 @@ UTXOs + UTXOs src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 6 @@ -3956,6 +4240,7 @@ Total Expired + Totale Scaduto src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 12 @@ -3964,6 +4249,7 @@ Total amount of BTC held in Federation UTXOs that have expired timelocks + Importo totale di BTC detenuti negli UTXO della Federazione con timelock scaduti src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 15 @@ -3972,6 +4258,7 @@ Liquid Federation Wallet + Wallet della Federazione Liquid src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 5 @@ -3992,6 +4279,7 @@ addresses + indirizzi src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 8 @@ -4017,6 +4305,7 @@ Related Peg-In + Peg-In correlato src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 11 @@ -4042,6 +4331,7 @@ Expires in + Scade tra src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 13 @@ -4050,6 +4340,7 @@ Expired since + Scaduto da src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 14 @@ -4058,6 +4349,7 @@ Dust + Dust src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 15 @@ -4066,6 +4358,7 @@ Change output + Output di resto src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 55 @@ -4074,6 +4367,7 @@ blocks + blocchi src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 63 @@ -4082,6 +4376,7 @@ Timelock-Expired UTXOs + UTXO con timelock scaduto src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.html 12 @@ -4115,6 +4410,7 @@ Recent Peg-In / Out's + Peg-In/Out recenti src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 4 @@ -4135,6 +4431,7 @@ Fund / Redemption Tx + Tx di Ricarica/Rimborso src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 15 @@ -4143,6 +4440,7 @@ BTC Address + Indirizzo BTC src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -4151,6 +4449,7 @@ Peg out in progress... + Peg out in corso... src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 70 @@ -4159,6 +4458,7 @@ 24h Peg-In Volume + Volume di Peg-In - 24h src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 12 @@ -4167,6 +4467,7 @@ Peg-Ins + Peg-In src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 13 @@ -4175,6 +4476,7 @@ 24h Peg-Out Volume + Volume di Peg-Out - 24h src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 18 @@ -4183,6 +4485,7 @@ Peg-Outs + Peg-Out src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 19 @@ -4191,6 +4494,7 @@ Unpeg + Unpeg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 3 @@ -4199,6 +4503,7 @@ Unpeg Event + Evento di Unpeg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 7 @@ -4207,6 +4512,7 @@ Avg Peg Ratio + Rapporto medio di Peg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 14 @@ -4215,6 +4521,7 @@ Emergency Keys + Chiavi di Emergenza src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 28 @@ -4223,6 +4530,7 @@ usage + utilizzo src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 31 @@ -4231,6 +4539,7 @@ Assets vs Liabilities + Asset vs Passività src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts 162 @@ -4247,6 +4556,7 @@ As of block + A partire dal blocco src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 7 @@ -4259,6 +4569,7 @@ BTC Holdings + Capitale in BTC src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 12 @@ -4267,9 +4578,10 @@ Mining Dashboard + Mining Dashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4286,7 +4598,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 +4662,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 +4689,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4616,11 +4912,11 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 @@ -4628,11 +4924,15 @@ 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 @@ -4687,6 +4987,7 @@ See mining pool stats for : most recent mined blocks, hashrate over time, total block reward to date, known coinbase addresses, and more. + Visualizza le statistiche delle mining pool per : blocchi estratti più recenti, hashrate nel tempo, ricompensa totale del blocco fino ad oggi, indirizzi coinbase conosciuti e altro ancora. src/app/components/pool/pool-preview.component.ts 86 @@ -4753,6 +5054,7 @@ Blocks (24h) + Blocchi (24 ore) src/app/components/pool/pool.component.html 120 @@ -4786,6 +5088,7 @@ Out-of-band Fees (1w) + Commissioni fuori banda (1w) src/app/components/pool/pool.component.html 143 @@ -4794,6 +5097,7 @@ 1m + 1m src/app/components/pool/pool.component.html 144 @@ -4821,11 +5125,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4844,20 +5148,22 @@ Not enough data yet + Dati non ancora sufficienti src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance + Dominanza delle Pool src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4894,6 +5200,7 @@ Broadcast Transaction + Trasmetti Transazione src/app/components/push-transaction/push-transaction.component.ts 33 @@ -4901,6 +5208,7 @@ Broadcast a transaction to the network using the transaction's hash. + Trasmetti una transazione alla rete utilizzando l'hash della transazione. src/app/components/push-transaction/push-transaction.component.ts 34 @@ -4908,6 +5216,7 @@ RBF Replacements + Sostituzioni RBF src/app/components/rbf-list/rbf-list.component.html 2 @@ -4920,6 +5229,7 @@ Full RBF + Full RBF src/app/components/rbf-list/rbf-list.component.html 24 @@ -4930,12 +5240,13 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf There are no replacements in the mempool yet! + Non ci sono ancora sostituzioni nella mempool! src/app/components/rbf-list/rbf-list.component.html 34 @@ -4944,6 +5255,7 @@ See the most recent RBF replacements on the Bitcoin network, updated in real-time. + Visualizza le sostituzioni RBF più recenti sulla rete Bitcoin, aggiornate in tempo reale. src/app/components/rbf-list/rbf-list.component.ts 61 @@ -4970,7 +5282,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -4994,6 +5306,7 @@ remaining + rimanente src/app/components/rbf-timeline/rbf-timeline.component.html 86 @@ -5113,6 +5426,7 @@ Block Height + Altezza del Blocco src/app/components/search-form/search-results/search-results.component.html 3 @@ -5121,6 +5435,7 @@ Transaction + Transazione src/app/components/search-form/search-results/search-results.component.html 21 @@ -5129,6 +5444,7 @@ Address + Indirizzo src/app/components/search-form/search-results/search-results.component.html 27 @@ -5137,6 +5453,7 @@ Block + Blocco src/app/components/search-form/search-results/search-results.component.html 33 @@ -5145,6 +5462,7 @@ Other Network Address + Altro Indirizzo di Rete src/app/components/search-form/search-results/search-results.component.html 39 @@ -5153,6 +5471,7 @@ Addresses + Indirizzi src/app/components/search-form/search-results/search-results.component.html 47 @@ -5179,6 +5498,7 @@ Liquid Asset + Asset Liquid src/app/components/search-form/search-results/search-results.component.html 71 @@ -5205,6 +5525,7 @@ Clock (Mempool) + Orologio (Mempool) src/app/components/statistics/statistics.component.html 17 @@ -5257,6 +5578,7 @@ Cap outliers + Limiti anomali src/app/components/statistics/statistics.component.html 122 @@ -5265,6 +5587,7 @@ See mempool size (in MvB) and transactions per second (in vB/s) visualized over time. + Visualizza le dimensioni della mempool (in MvB) e le transazioni al secondo (in vB/s) visualizzate nel tempo. src/app/components/statistics/statistics.component.ts 67 @@ -5272,6 +5595,7 @@ See Bitcoin blocks and mempool congestion in real-time in a simplified format perfect for a TV. + Visualizza i blocchi Bitcoin e la congestione della mempool in tempo reale in un formato semplificato perfetto per una TV. src/app/components/television/television.component.ts 40 @@ -5279,6 +5603,7 @@ Immediately + Subito src/app/components/time/time.component.ts 90 @@ -5474,6 +5799,7 @@ before + prima src/app/components/time/time.component.ts 214 @@ -5566,6 +5892,7 @@ Get real-time status, addresses, fees, script info, and more for transaction with txid . + Ottieni stato in tempo reale, indirizzi, tariffe, informazioni sugli script e altro ancora per la transazione con txid . src/app/components/transaction/transaction-preview.component.ts 93 @@ -5600,11 +5927,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 + Si prevedeva che questa transazione fosse inclusa nel blocco src/app/components/transaction/transaction.component.html 78 @@ -5613,6 +5945,7 @@ Expected in Block + Prevista nel Blocco src/app/components/transaction/transaction.component.html 78 @@ -5622,6 +5955,7 @@ This transaction was seen in the mempool prior to mining + Questa transazione è stata vista nella mempool prima del mining src/app/components/transaction/transaction.component.html 79 @@ -5630,6 +5964,7 @@ Seen in Mempool + Vista nella Mempool src/app/components/transaction/transaction.component.html 79 @@ -5639,6 +5974,7 @@ This transaction was missing from our mempool prior to mining + Questa transazione nonera presente nella nostra mempool prima del mining src/app/components/transaction/transaction.component.html 80 @@ -5647,6 +5983,7 @@ Not seen in Mempool + Non vista nella mempool src/app/components/transaction/transaction.component.html 80 @@ -5656,6 +5993,7 @@ This transaction may have been added out-of-band + Questa transazione potrebbe essere stata aggiunta fuori banda src/app/components/transaction/transaction.component.html 81 @@ -5664,6 +6002,7 @@ This transaction may have been prioritized out-of-band + A questa transazione potrebbe essere stata prioritizzata fuori banda src/app/components/transaction/transaction.component.html 82 @@ -5672,6 +6011,7 @@ This transaction conflicted with another version in our mempool + Questa transazione è in conflitto con un'altra versione nella nostra mempool src/app/components/transaction/transaction.component.html 83 @@ -5680,6 +6020,7 @@ Hide accelerator + Nascondi l'acceleratore src/app/components/transaction/transaction.component.html 108 @@ -5706,19 +6047,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 @@ -5758,6 +6086,7 @@ RBF History + Cronologia RBF src/app/components/transaction/transaction.component.html 241 @@ -5830,6 +6159,7 @@ Adjusted vsize + Vsize adattato src/app/components/transaction/transaction.component.html 321 @@ -5848,6 +6178,7 @@ Sigops + Sigops src/app/components/transaction/transaction.component.html 347 @@ -5875,6 +6206,7 @@ Error loading transaction data. + Errore durante il caricamento dei dati della transazione. src/app/components/transaction/transaction.component.html 521 @@ -5883,6 +6215,7 @@ Accelerated fee rate + Tasso di commissione accelerato src/app/components/transaction/transaction.component.html 547 @@ -6062,6 +6395,7 @@ 1 block earlier + 1 blocco prima src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 123 @@ -6070,6 +6404,7 @@ 1 block later + 1 blocco dopo src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 127 @@ -6078,6 +6413,7 @@ in the same block + nello stesso blocco src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 131 @@ -6086,6 +6422,7 @@ blocks earlier + blocchi prima src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 137 @@ -6094,6 +6431,7 @@ spent + speso src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 148 @@ -6102,6 +6440,7 @@ blocks later + blocchi più tardi src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 150 @@ -6262,79 +6601,78 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements + Sostituzioni Recenti src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements Previous fee + Commissione precedente src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee New fee + Nuova commissione src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee Recent Transactions + Transazioni Recenti src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions Liquid Federation Holdings + Capitale della Federazione 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 scaduti con Timelock della Federazione 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 + Fornitura di L-BTC contro capitale di BTC src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6343,7 +6681,7 @@ Commissione minima src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6353,7 +6691,7 @@ Scartate src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6363,7 +6701,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,8 +6713,45 @@ lightning.indexing-in-progress + + Consolidation + Consolidamento + + 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 + Dati + + 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 fornisce semplicemente dati sulla rete Bitcoin. Non può aiutarti con il recupero di fondi, problemi con il wallet, ecc.Per qualsiasi richiesta di questo tipo, devi contattare l'entità che ha contribuito a effettuare la transazione (software del wallet, exchange, ecc.). src/app/docs/api-docs/api-docs.component.html 15,16 @@ -6471,6 +6846,7 @@ FAQ + FAQ src/app/docs/docs/docs.component.ts 46 @@ -6478,6 +6854,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. + Ottieni risposte a domande comuni come: Cos'è una mempool? Perché la mia transazione non viene confermata? Come posso eseguire la mia istanza del progetto Mempool Open Source? E altro ancora. src/app/docs/docs/docs.component.ts 47 @@ -6485,6 +6862,7 @@ REST API + REST API src/app/docs/docs/docs.component.ts 51 @@ -6492,6 +6870,7 @@ Documentation for the liquid.network REST API service: get info on addresses, transactions, assets, blocks, and more. + Documentazione per il servizio API REST liquid.network: ottieni informazioni su indirizzi, transazioni, risorse, blocchi e altro. src/app/docs/docs/docs.component.ts 53 @@ -6499,6 +6878,7 @@ Documentation for the mempool.space REST API service: get info on addresses, transactions, blocks, fees, mining, the Lightning network, and more. + Documentazione per il servizio API REST mempool.space: ottieni informazioni su indirizzi, transazioni, blocchi, tariffe, mining, rete Lightning e altro ancora. src/app/docs/docs/docs.component.ts 55 @@ -6506,6 +6886,7 @@ WebSocket API + WebSocket API src/app/docs/docs/docs.component.ts 59 @@ -6513,6 +6894,7 @@ Documentation for the liquid.network WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more. + Documentazione per il servizio API WebSocket di liquid.network: ottieni informazioni in tempo reale su blocchi, mempool, transazioni, indirizzi e altro ancora. src/app/docs/docs/docs.component.ts 61 @@ -6520,6 +6902,7 @@ Documentation for the mempool.space WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more. + Documentazione per il servizio API WebSocket mempool.space: ottieni informazioni in tempo reale su blocchi, mempool, transazioni, indirizzi e altro ancora. src/app/docs/docs/docs.component.ts 63 @@ -6527,6 +6910,7 @@ Electrum RPC + Electrum RPC src/app/docs/docs/docs.component.ts 67 @@ -6534,6 +6918,7 @@ Documentation for our Electrum RPC interface: get instant, convenient, and reliable access to an Esplora instance. + Documentazione per la nostra interfaccia Electrum RPC: ottieni un accesso immediato, conveniente e affidabile a un'istanza di Esplora. src/app/docs/docs/docs.component.ts 68 @@ -6850,6 +7235,7 @@ Overview for Lightning channel . See channel capacity, the Lightning nodes involved, related on-chain transactions, and more. + Panoramica per il canale Lightning . Visualizza la capacità del canale, i nodi Lightning coinvolti, le transazioni on-chain correlate e altro ancora. src/app/lightning/channel/channel-preview.component.ts 37 @@ -7348,6 +7734,7 @@ Connect + Connetti src/app/lightning/group/group.component.html 73 @@ -7398,6 +7785,7 @@ Penalties + Penalità src/app/lightning/justice-list/justice-list.component.html 4 @@ -7475,6 +7863,7 @@ Get stats on the Lightning network (aggregate capacity, connectivity, etc), Lightning nodes (channels, liquidity, etc) and Lightning channels (status, fees, etc). + Ottieni statistiche sulla rete Lightning (capacità aggregata, connettività, ecc.), sui nodi Lightning (canali, liquidità, ecc.) e sui canali Lightning (stato, tariffe, ecc.). src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts 34 @@ -7584,6 +7973,7 @@ Overview for the Lightning network node named . See channels, capacity, location, fee stats, and more. + Panoramica del nodo di rete Lightning denominato . Visualizza canali, capacità, posizione, statistiche sulle tariffe e altro ancora. src/app/lightning/node/node-preview.component.ts 52 @@ -7644,6 +8034,7 @@ Decoded + Decodificato src/app/lightning/node/node.component.html 134 @@ -7782,6 +8173,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. + Guarda i canali dei nodi della rete non Tor Lightning visualizzati su una mappa del mondo. Passa il mouse/tocca sui punti sulla mappa per i nomi e i dettagli dei nodi. src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 74 @@ -7806,6 +8198,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. + Visualizza le posizioni dei nodi di rete non Tor Lightning visualizzati su una mappa del mondo. Passa il mouse/tocca sui punti sulla mappa per i nomi e i dettagli dei nodi. src/app/lightning/nodes-map/nodes-map.component.ts 52 @@ -7813,6 +8206,7 @@ See the number of Lightning network nodes visualized over time by network: clearnet only (IPv4, IPv6), darknet (Tor, I2p, cjdns), and both. + Visualizza il numero di nodi di rete Lightning visualizzati nel tempo per rete: solo clearnet (IPv4, IPv6), darknet (Tor, I2p, cjdns) ed entrambi. src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 74 @@ -7881,6 +8275,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. + Visualizza una ripartizione geografica della rete Lightning: quanti nodi Lightning sono ospitati nei paesi di tutto il mondo, la capacità aggregata di BTC per ciascun paese e altro ancora. src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts 47 @@ -7951,6 +8346,7 @@ Explore all the Lightning nodes hosted in and see an overview of each node's capacity, number of open channels, and more. + Esplora tutti i nodi Lightning ospitati da e visualizza una panoramica della capacità di ciascun nodo, del numero di canali aperti e altro ancora. src/app/lightning/nodes-per-country/nodes-per-country.component.ts 44 @@ -8033,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 + Sfoglia i primi 100 ISP che ospitano nodi Lightning insieme a statistiche come il numero totale di nodi per ISP, capacità BTC aggregata per ISP e altro ancora src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts 54 @@ -8095,6 +8492,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. + Sfoglia tutti i nodi Bitcoin Lightning utilizzando l'ISP [AS] e visualizza statistiche aggregate come numero totale di nodi, capacità totale, e altro ancora per l'ISP. src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts 45 @@ -8150,6 +8548,7 @@ See the oldest nodes on the Lightning network along with their capacity, number of channels, location, etc. + Visualizza i nodi più vecchi della rete Lightning insieme alla loro capacità, numero di canali, posizione, ecc. src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts 28 @@ -8157,6 +8556,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. + Visualizza i nodi Lightning con la maggiore liquidità BTC distribuita insieme a statistiche di alto livello come numero di canali aperti, posizione, età del nodo e altro ancora. src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts 35 @@ -8164,6 +8564,7 @@ See Lightning nodes with the most channels open along with high-level stats like total node capacity, node age, and more. + Visualizza i nodi Lightning con il maggior numero di canali aperti insieme a statistiche di alto livello come la capacità totale dei nodi, l'età dei nodi e altro ancora. src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.ts 39 @@ -8188,6 +8589,7 @@ See the top Lightning network nodes ranked by liquidity, connectivity, and age. + Scopri i principali nodi della rete Lightning classificati in base a liquidità, connettività ed età. src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts 23 @@ -8195,6 +8597,7 @@ See the capacity of the Lightning network visualized over time in terms of the number of open channels and total bitcoin capacity. + Visualizza la capacità della rete Lightning visualizzata nel tempo in termini di numero di canali aperti e capacità totale di bitcoin. src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 71 @@ -8202,6 +8605,7 @@ confirmation + conferma src/app/shared/components/confirmations/confirmations.component.html 4 @@ -8211,6 +8615,7 @@ confirmations + conferme src/app/shared/components/confirmations/confirmations.component.html 5 @@ -8220,6 +8625,7 @@ Replaced + Sostituita src/app/shared/components/confirmations/confirmations.component.html 12 @@ -8239,6 +8645,7 @@ sat/WU + sat/WU src/app/shared/components/fee-rate/fee-rate.component.html 4 @@ -8252,6 +8659,7 @@ My Account + Il Mio Account src/app/shared/components/global-footer/global-footer.component.html 25 @@ -8264,6 +8672,7 @@ Explore + Esplora src/app/shared/components/global-footer/global-footer.component.html 41 @@ -8272,6 +8681,7 @@ Connect to our Nodes + Connettiti ai nostri Nodi src/app/shared/components/global-footer/global-footer.component.html 46 @@ -8280,6 +8690,7 @@ API Documentation + Documentazione dell'API src/app/shared/components/global-footer/global-footer.component.html 47 @@ -8288,6 +8699,7 @@ Learn + Impara src/app/shared/components/global-footer/global-footer.component.html 50 @@ -8296,6 +8708,7 @@ What is a mempool? + Cos'è una mempool? src/app/shared/components/global-footer/global-footer.component.html 51 @@ -8304,6 +8717,7 @@ What is a block explorer? + Cos'è un block explorer? src/app/shared/components/global-footer/global-footer.component.html 52 @@ -8312,6 +8726,7 @@ What is a mempool explorer? + Cos'è un mempool explorer? src/app/shared/components/global-footer/global-footer.component.html 53 @@ -8320,6 +8735,7 @@ Why isn't my transaction confirming? + Perché la mia transazione non viene confermata? src/app/shared/components/global-footer/global-footer.component.html 54 @@ -8328,6 +8744,7 @@ More FAQs » + Altre FAQ » src/app/shared/components/global-footer/global-footer.component.html 55 @@ -8336,6 +8753,7 @@ Networks + Reti src/app/shared/components/global-footer/global-footer.component.html 59 @@ -8344,6 +8762,7 @@ Mainnet Explorer + Mainnet Explorer src/app/shared/components/global-footer/global-footer.component.html 60 @@ -8352,6 +8771,7 @@ Testnet Explorer + Testnet Explorer src/app/shared/components/global-footer/global-footer.component.html 61 @@ -8360,6 +8780,7 @@ Signet Explorer + Signet Explorer src/app/shared/components/global-footer/global-footer.component.html 62 @@ -8368,6 +8789,7 @@ Liquid Testnet Explorer + Liquid Testnet Explorer src/app/shared/components/global-footer/global-footer.component.html 63 @@ -8376,6 +8798,7 @@ Liquid Explorer + Liquid Explorer src/app/shared/components/global-footer/global-footer.component.html 64 @@ -8384,6 +8807,7 @@ Tools + Strumenti src/app/shared/components/global-footer/global-footer.component.html 68 @@ -8392,6 +8816,7 @@ Clock (Mined) + Orologio (Minato) src/app/shared/components/global-footer/global-footer.component.html 70 @@ -8400,6 +8825,7 @@ Legal + Legale src/app/shared/components/global-footer/global-footer.component.html 75 @@ -8428,6 +8854,7 @@ Trademark Policy + Politica sul Trademark src/app/shared/components/global-footer/global-footer.component.html 78 @@ -8437,6 +8864,7 @@ Third-party Licenses + Licenze di terze parti src/app/shared/components/global-footer/global-footer.component.html 79 @@ -8446,12 +8874,45 @@ This is a test network. Coins have no value. + Questa è una rete di test. Le monete non hanno valore. src/app/shared/components/testnet-alert/testnet-alert.component.html 3 warning-testnet + + Address Types + Tipi di Indirizzi + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + Comportamento + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + Euristiche + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + 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..5cb63f228 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,61 @@ 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 +2032,7 @@ Block Health + ブロックヘルス src/app/components/block-health-graph/block-health-graph.component.ts 63 @@ -1715,6 +2040,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 +2105,7 @@ Your browser does not support this feature. + お使いのブラウザはこの機能をサポートしていません。 src/app/components/block-overview-graph/block-overview-graph.component.html 21 @@ -1899,7 +2226,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1928,7 +2255,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1979,6 +2306,7 @@ Accelerated fee rate + 高速化後手数料レート src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 53 @@ -1986,30 +2314,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 +2341,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 +2370,7 @@ High sigop count + 高sigop src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 73 @@ -2088,6 +2388,7 @@ Recently CPFP'd + 最近CPFPされた src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 75 @@ -2096,6 +2397,7 @@ Added + 追加された src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -2109,6 +2411,7 @@ Prioritized + 優先された src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 77 @@ -2122,6 +2425,7 @@ Conflict + 衝突 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -2135,6 +2439,7 @@ Accelerated + 高速化済み src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 80 @@ -2147,6 +2452,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2168,6 +2477,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 +2502,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 +2553,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2311,6 +2622,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 +2638,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 +2767,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 +2775,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 +2786,7 @@ Stale + 陳腐化 src/app/components/block/block.component.html 30 @@ -2552,6 +2850,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 +3118,7 @@ transaction + 取引 src/app/components/block/block.component.html 331 @@ -2828,6 +3135,7 @@ transactions + 取引 src/app/components/block/block.component.html 332 @@ -2878,6 +3186,7 @@ Acceleration fees paid out-of-band + ネットワーク外で支払われた高速化手数料 src/app/components/block/block.component.html 433 @@ -2901,7 +3210,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2930,7 +3239,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3022,16 +3331,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 +3349,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 +3357,7 @@ Calculator + 電卓 src/app/components/calculator/calculator.component.html 3 @@ -3091,13 +3403,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 +3428,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3170,6 +3483,7 @@ blocks + ブロック src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 @@ -3349,6 +3663,7 @@ Halving Countdown + 半減期カウントダウン src/app/components/difficulty/difficulty.component.html 2 @@ -3357,6 +3672,7 @@ difficulty + 難易度 src/app/components/difficulty/difficulty.component.html 7 @@ -3365,6 +3681,7 @@ halving + 半減期 src/app/components/difficulty/difficulty.component.html 10 @@ -3382,6 +3699,7 @@ New subsidy + 新たな報酬額 src/app/components/difficulty/difficulty.component.html 103 @@ -3390,6 +3708,7 @@ Blocks remaining + 残りのブロック数 src/app/components/difficulty/difficulty.component.html 111 @@ -3398,6 +3717,7 @@ Block remaining + 残りのブロック数 src/app/components/difficulty/difficulty.component.html 112 @@ -3481,13 +3801,14 @@ Incoming Transactions + 着信トランザクション src/app/components/footer/footer.component.html 5 src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3512,6 +3833,7 @@ WU/s + ウェイト/秒 src/app/components/footer/footer.component.html 14 @@ -3713,11 +4035,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3736,6 +4058,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 +4086,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 +4117,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 +4134,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 +4151,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3832,7 +4164,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3845,7 +4177,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3862,7 +4194,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -3872,6 +4204,7 @@ Non-Dust Expired + 非ダスト期限切れ src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 3 @@ -3880,6 +4213,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 +4222,7 @@ UTXOs + UTXO src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 6 @@ -3904,6 +4239,7 @@ Total Expired + 合計期限切れ src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 12 @@ -3912,6 +4248,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 +4257,7 @@ Liquid Federation Wallet + Liquid Federation ウォレット src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 5 @@ -3940,6 +4278,7 @@ addresses + アドレス src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 8 @@ -3965,6 +4304,7 @@ Related Peg-In + 関連するペグイン src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 11 @@ -3990,6 +4330,7 @@ Expires in + 有効期限は src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 13 @@ -3998,6 +4339,7 @@ Expired since + 有効期限過ぎた日付 src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 14 @@ -4006,6 +4348,7 @@ Dust + ダスト src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 15 @@ -4014,6 +4357,7 @@ Change output + お釣り出力 src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 55 @@ -4022,6 +4366,7 @@ blocks + ブロック src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 63 @@ -4030,6 +4375,7 @@ Timelock-Expired UTXOs + タイムロックの期限が切れた UTXO src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.html 12 @@ -4063,6 +4409,7 @@ Recent Peg-In / Out's + 最近のペグイン/アウト src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 4 @@ -4083,6 +4430,7 @@ Fund / Redemption Tx + 入庫/出庫取引 src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 15 @@ -4091,6 +4439,7 @@ BTC Address + BTCアドレス src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -4099,6 +4448,7 @@ Peg out in progress... + ペグアウト進行中... src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 70 @@ -4107,6 +4457,7 @@ 24h Peg-In Volume + 24時間ペグイン量 src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 12 @@ -4115,6 +4466,7 @@ Peg-Ins + ペグイン src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 13 @@ -4123,6 +4475,7 @@ 24h Peg-Out Volume + 24時間ペグアウト量 src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 18 @@ -4131,6 +4484,7 @@ Peg-Outs + ペグアウト src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 19 @@ -4139,6 +4493,7 @@ Unpeg + ペグ解除 src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 3 @@ -4147,6 +4502,7 @@ Unpeg Event + ペグ解除イベント src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 7 @@ -4155,6 +4511,7 @@ Avg Peg Ratio + 平均ペグ比率 src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 14 @@ -4163,6 +4520,7 @@ Emergency Keys + 緊急キー src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 28 @@ -4171,6 +4529,7 @@ usage + 使い道 src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 31 @@ -4179,6 +4538,7 @@ Assets vs Liabilities + 資産と負債 src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts 162 @@ -4195,6 +4555,7 @@ As of block + ブロック現在 src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 7 @@ -4207,6 +4568,7 @@ BTC Holdings + BTC保有量 src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 12 @@ -4215,9 +4577,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 +4597,7 @@ ライトニングエキスプローラ src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4248,6 +4611,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 +4635,7 @@ Count + カウント src/app/components/mempool-graph/mempool-graph.component.ts 325 @@ -4296,22 +4661,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 +4681,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 +4707,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 +4724,7 @@ Pools Luck + プールの運 src/app/components/pool-ranking/pool-ranking.component.html 9 @@ -4403,6 +4755,7 @@ Pools Count + プール数 src/app/components/pool-ranking/pool-ranking.component.html 17 @@ -4513,6 +4866,7 @@ Empty Blocks + 空のブロック src/app/components/pool-ranking/pool-ranking.component.html 98 @@ -4538,6 +4892,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 +4911,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 +4986,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 +5053,7 @@ Blocks (24h) + ブロック数 (24 時間) src/app/components/pool/pool.component.html 120 @@ -4726,6 +5087,7 @@ Out-of-band Fees (1w) + ネットワーク外手数料 (1w) src/app/components/pool/pool.component.html 143 @@ -4734,6 +5096,7 @@ 1m + 1m src/app/components/pool/pool.component.html 144 @@ -4761,11 +5124,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4784,20 +5147,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 +5199,7 @@ Broadcast Transaction + ブロードキャストトランザクション src/app/components/push-transaction/push-transaction.component.ts 33 @@ -4841,6 +5207,7 @@ Broadcast a transaction to the network using the transaction's hash. + 取引のハッシュを使用して、取引を ネットワークにブロードキャストします。 src/app/components/push-transaction/push-transaction.component.ts 34 @@ -4848,6 +5215,7 @@ RBF Replacements + RBFの置き換え src/app/components/rbf-list/rbf-list.component.html 2 @@ -4860,6 +5228,7 @@ Full RBF + フルRBF src/app/components/rbf-list/rbf-list.component.html 24 @@ -4870,12 +5239,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 +5254,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 +5281,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -4934,6 +5305,7 @@ remaining + 残り src/app/components/rbf-timeline/rbf-timeline.component.html 86 @@ -5053,6 +5425,7 @@ Block Height + ブロックの高さ src/app/components/search-form/search-results/search-results.component.html 3 @@ -5061,6 +5434,7 @@ Transaction + 取引 src/app/components/search-form/search-results/search-results.component.html 21 @@ -5069,6 +5443,7 @@ Address + アドレス src/app/components/search-form/search-results/search-results.component.html 27 @@ -5077,6 +5452,7 @@ Block + ブロック src/app/components/search-form/search-results/search-results.component.html 33 @@ -5085,6 +5461,7 @@ Other Network Address + 他のネットワークのアドレス src/app/components/search-form/search-results/search-results.component.html 39 @@ -5093,6 +5470,7 @@ Addresses + アドレス src/app/components/search-form/search-results/search-results.component.html 47 @@ -5119,6 +5497,7 @@ Liquid Asset + リキッドアセット src/app/components/search-form/search-results/search-results.component.html 71 @@ -5145,6 +5524,7 @@ Clock (Mempool) + 時計 (mempool) src/app/components/statistics/statistics.component.html 17 @@ -5197,6 +5577,7 @@ Cap outliers + 外れ値の上限 src/app/components/statistics/statistics.component.html 122 @@ -5205,6 +5586,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 +5594,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 +5602,7 @@ Immediately + すぐに src/app/components/time/time.component.ts 90 @@ -5414,6 +5798,7 @@ before + src/app/components/time/time.component.ts 214 @@ -5506,6 +5891,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 +5926,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 +5944,7 @@ Expected in Block + ブロックに入ると推定 src/app/components/transaction/transaction.component.html 78 @@ -5562,6 +5954,7 @@ This transaction was seen in the mempool prior to mining + この取引は採掘前にmempoolで発見された src/app/components/transaction/transaction.component.html 79 @@ -5570,6 +5963,7 @@ Seen in Mempool + Mempoolで見られた src/app/components/transaction/transaction.component.html 79 @@ -5579,6 +5973,7 @@ This transaction was missing from our mempool prior to mining + この取引は採掘前にmempoolで発見されていない src/app/components/transaction/transaction.component.html 80 @@ -5587,6 +5982,7 @@ Not seen in Mempool + mempoolで未発見 src/app/components/transaction/transaction.component.html 80 @@ -5596,6 +5992,7 @@ This transaction may have been added out-of-band + このトランザクションはネットワーク外で追加された可能性があります src/app/components/transaction/transaction.component.html 81 @@ -5604,6 +6001,7 @@ This transaction may have been prioritized out-of-band + このトランザクションはネットワーク外で優先された可能性があります src/app/components/transaction/transaction.component.html 82 @@ -5612,6 +6010,7 @@ This transaction conflicted with another version in our mempool + この取引はmempool内の別の取引と競合した src/app/components/transaction/transaction.component.html 83 @@ -5620,6 +6019,7 @@ Hide accelerator + 高速化画面を非表示 src/app/components/transaction/transaction.component.html 108 @@ -5646,19 +6046,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 +6085,7 @@ RBF History + RBF履歴 src/app/components/transaction/transaction.component.html 241 @@ -5770,6 +6158,7 @@ Adjusted vsize + 調整済みvsize src/app/components/transaction/transaction.component.html 321 @@ -5788,6 +6177,7 @@ Sigops + Sigop src/app/components/transaction/transaction.component.html 347 @@ -5815,6 +6205,7 @@ Error loading transaction data. + 取引データの読み込み中にエラーが発生しました。 src/app/components/transaction/transaction.component.html 521 @@ -5823,6 +6214,7 @@ Accelerated fee rate + 高速化後手数料レート src/app/components/transaction/transaction.component.html 547 @@ -6002,6 +6394,7 @@ 1 block earlier + 1ブロック前 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 123 @@ -6010,6 +6403,7 @@ 1 block later + 1ブロック後 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 127 @@ -6018,6 +6412,7 @@ in the same block + 同じブロック内 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 131 @@ -6026,6 +6421,7 @@ blocks earlier + ブロック前 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 137 @@ -6034,6 +6430,7 @@ spent + 使用済み src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 148 @@ -6042,6 +6439,7 @@ blocks later + ブロック後 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 150 @@ -6202,79 +6600,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 +6680,7 @@ 最低料金 src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6293,7 +6690,7 @@ 削除中 src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6303,7 +6700,7 @@ インデックス構築中 src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6315,8 +6712,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 +6845,7 @@ FAQ + よくある質問 src/app/docs/docs/docs.component.ts 46 @@ -6418,6 +6853,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 +6861,7 @@ REST API + REST API src/app/docs/docs/docs.component.ts 51 @@ -6432,6 +6869,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 +6877,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 +6885,7 @@ WebSocket API + WebSocket API src/app/docs/docs/docs.component.ts 59 @@ -6453,6 +6893,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 +6901,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 +6909,7 @@ Electrum RPC + Electrum RPC src/app/docs/docs/docs.component.ts 67 @@ -6474,6 +6917,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 +7234,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 +7733,7 @@ Connect + 接続する src/app/lightning/group/group.component.html 73 @@ -7338,6 +7784,7 @@ Penalties + 懲罰 src/app/lightning/justice-list/justice-list.component.html 4 @@ -7415,6 +7862,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 +7972,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 +8033,7 @@ Decoded + デコード済み src/app/lightning/node/node.component.html 134 @@ -7722,6 +8172,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 +8197,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 +8205,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 +8274,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 +8345,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 +8428,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 +8491,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 +8547,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 +8555,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 +8563,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 +8588,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 +8596,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 +8604,7 @@ confirmation + 承認 src/app/shared/components/confirmations/confirmations.component.html 4 @@ -8151,6 +8614,7 @@ confirmations + 承認 src/app/shared/components/confirmations/confirmations.component.html 5 @@ -8160,6 +8624,7 @@ Replaced + 置換済み src/app/shared/components/confirmations/confirmations.component.html 12 @@ -8179,6 +8644,7 @@ sat/WU + sat/WU src/app/shared/components/fee-rate/fee-rate.component.html 4 @@ -8192,6 +8658,7 @@ My Account + マイアカウント src/app/shared/components/global-footer/global-footer.component.html 25 @@ -8204,6 +8671,7 @@ Explore + 探検 src/app/shared/components/global-footer/global-footer.component.html 41 @@ -8212,6 +8680,7 @@ Connect to our Nodes + mempoolノードに接続する src/app/shared/components/global-footer/global-footer.component.html 46 @@ -8220,6 +8689,7 @@ API Documentation + APIドキュメント src/app/shared/components/global-footer/global-footer.component.html 47 @@ -8228,6 +8698,7 @@ Learn + 学ぶ src/app/shared/components/global-footer/global-footer.component.html 50 @@ -8236,6 +8707,7 @@ What is a mempool? + mempoolとは何ですか? src/app/shared/components/global-footer/global-footer.component.html 51 @@ -8244,6 +8716,7 @@ What is a block explorer? + ブロックエクスプローラーとは何ですか? src/app/shared/components/global-footer/global-footer.component.html 52 @@ -8252,6 +8725,7 @@ What is a mempool explorer? + mempoolエクスプローラーとは何ですか? src/app/shared/components/global-footer/global-footer.component.html 53 @@ -8260,6 +8734,7 @@ Why isn't my transaction confirming? + 取引が承認されないのはなぜですか? src/app/shared/components/global-footer/global-footer.component.html 54 @@ -8268,6 +8743,7 @@ More FAQs » + その他のよくある質問 » src/app/shared/components/global-footer/global-footer.component.html 55 @@ -8276,6 +8752,7 @@ Networks + ネットワーク src/app/shared/components/global-footer/global-footer.component.html 59 @@ -8284,6 +8761,7 @@ Mainnet Explorer + メインネットエクスプローラー src/app/shared/components/global-footer/global-footer.component.html 60 @@ -8292,6 +8770,7 @@ Testnet Explorer + テストネットエクスプローラー src/app/shared/components/global-footer/global-footer.component.html 61 @@ -8300,6 +8779,7 @@ Signet Explorer + シグネットエクスプローラー src/app/shared/components/global-footer/global-footer.component.html 62 @@ -8308,6 +8788,7 @@ Liquid Testnet Explorer + リキッドテストネットエクスプローラー src/app/shared/components/global-footer/global-footer.component.html 63 @@ -8316,6 +8797,7 @@ Liquid Explorer + リキッドエクスプローラー src/app/shared/components/global-footer/global-footer.component.html 64 @@ -8324,6 +8806,7 @@ Tools + ツール src/app/shared/components/global-footer/global-footer.component.html 68 @@ -8332,6 +8815,7 @@ Clock (Mined) + 時計 (採掘済み) src/app/shared/components/global-footer/global-footer.component.html 70 @@ -8340,6 +8824,7 @@ Legal + 法令に関する事項 src/app/shared/components/global-footer/global-footer.component.html 75 @@ -8368,6 +8853,7 @@ Trademark Policy + 商標ポリシー src/app/shared/components/global-footer/global-footer.component.html 78 @@ -8377,6 +8863,7 @@ Third-party Licenses + サードパーティライセンス src/app/shared/components/global-footer/global-footer.component.html 79 @@ -8386,12 +8873,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..d76fabcf8 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -268,6 +268,7 @@ Become a Community Sponsor + Zostań sponsorem społecznościowym src/app/components/about/about-sponsors.component.html 4 @@ -276,6 +277,7 @@ Become an Enterprise Sponsor + Zostań sponsorem korporacyjnym src/app/components/about/about-sponsors.component.html 11 @@ -310,6 +312,7 @@ Whale Sponsors + Sponsorzy Wieloryby src/app/components/about/about.component.html 187 @@ -318,6 +321,7 @@ Chad Sponsors + Sponsorzy Chad src/app/components/about/about.component.html 200 @@ -326,6 +330,7 @@ OG Sponsors ❤️ + Sponsorzy OG ❤️ src/app/components/about/about.component.html 213 @@ -399,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. + Dowiedz się więcej o The Mempool Open Source Project®: sponsorach korporacyjnych, indywidualnych, integracjach, kontrybutorach, licencjonowaniu FOSS i więcej. src/app/components/about/about.component.ts 50 @@ -447,40 +453,121 @@ sat shared.sat + + maximum + maksimum + + 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 + Twoja transakcja + + src/app/components/accelerate-preview/accelerate-preview.component.html + 35 + + accelerator.your-transaction + + + Plus unconfirmed ancestor(s) + Plus niepotwierdzonych przodków + + 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 + Opłaty z użyciem mempool + + 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 +631,39 @@ shared.sats + + How much more are you willing to pay? + Ile jesteś gotów zapłacić? + + 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. + Wybierz maksymalną dodatkową opłatę transakcyjną, jaką jesteś skłonny zapłacić, aby dostać się do następnego bloku. + + src/app/components/accelerate-preview/accelerate-preview.component.html + 71 + + accelerator.transaction-fee-description + + + Next block market rate + Stawka rynkowa następnego bloku + + 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,8 +676,133 @@ sat/vB shared.sat-vbyte + + Estimated extra fee required + Estymata wymaganej opłaty dodatkowej + + src/app/components/accelerate-preview/accelerate-preview.component.html + 103 + + accelerator.estimated-extra-fee-required + + + Mempool Accelerator™ fees + Opłaty Mempool Acceleratora™ + + src/app/components/accelerate-preview/accelerate-preview.component.html + 117 + + accelerator.mempool-accelerator-fees + + + Accelerator Service Fee + Opłata usługi akceleratora + + src/app/components/accelerate-preview/accelerate-preview.component.html + 121 + + accelerator.service-fee + + + Transaction Size Surcharge + Dopłata za wielkość transakcji + + src/app/components/accelerate-preview/accelerate-preview.component.html + 133 + + accelerator.tx-size-surcharge + + + Estimated acceleration cost + Szacowany koszt akceleracji + + src/app/components/accelerate-preview/accelerate-preview.component.html + 148 + + accelerator.estimated-cost + + + Maximum acceleration cost + Maksymalny koszt akceleracji + + src/app/components/accelerate-preview/accelerate-preview.component.html + 171 + + accelerator.maximum-cost + + + Available balance + Dostępne saldo + + src/app/components/accelerate-preview/accelerate-preview.component.html + 195 + + accelerator.available-balance + + + Sign In + Zaloguj się + + 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 + Przyspiesz na mempool.space + + src/app/components/accelerate-preview/accelerate-preview.component.html + 223 + + accelerator.accelerate-on-mempoolspace + + + Accelerate + Przyspiesz + + 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 + Jeśli Twoja transakcja zostanie przyspieszona do ~ sat/vB + + src/app/components/accelerate-preview/accelerate-preview.component.html + 249 + + accelerator.accelerated-to-description + Acceleration Fees + Opłaty akceleracji src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.html 6 @@ -584,6 +815,7 @@ No accelerated transaction for this timeframe + Brak przyspieszanych transakcji w tym okresie src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 121 @@ -591,6 +823,7 @@ At block: + W bloku: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 165 @@ -610,6 +843,7 @@ Around block: + Wokół bloku: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 167 @@ -629,6 +863,7 @@ Requests + Żądania src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 4 @@ -649,6 +884,7 @@ accelerated + przyspieszona src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 7 @@ -657,6 +893,7 @@ Total Bid Boost + Całkowite zwiększenie oferty src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 11 @@ -673,6 +910,7 @@ BTC + BTC src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 13 @@ -694,6 +932,7 @@ Success Rate + Stopień powodzenia src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 20 @@ -706,6 +945,7 @@ mined + wydobyta src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 23 @@ -714,11 +954,16 @@ Accelerations + Akceleracje 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,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 + Poziom opłat src/app/components/acceleration/accelerations-list/accelerations-list.component.html 12 @@ -752,6 +998,7 @@ Acceleration Bid + Ofefrta akceleracji src/app/components/acceleration/accelerations-list/accelerations-list.component.html 13 @@ -761,6 +1008,7 @@ Requested + Zażądano src/app/components/acceleration/accelerations-list/accelerations-list.component.html 14 @@ -773,6 +1021,7 @@ Bid Boost + Zwiększenie oferty src/app/components/acceleration/accelerations-list/accelerations-list.component.html 17 @@ -799,6 +1048,7 @@ Status + Status src/app/components/acceleration/accelerations-list/accelerations-list.component.html 19 @@ -809,7 +1059,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -820,6 +1070,7 @@ Pending + W toku src/app/components/acceleration/accelerations-list/accelerations-list.component.html 53 @@ -828,6 +1079,7 @@ Completed 🔄 + Ukończona 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 54,55 @@ -835,6 +1087,7 @@ Failed 🔄 + Nieudana 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 55,56 @@ -843,6 +1096,7 @@ There are no active accelerations + Nie ma aktywnych akceleracji src/app/components/acceleration/accelerations-list/accelerations-list.component.html 96 @@ -851,6 +1105,7 @@ There are no recent accelerations + Nie było ostatnio akceleracji src/app/components/acceleration/accelerations-list/accelerations-list.component.html 97 @@ -859,6 +1114,7 @@ Active Accelerations + Aktywne akceleracje src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 10 @@ -871,6 +1127,7 @@ Acceleration stats + Statystyki akceleracji src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 24 @@ -879,20 +1136,13 @@ (3 months) + (3 miesiące) 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 » Pokaż więcej » @@ -920,6 +1170,7 @@ Recent Accelerations + Ostatnie akceleracje src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 86 @@ -928,17 +1179,19 @@ Accelerator Dashboard + Pulpit Akceleratora src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.ts 47 src/app/components/master-page/master-page.component.html - 56 + 75 pending + w toku src/app/components/acceleration/pending-stats/pending-stats.component.html 7 @@ -947,6 +1200,7 @@ Avg Max Bid + Śr. stawka maks. src/app/components/acceleration/pending-stats/pending-stats.component.html 11 @@ -959,6 +1213,7 @@ Total Vsize + Całkowity Vsize src/app/components/acceleration/pending-stats/pending-stats.component.html 20 @@ -971,6 +1226,7 @@ of next block + następnego bloku src/app/components/acceleration/pending-stats/pending-stats.component.html 23 @@ -979,6 +1235,7 @@ Balance History + Historia salda src/app/components/address-graph/address-graph.component.html 6 @@ -987,6 +1244,7 @@ Balance:Balance + Saldo:Saldo src/app/components/address-graph/address-graph.component.ts 162 @@ -994,6 +1252,7 @@ Balances + Salda src/app/components/address-group/address-group.component.html 4 @@ -1002,6 +1261,7 @@ Total + Łącznie src/app/components/address-group/address-group.component.html 9 @@ -1172,7 +1432,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1190,6 +1450,7 @@ See mempool transactions, confirmed transactions, balance, and more for address . + Zobacz transakcje w mempoolu, potwierdzone, saldo oraz inne dane dla adresu . src/app/components/address/address-preview.component.ts 72 @@ -1201,6 +1462,7 @@ of transaction + z transakcji src/app/components/address/address.component.html 69 @@ -1209,6 +1471,7 @@ of transactions + z transakcji src/app/components/address/address.component.html 70 @@ -1230,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: + Pod tym adresem jest wiele transakcji, więcej niż może obsłużyć Twój backend. Zobacz więcej na temat konfigurowania silniejszego backendu. Rozważ zamiast tego obejrzenie tego adresu na oficjalnej stronie Mempool: src/app/components/address/address.component.html 143,146 @@ -1401,6 +1665,7 @@ Browse an overview of the Liquid asset (): see issued amount, burned amount, circulating amount, related transactions, and more. + Przeglądaj przegląd aktywów Liquid (): zobacz kwotę wydaną, kwotę spaloną, kwotę w obiegu, powiązane transakcje i więcej. src/app/components/asset/asset.component.ts 108 @@ -1420,6 +1685,7 @@ No featured assets + Brak wyróżnionych zasobów src/app/components/assets/assets-featured/assets-featured.component.html 3 @@ -1462,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 @@ -1490,6 +1760,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1511,6 +1785,7 @@ Explore all the assets issued on the Liquid network like L-BTC, L-CAD, USDT, and more. + Przeglądaj wszystkie aktywa wyemitowane w sieci Liquid, takie jak L-BTC, L-CAD, USDT i inne. src/app/components/assets/assets-nav/assets-nav.component.ts 43 @@ -1566,7 +1841,7 @@ Block Fee Rates - Stawki opłat bloku + Poziom opłat bloku src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 6 @@ -1583,6 +1858,7 @@ Avg Block Fee (24h) + Śr. opłaty bloku (24h) src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 51 @@ -1595,6 +1871,7 @@ Avg Block Fee (1m) + Śr. opłaty bloku (1m) src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 57 @@ -1607,6 +1884,7 @@ See Bitcoin feerates visualized over time, including minimum and maximum feerates per block along with feerates at various percentiles. + Zobacz stawki Bitcoin wizualizowane w czasie, w tym minimalne i maksymalne opłaty za blok wraz z opłatami w różnych percentylach. src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts 73 @@ -1614,6 +1892,7 @@ Block Fees + Opłaty bloku src/app/components/block-fees-graph/block-fees-graph.component.html 6 @@ -1630,6 +1909,7 @@ See the average mining fees earned per Bitcoin block visualized in BTC and USD over time. + Zobacz średnie opłaty za wydobycie uzyskane za blok wizualizowane w BTC i USD w czasie. src/app/components/block-fees-graph/block-fees-graph.component.ts 70 @@ -1669,11 +1949,12 @@ select filter categories to highlight matching transactions + wybierz kategorie filtrów, aby wyróżnić pasujące transakcje src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1684,12 +1965,62 @@ 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 + Dowolne + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + Kolory + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + Klasyczne + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + Wiek + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health + Stan zdrowia bloku src/app/components/block-health-graph/block-health-graph.component.html 6 @@ -1702,6 +2033,7 @@ Block Health + Stan zdrowia bloku src/app/components/block-health-graph/block-health-graph.component.ts 63 @@ -1709,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. + Zobacz stan bloku Bitcoin wizualizowany w czasie. Kondycja bloku jest miarą liczby oczekiwanych transakcji zawartych w faktycznie wydobytym bloku. Oczekiwane transakcje są określane przy użyciu ponownej implementacji algorytmu wyboru transakcji Bitcoin Core przez Mempool. src/app/components/block-health-graph/block-health-graph.component.ts 64 @@ -1773,6 +2106,7 @@ Your browser does not support this feature. + Twoja przeglądarka nie obsługuje tej funkcji. src/app/components/block-overview-graph/block-overview-graph.component.html 21 @@ -1810,7 +2144,7 @@ First seen - Pierwszy raz widziano + Pierwszy raz widziana src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 20 @@ -1893,7 +2227,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1922,7 +2256,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1973,6 +2307,7 @@ Accelerated fee rate + Przyspieszony poziom opłat src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 53 @@ -1980,30 +2315,9 @@ 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 + Waga src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 63 @@ -2028,17 +2342,9 @@ transaction.audit-status - - Match - Dopasowanie - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed + Usunięta src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 71 @@ -2065,6 +2371,7 @@ High sigop count + Wysoka liczba sigopów src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 73 @@ -2082,6 +2389,7 @@ Recently CPFP'd + Ostatnio zastosowano CPFP src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 75 @@ -2090,6 +2398,7 @@ Added + Dodany src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -2103,6 +2412,7 @@ Prioritized + Priorytetowe src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 77 @@ -2116,6 +2426,7 @@ Conflict + Konflikt src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -2129,6 +2440,7 @@ Accelerated + Przyspieszona src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 80 @@ -2141,6 +2453,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2162,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. + Zobacz nagrody za bloki Bitcoin wyrażone w BTC i USD, zwizualizowane na przestrzeni czasu. Nagrody za blok to całkowite środki, które wydobywcy otrzymują z subsydium bloku oraz opłat. src/app/components/block-rewards-graph/block-rewards-graph.component.ts 68 @@ -2186,6 +2503,7 @@ See Bitcoin block sizes (MB) and block weights (weight units) visualized over time. + Zobacz rozmiary bloków Bitcoin (MB) i wagi bloków (WU) wizualizowane w czasie. src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 65 @@ -2236,7 +2554,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2305,6 +2623,7 @@ See size, weight, fee range, included transactions, and more for Liquid block (). + Zobacz rozmiar, wagę, zakres opłat, uwzględnione transakcje i nie tylko dla bloku Liquid (). src/app/components/block-view/block-view.component.ts 112 @@ -2320,6 +2639,7 @@ See size, weight, fee range, included transactions, audit (expected v actual), and more for Bitcoin block (). + Zobacz rozmiar, wagę, zakres opłat, uwzględnione transakcje, audyt (oczekiwany vs rzeczywisty) i więcej dla bloku Bitcoin ( ). src/app/components/block-view/block-view.component.ts 114 @@ -2448,6 +2768,7 @@ This block does not belong to the main chain, it has been replaced by: + Blok ten nie należy do łańcucha głównego, został zastąpiony przez: src/app/components/block/block.component.html 5 @@ -2455,23 +2776,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 @@ -2483,6 +2787,7 @@ Stale + Przestarzały src/app/components/block/block.component.html 30 @@ -2492,7 +2797,7 @@ Hash - Hash + Hasz src/app/components/block/block.component.html 44 @@ -2546,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 @@ -2806,6 +3119,7 @@ transaction + transakcja src/app/components/block/block.component.html 331 @@ -2822,6 +3136,7 @@ transactions + transakcji src/app/components/block/block.component.html 332 @@ -2872,6 +3187,7 @@ Acceleration fees paid out-of-band + Opłata przyspieszenia wniesiona poza mempoolem src/app/components/block/block.component.html 433 @@ -2895,7 +3211,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2924,13 +3240,13 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height Pool - Pool + Pula src/app/components/blocks-list/blocks-list.component.html 14 @@ -2997,7 +3313,7 @@ TXs - Transakcje + Transakcji src/app/components/blocks-list/blocks-list.component.html 23 @@ -3016,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. + Zobacz najnowsze bloki Liquid wraz z podstawowymi statystykami, takimi jak wysokość bloku, rozmiar bloku i inne. src/app/components/blocks-list/blocks-list.component.ts 71 @@ -3033,6 +3350,7 @@ See the most recent Bitcoin blocks along with basic stats such as block height, block reward, block size, and more. + Zobacz najnowsze bloki Bitcoin wraz z podstawowymi statystykami, takimi jak wysokość bloku, nagroda za blok, rozmiar bloku i inne. src/app/components/blocks-list/blocks-list.component.ts 73 @@ -3093,7 +3411,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3111,7 +3429,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3166,6 +3484,7 @@ blocks + bloki src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 @@ -3220,7 +3539,7 @@ Previous - Poprzednia + Poprzednie src/app/components/difficulty-mining/difficulty-mining.component.html 28 @@ -3345,6 +3664,7 @@ Halving Countdown + Odliczanie do halvingu src/app/components/difficulty/difficulty.component.html 2 @@ -3353,6 +3673,7 @@ difficulty + trudność src/app/components/difficulty/difficulty.component.html 7 @@ -3361,6 +3682,7 @@ halving + halving src/app/components/difficulty/difficulty.component.html 10 @@ -3378,6 +3700,7 @@ New subsidy + Nowe subsydium src/app/components/difficulty/difficulty.component.html 103 @@ -3386,6 +3709,7 @@ Blocks remaining + Pozostało bloków src/app/components/difficulty/difficulty.component.html 111 @@ -3394,6 +3718,7 @@ Block remaining + Pozostało bloków src/app/components/difficulty/difficulty.component.html 112 @@ -3477,13 +3802,14 @@ Incoming Transactions + Nadchodzące transakcje src/app/components/footer/footer.component.html 5 src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3508,6 +3834,7 @@ WU/s + WU/s src/app/components/footer/footer.component.html 14 @@ -3536,7 +3863,7 @@ Pools Ranking - Ranking kolektywów wydobywczych + Ranking puli wydobywczych src/app/components/graphs/graphs.component.html 10 @@ -3549,7 +3876,7 @@ Pools Dominance - Dominacja kolektywów wydobywczych + Dominacja puli wydobywczych src/app/components/graphs/graphs.component.html 12 @@ -3709,11 +4036,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3732,6 +4059,7 @@ See hashrate and difficulty for the Bitcoin network visualized over time. + Zobacz prędkość haszowania i trudność sieci Bitcoin zwizualizowaną w czasie. src/app/components/hashrate-chart/hashrate-chart.component.ts 76 @@ -3751,7 +4079,7 @@ Pools Historical Dominance - Historyczna dominacja kolektywów wydobywczych + Historyczna dominacja puli wydobywczych src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts 74 @@ -3759,6 +4087,7 @@ See Bitcoin mining pool dominance visualized over time: see how top mining pools' share of total hashrate has fluctuated over time. + Zobacz wizualizację dominacji puli wydobywczych Bitcoina na przestrzeni czasu: zobacz, jak udział największych basenów wydobywczych w całkowitej mocy haszowania zmieniał się z biegiem czasu. src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts 75 @@ -3774,7 +4103,7 @@ Indexing pools hashrate - Indeksowanie prędkości haszowania kolektywu wydobywczego + Indeksowanie prędkości haszowania puli wydobywczej src/app/components/indexing-progress/indexing-progress.component.html 3 @@ -3789,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 @@ -3802,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 @@ -3815,20 +4152,20 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header Dashboard - Dashboard + Pulpit src/app/components/liquid-master-page/liquid-master-page.component.html 64 src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3841,7 +4178,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3858,7 +4195,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -3868,6 +4205,7 @@ Non-Dust Expired + Wygasłe nie będące pyłem src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 3 @@ -3876,6 +4214,7 @@ Total amount of BTC held in non-dust Federation UTXOs that have expired timelocks + Całkowita ilość BTC przechowywanych w UTXO Federacji nie będących pyłem, dla których wygasły blokady czasowe src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 5 @@ -3884,6 +4223,7 @@ UTXOs + UTXO src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 6 @@ -3900,6 +4240,7 @@ Total Expired + Łącznie wygasło src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 12 @@ -3908,6 +4249,7 @@ Total amount of BTC held in Federation UTXOs that have expired timelocks + Całkowita ilość BTC przechowywanych w UTXO Federacji, dla których wygasły blokady czasowe src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 15 @@ -3916,6 +4258,7 @@ Liquid Federation Wallet + Portfel Federacji Liquid src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 5 @@ -3936,6 +4279,7 @@ addresses + adresy src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 8 @@ -3961,6 +4305,7 @@ Related Peg-In + Skojarzone Peg-In src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 11 @@ -3986,6 +4331,7 @@ Expires in + Wygasa w src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 13 @@ -3994,6 +4340,7 @@ Expired since + Wygasła od src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 14 @@ -4002,6 +4349,7 @@ Dust + Pył src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 15 @@ -4010,6 +4358,7 @@ Change output + Wyjście reszty src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 55 @@ -4018,6 +4367,7 @@ blocks + bloki src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 63 @@ -4026,6 +4376,7 @@ Timelock-Expired UTXOs + UTXO Timelock-Expired src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.html 12 @@ -4059,6 +4410,7 @@ Recent Peg-In / Out's + Ostatnie Peg-Iny / Peg-Outy src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 4 @@ -4079,6 +4431,7 @@ Fund / Redemption Tx + Transakcje Finansowania / Odkupienia src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 15 @@ -4087,6 +4440,7 @@ BTC Address + Adres BTC src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -4095,6 +4449,7 @@ Peg out in progress... + Peg out w toku... src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 70 @@ -4103,6 +4458,7 @@ 24h Peg-In Volume + 24-godzinny wolumen Peg-In src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 12 @@ -4111,6 +4467,7 @@ Peg-Ins + Peg-Iny src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 13 @@ -4119,6 +4476,7 @@ 24h Peg-Out Volume + 24-godzinny wolumen Peg-Out src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 18 @@ -4127,6 +4485,7 @@ Peg-Outs + Peg-Outy src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 19 @@ -4135,6 +4494,7 @@ Unpeg + Unpeg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 3 @@ -4143,6 +4503,7 @@ Unpeg Event + Zdarzenie Unpeg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 7 @@ -4151,6 +4512,7 @@ Avg Peg Ratio + Śr. współczynnik peg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 14 @@ -4159,6 +4521,7 @@ Emergency Keys + Klucze awaryjne src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 28 @@ -4167,6 +4530,7 @@ usage + użycie src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 31 @@ -4175,6 +4539,7 @@ Assets vs Liabilities + Aktywa a pasywa src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts 162 @@ -4191,6 +4556,7 @@ As of block + W bloku src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 7 @@ -4203,6 +4569,7 @@ BTC Holdings + Zasoby BTC src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 12 @@ -4211,9 +4578,10 @@ Mining Dashboard + Pulpit wydobycia src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4230,7 +4598,7 @@ Eksplorator Lightning src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4244,6 +4612,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. + Zobacz statystyki transakcji w mempoolu: zakres opłat, łączna wielkość i inne. Bloki Mempool są aktualizowane w czasie rzeczywistym, gdy sieć otrzymuje nowe transakcje. src/app/components/mempool-block/mempool-block.component.ts 62 @@ -4293,22 +4662,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 +4689,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4355,6 +4708,7 @@ Get real-time Bitcoin mining stats like hashrate, difficulty adjustment, block rewards, pool dominance, and more. + Pozyskaj w czasie rzeczywistym statystyki wydobycia Bitcoina, takie jak prędkość haszowania, dostosowanie trudności, nagrody za blok, dominacja wśród pooli i więcej. src/app/components/mining-dashboard/mining-dashboard.component.ts 29 @@ -4362,7 +4716,7 @@ Pools luck (1 week) - Szczęście kolektywu (1 tydzień) + Szczęście puli (1 tydzień) src/app/components/pool-ranking/pool-ranking.component.html 9 @@ -4371,6 +4725,7 @@ Pools Luck + Szczęście puli src/app/components/pool-ranking/pool-ranking.component.html 9 @@ -4383,7 +4738,7 @@ The overall luck of all mining pools over the past week. A luck bigger than 100% means the average block time for the current epoch is less than 10 minutes. - Ogólne szczęście wszystkich kolektywów wydobywczych w ciągu ostatniego tygodnia. Szczęście większe niż 100% oznacza, że średni czas bloku dla danej epoki jest mniejszy niż 10 minut. + Ogólne szczęście wszystkich puli wydobywczych w ciągu ostatniego tygodnia. Szczęście większe niż 100% oznacza, że średni czas bloku dla danej epoki jest mniejszy niż 10 minut. src/app/components/pool-ranking/pool-ranking.component.html 11 @@ -4392,7 +4747,7 @@ Pools count (1w) - Liczba kolektywów (1t) + Liczba puli (1t) src/app/components/pool-ranking/pool-ranking.component.html 17 @@ -4401,6 +4756,7 @@ Pools Count + Ilość puli src/app/components/pool-ranking/pool-ranking.component.html 17 @@ -4413,7 +4769,7 @@ How many unique pools found at least one block over the past week. - Ile unikatowych kolektywów znalazło conajmniej jeden blok w ciągu ostatniego tygodnia. + Ile unikatowych puli znalazło co najmniej jeden blok w ciągu ostatniego tygodnia. src/app/components/pool-ranking/pool-ranking.component.html 19 @@ -4465,7 +4821,7 @@ Avg Health - Średnie zdrowie + Śr. zdrowie src/app/components/pool-ranking/pool-ranking.component.html 96 @@ -4490,7 +4846,7 @@ Avg Block Fees - Średnie opłaty bloku + Śr. opłaty bloku src/app/components/pool-ranking/pool-ranking.component.html 97 @@ -4529,7 +4885,7 @@ Mining Pools - Kolektywy wydobywcze + Pule wydobywcze src/app/components/pool-ranking/pool-ranking.component.ts 59 @@ -4537,6 +4893,7 @@ See the top Bitcoin mining pools ranked by number of blocks mined, over your desired timeframe. + Zobacz wiodące pule wydobywcze Bitcoina, klasyfikowane według liczby wydobytych bloków, w wybranym przez siebie okresie czasu. src/app/components/pool-ranking/pool-ranking.component.ts 60 @@ -4555,11 +4912,11 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 @@ -4567,11 +4924,15 @@ 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 @@ -4592,7 +4953,7 @@ mining pool - kolektyw wydobywczy + pula wydobywcza src/app/components/pool/pool-preview.component.html 3 @@ -4626,6 +4987,7 @@ See mining pool stats for : most recent mined blocks, hashrate over time, total block reward to date, known coinbase addresses, and more. + Zobacz statystyki wydobywcze dla : ostatnio wydobyte bloki, prędkość haszowania w czasie, łączna dotychczasowa nagroda za blok, znane adresy baz monet i nie tylko. src/app/components/pool/pool-preview.component.ts 86 @@ -4726,6 +5088,7 @@ Out-of-band Fees (1w) + Opłaty poza mempoolem (1t) src/app/components/pool/pool.component.html 143 @@ -4734,6 +5097,7 @@ 1m + 1m src/app/components/pool/pool.component.html 144 @@ -4761,11 +5125,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4784,20 +5148,22 @@ Not enough data yet + Jeszcze za mało danych src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance + Dominacja puli src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4842,6 +5208,7 @@ Broadcast a transaction to the network using the transaction's hash. + Rozgłoś transakcję do sieci przy użyciu jej skrótu. src/app/components/push-transaction/push-transaction.component.ts 34 @@ -4849,6 +5216,7 @@ RBF Replacements + Zastąpienia RBF src/app/components/rbf-list/rbf-list.component.html 2 @@ -4861,6 +5229,7 @@ Full RBF + Pełny RBF src/app/components/rbf-list/rbf-list.component.html 24 @@ -4871,12 +5240,13 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf There are no replacements in the mempool yet! + W mempoolu jeszcze nie ma zastąpień! src/app/components/rbf-list/rbf-list.component.html 34 @@ -4885,6 +5255,7 @@ See the most recent RBF replacements on the Bitcoin network, updated in real-time. + Zobacz najnowsze zastąpienia RBF w sieci Bitcoin, aktualizowane w czasie rzeczywistym. src/app/components/rbf-list/rbf-list.component.ts 61 @@ -4911,7 +5282,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -4935,6 +5306,7 @@ remaining + pozostało src/app/components/rbf-timeline/rbf-timeline.component.html 86 @@ -4992,7 +5364,7 @@ Avg Tx Fee - Średnia stopa opłat + Śr. stopa opłat src/app/components/reward-stats/reward-stats.component.html 30 @@ -5054,6 +5426,7 @@ Block Height + Wysokość bloku src/app/components/search-form/search-results/search-results.component.html 3 @@ -5062,6 +5435,7 @@ Transaction + Transakcja src/app/components/search-form/search-results/search-results.component.html 21 @@ -5070,6 +5444,7 @@ Address + Adres src/app/components/search-form/search-results/search-results.component.html 27 @@ -5078,6 +5453,7 @@ Block + Blok src/app/components/search-form/search-results/search-results.component.html 33 @@ -5086,6 +5462,7 @@ Other Network Address + Inny adres sieciowy src/app/components/search-form/search-results/search-results.component.html 39 @@ -5094,6 +5471,7 @@ Addresses + Adresy src/app/components/search-form/search-results/search-results.component.html 47 @@ -5120,6 +5498,7 @@ Liquid Asset + Aktywo Liquid src/app/components/search-form/search-results/search-results.component.html 71 @@ -5146,6 +5525,7 @@ Clock (Mempool) + Zegar (Mempool) src/app/components/statistics/statistics.component.html 17 @@ -5198,6 +5578,7 @@ Cap outliers + Ogranicz wartości skrajne src/app/components/statistics/statistics.component.html 122 @@ -5206,6 +5587,7 @@ See mempool size (in MvB) and transactions per second (in vB/s) visualized over time. + Zobacz rozmiar mempoola (w MvB) oraz transakcje na sekundę (w vB/s) wizualizowane w czasie. src/app/components/statistics/statistics.component.ts 67 @@ -5213,6 +5595,7 @@ See Bitcoin blocks and mempool congestion in real-time in a simplified format perfect for a TV. + Zobacz bloki Bitcoina i zapełnienie mempoola w czasie rzeczywistym w uproszczonym formacie, idealnym dla telewizora. src/app/components/television/television.component.ts 40 @@ -5220,6 +5603,7 @@ Immediately + Natychmiast src/app/components/time/time.component.ts 90 @@ -5415,6 +5799,7 @@ before + wcześniej src/app/components/time/time.component.ts 214 @@ -5507,6 +5892,7 @@ Get real-time status, addresses, fees, script info, and more for transaction with txid . + Uzyskaj w czasie rzeczywistym status, adresy, opłaty, informacje o skrypcie i nie tylko dla transakcji z txid . src/app/components/transaction/transaction-preview.component.ts 93 @@ -5541,11 +5927,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 + Ta transakcja miała być uwzględniona w bloku. src/app/components/transaction/transaction.component.html 78 @@ -5554,6 +5945,7 @@ Expected in Block + Spodziewana w bloku src/app/components/transaction/transaction.component.html 78 @@ -5563,6 +5955,7 @@ This transaction was seen in the mempool prior to mining + Ta transakcja była widoczna w mempoolu przed wydobyciem src/app/components/transaction/transaction.component.html 79 @@ -5571,6 +5964,7 @@ Seen in Mempool + Widziana w Mempoolu src/app/components/transaction/transaction.component.html 79 @@ -5580,6 +5974,7 @@ This transaction was missing from our mempool prior to mining + Tej transakcji nie było w naszym mempoolu zanim została wydobyta src/app/components/transaction/transaction.component.html 80 @@ -5588,6 +5983,7 @@ Not seen in Mempool + Nie widziana w Mempoolu src/app/components/transaction/transaction.component.html 80 @@ -5597,6 +5993,7 @@ This transaction may have been added out-of-band + Ta transakcja mogła zostać dodana poza mempoolem src/app/components/transaction/transaction.component.html 81 @@ -5605,6 +6002,7 @@ This transaction may have been prioritized out-of-band + Ta transakcja mogła mieć podniesiony priorytet poza mempoolem src/app/components/transaction/transaction.component.html 82 @@ -5613,6 +6011,7 @@ This transaction conflicted with another version in our mempool + Ta transakcja kolidowała z inną wersją w naszej pamięci src/app/components/transaction/transaction.component.html 83 @@ -5621,6 +6020,7 @@ Hide accelerator + Ukryj akcelerator src/app/components/transaction/transaction.component.html 108 @@ -5647,20 +6047,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 @@ -5700,6 +6086,7 @@ RBF History + Historia RBF src/app/components/transaction/transaction.component.html 241 @@ -5772,6 +6159,7 @@ Adjusted vsize + Dostosowany do vsize src/app/components/transaction/transaction.component.html 321 @@ -5790,6 +6178,7 @@ Sigops + Sigops src/app/components/transaction/transaction.component.html 347 @@ -5817,6 +6206,7 @@ Error loading transaction data. + Błąd podczas ładowania danych transakcji. src/app/components/transaction/transaction.component.html 521 @@ -5825,6 +6215,7 @@ Accelerated fee rate + Przyspieszony poziom opłat src/app/components/transaction/transaction.component.html 547 @@ -6004,6 +6395,7 @@ 1 block earlier + 1 blok wcześniej src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 123 @@ -6012,6 +6404,7 @@ 1 block later + 1 blok później src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 127 @@ -6020,6 +6413,7 @@ in the same block + w tym samym bloku src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 131 @@ -6028,6 +6422,7 @@ blocks earlier + bloków wcześniej src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 137 @@ -6036,6 +6431,7 @@ spent + wydano src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 148 @@ -6044,6 +6440,7 @@ blocks later + bloków później src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 150 @@ -6142,7 +6539,7 @@ This transaction supports Replace-By-Fee (RBF) allowing fee bumping - Ta transakcja wspiera Replace-By-Fee (RBF) co umożliwia zwiększenie opłaty + Ta transakcja umożliwia Replace-By-Fee (RBF) co umożliwia zwiększenie opłaty src/app/components/tx-features/tx-features.component.html 28 @@ -6151,7 +6548,7 @@ This transaction does NOT support Replace-By-Fee (RBF) and cannot be fee bumped using this method - Ta transakcja NIE obsługuje Replace-By-Fee (RBF) i opłata nie może zostać podbita używając tej metody + Ta transakcja NIE umożliwia Replace-By-Fee (RBF) i opłata nie może zostać podbita używając tej metody src/app/components/tx-features/tx-features.component.html 29 @@ -6204,19 +6601,12 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements + Ostatnie zastąpienia src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements @@ -6225,7 +6615,7 @@ Poprzednia opłata src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6234,51 +6624,55 @@ Nowa opłata src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee Recent Transactions + Ostatnie transakcje src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions Liquid Federation Holdings + Zasoby Federacji 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 Federacji, które wygasły w czasie blokady czasowej 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 + Zasoby L-BTC wobec BTC src/app/dashboard/dashboard.component.html - 183 + 184 src/app/dashboard/dashboard.component.html - 323 + 324 dashboard.lbtc-supply-against-btc-holdings @@ -6287,7 +6681,7 @@ Minimalna opłata src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6297,7 +6691,7 @@ Próg odrzucenia src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6307,7 +6701,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,8 +6713,45 @@ lightning.indexing-in-progress + + Consolidation + Konsolidacje + + src/app/dashboard/dashboard.component.ts + 79 + + + src/app/shared/filters.utils.ts + 107 + + + + Coinjoin + Coinjoiny + + src/app/dashboard/dashboard.component.ts + 80 + + + src/app/shared/filters.utils.ts + 106 + + + + Data + Dane + + 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 dostarcza jedynie dane o sieci Bitcoin. Nie może pomóc w odzyskaniu środków, problemach z portfelem itp.W przypadku takich próśb należy się z nami skontaktować z podmiotem, który pomógł w dokonaniu transakcji (oprogramowanie portfela, firma zajmująca się wymianą itp.). src/app/docs/api-docs/api-docs.component.html 15,16 @@ -6415,6 +6846,7 @@ FAQ + FAQ src/app/docs/docs/docs.component.ts 46 @@ -6422,6 +6854,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. + Znajdź odpowiedzi na często zadawane pytania, takie jak: Co to jest mempool? Dlaczego moja transakcja nie zostaje potwierdzona? Jak mogę uruchomić własną instancję Projektu Open Source The Mempool? I inne. src/app/docs/docs/docs.component.ts 47 @@ -6429,6 +6862,7 @@ REST API + REST API src/app/docs/docs/docs.component.ts 51 @@ -6436,6 +6870,7 @@ Documentation for the liquid.network REST API service: get info on addresses, transactions, assets, blocks, and more. + Dokumentacja dla usługi REST API liquid.network: uzyskaj informacje o adresach, transakcjach, aktywach, blokach i więcej. src/app/docs/docs/docs.component.ts 53 @@ -6443,6 +6878,7 @@ Documentation for the mempool.space REST API service: get info on addresses, transactions, blocks, fees, mining, the Lightning network, and more. + Dokumentacja dla usługi REST API mempool.space: uzyskaj informacje o adresach, transakcjach, blokach, opłatach, wydobyciu, sieci Lightning i więcej. src/app/docs/docs/docs.component.ts 55 @@ -6450,6 +6886,7 @@ WebSocket API + WebSocket API src/app/docs/docs/docs.component.ts 59 @@ -6457,6 +6894,7 @@ Documentation for the liquid.network WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more. + Dokumentacja dla usługi WebSocket API liquid.network: uzyskuj informacje w czasie rzeczywistym o blokach, mempoolach, transakcjach, adresach i więcej. src/app/docs/docs/docs.component.ts 61 @@ -6464,6 +6902,7 @@ Documentation for the mempool.space WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more. + Dokumentacja dla usługi WebSocket API mempool.space: uzyskuj informacje w czasie rzeczywistym o blokach, mempoolach, transakcjach, adresach i więcej. src/app/docs/docs/docs.component.ts 63 @@ -6471,6 +6910,7 @@ Electrum RPC + Electrum RPC src/app/docs/docs/docs.component.ts 67 @@ -6478,6 +6918,7 @@ Documentation for our Electrum RPC interface: get instant, convenient, and reliable access to an Esplora instance. + Dokumentacja naszego interfejsu Electrum RPC: uzyskaj natychmiastowy, wygodny i niezawodny dostęp do instancji Esplora. src/app/docs/docs/docs.component.ts 68 @@ -6794,6 +7235,7 @@ Overview for Lightning channel . See channel capacity, the Lightning nodes involved, related on-chain transactions, and more. + Przegląd kanału Lightning . Zobacz przepustowość kanału, zaangażowane węzły Lightning, powiązane transakcje w łańcuchu i nie tylko. src/app/lightning/channel/channel-preview.component.ts 37 @@ -7017,7 +7459,7 @@ Avg Capacity - Średnia pojemność + Śr. pojemność src/app/lightning/channels-statistics/channels-statistics.component.html 13 @@ -7030,7 +7472,7 @@ Avg Fee Rate - Średni poziom opłat + Śr. poziom opłat src/app/lightning/channels-statistics/channels-statistics.component.html 26 @@ -7052,7 +7494,7 @@ Avg Base Fee - Średnia opłata bazowa + Śr. opłata bazowa src/app/lightning/channels-statistics/channels-statistics.component.html 41 @@ -7292,6 +7734,7 @@ Connect + Połącz src/app/lightning/group/group.component.html 73 @@ -7342,6 +7785,7 @@ Penalties + Kary src/app/lightning/justice-list/justice-list.component.html 4 @@ -7419,6 +7863,7 @@ Get stats on the Lightning network (aggregate capacity, connectivity, etc), Lightning nodes (channels, liquidity, etc) and Lightning channels (status, fees, etc). + Uzyskaj statystyki dotyczące sieci Lightning (łączna pojemność, łączność itp.), węzłów Lightning (kanały, płynność finansowa itp.) oraz kanałów Lightning (status, opłaty itp.). src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts 34 @@ -7528,6 +7973,7 @@ Overview for the Lightning network node named . See channels, capacity, location, fee stats, and more. + Przegląd węzła sieci Lightning o nazwie . Zobacz kanały, pojemność, lokalizację, statystyki opłat i nie tylko. src/app/lightning/node/node-preview.component.ts 52 @@ -7548,7 +7994,7 @@ Avg channel distance - Średnia odległość kanałów + Śr. oddalenie kanałów src/app/lightning/node/node.component.html 60 @@ -7588,6 +8034,7 @@ Decoded + Zdekodowane src/app/lightning/node/node.component.html 134 @@ -7726,6 +8173,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. + Zobacz kanały węzłów Lightning w sieci innych niż Tor zwizualizowane na mapie świata. Najedź kursorem/dotknij punktów na mapie, aby wyświetlić nazwy węzłów i szczegóły. src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 74 @@ -7750,6 +8198,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. + Zobacz lokalizacje węzłów sieci innych niż Tor Lightning wizualizowane na mapie świata. Najedź kursorem/dotknij punktów na mapie, aby wyświetlić nazwy węzłów i szczegóły. src/app/lightning/nodes-map/nodes-map.component.ts 52 @@ -7757,6 +8206,7 @@ See the number of Lightning network nodes visualized over time by network: clearnet only (IPv4, IPv6), darknet (Tor, I2p, cjdns), and both. + Zobacz liczbę węzłów sieci Lightning wizualizowanych w czasie według sieci: tylko clearnet (IPv4, IPv6), darknet (Tor, I2p, cjdns) lub obie. src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 74 @@ -7825,6 +8275,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. + Zobacz rozkład geograficzny sieci Lightning: ile węzłów Lightning jest hostowanych w krajach na całym świecie, łączną pojemność BTC dla każdego kraju i nie tylko. src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts 47 @@ -7878,7 +8329,7 @@ Top ISP - Pierwszy ISP + Wiodący ISP src/app/lightning/nodes-per-country/nodes-per-country.component.html 38 @@ -7895,6 +8346,7 @@ Explore all the Lightning nodes hosted in and see an overview of each node's capacity, number of open channels, and more. + Przeglądaj wszystkie węzły Lightning hostowane w i zobacz przegląd pojemności każdego węzła, liczbę otwartych kanałów i nie tylko. src/app/lightning/nodes-per-country/nodes-per-country.component.ts 44 @@ -7977,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 + Przeglądaj 100 wiodących ISP hostujących węzły Lightning wraz ze statystykami takimi jak łączna liczba węzłów na dostawcę, łączna pojemność BTC na dostawcę i więcej. src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts 54 @@ -8005,7 +8458,7 @@ Top country - Pierwsze państwo + Wiodące państwo src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.html 39 @@ -8018,7 +8471,7 @@ Top node - Pierwszy węzeł + Wiodący węzeł src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.html 45 @@ -8039,6 +8492,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. + Przeglądaj wszystkie węzły Bitcoin Lightning korzystające z ISP [AS] i zobacz zbiorcze statystyki, takie jak łączna liczba węzłów, łączna pojemność i więcej dla tego dostawcy. src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts 45 @@ -8094,6 +8548,7 @@ See the oldest nodes on the Lightning network along with their capacity, number of channels, location, etc. + Zobacz najstarsze węzły w sieci Lightning wraz z ich pojemnością, liczbą kanałów, lokalizacją itp. src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts 28 @@ -8101,6 +8556,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. + Zobacz węzły Lightning z największą płynnością BTC wraz z kluczowymi statystykami, takimi jak liczba otwartych kanałów, lokalizacja, wiek węzła i więcej. src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts 35 @@ -8108,6 +8564,7 @@ See Lightning nodes with the most channels open along with high-level stats like total node capacity, node age, and more. + Zobacz węzły Lightning z największą liczbą otwartych kanałów wraz z kluczowymi statystykami, takimi jak całkowita pojemność węzła, jego wiek i więcej. src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.ts 39 @@ -8132,6 +8589,7 @@ See the top Lightning network nodes ranked by liquidity, connectivity, and age. + Zobacz wiodące węzły sieci Lightning, klasyfikowane według płynności finansowej, łączności i wieku. src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts 23 @@ -8139,6 +8597,7 @@ See the capacity of the Lightning network visualized over time in terms of the number of open channels and total bitcoin capacity. + Zobacz pojemność sieci Lightning wizualizowaną w czasie pod względem liczby otwartych kanałów i całkowitej ilości bitcoinów. src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 71 @@ -8146,6 +8605,7 @@ confirmation + potwierdzenie src/app/shared/components/confirmations/confirmations.component.html 4 @@ -8155,6 +8615,7 @@ confirmations + potwierdzeń src/app/shared/components/confirmations/confirmations.component.html 5 @@ -8164,6 +8625,7 @@ Replaced + Zastąpiona src/app/shared/components/confirmations/confirmations.component.html 12 @@ -8183,6 +8645,7 @@ sat/WU + sat/WU src/app/shared/components/fee-rate/fee-rate.component.html 4 @@ -8196,6 +8659,7 @@ My Account + Moje konto src/app/shared/components/global-footer/global-footer.component.html 25 @@ -8208,6 +8672,7 @@ Explore + Eksploruj src/app/shared/components/global-footer/global-footer.component.html 41 @@ -8216,6 +8681,7 @@ Connect to our Nodes + Połącz się do naszych węzłów src/app/shared/components/global-footer/global-footer.component.html 46 @@ -8224,6 +8690,7 @@ API Documentation + Dokumentacja API src/app/shared/components/global-footer/global-footer.component.html 47 @@ -8232,6 +8699,7 @@ Learn + Dowiedz się więcej src/app/shared/components/global-footer/global-footer.component.html 50 @@ -8240,6 +8708,7 @@ What is a mempool? + Co to jest mempool? src/app/shared/components/global-footer/global-footer.component.html 51 @@ -8248,6 +8717,7 @@ What is a block explorer? + Co to jest eksplorator bloków? src/app/shared/components/global-footer/global-footer.component.html 52 @@ -8256,6 +8726,7 @@ What is a mempool explorer? + Co to jest eksplorator mempoola? src/app/shared/components/global-footer/global-footer.component.html 53 @@ -8264,6 +8735,7 @@ Why isn't my transaction confirming? + Czemu moja transakcja nie jest potwierdzona? src/app/shared/components/global-footer/global-footer.component.html 54 @@ -8272,6 +8744,7 @@ More FAQs » + Więcej FAQ » src/app/shared/components/global-footer/global-footer.component.html 55 @@ -8280,6 +8753,7 @@ Networks + Sieci src/app/shared/components/global-footer/global-footer.component.html 59 @@ -8288,6 +8762,7 @@ Mainnet Explorer + Eksplorator Mainnet src/app/shared/components/global-footer/global-footer.component.html 60 @@ -8296,6 +8771,7 @@ Testnet Explorer + Eksplorator Testnet src/app/shared/components/global-footer/global-footer.component.html 61 @@ -8304,6 +8780,7 @@ Signet Explorer + Eksplorator Signet src/app/shared/components/global-footer/global-footer.component.html 62 @@ -8312,6 +8789,7 @@ Liquid Testnet Explorer + Eksplorator Liquid Testnet src/app/shared/components/global-footer/global-footer.component.html 63 @@ -8320,6 +8798,7 @@ Liquid Explorer + Eksplorator Liquid src/app/shared/components/global-footer/global-footer.component.html 64 @@ -8337,6 +8816,7 @@ Clock (Mined) + Zegar (wydobyty) src/app/shared/components/global-footer/global-footer.component.html 70 @@ -8345,6 +8825,7 @@ Legal + Informacje prawen src/app/shared/components/global-footer/global-footer.component.html 75 @@ -8373,6 +8854,7 @@ Trademark Policy + Polityka znaku towarowego src/app/shared/components/global-footer/global-footer.component.html 78 @@ -8382,6 +8864,7 @@ Third-party Licenses + Licencje stron trzecich src/app/shared/components/global-footer/global-footer.component.html 79 @@ -8391,12 +8874,45 @@ This is a test network. Coins have no value. + To jest sieć testowa. Monety nie mają wartości. src/app/shared/components/testnet-alert/testnet-alert.component.html 3 warning-testnet + + Address Types + Typy adresów + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + Zachowanie + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + Heurystyki + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + Flagi sighash + + 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..541aa0a62 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 stimul licitație 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 + Panou 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 + Licitație Med Max 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,13 +3240,13 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height Pool - Fond comun + Fond src/app/components/blocks-list/blocks-list.component.html 14 @@ -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-Praf Expirat src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 3 @@ -3872,6 +4214,7 @@ Total amount of BTC held in non-dust Federation UTXOs that have expired timelocks + Cantitate totală de BTC din UTXO-uri non-praf Federation care au timelocks expirat src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 5 @@ -3880,6 +4223,7 @@ UTXOs + UTXO-uri src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 6 @@ -3896,6 +4240,7 @@ Total Expired + Total Expirat src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 12 @@ -3904,6 +4249,7 @@ Total amount of BTC held in Federation UTXOs that have expired timelocks + Cantitate totală de BTC din UTXO-uri Federation care au timelocks expirat src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 15 @@ -3912,6 +4258,7 @@ Liquid Federation Wallet + Portofel Liquid Federation src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 5 @@ -3932,6 +4279,7 @@ addresses + adrese src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 8 @@ -3957,6 +4305,7 @@ Related Peg-In + Peg-In conexe src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 11 @@ -3982,6 +4331,7 @@ Expires in + Expiră în src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 13 @@ -3990,6 +4340,7 @@ Expired since + Expirat din src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 14 @@ -3998,6 +4349,7 @@ Dust + Praf src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 15 @@ -4006,6 +4358,7 @@ Change output + Ieșire rest src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 55 @@ -4014,6 +4367,7 @@ blocks + blocuri src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 63 @@ -4022,6 +4376,7 @@ Timelock-Expired UTXOs + UTXO-uri cu Timelock expirat src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.html 12 @@ -4055,6 +4410,7 @@ Recent Peg-In / Out's + Peg-In / Out's recente src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 4 @@ -4075,6 +4431,7 @@ Fund / Redemption Tx + Tx Finanțare / Rambursare src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 15 @@ -4083,6 +4440,7 @@ BTC Address + Adresă BTC src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -4091,6 +4449,7 @@ Peg out in progress... + Peg out în curs... src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 70 @@ -4099,6 +4458,7 @@ 24h Peg-In Volume + Volum Peg-In 24h src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 12 @@ -4107,6 +4467,7 @@ Peg-Ins + Peg-Ins src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 13 @@ -4115,6 +4476,7 @@ 24h Peg-Out Volume + Volum Peg-Out 24h src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 18 @@ -4123,6 +4485,7 @@ Peg-Outs + Peg-Outs src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 19 @@ -4131,6 +4494,7 @@ Unpeg + Unpeg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 3 @@ -4139,6 +4503,7 @@ Unpeg Event + Eveniment Unpeg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 7 @@ -4147,6 +4512,7 @@ Avg Peg Ratio + Rație medie Peg src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 14 @@ -4155,6 +4521,7 @@ Emergency Keys + Chei de urgență src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 28 @@ -4163,6 +4530,7 @@ usage + utilizare src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 31 @@ -4171,6 +4539,7 @@ Assets vs Liabilities + Active vs datorii src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts 162 @@ -4187,6 +4556,7 @@ As of block + De la bloc src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 7 @@ -4199,6 +4569,7 @@ BTC Holdings + Active BTC src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 12 @@ -4207,9 +4578,10 @@ Mining Dashboard + Panou Minerit src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4226,7 +4598,7 @@ Explorator Lightning src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4240,6 +4612,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. + Vedeți statistici pentru tranzacții din mempool: interval de comisionare, mărime agregată și altele. Blocurile din Mempool sunt actualizate în timp real pe măsură ce rețeaua primește tranzacții noi. src/app/components/mempool-block/mempool-block.component.ts 62 @@ -4263,6 +4636,7 @@ Count + Valoare src/app/components/mempool-graph/mempool-graph.component.ts 325 @@ -4288,22 +4662,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 @@ -4324,13 +4682,14 @@ Recent Blocks + Blocuri recente 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 +4708,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 @@ -4365,6 +4725,7 @@ Pools Luck + Noroc fonduri src/app/components/pool-ranking/pool-ranking.component.html 9 @@ -4395,6 +4756,7 @@ Pools Count + Număr fonduri src/app/components/pool-ranking/pool-ranking.component.html 17 @@ -4505,6 +4867,7 @@ Empty Blocks + Blocuri goale src/app/components/pool-ranking/pool-ranking.component.html 98 @@ -4530,6 +4893,7 @@ See the top Bitcoin mining pools ranked by number of blocks mined, over your desired timeframe. + Vedeți topul fondurilor de minerit Bitcoin clasate în funcție de numărul de blocuri minerite, în intervalul de timp dorit. src/app/components/pool-ranking/pool-ranking.component.ts 60 @@ -4548,11 +4912,11 @@ src/app/components/pool-ranking/pool-ranking.component.ts - 205 + 206 src/app/components/pool-ranking/pool-ranking.component.ts - 208 + 209 @@ -4560,11 +4924,15 @@ 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 +4987,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 @@ -4685,6 +5054,7 @@ Blocks (24h) + Blocuri (24h) src/app/components/pool/pool.component.html 120 @@ -4718,6 +5088,7 @@ Out-of-band Fees (1w) + Comisioane plătite extern (1 săpt) src/app/components/pool/pool.component.html 143 @@ -4726,6 +5097,7 @@ 1m + 1m src/app/components/pool/pool.component.html 144 @@ -4753,11 +5125,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4776,20 +5148,22 @@ Not enough data yet + Date suficiente încă src/app/components/pool/pool.component.ts - 143 + 144 Pool Dominance + Dominanța fondurilor src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -4826,6 +5200,7 @@ Broadcast Transaction + Difuzare Tranzacție src/app/components/push-transaction/push-transaction.component.ts 33 @@ -4833,6 +5208,7 @@ Broadcast a transaction to the network using the transaction's hash. + Difuzați o tranzacție în rețeaua folosind hash-ul tranzacției. src/app/components/push-transaction/push-transaction.component.ts 34 @@ -4840,6 +5216,7 @@ RBF Replacements + Înlocuiri RBF src/app/components/rbf-list/rbf-list.component.html 2 @@ -4852,6 +5229,7 @@ Full RBF + Full RBF src/app/components/rbf-list/rbf-list.component.html 24 @@ -4862,12 +5240,13 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf There are no replacements in the mempool yet! + Nu există încă înlocuitori în mempool! src/app/components/rbf-list/rbf-list.component.html 34 @@ -4876,6 +5255,7 @@ See the most recent RBF replacements on the Bitcoin network, updated in real-time. + Vedeți cele mai recente înlocuiri RBF din rețeaua Bitcoin, actualizate în timp real. src/app/components/rbf-list/rbf-list.component.ts 61 @@ -4902,7 +5282,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -4926,6 +5306,7 @@ remaining + rămas src/app/components/rbf-timeline/rbf-timeline.component.html 86 @@ -5045,6 +5426,7 @@ Block Height + Înălțimea blocului src/app/components/search-form/search-results/search-results.component.html 3 @@ -5053,6 +5435,7 @@ Transaction + Tranzacție src/app/components/search-form/search-results/search-results.component.html 21 @@ -5061,6 +5444,7 @@ Address + Adresă src/app/components/search-form/search-results/search-results.component.html 27 @@ -5069,6 +5453,7 @@ Block + Bloc src/app/components/search-form/search-results/search-results.component.html 33 @@ -5077,6 +5462,7 @@ Other Network Address + Altă adresă de rețea src/app/components/search-form/search-results/search-results.component.html 39 @@ -5085,6 +5471,7 @@ Addresses + Adrese src/app/components/search-form/search-results/search-results.component.html 47 @@ -5111,6 +5498,7 @@ Liquid Asset + Activ Liquid src/app/components/search-form/search-results/search-results.component.html 71 @@ -5137,6 +5525,7 @@ Clock (Mempool) + Ceas (Mempool) src/app/components/statistics/statistics.component.html 17 @@ -5189,6 +5578,7 @@ Cap outliers + Valori limită aberante src/app/components/statistics/statistics.component.html 122 @@ -5197,6 +5587,7 @@ See mempool size (in MvB) and transactions per second (in vB/s) visualized over time. + Vedeți mărimea mempool (în MvB) și tranzacții pe secundă (în vB/s) vizualizate în timp. src/app/components/statistics/statistics.component.ts 67 @@ -5204,6 +5595,7 @@ See Bitcoin blocks and mempool congestion in real-time in a simplified format perfect for a TV. + Vedeți blocurile Bitcoin și congestionarea din mempool în timp real într-un format simplificat perfect pentru televizor. src/app/components/television/television.component.ts 40 @@ -5211,6 +5603,7 @@ Immediately + Imediat src/app/components/time/time.component.ts 90 @@ -5406,6 +5799,7 @@ before + înainte src/app/components/time/time.component.ts 214 @@ -5498,6 +5892,7 @@ Get real-time status, addresses, fees, script info, and more for transaction with txid . + Obțineți starea în timp real, adrese, comisioane, informații despre script și altele pentru tranzacția cu txid . src/app/components/transaction/transaction-preview.component.ts 93 @@ -5532,11 +5927,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 + Această tranzacție a fost estimat să fie inclusă în bloc src/app/components/transaction/transaction.component.html 78 @@ -5545,6 +5945,7 @@ Expected in Block + Bloc estimat src/app/components/transaction/transaction.component.html 78 @@ -5554,6 +5955,7 @@ This transaction was seen in the mempool prior to mining + Această tranzacție a fost văzută în mempool înainte de minerit src/app/components/transaction/transaction.component.html 79 @@ -5562,6 +5964,7 @@ Seen in Mempool + Văzut în Mempool src/app/components/transaction/transaction.component.html 79 @@ -5571,6 +5974,7 @@ This transaction was missing from our mempool prior to mining + Această tranzacție lipsea din mempool-ul nostru înainte de minerit src/app/components/transaction/transaction.component.html 80 @@ -5579,6 +5983,7 @@ Not seen in Mempool + Nu a fost văzut în Mempool src/app/components/transaction/transaction.component.html 80 @@ -5588,6 +5993,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 +6002,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 @@ -5604,6 +6011,7 @@ This transaction conflicted with another version in our mempool + Această tranzacție a intrat în conflict cu o altă versiune din mempool-ul nostru src/app/components/transaction/transaction.component.html 83 @@ -5612,6 +6020,7 @@ Hide accelerator + Ascunde accelerator src/app/components/transaction/transaction.component.html 108 @@ -5638,19 +6047,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 @@ -5690,6 +6086,7 @@ RBF History + Istoric RBF src/app/components/transaction/transaction.component.html 241 @@ -5762,6 +6159,7 @@ Adjusted vsize + Vsize ajustat src/app/components/transaction/transaction.component.html 321 @@ -5780,6 +6178,7 @@ Sigops + Sigops src/app/components/transaction/transaction.component.html 347 @@ -5807,6 +6206,7 @@ Error loading transaction data. + Eroare la încărcarea datelor tranzacției. src/app/components/transaction/transaction.component.html 521 @@ -5815,6 +6215,7 @@ Accelerated fee rate + Comision accelerat src/app/components/transaction/transaction.component.html 547 @@ -5994,6 +6395,7 @@ 1 block earlier + 1 bloc în urma src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 123 @@ -6002,6 +6404,7 @@ 1 block later + 1 bloc mai târziu src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 127 @@ -6010,6 +6413,7 @@ in the same block + În același bloc src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 131 @@ -6018,6 +6422,7 @@ blocks earlier + blocuri în urmă src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 137 @@ -6026,6 +6431,7 @@ spent + cheltuit src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 148 @@ -6034,6 +6440,7 @@ blocks later + blocuri mai târziu src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 150 @@ -6194,79 +6601,78 @@ fees-box.transaction-fees - - Mempool Goggles - - src/app/dashboard/dashboard.component.html - 21 - - dashboard.mempool-goggles - Recent Replacements + Înlocuiri recente src/app/dashboard/dashboard.component.html - 64 + 65 dashboard.recent-rbf-replacements Previous fee + Comision anterior src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee New fee + Comision nou src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee Recent Transactions + Tranzactii recente src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions Liquid Federation Holdings + Active Liquid Federation src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings Federation Timelock-Expired UTXOs + UTXO-uri Federation cu Timelock expirat 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 + Cantitate L-BTC versus active 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 +6681,7 @@ Comision minim src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6285,7 +6691,7 @@ Înlăturare src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6295,7 +6701,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,8 +6713,45 @@ lightning.indexing-in-progress + + Consolidation + Consolidare + + 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 + Date + + 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 doar furnizează date despre rețeaua Bitcoin. Nu vă poate ajuta să recuperați fonduri, probleme cu portofelul etc.Pentru orice astfel de solicitări, trebuie să vă adresați entității care a ajutat la efectuarea tranzacției (aplicația de portofel, exchange etc.). src/app/docs/api-docs/api-docs.component.html 15,16 @@ -6403,6 +6846,7 @@ FAQ + Întrebări frecvente src/app/docs/docs/docs.component.ts 46 @@ -6410,6 +6854,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. + Obțineți răspunsuri la întrebări frecvente precum: Ce este un mempool? De ce nu se confirmă tranzacția mea? Cum pot rula propria instanță a proiectului Open Source Mempool? Și altele. src/app/docs/docs/docs.component.ts 47 @@ -6417,6 +6862,7 @@ REST API + REST API src/app/docs/docs/docs.component.ts 51 @@ -6424,6 +6870,7 @@ Documentation for the liquid.network REST API service: get info on addresses, transactions, assets, blocks, and more. + Documentație pentru serviciul API REST liquid.network: obțineți informații despre adrese, tranzacții, active, blocuri și altele. src/app/docs/docs/docs.component.ts 53 @@ -6431,6 +6878,7 @@ Documentation for the mempool.space REST API service: get info on addresses, transactions, blocks, fees, mining, the Lightning network, and more. + Documentație pentru serviciul mempool.space REST API: obțineți informații despre adrese, tranzacții, blocuri, comisioane, minerit, rețeaua Lightning și altele. src/app/docs/docs/docs.component.ts 55 @@ -6438,6 +6886,7 @@ WebSocket API + WebSocket API src/app/docs/docs/docs.component.ts 59 @@ -6445,6 +6894,7 @@ Documentation for the liquid.network WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more. + Documentație pentru serviciul liquid.network WebSocket API: obțineți informații în timp real despre blocuri, mempool-uri, tranzacții, adrese și altele. src/app/docs/docs/docs.component.ts 61 @@ -6452,6 +6902,7 @@ Documentation for the mempool.space WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more. + Documentație pentru serviciul mempool.space WebSocket API: obțineți informații în timp real despre blocuri, mempool-uri, tranzacții, adrese și altele. src/app/docs/docs/docs.component.ts 63 @@ -6459,6 +6910,7 @@ Electrum RPC + Electrum RPC src/app/docs/docs/docs.component.ts 67 @@ -6466,6 +6918,7 @@ Documentation for our Electrum RPC interface: get instant, convenient, and reliable access to an Esplora instance. + Documentație pentru interfața noastră Electrum RPC: obțineți acces instantaneu, convenabil și de încredere la o instanță Esplora. src/app/docs/docs/docs.component.ts 68 @@ -6782,6 +7235,7 @@ Overview for Lightning channel . See channel capacity, the Lightning nodes involved, related on-chain transactions, and more. + Sumar pentru canalul Lightning . Vedeți capacitatea canalului, nodurile Lightning implicate, tranzacțiile în-lanț asociate și altele. src/app/lightning/channel/channel-preview.component.ts 37 @@ -7280,6 +7734,7 @@ Connect + Conectați src/app/lightning/group/group.component.html 73 @@ -7330,6 +7785,7 @@ Penalties + Penalizări src/app/lightning/justice-list/justice-list.component.html 4 @@ -7407,6 +7863,7 @@ Get stats on the Lightning network (aggregate capacity, connectivity, etc), Lightning nodes (channels, liquidity, etc) and Lightning channels (status, fees, etc). + Obțineți statistici despre rețeaua Lightning (capacitate agregată, conectivitate etc.), nodurile Lightning (canale, lichiditate etc.) și canalele Lightning (stare, comisioane etc.). src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts 34 @@ -7516,6 +7973,7 @@ Overview for the Lightning network node named . See channels, capacity, location, fee stats, and more. + Sumar al nodului de rețea Lightning numit . Vedeți canalele, capacitatea, locația, statisticile comisioanelor și altele. src/app/lightning/node/node-preview.component.ts 52 @@ -7576,6 +8034,7 @@ Decoded + Decodat src/app/lightning/node/node.component.html 134 @@ -7714,6 +8173,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. + Vedeți canalele nodurilor de rețea non-Tor Lightning vizualizate pe o hartă a lumii. Treceți cu mouse-ul/atingeți punctele de pe hartă pentru numele și detaliile nodurilor. src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 74 @@ -7738,6 +8198,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. + Vedeți locațiile nodurilor de rețea non-Tor Lightning vizualizate pe o hartă a lumii. Treceți cu mouse-ul/atingeți punctele de pe hartă pentru numele și detaliile nodurilor. src/app/lightning/nodes-map/nodes-map.component.ts 52 @@ -7745,6 +8206,7 @@ See the number of Lightning network nodes visualized over time by network: clearnet only (IPv4, IPv6), darknet (Tor, I2p, cjdns), and both. + Vedeți numărul de noduri de rețea Lightning vizualizate în timp în funcție de rețea: doar clearnet (IPv4, IPv6), darknet (Tor, I2p, cjdns) și ambele. src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 74 @@ -7813,6 +8275,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. + Vedeți o defalcare geografică a rețelei Lightning: câte noduri Lightning sunt găzduite în țări din întreaga lume, capacitatea BTC agregată pentru fiecare țară și altele. src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts 47 @@ -7883,6 +8346,7 @@ Explore all the Lightning nodes hosted in and see an overview of each node's capacity, number of open channels, and more. + Explorați toate nodurile Lightning găzduite în și vedeți un sumar a capacității fiecărui nod, a numărului de canale deschise și altele. src/app/lightning/nodes-per-country/nodes-per-country.component.ts 44 @@ -7965,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 + Răsfoiți primii 100 de ISP-uri care găzduiesc noduri Lightning împreună cu statistici precum numărul total de noduri per ISP, capacitatea BTC agregată per ISP și altele src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts 54 @@ -8027,6 +8492,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. + Răsfoiți toate nodurile Bitcoin Lightning folosind [AS] ISP și vedeți statistici agregate, cum ar fi numărul total de noduri, capacitatea totală, și altele pentru ISP. src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts 45 @@ -8082,6 +8548,7 @@ See the oldest nodes on the Lightning network along with their capacity, number of channels, location, etc. + Vedeți cele mai vechi noduri din rețeaua Lightning împreună cu capacitatea lor, numărul de canale, locația etc. src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts 28 @@ -8089,6 +8556,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. + Vedeți nodurile Lightning cu cea mai mare lichiditate BTC implementată împreună cu statistici de nivel înalt, cum ar fi numărul de canale deschise, locația, vârsta nodului și altele. src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts 35 @@ -8096,6 +8564,7 @@ See Lightning nodes with the most channels open along with high-level stats like total node capacity, node age, and more. + Vedeți nodurile Lightning cu cele mai multe canale deschise împreună cu statistici de nivel înalt, cum ar fi capacitatea totală a nodurilor, vârsta nodurilor și altele. src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.ts 39 @@ -8120,6 +8589,7 @@ See the top Lightning network nodes ranked by liquidity, connectivity, and age. + Vedeți topul nodurilor de rețea Lightning clasate în funcție de lichiditate, conectivitate și vechime. src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts 23 @@ -8127,6 +8597,7 @@ See the capacity of the Lightning network visualized over time in terms of the number of open channels and total bitcoin capacity. + Vedeți capacitatea rețelei Lightning vizualizată în timp în ceea ce privește numărul de canale deschise și capacitatea totală de bitcoin. src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 71 @@ -8134,6 +8605,7 @@ confirmation + confirmare src/app/shared/components/confirmations/confirmations.component.html 4 @@ -8143,6 +8615,7 @@ confirmations + confirmări src/app/shared/components/confirmations/confirmations.component.html 5 @@ -8152,6 +8625,7 @@ Replaced + Înlocuit src/app/shared/components/confirmations/confirmations.component.html 12 @@ -8171,6 +8645,7 @@ sat/WU + sat/WU src/app/shared/components/fee-rate/fee-rate.component.html 4 @@ -8184,6 +8659,7 @@ My Account + Contul meu src/app/shared/components/global-footer/global-footer.component.html 25 @@ -8196,6 +8672,7 @@ Explore + Explorați src/app/shared/components/global-footer/global-footer.component.html 41 @@ -8204,6 +8681,7 @@ Connect to our Nodes + Conectați-vă la nodurile noastre src/app/shared/components/global-footer/global-footer.component.html 46 @@ -8212,6 +8690,7 @@ API Documentation + Documentația API src/app/shared/components/global-footer/global-footer.component.html 47 @@ -8220,6 +8699,7 @@ Learn + Învățați src/app/shared/components/global-footer/global-footer.component.html 50 @@ -8228,6 +8708,7 @@ What is a mempool? + Ce este un mempool? src/app/shared/components/global-footer/global-footer.component.html 51 @@ -8236,6 +8717,7 @@ What is a block explorer? + Ce este un explorator de blocuri? src/app/shared/components/global-footer/global-footer.component.html 52 @@ -8244,6 +8726,7 @@ What is a mempool explorer? + Ce este un explorator mempool? src/app/shared/components/global-footer/global-footer.component.html 53 @@ -8252,6 +8735,7 @@ Why isn't my transaction confirming? + De ce nu se confirmă tranzacția mea? src/app/shared/components/global-footer/global-footer.component.html 54 @@ -8260,6 +8744,7 @@ More FAQs » + Mai multe Întrebări frecvente » src/app/shared/components/global-footer/global-footer.component.html 55 @@ -8268,6 +8753,7 @@ Networks + Rețele src/app/shared/components/global-footer/global-footer.component.html 59 @@ -8276,6 +8762,7 @@ Mainnet Explorer + Explorator Mainnet src/app/shared/components/global-footer/global-footer.component.html 60 @@ -8284,6 +8771,7 @@ Testnet Explorer + Explorator Testnet src/app/shared/components/global-footer/global-footer.component.html 61 @@ -8292,6 +8780,7 @@ Signet Explorer + Explorator Signet src/app/shared/components/global-footer/global-footer.component.html 62 @@ -8300,6 +8789,7 @@ Liquid Testnet Explorer + Explorator Liquid Testnet src/app/shared/components/global-footer/global-footer.component.html 63 @@ -8308,6 +8798,7 @@ Liquid Explorer + Explorator Liquid src/app/shared/components/global-footer/global-footer.component.html 64 @@ -8316,6 +8807,7 @@ Tools + Instrumente src/app/shared/components/global-footer/global-footer.component.html 68 @@ -8324,6 +8816,7 @@ Clock (Mined) + Ceas (Minerit) src/app/shared/components/global-footer/global-footer.component.html 70 @@ -8332,6 +8825,7 @@ Legal + Legal src/app/shared/components/global-footer/global-footer.component.html 75 @@ -8360,6 +8854,7 @@ Trademark Policy + Politica privind mărcile comerciale src/app/shared/components/global-footer/global-footer.component.html 78 @@ -8369,6 +8864,7 @@ Third-party Licenses + Licențe de la terți src/app/shared/components/global-footer/global-footer.component.html 79 @@ -8378,12 +8874,45 @@ This is a test network. Coins have no value. + Aceasta este o rețea de testare. Monedele nu au valoare. src/app/shared/components/testnet-alert/testnet-alert.component.html 3 warning-testnet + + Address Types + Tipuri de adrese + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + Comportament + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + Euristică + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + 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..3e26b2863 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,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 сат 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 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 + Приблизительная оценка дополнительной платы + + 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 Комиссия за ускорение @@ -591,6 +815,7 @@ No accelerated transaction for this timeframe + В этом временном отрезке нет ускоренной транзакции src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 121 @@ -598,6 +823,7 @@ At block: + В блоке: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 165 @@ -617,6 +843,7 @@ Around block: + Около блока: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 167 @@ -666,6 +893,7 @@ Total Bid Boost + Общее повышение ставок src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 11 @@ -731,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 @@ -746,17 +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 @@ -766,6 +998,7 @@ Acceleration Bid + Ставка на ускорение src/app/components/acceleration/accelerations-list/accelerations-list.component.html 13 @@ -775,6 +1008,7 @@ Requested + Запрошено src/app/components/acceleration/accelerations-list/accelerations-list.component.html 14 @@ -787,6 +1021,7 @@ Bid Boost + Повышение ставок src/app/components/acceleration/accelerations-list/accelerations-list.component.html 17 @@ -824,7 +1059,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -844,6 +1079,7 @@ Completed 🔄 + Выполнено 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 54,55 @@ -851,6 +1087,7 @@ Failed 🔄 + Провалилось 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 55,56 @@ -859,6 +1096,7 @@ There are no active accelerations + Активных ускорений нет src/app/components/acceleration/accelerations-list/accelerations-list.component.html 96 @@ -867,6 +1105,7 @@ There are no recent accelerations + В последнее время ускорений нет src/app/components/acceleration/accelerations-list/accelerations-list.component.html 97 @@ -875,6 +1114,7 @@ Active Accelerations + Активные ускорения src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 10 @@ -887,6 +1127,7 @@ Acceleration stats + Статистика ускорений src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 24 @@ -895,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 » Подробнее » @@ -936,6 +1170,7 @@ Recent Accelerations + Недавние ускорения src/app/components/acceleration/accelerator-dashboard/accelerator-dashboard.component.html 86 @@ -944,18 +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 @@ -964,6 +1200,7 @@ Avg Max Bid + Средняя максимальная ставка src/app/components/acceleration/pending-stats/pending-stats.component.html 11 @@ -976,6 +1213,7 @@ Total Vsize + Общий виртуальный размер src/app/components/acceleration/pending-stats/pending-stats.component.html 20 @@ -997,6 +1235,7 @@ Balance History + История баланса src/app/components/address-graph/address-graph.component.html 6 @@ -1005,6 +1244,7 @@ Balance:Balance + Баланс:Баланс src/app/components/address-graph/address-graph.component.ts 162 @@ -1012,6 +1252,7 @@ Balances + Балансы src/app/components/address-group/address-group.component.html 4 @@ -1020,6 +1261,7 @@ Total + Всего src/app/components/address-group/address-group.component.html 9 @@ -1190,7 +1432,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1208,6 +1450,7 @@ See mempool transactions, confirmed transactions, balance, and more for address . + Отображение транзакций мемпула, подтвержденных транзакций, балансов и многого другого для <x id="PH" equiv-text="this.stateService.network==='liquid'||this.stateService.network==='liquidtestnet'?'Liquid':'Bitcoin'"/><x id="PH_1" equiv-text="seoDescriptionNetwork(this.stateService.network)"/> адреса <span class='notranslate'><x id="INTERPOLATION" equiv-text="this.addressString"/>. src/app/components/address/address-preview.component.ts 72 @@ -1219,6 +1462,7 @@ of transaction + из транзакций src/app/components/address/address.component.html 69 @@ -1227,6 +1471,7 @@ of transactions + из транзакций src/app/components/address/address.component.html 70 @@ -1248,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 @@ -1419,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 @@ -1438,6 +1685,7 @@ No featured assets + Нет соответствующих активов src/app/components/assets/assets-featured/assets-featured.component.html 3 @@ -1480,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 @@ -1508,6 +1760,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1602,6 +1858,7 @@ Avg Block Fee (24h) + Ср. комиссия за блок (24 часа) src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 51 @@ -1614,6 +1871,7 @@ Avg Block Fee (1m) + Ср. комиссия за блок (1 мин.) src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.html 57 @@ -1634,6 +1892,7 @@ Block Fees + Комиссии за блок src/app/components/block-fees-graph/block-fees-graph.component.html 6 @@ -1690,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 @@ -1705,10 +1965,59 @@ 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 Здоровье блока @@ -1797,6 +2106,7 @@ Your browser does not support this feature. + Ваш браузер не поддерживает эту функцию. src/app/components/block-overview-graph/block-overview-graph.component.html 21 @@ -1917,7 +2227,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1946,7 +2256,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -2005,28 +2315,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 +2342,6 @@ transaction.audit-status - - Match - Совпадение - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed Удалено @@ -2092,6 +2371,7 @@ High sigop count + Высокое количество Sigop src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 73 @@ -2118,6 +2398,7 @@ Added + Добавлен src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -2131,6 +2412,7 @@ Prioritized + Приоритет src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 77 @@ -2144,6 +2426,7 @@ Conflict + Конфликт src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -2170,6 +2453,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2267,7 +2554,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2489,23 +2776,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 +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 @@ -2841,6 +3119,7 @@ transaction + транзакция src/app/components/block/block.component.html 331 @@ -2857,6 +3136,7 @@ transactions + транзакции src/app/components/block/block.component.html 332 @@ -2907,6 +3187,7 @@ Acceleration fees paid out-of-band + Плата за ускорение выплачивается вне диапазона src/app/components/block/block.component.html 433 @@ -2930,7 +3211,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2959,7 +3240,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3051,11 +3332,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3130,7 +3411,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3148,7 +3429,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3383,6 +3664,7 @@ Halving Countdown + Обратный отсчет до халвинга src/app/components/difficulty/difficulty.component.html 2 @@ -3391,6 +3673,7 @@ difficulty + сложность src/app/components/difficulty/difficulty.component.html 7 @@ -3399,6 +3682,7 @@ halving + халвинг src/app/components/difficulty/difficulty.component.html 10 @@ -3416,6 +3700,7 @@ New subsidy + Новая субсидия src/app/components/difficulty/difficulty.component.html 103 @@ -3424,6 +3709,7 @@ Blocks remaining + Осталось блоков src/app/components/difficulty/difficulty.component.html 111 @@ -3432,6 +3718,7 @@ Block remaining + Осталось блоков src/app/components/difficulty/difficulty.component.html 112 @@ -3522,7 +3809,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3749,11 +4036,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3800,6 +4087,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 @@ -3830,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 @@ -3843,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 @@ -3856,7 +4152,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3869,7 +4165,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3882,7 +4178,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3899,7 +4195,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -3909,6 +4205,7 @@ Non-Dust Expired + Истёкшие непылевые src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 3 @@ -3917,6 +4214,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 @@ -3925,6 +4223,7 @@ UTXOs + UTXO src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 6 @@ -3941,6 +4240,7 @@ Total Expired + Всего истекло src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 12 @@ -3949,6 +4249,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 @@ -3957,6 +4258,7 @@ Liquid Federation Wallet + Кошелёк Liquid Federation src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 5 @@ -3977,6 +4279,7 @@ addresses + адреса src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html 8 @@ -4002,6 +4305,7 @@ Related Peg-In + Релевантная привязка src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 11 @@ -4027,6 +4331,7 @@ Expires in + Истекает через src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 13 @@ -4035,6 +4340,7 @@ Expired since + Истёк с src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 14 @@ -4043,6 +4349,7 @@ Dust + Пыль src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 15 @@ -4051,6 +4358,7 @@ Change output + Выход сдачи src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 55 @@ -4059,6 +4367,7 @@ blocks + блоки src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 63 @@ -4067,6 +4376,7 @@ Timelock-Expired UTXOs + UTXO с истекшим сроком временнóй блокировки. src/app/components/liquid-reserves-audit/federation-wallet/federation-wallet.component.html 12 @@ -4100,6 +4410,7 @@ Recent Peg-In / Out's + Недавние привязки / отвязки src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 4 @@ -4120,6 +4431,7 @@ Fund / Redemption Tx + Транзакции пополнения / погашения src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 15 @@ -4128,6 +4440,7 @@ BTC Address + Адрес BTC src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -4136,6 +4449,7 @@ Peg out in progress... + Отзвязка в процессе... src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 70 @@ -4144,6 +4458,7 @@ 24h Peg-In Volume + Объем привязок за 24 часа src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 12 @@ -4152,6 +4467,7 @@ Peg-Ins + Привязки src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 13 @@ -4160,6 +4476,7 @@ 24h Peg-Out Volume + Объем отвязок за 24 часа src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 18 @@ -4168,6 +4485,7 @@ Peg-Outs + Отвязки src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html 19 @@ -4176,6 +4494,7 @@ Unpeg + Отвязать src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 3 @@ -4184,6 +4503,7 @@ Unpeg Event + Событие отвязки src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 7 @@ -4192,6 +4512,7 @@ Avg Peg Ratio + Средний коэффициент привязки src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 14 @@ -4200,6 +4521,7 @@ Emergency Keys + Аварийные ключи src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 28 @@ -4208,6 +4530,7 @@ usage + использование src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html 31 @@ -4216,6 +4539,7 @@ Assets vs Liabilities + Активы и обязательства src/app/components/liquid-reserves-audit/reserves-ratio/reserves-ratio.component.ts 162 @@ -4232,6 +4556,7 @@ As of block + На момент блока src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 7 @@ -4244,6 +4569,7 @@ BTC Holdings + BTC-сбережения src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html 12 @@ -4252,9 +4578,10 @@ Mining Dashboard + Майнинг-дэшборд src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4271,7 +4598,7 @@ Lightning-обозреватель src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4335,23 +4662,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 +4689,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4602,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 () - Другое ( ) + Другое () 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 @@ -4774,6 +5088,7 @@ Out-of-band Fees (1w) + Комиссии вне каналов (1нед.) src/app/components/pool/pool.component.html 143 @@ -4782,6 +5097,7 @@ 1m + src/app/components/pool/pool.component.html 144 @@ -4809,11 +5125,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4835,18 +5151,19 @@ Недостаточно данных 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 +5240,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4965,7 +5282,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5109,6 +5426,7 @@ Block Height + Высота блока src/app/components/search-form/search-results/search-results.component.html 3 @@ -5117,6 +5435,7 @@ Transaction + Транзакция src/app/components/search-form/search-results/search-results.component.html 21 @@ -5125,6 +5444,7 @@ Address + Адрес src/app/components/search-form/search-results/search-results.component.html 27 @@ -5133,6 +5453,7 @@ Block + Блок src/app/components/search-form/search-results/search-results.component.html 33 @@ -5141,7 +5462,7 @@ Other Network Address - Другой Адрес Сети + Другой адрес сети src/app/components/search-form/search-results/search-results.component.html 39 @@ -5150,6 +5471,7 @@ Addresses + Адреса src/app/components/search-form/search-results/search-results.component.html 47 @@ -5176,6 +5498,7 @@ Liquid Asset + Актив Liquid src/app/components/search-form/search-results/search-results.component.html 71 @@ -5255,6 +5578,7 @@ Cap outliers + Экстремальные скачки src/app/components/statistics/statistics.component.html 122 @@ -5279,6 +5603,7 @@ Immediately + Немедленно src/app/components/time/time.component.ts 90 @@ -5474,6 +5799,7 @@ before + перед src/app/components/time/time.component.ts 214 @@ -5566,6 +5892,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 @@ -5600,11 +5927,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 @@ -5613,6 +5945,7 @@ Expected in Block + Ожидается в блоке src/app/components/transaction/transaction.component.html 78 @@ -5622,6 +5955,7 @@ This transaction was seen in the mempool prior to mining + Эта транзакция была замечена в мемпуле до майнинга. src/app/components/transaction/transaction.component.html 79 @@ -5630,6 +5964,7 @@ Seen in Mempool + Замечена в Мемпуле src/app/components/transaction/transaction.component.html 79 @@ -5639,6 +5974,7 @@ This transaction was missing from our mempool prior to mining + Эта транзакция отсутствовала в нашем мемпуле до начала майнинга. src/app/components/transaction/transaction.component.html 80 @@ -5647,6 +5983,7 @@ Not seen in Mempool + Не замечена в Мемпуле src/app/components/transaction/transaction.component.html 80 @@ -5656,6 +5993,7 @@ This transaction may have been added out-of-band + Эта транзакция, возможно, была добавлена вне канала src/app/components/transaction/transaction.component.html 81 @@ -5664,6 +6002,7 @@ This transaction may have been prioritized out-of-band + Возможно, эта транзакция была приоритизирована вне канала. src/app/components/transaction/transaction.component.html 82 @@ -5672,6 +6011,7 @@ This transaction conflicted with another version in our mempool + Эта транзакция конфликтовала с другой версией в нашем мемпуле. src/app/components/transaction/transaction.component.html 83 @@ -5707,20 +6047,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 Тип @@ -5880,6 +6206,7 @@ Error loading transaction data. + Ошибка загрузки данных транзакции. src/app/components/transaction/transaction.component.html 521 @@ -6068,6 +6395,7 @@ 1 block earlier + на 1 блок раньше src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 123 @@ -6076,6 +6404,7 @@ 1 block later + на 1 блок позже src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 127 @@ -6084,6 +6413,7 @@ in the same block + в том же блоке src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 131 @@ -6092,6 +6422,7 @@ blocks earlier + блов раньше src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 137 @@ -6100,6 +6431,7 @@ spent + потраченно src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 148 @@ -6108,6 +6440,7 @@ blocks later + блоков позже src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 150 @@ -6268,20 +6601,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 +6615,7 @@ Предыдущая комиссия src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6299,7 +6624,7 @@ Новая комиссия src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6308,43 +6633,46 @@ Недавние транзакции src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions Liquid Federation Holdings + Активы Liquid Federation 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 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 +6681,7 @@ Мин. комиссия src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6363,7 +6691,7 @@ Очистка src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6373,7 +6701,7 @@ Выполняется индексирование src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6385,6 +6713,42 @@ 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 просто предоставляет данные о сети Биткоин. Сервис не может помочь вам с получением средств, проблемами с кошельком и т.д.По любым подобным запросам вам необходимо связаться с сервисом, который помог совершить транзакцию (программное обеспечение кошелька, биржа и т.д.). @@ -8065,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 + Просмотрите 100 лучших интернет-провайдеров, размещающих узлы Lightning, а также такую статистику, как общее количество узлов на каждого интернет-провайдера, совокупную ёмкость BTC на каждого интернет-провайдера и многое другое. src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts 54 @@ -8127,7 +8492,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] и совокупную статистику, такую как общее количество узлов, общая емкость, и многое другое для интернет-провайдера. + Просмотреть все Лайтнинг-узлы с помощью интернет-провайдера и совокупную статистику, такую как общее количество узлов, общая ёмкость, и многое другое для интернет-провайдера. src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts 45 @@ -8250,7 +8615,7 @@ confirmations - подтверждения + подтверждений src/app/shared/components/confirmations/confirmations.component.html 5 @@ -8499,6 +8864,7 @@ Third-party Licenses + Сторонние лицензии src/app/shared/components/global-footer/global-footer.component.html 79 @@ -8515,6 +8881,38 @@ 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.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 dcf463262..d86fa9825 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -404,7 +404,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -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 » @@ -967,7 +1186,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1213,7 +1432,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1509,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 @@ -1537,6 +1760,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1727,7 +1954,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1738,10 +1965,59 @@ 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 + Någon + + src/app/components/block-filters/block-filters.component.html + 25 + + mempool-goggles.any + + + Tint + Färgton + + src/app/components/block-filters/block-filters.component.html + 30 + + mempool-goggles.tint + + + Classic + Klassisk + + src/app/components/block-filters/block-filters.component.html + 33 + + mempool-goggles.classic + + + Age + Ålder + + src/app/components/block-filters/block-filters.component.html + 36 + + mempool-goggles.age + Block Health Blockhälsa @@ -1951,7 +2227,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1980,7 +2256,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -2039,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 @@ -2088,15 +2342,6 @@ transaction.audit-status - - Match - Match - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed Borttagen @@ -2208,6 +2453,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2305,7 +2554,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2527,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 @@ -2619,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 @@ -2971,7 +3211,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -3000,7 +3240,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3092,11 +3332,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3171,7 +3411,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3189,7 +3429,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3569,7 +3809,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3796,11 +4036,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3878,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 @@ -3891,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 @@ -3904,7 +4152,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3917,7 +4165,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3930,7 +4178,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3947,7 +4195,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -3957,7 +4205,7 @@ Non-Dust Expired - Icke-dust som utgått + Utgått icke-dust src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 3 @@ -4333,7 +4581,7 @@ Miningdashboard src/app/components/master-page/master-page.component.html - 61 + 80 src/app/components/mining-dashboard/mining-dashboard.component.ts @@ -4350,7 +4598,7 @@ Lightningutforskare src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4414,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 @@ -4458,7 +4689,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4681,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 @@ -4890,11 +5125,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4916,7 +5151,7 @@ Inte tillräckligt med data ännu src/app/components/pool/pool.component.ts - 143 + 144 @@ -4924,11 +5159,11 @@ Pooldominans src/app/components/pool/pool.component.ts - 223 + 224 src/app/components/pool/pool.component.ts - 277 + 278 mining.pool-dominance @@ -5005,7 +5240,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -5047,7 +5282,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5692,6 +5927,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5725,7 +5964,7 @@ Seen in Mempool - Sett i mempoolen + Sedd i mempoolen src/app/components/transaction/transaction.component.html 79 @@ -5744,7 +5983,7 @@ Not seen in Mempool - Inte sett i mempoolen + Inte sedd i mempoolen src/app/components/transaction/transaction.component.html 80 @@ -5808,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 @@ -5911,7 +6136,7 @@ Inputs & Outputs - In- och utdata + Inputs & Outputs src/app/components/transaction/transaction.component.html 292 @@ -6139,7 +6364,7 @@ other inputs - annan indata + andra inputs src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 12 @@ -6376,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 @@ -6399,7 +6615,7 @@ Tidigare avgift src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6408,7 +6624,7 @@ Ny avgift src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6417,33 +6633,33 @@ Senaste transaktionerna src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions Liquid Federation Holdings - Liquid Federation Holdings + Liquidfederationsinnehav src/app/dashboard/dashboard.component.html - 164 + 165 src/app/dashboard/dashboard.component.html - 304 + 305 liquid.federation-holdings Federation Timelock-Expired UTXOs - Federation Timelock-Expired UTXOs + 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 @@ -6452,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 @@ -6465,7 +6681,7 @@ Minimumavgift src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6475,7 +6691,7 @@ Förkastar src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6485,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 @@ -6497,6 +6713,42 @@ lightning.indexing-in-progress + + Consolidation + Konsolidering + + 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 + 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 tillhandahåller bara data om Bitcoin-nätverket. Vi kan inte hjälpa dig med att få tillbaka pengar, problem med plånboken etc.För sådana förfrågningar måste du kontakta den entitet som användes för att genomföra transaktionen (plånboksprogramvaran, handelsplatsföretag, etc). @@ -8629,6 +8881,38 @@ warning-testnet + + Address Types + Adresstyper + + src/app/shared/filters.utils.ts + 119 + + + + Behavior + Beteende + + src/app/shared/filters.utils.ts + 120 + + + + Heuristics + Heuristik + + src/app/shared/filters.utils.ts + 122 + + + + Sighash Flags + Sighash-flaggor + + src/app/shared/filters.utils.ts + 123 + + year år diff --git a/frontend/src/locale/messages.th.xlf b/frontend/src/locale/messages.th.xlf index 5da87ac82..58e1cb315 100644 --- a/frontend/src/locale/messages.th.xlf +++ b/frontend/src/locale/messages.th.xlf @@ -27,7 +27,7 @@ Select month - เลือกเดือนที่ต้องการ + เลือกเดือน node_modules/src/ngb-config.ts 13 @@ -59,6 +59,7 @@ + node_modules/src/ngb-config.ts 13 @@ -66,6 +67,7 @@ Slide of + สไลด์ จาก node_modules/src/ngb-config.ts 13 @@ -114,7 +116,7 @@ Select year - เลือกปีที่ต้องการ + เลือกปี 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 + ผู้สนับสนุนระดับ chad src/app/components/about/about.component.html 200 @@ -324,6 +330,7 @@ OG Sponsors ❤️ + ผู้สนับสนุนระดับ OG ❤️ src/app/components/about/about.component.html 213 @@ -332,7 +339,7 @@ Community Integrations - การร่วมมือกับคอมมูนิตี้ + การร่วมมือกับชุมชน src/app/components/about/about.component.html 224 @@ -350,7 +357,7 @@ Project Translators - ผู้แปลโปรเจค + ผู้ร่วมแปลโปรเจค src/app/components/about/about.component.html 354 @@ -359,7 +366,7 @@ Project Contributors - ผู้พัฒนาโปรเจค + ผู้ร่วมพัฒนาโปรเจค src/app/components/about/about.component.html 368 @@ -377,7 +384,7 @@ Project Maintainers - ผู้ดูแลโปรเจค + ผู้ดูแลโปรเจคนี้ src/app/components/about/about.component.html 393 @@ -397,7 +404,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -445,40 +452,120 @@ 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 +629,37 @@ 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 +672,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 + ค่าธรรมเนียม 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 + + 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 @@ -589,6 +808,7 @@ At block: + ที่บล็อก: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 165 @@ -608,6 +828,7 @@ Around block: + ประมาณบล็อกที่: src/app/components/acceleration/acceleration-fees-graph/acceleration-fees-graph.component.ts 167 @@ -671,6 +892,7 @@ BTC + BTC src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 13 @@ -704,6 +926,7 @@ mined + ถูกขุดแล้ว src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 23 @@ -716,7 +939,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,16 +958,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 @@ -797,6 +1025,7 @@ Status + สถานะ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 19 @@ -807,7 +1036,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -818,6 +1047,7 @@ Pending + รอดำเนินการ src/app/components/acceleration/accelerations-list/accelerations-list.component.html 53 @@ -826,6 +1056,7 @@ Completed 🔄 + สำเร็จ 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 54,55 @@ -833,6 +1064,7 @@ Failed 🔄 + ล้มเหลว 🔄 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 55,56 @@ -877,20 +1109,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 » เรียกดูเพิ่มเติม » @@ -932,11 +1157,12 @@ src/app/components/master-page/master-page.component.html - 56 + 75 pending + รอดำเนินการ src/app/components/acceleration/pending-stats/pending-stats.component.html 7 @@ -957,6 +1183,7 @@ Total Vsize + Vsize ทั้งหมด src/app/components/acceleration/pending-stats/pending-stats.component.html 20 @@ -1000,6 +1227,7 @@ Total + ทั้งหมด src/app/components/address-group/address-group.component.html 9 @@ -1170,7 +1398,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1199,6 +1427,7 @@ of transaction + ธุรกรรม จาก src/app/components/address/address.component.html 69 @@ -1207,6 +1436,7 @@ of transactions + ธุรกรรม จาก src/app/components/address/address.component.html 70 @@ -1460,6 +1690,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 +1722,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1671,7 +1909,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1682,10 +1920,57 @@ 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 +2176,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1920,7 +2205,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1978,28 +2263,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,17 +2289,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 @@ -2088,6 +2343,7 @@ Added + ถูกเพิ่ม src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -2114,6 +2370,7 @@ Conflict + ขัดแย้ง src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -2139,6 +2396,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2234,7 +2495,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2453,23 +2714,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 +2725,7 @@ Stale + ค้าง src/app/components/block/block.component.html 30 @@ -2544,6 +2789,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 +3057,7 @@ transaction + ธุรกรรม src/app/components/block/block.component.html 331 @@ -2820,6 +3074,7 @@ transactions + ธุรกรรม src/app/components/block/block.component.html 332 @@ -2893,7 +3148,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2922,7 +3177,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3014,11 +3269,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3038,6 +3293,7 @@ Calculator + เครื่องคำนวณ src/app/components/calculator/calculator.component.html 3 @@ -3050,7 +3306,7 @@ Copied! - คัดลอก! + คัดลอกแล้ว! src/app/components/clipboard/clipboard.component.ts 19 @@ -3066,7 +3322,7 @@ High Priority - ความสำคัญสูง + สำคัญสูง src/app/components/clock/clock.component.html 47 @@ -3083,13 +3339,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 +3364,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3238,7 +3495,7 @@ Next Halving - การลดผลตอบแทนครั้งถัดไป + การ halving ครั้งถัดไป src/app/components/difficulty-mining/difficulty-mining.component.html 47 @@ -3341,6 +3598,7 @@ Halving Countdown + นับถอยหลัง Halving src/app/components/difficulty/difficulty.component.html 2 @@ -3349,6 +3607,7 @@ difficulty + ความยาก src/app/components/difficulty/difficulty.component.html 7 @@ -3357,6 +3616,7 @@ halving + halving src/app/components/difficulty/difficulty.component.html 10 @@ -3382,6 +3642,7 @@ Blocks remaining + บล็อกคงเหลือ src/app/components/difficulty/difficulty.component.html 111 @@ -3390,6 +3651,7 @@ Block remaining + บล็อกคงเหลือ src/app/components/difficulty/difficulty.component.html 112 @@ -3407,7 +3669,7 @@ No Priority - ไม่มีความสำคัญ + ไม่สำคัญ src/app/components/fees-box/fees-box.component.html 4 @@ -3429,7 +3691,7 @@ Low Priority - ความสำคัญต่ำ + สำคัญต่ำ src/app/components/fees-box/fees-box.component.html 8 @@ -3451,7 +3713,7 @@ Medium Priority - ความสำคัญปานกลาง + สำคัญปานกลาง src/app/components/fees-box/fees-box.component.html 9 @@ -3473,13 +3735,14 @@ Incoming Transactions + ธุรกรรมที่กำลังเข้ามา src/app/components/footer/footer.component.html 5 src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3504,6 +3767,7 @@ WU/s + WU/s src/app/components/footer/footer.component.html 14 @@ -3705,11 +3969,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3785,7 +4049,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 +4066,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,20 +4083,20 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header Dashboard - หน้าหลัก + แดชบอร์ด src/app/components/liquid-master-page/liquid-master-page.component.html 64 src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3837,7 +4109,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3854,7 +4126,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -3880,6 +4152,7 @@ UTXOs + UTXOs src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 6 @@ -3896,6 +4169,7 @@ Total Expired + หมดอายุไปทั้งหมด src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html 12 @@ -3982,6 +4256,7 @@ Expires in + หมดอายุภายใน src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 13 @@ -3990,6 +4265,7 @@ Expired since + หมดอายุตังแต่ src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 14 @@ -4014,6 +4290,7 @@ blocks + บล็อก src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html 63 @@ -4083,6 +4360,7 @@ BTC Address + แอดเดรส BTC src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -4209,7 +4487,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 +4504,7 @@ ตัวสำรวจ lightning src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4288,22 +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 สถานะค่าตอบแทน @@ -4324,13 +4586,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 @@ -4365,6 +4628,7 @@ Pools Luck + โชคของ pool src/app/components/pool-ranking/pool-ranking.component.html 9 @@ -4442,7 +4706,7 @@ Rank - อัดดับการขุด + อัดดับ src/app/components/pool-ranking/pool-ranking.component.html 90 @@ -4505,6 +4769,7 @@ Empty Blocks + บล็อกที่ว่างเปล่า src/app/components/pool-ranking/pool-ranking.component.html 98 @@ -4548,23 +4813,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 @@ -4726,6 +4994,7 @@ 1m + 1 นาที src/app/components/pool/pool.component.html 144 @@ -4753,11 +5022,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4776,20 +5045,21 @@ 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 @@ -4813,7 +5083,7 @@ Transaction hex - hex ของธุรกรรม + hex ธุรกรรม src/app/components/push-transaction/push-transaction.component.html 6 @@ -4826,6 +5096,7 @@ Broadcast Transaction + ประกาศธุรกรรม src/app/components/push-transaction/push-transaction.component.ts 33 @@ -4852,6 +5123,7 @@ Full RBF + RBF แบบเต็ม src/app/components/rbf-list/rbf-list.component.html 24 @@ -4862,7 +5134,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4902,7 +5174,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -4926,6 +5198,7 @@ remaining + คงเหลือ src/app/components/rbf-timeline/rbf-timeline.component.html 86 @@ -5019,7 +5292,7 @@ Explore the full Bitcoin ecosystem - สำรวจระบบนิเวศ Bitcoin เต็มรูปแบบ + สำรวจระบบ Bitcoin แบบเต็มรูปแบบ src/app/components/search-form/search-form.component.html 4 @@ -5532,6 +5805,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5638,19 +5915,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 ชนิด @@ -6132,7 +6396,7 @@ This transaction supports Replace-By-Fee (RBF) allowing fee bumping - การทำธุรกรรมนี้รองรับการ Replace-By-Fee (RBF) ทำให้สามารถเพิ่มค่าธรรมเนียมได้ + ธุรกรรมนี้รองรับการ Replace-By-Fee (RBF) ทำให้สามารถเพิ่มค่าธรรมเนียมได้ src/app/components/tx-features/tx-features.component.html 28 @@ -6194,19 +6458,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 +6470,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6222,7 +6478,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6230,7 +6486,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6238,11 +6494,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 +6506,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 +6518,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 +6531,7 @@ ค่าธรรมเนียมขั้นต่ำ src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6285,7 +6541,7 @@ กำลังล้าง src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6295,7 +6551,7 @@ กำลังทำการจัดเรียงข้อมูล src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6307,6 +6563,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). @@ -7280,6 +7569,7 @@ Connect + เชื่อมต่อ src/app/lightning/group/group.component.html 73 @@ -7576,6 +7866,7 @@ Decoded + ถอดรหัส src/app/lightning/node/node.component.html 134 @@ -8228,6 +8519,7 @@ What is a mempool? + อะไรคือ mempoo? src/app/shared/components/global-footer/global-footer.component.html 51 @@ -8260,6 +8552,7 @@ More FAQs » + คำถามเพิ่มเติมอื่นๆ src/app/shared/components/global-footer/global-footer.component.html 55 @@ -8316,6 +8609,7 @@ Tools + เครื่องมือ src/app/shared/components/global-footer/global-footer.component.html 68 @@ -8384,6 +8678,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 ปี @@ -8498,7 +8820,7 @@ Transaction fee - ค่าธรรมเนียมการทำธุรกรรม + ค่าธรรมเนียมธุรกรรม src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts 11 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 609426587..b4dd11f58 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -359,7 +359,7 @@ src/app/components/master-page/master-page.component.html - 77 + 96 @@ -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 » @@ -888,7 +1088,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1117,7 +1317,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1386,6 +1586,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 +1618,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1589,7 +1797,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1599,10 +1807,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 @@ -1801,7 +2053,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1829,7 +2081,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1885,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 @@ -1931,14 +2162,6 @@ transaction.audit-status - - Match - - src/app/components/block-overview-tooltip/block-overview-tooltip.component.html - 70 - - transaction.audit.match - Removed @@ -2041,6 +2264,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2133,7 +2360,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2344,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 @@ -2431,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 @@ -2765,7 +2984,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2793,7 +3012,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -2881,11 +3100,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -2953,7 +3172,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -2970,7 +3189,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 @@ -5282,6 +5497,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5386,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 @@ -5898,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 @@ -5918,7 +6116,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -5926,7 +6124,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -5934,7 +6132,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -5942,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 @@ -5954,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 @@ -5966,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 @@ -5978,7 +6176,7 @@ Minimum fee src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -5987,7 +6185,7 @@ Purging src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -5996,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 @@ -6008,6 +6206,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). @@ -7961,6 +8192,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.zh.xlf b/frontend/src/locale/messages.zh.xlf index a8e2f435c..1965a4914 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,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 + 在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 @@ -649,6 +857,7 @@ accelerated + 已加速 src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 7 @@ -673,6 +882,7 @@ BTC + 比特币 src/app/components/acceleration/acceleration-stats/acceleration-stats.component.html 13 @@ -718,7 +928,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 +947,11 @@ src/app/dashboard/dashboard.component.html - 70 + 71 src/app/dashboard/dashboard.component.html - 133 + 134 dashboard.latest-transactions.txid @@ -799,6 +1013,7 @@ Status + 状态 src/app/components/acceleration/accelerations-list/accelerations-list.component.html 19 @@ -809,7 +1024,7 @@ src/app/dashboard/dashboard.component.html - 73 + 74 src/app/lightning/channels-list/channels-list.component.html @@ -885,14 +1100,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 +1141,7 @@ src/app/components/master-page/master-page.component.html - 56 + 75 @@ -1172,7 +1379,7 @@ src/app/dashboard/dashboard.component.html - 145 + 146 shared.confidential @@ -1457,11 +1664,15 @@ All - 全部时间 + 全部 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 +1701,10 @@ src/app/components/statistics/statistics.component.html 60 + + src/app/dashboard/dashboard.component.ts + 78 + Search asset @@ -1673,7 +1888,7 @@ src/app/components/block-filters/block-filters.component.html 2 - Mempool Goggles tooltip + Mempool Goggles™ tooltip beta @@ -1684,10 +1899,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 +2153,7 @@ src/app/dashboard/dashboard.component.html - 134 + 135 dashboard.latest-transactions.amount @@ -1922,7 +2182,7 @@ src/app/dashboard/dashboard.component.html - 136 + 137 Transaction fee transaction.fee @@ -1980,30 +2240,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 +2267,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 +2321,7 @@ Added + 添加 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 76 @@ -2103,6 +2335,7 @@ Prioritized + 优先 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 77 @@ -2116,6 +2349,7 @@ Conflict + 冲突 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 79 @@ -2129,6 +2363,7 @@ Accelerated + 已加速 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 80 @@ -2141,6 +2376,10 @@ src/app/components/transaction/transaction.component.html 583 + + src/app/shared/filters.utils.ts + 99 + transaction.audit.accelerated @@ -2236,7 +2475,7 @@ src/app/dashboard/dashboard.component.html - 107 + 108 @@ -2455,23 +2694,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 +2768,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 +3036,7 @@ transaction + 个交易 src/app/components/block/block.component.html 331 @@ -2822,6 +3053,7 @@ transactions + 个交易 src/app/components/block/block.component.html 332 @@ -2895,7 +3127,7 @@ src/app/components/master-page/master-page.component.html - 68 + 87 src/app/components/pool-ranking/pool-ranking.component.html @@ -2924,7 +3156,7 @@ src/app/dashboard/dashboard.component.html - 104 + 105 latest-blocks.height @@ -3016,11 +3248,11 @@ src/app/dashboard/dashboard.component.html - 106 + 107 src/app/dashboard/dashboard.component.html - 283 + 284 dashboard.txs @@ -3091,7 +3323,7 @@ src/app/dashboard/dashboard.component.html - 287 + 288 Memory usage dashboard.memory-usage @@ -3109,7 +3341,7 @@ src/app/dashboard/dashboard.component.html - 281 + 282 Unconfirmed count dashboard.unconfirmed @@ -3164,6 +3396,7 @@ blocks + 区块 src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 @@ -3481,7 +3714,7 @@ src/app/dashboard/dashboard.component.html - 47 + 48 dashboard.incoming-transactions @@ -3707,11 +3940,11 @@ src/app/components/pool/pool.component.ts - 212 + 213 src/app/components/pool/pool.component.ts - 266 + 267 mining.hashrate @@ -3787,7 +4020,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 +4037,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 +4054,7 @@ src/app/components/master-page/master-page.component.html - 42 + 61 master-page.layer2-networks-header @@ -3826,7 +4067,7 @@ src/app/components/master-page/master-page.component.html - 52 + 71 master-page.dashboard @@ -3839,7 +4080,7 @@ src/app/components/master-page/master-page.component.html - 71 + 90 src/app/components/statistics/statistics.component.ts @@ -3856,7 +4097,7 @@ src/app/components/master-page/master-page.component.html - 74 + 93 src/app/docs/docs/docs.component.html @@ -4085,6 +4326,7 @@ BTC Address + 比特币地址 src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html 16 @@ -4211,7 +4453,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 +4470,7 @@ 闪电网络浏览器 src/app/components/master-page/master-page.component.html - 64 + 83 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -4290,22 +4532,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 +4558,7 @@ src/app/dashboard/dashboard.component.html - 98 + 99 src/app/shared/components/global-footer/global-footer.component.html @@ -4550,23 +4776,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 +4984,11 @@ src/app/dashboard/dashboard.component.html - 85 + 86 src/app/dashboard/dashboard.component.html - 105 + 106 latest-blocks.mined @@ -4780,18 +5009,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 +5093,7 @@ src/app/dashboard/dashboard.component.html - 86 + 87 transaction.full-rbf @@ -4904,7 +5133,7 @@ src/app/dashboard/dashboard.component.html - 87 + 88 RBF tx-features.tag.rbf @@ -5534,6 +5763,10 @@ src/app/lightning/node/node.component.html 120 + + src/app/shared/filters.utils.ts + 118 + Transaction features transaction.features @@ -5640,19 +5873,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 +6416,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 +6428,7 @@ Previous fee src/app/dashboard/dashboard.component.html - 71 + 72 dashboard.previous-transaction-fee @@ -6224,7 +6436,7 @@ New fee src/app/dashboard/dashboard.component.html - 72 + 73 dashboard.new-transaction-fee @@ -6232,7 +6444,7 @@ Recent Transactions src/app/dashboard/dashboard.component.html - 130 + 131 dashboard.recent-transactions @@ -6240,11 +6452,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 +6464,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 +6476,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 +6489,7 @@ 最低费用 src/app/dashboard/dashboard.component.html - 274 + 275 Minimum mempool fee dashboard.minimum-fee @@ -6287,7 +6499,7 @@ 吹扫中 src/app/dashboard/dashboard.component.html - 275 + 276 Purgin below fee dashboard.purging @@ -6297,7 +6509,7 @@ 正在统计 src/app/dashboard/dashboard.component.html - 363 + 364 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6309,6 +6521,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 +7527,7 @@ Connect + 连接 src/app/lightning/group/group.component.html 73 @@ -8136,6 +8382,7 @@ confirmation + 确认 src/app/shared/components/confirmations/confirmations.component.html 4 @@ -8145,6 +8392,7 @@ confirmations + 确认 src/app/shared/components/confirmations/confirmations.component.html 5 @@ -8154,6 +8402,7 @@ Replaced + 已替换 src/app/shared/components/confirmations/confirmations.component.html 12 @@ -8186,6 +8435,7 @@ My Account + 我的账户 src/app/shared/components/global-footer/global-footer.component.html 25 @@ -8386,6 +8636,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"