diff --git a/.github/workflows/get_image_digest.yml b/.github/workflows/get_image_digest.yml new file mode 100644 index 000000000..7414eeb08 --- /dev/null +++ b/.github/workflows/get_image_digest.yml @@ -0,0 +1,26 @@ +name: 'Print images digest' + +on: + workflow_dispatch: + inputs: + version: + description: 'Image Version' + required: false + default: 'latest' + type: string +jobs: + print-images-sha: + runs-on: 'ubuntu-latest' + name: Print digest for images + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + path: digest + + - name: Run script + working-directory: digest + run: | + sh ./docker/scripts/get_image_digest.sh $VERSION + env: + VERSION: ${{ github.event.inputs.version }} diff --git a/README.md b/README.md index d2f9f9382..b7a455cd5 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # The Mempool Open Source Project™ [![mempool](https://img.shields.io/endpoint?url=https://dashboard.cypress.io/badge/simple/ry4br7/master&style=flat-square)](https://dashboard.cypress.io/projects/ry4br7/runs) -https://user-images.githubusercontent.com/232186/222445818-234aa6c9-c233-4c52-b3f0-e32b8232893b.mp4 +https://user-images.githubusercontent.com/93150691/226236121-375ea64f-b4a1-4cc0-8fad-a6fb33226840.mp4 + +
Mempool is the fully-featured mempool visualizer, explorer, and API service running at [mempool.space](https://mempool.space/). It is an open-source project developed and operated for the benefit of the Bitcoin community, with a focus on the emerging transaction fee market that is evolving Bitcoin into a multi-layer ecosystem. -![mempool](https://mempool.space/resources/screenshots/v2.4.0-dashboard.png) - # Installation Methods Mempool can be self-hosted on a wide variety of your own hardware, ranging from a simple one-click installation on a Raspberry Pi full-node distro all the way to a robust production instance on a powerful FreeBSD server. diff --git a/backend/mempool-config.sample.json b/backend/mempool-config.sample.json index cd2afb0bd..99b69c208 100644 --- a/backend/mempool-config.sample.json +++ b/backend/mempool-config.sample.json @@ -27,13 +27,15 @@ "AUDIT": false, "ADVANCED_GBT_AUDIT": false, "ADVANCED_GBT_MEMPOOL": false, - "CPFP_INDEXING": false + "CPFP_INDEXING": false, + "DISK_CACHE_BLOCK_INTERVAL": 6 }, "CORE_RPC": { "HOST": "127.0.0.1", "PORT": 8332, "USERNAME": "mempool", - "PASSWORD": "mempool" + "PASSWORD": "mempool", + "TIMEOUT": 60000 }, "ELECTRUM": { "HOST": "127.0.0.1", @@ -48,7 +50,8 @@ "HOST": "127.0.0.1", "PORT": 8332, "USERNAME": "mempool", - "PASSWORD": "mempool" + "PASSWORD": "mempool", + "TIMEOUT": 60000 }, "DATABASE": { "ENABLED": true, @@ -92,7 +95,8 @@ "LND": { "TLS_CERT_PATH": "tls.cert", "MACAROON_PATH": "readonly.macaroon", - "REST_API_URL": "https://localhost:8080" + "REST_API_URL": "https://localhost:8080", + "TIMEOUT": 10000 }, "CLIGHTNING": { "SOCKET": "lightning-rpc" diff --git a/backend/src/__fixtures__/mempool-config.template.json b/backend/src/__fixtures__/mempool-config.template.json index ab0e40416..625f3d8a0 100644 --- a/backend/src/__fixtures__/mempool-config.template.json +++ b/backend/src/__fixtures__/mempool-config.template.json @@ -28,13 +28,15 @@ "ADVANCED_GBT_AUDIT": "__MEMPOOL_ADVANCED_GBT_AUDIT__", "ADVANCED_GBT_MEMPOOL": "__MEMPOOL_ADVANCED_GBT_MEMPOOL__", "CPFP_INDEXING": "__MEMPOOL_CPFP_INDEXING__", - "MAX_BLOCKS_BULK_QUERY": "__MEMPOOL_MAX_BLOCKS_BULK_QUERY__" + "MAX_BLOCKS_BULK_QUERY": "__MEMPOOL_MAX_BLOCKS_BULK_QUERY__", + "DISK_CACHE_BLOCK_INTERVAL": "__MEMPOOL_DISK_CACHE_BLOCK_INTERVAL__" }, "CORE_RPC": { "HOST": "__CORE_RPC_HOST__", "PORT": 15, "USERNAME": "__CORE_RPC_USERNAME__", - "PASSWORD": "__CORE_RPC_PASSWORD__" + "PASSWORD": "__CORE_RPC_PASSWORD__", + "TIMEOUT": "__CORE_RPC_TIMEOUT__" }, "ELECTRUM": { "HOST": "__ELECTRUM_HOST__", @@ -49,7 +51,8 @@ "HOST": "__SECOND_CORE_RPC_HOST__", "PORT": 17, "USERNAME": "__SECOND_CORE_RPC_USERNAME__", - "PASSWORD": "__SECOND_CORE_RPC_PASSWORD__" + "PASSWORD": "__SECOND_CORE_RPC_PASSWORD__", + "TIMEOUT": "__SECOND_CORE_RPC_TIMEOUT__" }, "DATABASE": { "ENABLED": false, @@ -108,7 +111,8 @@ "LND": { "TLS_CERT_PATH": "", "MACAROON_PATH": "", - "REST_API_URL": "https://localhost:8080" + "REST_API_URL": "https://localhost:8080", + "TIMEOUT": 10000 }, "CLIGHTNING": { "SOCKET": "__CLIGHTNING_SOCKET__" diff --git a/backend/src/__tests__/config.test.ts b/backend/src/__tests__/config.test.ts index d28f144ce..75b87c6cf 100644 --- a/backend/src/__tests__/config.test.ts +++ b/backend/src/__tests__/config.test.ts @@ -42,6 +42,7 @@ describe('Mempool Backend Config', () => { ADVANCED_GBT_MEMPOOL: false, CPFP_INDEXING: false, MAX_BLOCKS_BULK_QUERY: 0, + DISK_CACHE_BLOCK_INTERVAL: 6, }); expect(config.ELECTRUM).toStrictEqual({ HOST: '127.0.0.1', PORT: 3306, TLS_ENABLED: true }); @@ -52,14 +53,16 @@ describe('Mempool Backend Config', () => { HOST: '127.0.0.1', PORT: 8332, USERNAME: 'mempool', - PASSWORD: 'mempool' + PASSWORD: 'mempool', + TIMEOUT: 60000 }); expect(config.SECOND_CORE_RPC).toStrictEqual({ HOST: '127.0.0.1', PORT: 8332, USERNAME: 'mempool', - PASSWORD: 'mempool' + PASSWORD: 'mempool', + TIMEOUT: 60000 }); expect(config.DATABASE).toStrictEqual({ @@ -106,6 +109,13 @@ describe('Mempool Backend Config', () => { BISQ_URL: 'https://bisq.markets/api', BISQ_ONION: 'http://bisqmktse2cabavbr2xjq7xw3h6g5ottemo5rolfcwt6aly6tp5fdryd.onion/api' }); + + expect(config.MAXMIND).toStrictEqual({ + ENABLED: false, + GEOLITE2_CITY: '/usr/local/share/GeoIP/GeoLite2-City.mmdb', + GEOLITE2_ASN: '/usr/local/share/GeoIP/GeoLite2-ASN.mmdb', + GEOIP2_ISP: '/usr/local/share/GeoIP/GeoIP2-ISP.mmdb' + }); }); }); diff --git a/backend/src/api/audit.ts b/backend/src/api/audit.ts index 5b67dc965..d0d677740 100644 --- a/backend/src/api/audit.ts +++ b/backend/src/api/audit.ts @@ -5,9 +5,9 @@ const PROPAGATION_MARGIN = 180; // in seconds, time since a transaction is first class Audit { auditBlock(transactions: TransactionExtended[], projectedBlocks: MempoolBlockWithTransactions[], mempool: { [txId: string]: TransactionExtended }) - : { censored: string[], added: string[], fresh: string[], score: number } { + : { censored: string[], added: string[], fresh: string[], score: number, similarity: number } { if (!projectedBlocks?.[0]?.transactionIds || !mempool) { - return { censored: [], added: [], fresh: [], score: 0 }; + return { censored: [], added: [], fresh: [], score: 0, similarity: 1 }; } const matches: string[] = []; // present in both mined block and template @@ -16,6 +16,8 @@ class Audit { const isCensored = {}; // missing, without excuse const isDisplaced = {}; let displacedWeight = 0; + let matchedWeight = 0; + let projectedWeight = 0; const inBlock = {}; const inTemplate = {}; @@ -38,11 +40,16 @@ class Audit { isCensored[txid] = true; } displacedWeight += mempool[txid].weight; + } else { + matchedWeight += mempool[txid].weight; } + projectedWeight += mempool[txid].weight; inTemplate[txid] = true; } displacedWeight += (4000 - transactions[0].weight); + projectedWeight += transactions[0].weight; + matchedWeight += transactions[0].weight; // we can expect an honest miner to include 'displaced' transactions in place of recent arrivals and censored txs // these displaced transactions should occupy the first N weight units of the next projected block @@ -121,12 +128,14 @@ class Audit { const numCensored = Object.keys(isCensored).length; const numMatches = matches.length - 1; // adjust for coinbase tx const score = numMatches > 0 ? (numMatches / (numMatches + numCensored)) : 0; + const similarity = projectedWeight ? matchedWeight / projectedWeight : 1; return { censored: Object.keys(isCensored), added, fresh, - score + score, + similarity, }; } } diff --git a/backend/src/api/bitcoin/bitcoin-client.ts b/backend/src/api/bitcoin/bitcoin-client.ts index 85a410496..429638984 100644 --- a/backend/src/api/bitcoin/bitcoin-client.ts +++ b/backend/src/api/bitcoin/bitcoin-client.ts @@ -7,7 +7,7 @@ const nodeRpcCredentials: BitcoinRpcCredentials = { port: config.CORE_RPC.PORT, user: config.CORE_RPC.USERNAME, pass: config.CORE_RPC.PASSWORD, - timeout: 60000, + timeout: config.CORE_RPC.TIMEOUT, }; export default new bitcoin.Client(nodeRpcCredentials); diff --git a/backend/src/api/bitcoin/bitcoin-second-client.ts b/backend/src/api/bitcoin/bitcoin-second-client.ts index 39633a317..7f81a96a0 100644 --- a/backend/src/api/bitcoin/bitcoin-second-client.ts +++ b/backend/src/api/bitcoin/bitcoin-second-client.ts @@ -7,7 +7,7 @@ const nodeRpcCredentials: BitcoinRpcCredentials = { port: config.SECOND_CORE_RPC.PORT, user: config.SECOND_CORE_RPC.USERNAME, pass: config.SECOND_CORE_RPC.PASSWORD, - timeout: 60000, + timeout: config.SECOND_CORE_RPC.TIMEOUT, }; export default new bitcoin.Client(nodeRpcCredentials); diff --git a/backend/src/api/blocks.ts b/backend/src/api/blocks.ts index 15c8590e9..f9b14d637 100644 --- a/backend/src/api/blocks.ts +++ b/backend/src/api/blocks.ts @@ -143,7 +143,10 @@ class Blocks { * @returns BlockSummary */ public summarizeBlock(block: IBitcoinApi.VerboseBlock): BlockSummary { - const stripped = block.tx.map((tx) => { + if (Common.isLiquid()) { + block = this.convertLiquidFees(block); + } + const stripped = block.tx.map((tx: IBitcoinApi.VerboseTransaction) => { return { txid: tx.txid, vsize: tx.weight / 4, @@ -158,6 +161,13 @@ class Blocks { }; } + private convertLiquidFees(block: IBitcoinApi.VerboseBlock): IBitcoinApi.VerboseBlock { + block.tx.forEach(tx => { + tx.fee = Object.values(tx.fee || {}).reduce((total, output) => total + output, 0); + }); + return block; + } + /** * Return a block with additional data (reward, coinbase, fees...) * @param block @@ -641,7 +651,7 @@ class Blocks { if (this.newBlockCallbacks.length) { this.newBlockCallbacks.forEach((cb) => cb(blockExtended, txIds, transactions)); } - if (!memPool.hasPriority() && (block.height % 6 === 0)) { + if (!memPool.hasPriority() && (block.height % config.MEMPOOL.DISK_CACHE_BLOCK_INTERVAL === 0)) { diskCache.$saveCacheToDisk(); } diff --git a/backend/src/api/common.ts b/backend/src/api/common.ts index f762cfc2c..df97c0292 100644 --- a/backend/src/api/common.ts +++ b/backend/src/api/common.ts @@ -1,4 +1,4 @@ -import { CpfpInfo, TransactionExtended, TransactionStripped } from '../mempool.interfaces'; +import { CpfpInfo, MempoolBlockWithTransactions, TransactionExtended, TransactionStripped } from '../mempool.interfaces'; import config from '../config'; import { NodeSocket } from '../repositories/NodesSocketsRepository'; import { isIP } from 'net'; @@ -164,6 +164,30 @@ export class Common { return parents; } + // calculates the ratio of matched transactions to projected transactions by weight + static getSimilarity(projectedBlock: MempoolBlockWithTransactions, transactions: TransactionExtended[]): number { + let matchedWeight = 0; + let projectedWeight = 0; + const inBlock = {}; + + for (const tx of transactions) { + inBlock[tx.txid] = tx; + } + + // look for transactions that were expected in the template, but missing from the mined block + for (const tx of projectedBlock.transactions) { + if (inBlock[tx.txid]) { + matchedWeight += tx.vsize * 4; + } + projectedWeight += tx.vsize * 4; + } + + projectedWeight += transactions[0].weight; + matchedWeight += transactions[0].weight; + + return projectedWeight ? matchedWeight / projectedWeight : 1; + } + static getSqlInterval(interval: string | null): string | null { switch (interval) { case '24h': return '1 DAY'; diff --git a/backend/src/api/database-migration.ts b/backend/src/api/database-migration.ts index 1ef31c90b..ab38b0543 100644 --- a/backend/src/api/database-migration.ts +++ b/backend/src/api/database-migration.ts @@ -7,7 +7,7 @@ import cpfpRepository from '../repositories/CpfpRepository'; import { RowDataPacket } from 'mysql2'; class DatabaseMigration { - private static currentVersion = 58; + private static currentVersion = 59; private queryTimeout = 3600_000; private statisticsAddedIndexed = false; private uniqueLogs: string[] = []; @@ -510,6 +510,11 @@ class DatabaseMigration { // We only run some migration queries for this version await this.updateToSchemaVersion(58); } + + if (databaseSchemaVersion < 59 && (config.MEMPOOL.NETWORK === 'signet' || config.MEMPOOL.NETWORK === 'testnet')) { + // https://github.com/mempool/mempool/issues/3360 + await this.$executeQuery(`TRUNCATE prices`); + } } /** diff --git a/backend/src/api/disk-cache.ts b/backend/src/api/disk-cache.ts index af04d5acb..7180c6f51 100644 --- a/backend/src/api/disk-cache.ts +++ b/backend/src/api/disk-cache.ts @@ -19,20 +19,16 @@ class DiskCache { private isWritingCache = false; constructor() { - if (!cluster.isMaster) { + if (!cluster.isPrimary) { return; } process.on('SIGINT', (e) => { - this.saveCacheToDiskSync(); - process.exit(2); - }); - process.on('SIGTERM', (e) => { - this.saveCacheToDiskSync(); - process.exit(2); + this.$saveCacheToDisk(true); + process.exit(0); }); } - async $saveCacheToDisk(): Promise { + async $saveCacheToDisk(sync: boolean = false): Promise { if (!cluster.isPrimary) { return; } @@ -41,7 +37,7 @@ class DiskCache { return; } try { - logger.debug('Writing mempool and blocks data to disk cache (async)...'); + logger.debug(`Writing mempool and blocks data to disk cache (${ sync ? 'sync' : 'async' })...`); this.isWritingCache = true; const mempool = memPool.getMempool(); @@ -54,66 +50,46 @@ class DiskCache { const chunkSize = Math.floor(mempoolArray.length / DiskCache.CHUNK_FILES); - await fsPromises.writeFile(DiskCache.FILE_NAME, JSON.stringify({ - cacheSchemaVersion: this.cacheSchemaVersion, - blocks: blocks.getBlocks(), - blockSummaries: blocks.getBlockSummaries(), - mempool: {}, - mempoolArray: mempoolArray.splice(0, chunkSize), - }), { flag: 'w' }); - for (let i = 1; i < DiskCache.CHUNK_FILES; i++) { - await fsPromises.writeFile(DiskCache.FILE_NAMES.replace('{number}', i.toString()), JSON.stringify({ + if (sync) { + fs.writeFileSync(DiskCache.TMP_FILE_NAME, JSON.stringify({ + network: config.MEMPOOL.NETWORK, + cacheSchemaVersion: this.cacheSchemaVersion, + blocks: blocks.getBlocks(), + blockSummaries: blocks.getBlockSummaries(), mempool: {}, mempoolArray: mempoolArray.splice(0, chunkSize), }), { flag: 'w' }); - } - logger.debug('Mempool and blocks data saved to disk cache'); - this.isWritingCache = false; - } catch (e) { - logger.warn('Error writing to cache file: ' + (e instanceof Error ? e.message : e)); - this.isWritingCache = false; - } - } + for (let i = 1; i < DiskCache.CHUNK_FILES; i++) { + fs.writeFileSync(DiskCache.TMP_FILE_NAMES.replace('{number}', i.toString()), JSON.stringify({ + mempool: {}, + mempoolArray: mempoolArray.splice(0, chunkSize), + }), { flag: 'w' }); + } - saveCacheToDiskSync(): void { - if (!cluster.isPrimary) { - return; - } - if (this.isWritingCache) { - logger.debug('Saving cache already in progress. Skipping.'); - return; - } - try { - logger.debug('Writing mempool and blocks data to disk cache (sync)...'); - this.isWritingCache = true; - - const mempool = memPool.getMempool(); - const mempoolArray: TransactionExtended[] = []; - for (const tx in mempool) { - mempoolArray.push(mempool[tx]); - } - - Common.shuffleArray(mempoolArray); - - const chunkSize = Math.floor(mempoolArray.length / DiskCache.CHUNK_FILES); - - fs.writeFileSync(DiskCache.TMP_FILE_NAME, JSON.stringify({ - cacheSchemaVersion: this.cacheSchemaVersion, - blocks: blocks.getBlocks(), - blockSummaries: blocks.getBlockSummaries(), - mempool: {}, - mempoolArray: mempoolArray.splice(0, chunkSize), - }), { flag: 'w' }); - for (let i = 1; i < DiskCache.CHUNK_FILES; i++) { - fs.writeFileSync(DiskCache.TMP_FILE_NAMES.replace('{number}', i.toString()), JSON.stringify({ + fs.renameSync(DiskCache.TMP_FILE_NAME, DiskCache.FILE_NAME); + for (let i = 1; i < DiskCache.CHUNK_FILES; i++) { + fs.renameSync(DiskCache.TMP_FILE_NAMES.replace('{number}', i.toString()), DiskCache.FILE_NAMES.replace('{number}', i.toString())); + } + } else { + await fsPromises.writeFile(DiskCache.TMP_FILE_NAME, JSON.stringify({ + network: config.MEMPOOL.NETWORK, + cacheSchemaVersion: this.cacheSchemaVersion, + blocks: blocks.getBlocks(), + blockSummaries: blocks.getBlockSummaries(), mempool: {}, mempoolArray: mempoolArray.splice(0, chunkSize), }), { flag: 'w' }); - } + for (let i = 1; i < DiskCache.CHUNK_FILES; i++) { + await fsPromises.writeFile(DiskCache.TMP_FILE_NAMES.replace('{number}', i.toString()), JSON.stringify({ + mempool: {}, + mempoolArray: mempoolArray.splice(0, chunkSize), + }), { flag: 'w' }); + } - fs.renameSync(DiskCache.TMP_FILE_NAME, DiskCache.FILE_NAME); - for (let i = 1; i < DiskCache.CHUNK_FILES; i++) { - fs.renameSync(DiskCache.TMP_FILE_NAMES.replace('{number}', i.toString()), DiskCache.FILE_NAMES.replace('{number}', i.toString())); + await fsPromises.rename(DiskCache.TMP_FILE_NAME, DiskCache.FILE_NAME); + for (let i = 1; i < DiskCache.CHUNK_FILES; i++) { + await fsPromises.rename(DiskCache.TMP_FILE_NAMES.replace('{number}', i.toString()), DiskCache.FILE_NAMES.replace('{number}', i.toString())); + } } logger.debug('Mempool and blocks data saved to disk cache'); @@ -160,6 +136,10 @@ class DiskCache { logger.notice('Disk cache contains an outdated schema version. Clearing it and skipping the cache loading.'); return this.wipeCache(); } + if (data.network && data.network !== config.MEMPOOL.NETWORK) { + logger.notice('Disk cache contains data from a different network. Clearing it and skipping the cache loading.'); + return this.wipeCache(); + } if (data.mempoolArray) { for (const tx of data.mempoolArray) { diff --git a/backend/src/api/lightning/lnd/lnd-api.ts b/backend/src/api/lightning/lnd/lnd-api.ts index 1480f9b8f..31b868df9 100644 --- a/backend/src/api/lightning/lnd/lnd-api.ts +++ b/backend/src/api/lightning/lnd/lnd-api.ts @@ -17,7 +17,7 @@ class LndApi implements AbstractLightningApi { httpsAgent: new Agent({ ca: fs.readFileSync(config.LND.TLS_CERT_PATH) }), - timeout: 10000 + timeout: config.LND.TIMEOUT }; } } diff --git a/backend/src/api/mining/mining.ts b/backend/src/api/mining/mining.ts index 8b4abb0d6..58626df65 100644 --- a/backend/src/api/mining/mining.ts +++ b/backend/src/api/mining/mining.ts @@ -13,6 +13,7 @@ import BlocksAuditsRepository from '../../repositories/BlocksAuditsRepository'; import PricesRepository from '../../repositories/PricesRepository'; import { bitcoinCoreApi } from '../bitcoin/bitcoin-api-factory'; import { IEsploraApi } from '../bitcoin/esplora-api.interface'; +import database from '../../database'; class Mining { private blocksPriceIndexingRunning = false; @@ -141,6 +142,9 @@ class Mining { const blockCount1w: number = await BlocksRepository.$blockCount(pool.id, '1w'); const totalBlock1w: number = await BlocksRepository.$blockCount(null, '1w'); + const avgHealth = await BlocksRepository.$getAvgBlockHealthPerPoolId(pool.id); + const totalReward = await BlocksRepository.$getTotalRewardForPoolId(pool.id); + let currentEstimatedHashrate = 0; try { currentEstimatedHashrate = await bitcoinClient.getNetworkHashPs(totalBlock24h); @@ -162,6 +166,8 @@ class Mining { }, estimatedHashrate: currentEstimatedHashrate * (blockCount24h / totalBlock24h), reportedHashrate: null, + avgBlockHealth: avgHealth, + totalReward: totalReward, }; } diff --git a/backend/src/api/websocket-handler.ts b/backend/src/api/websocket-handler.ts index a96264825..c89179ce7 100644 --- a/backend/src/api/websocket-handler.ts +++ b/backend/src/api/websocket-handler.ts @@ -432,7 +432,7 @@ class WebsocketHandler { } if (Common.indexingEnabled() && memPool.isInSync()) { - const { censored, added, fresh, score } = Audit.auditBlock(transactions, projectedBlocks, auditMempool); + const { censored, added, fresh, score, similarity } = Audit.auditBlock(transactions, projectedBlocks, auditMempool); const matchRate = Math.round(score * 100 * 100) / 100; const stripped = projectedBlocks[0]?.transactions ? projectedBlocks[0].transactions.map((tx) => { @@ -464,8 +464,14 @@ class WebsocketHandler { if (block.extras) { block.extras.matchRate = matchRate; + block.extras.similarity = similarity; } } + } else if (block.extras) { + const mBlocks = mempoolBlocks.getMempoolBlocksWithTransactions(); + if (mBlocks?.length && mBlocks[0].transactions) { + block.extras.similarity = Common.getSimilarity(mBlocks[0], transactions); + } } const removed: string[] = []; diff --git a/backend/src/config.ts b/backend/src/config.ts index c0e3d297c..81db16081 100644 --- a/backend/src/config.ts +++ b/backend/src/config.ts @@ -33,6 +33,7 @@ interface IConfig { ADVANCED_GBT_MEMPOOL: boolean; CPFP_INDEXING: boolean; MAX_BLOCKS_BULK_QUERY: number; + DISK_CACHE_BLOCK_INTERVAL: number; }; ESPLORA: { REST_API_URL: string; @@ -52,6 +53,7 @@ interface IConfig { TLS_CERT_PATH: string; MACAROON_PATH: string; REST_API_URL: string; + TIMEOUT: number; }; CLIGHTNING: { SOCKET: string; @@ -66,12 +68,14 @@ interface IConfig { PORT: number; USERNAME: string; PASSWORD: string; + TIMEOUT: number; }; SECOND_CORE_RPC: { HOST: string; PORT: number; USERNAME: string; PASSWORD: string; + TIMEOUT: number; }; DATABASE: { ENABLED: boolean; @@ -156,6 +160,7 @@ const defaults: IConfig = { 'ADVANCED_GBT_MEMPOOL': false, 'CPFP_INDEXING': false, 'MAX_BLOCKS_BULK_QUERY': 0, + 'DISK_CACHE_BLOCK_INTERVAL': 6, }, 'ESPLORA': { 'REST_API_URL': 'http://127.0.0.1:3000', @@ -170,13 +175,15 @@ const defaults: IConfig = { 'HOST': '127.0.0.1', 'PORT': 8332, 'USERNAME': 'mempool', - 'PASSWORD': 'mempool' + 'PASSWORD': 'mempool', + 'TIMEOUT': 60000, }, 'SECOND_CORE_RPC': { 'HOST': '127.0.0.1', 'PORT': 8332, 'USERNAME': 'mempool', - 'PASSWORD': 'mempool' + 'PASSWORD': 'mempool', + 'TIMEOUT': 60000, }, 'DATABASE': { 'ENABLED': true, @@ -216,6 +223,7 @@ const defaults: IConfig = { 'TLS_CERT_PATH': '', 'MACAROON_PATH': '', 'REST_API_URL': 'https://localhost:8080', + 'TIMEOUT': 10000, }, 'CLIGHTNING': { 'SOCKET': '', diff --git a/backend/src/index.ts b/backend/src/index.ts index fbe9c08c2..ccba83be9 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -215,11 +215,11 @@ class Server { await lightningStatsUpdater.$startService(); await forensicsService.$startService(); } catch(e) { - logger.err(`Nodejs lightning backend crashed. Restarting in 1 minute. Reason: ${(e instanceof Error ? e.message : e)}`); + logger.err(`Exception in $runLightningBackend. Restarting in 1 minute. Reason: ${(e instanceof Error ? e.message : e)}`); await Common.sleep$(1000 * 60); this.$runLightningBackend(); }; -} + } setUpWebsocketHandling(): void { if (this.wss) { diff --git a/backend/src/mempool.interfaces.ts b/backend/src/mempool.interfaces.ts index 8662770bc..9961632c3 100644 --- a/backend/src/mempool.interfaces.ts +++ b/backend/src/mempool.interfaces.ts @@ -153,6 +153,7 @@ export interface BlockExtension { feeRange: number[]; // fee rate percentiles reward: number; matchRate: number | null; + similarity?: number; pool: { id: number; // Note - This is the `unique_id`, not to mix with the auto increment `id` name: string; diff --git a/backend/src/repositories/BlocksRepository.ts b/backend/src/repositories/BlocksRepository.ts index f2d0a283e..04dcd4b56 100644 --- a/backend/src/repositories/BlocksRepository.ts +++ b/backend/src/repositories/BlocksRepository.ts @@ -330,6 +330,55 @@ class BlocksRepository { } } + /** + * Get average block health for all blocks for a single pool + */ + public async $getAvgBlockHealthPerPoolId(poolId: number): Promise { + const params: any[] = []; + const query = ` + SELECT AVG(blocks_audits.match_rate) AS avg_match_rate + FROM blocks + JOIN blocks_audits ON blocks.height = blocks_audits.height + WHERE blocks.pool_id = ? + `; + params.push(poolId); + + try { + const [rows] = await DB.query(query, params); + if (!rows[0] || !rows[0].avg_match_rate) { + return 0; + } + return Math.round(rows[0].avg_match_rate * 100) / 100; + } catch (e) { + logger.err(`Cannot get average block health for pool id ${poolId}. Reason: ` + (e instanceof Error ? e.message : e)); + throw e; + } + } + + /** + * Get average block health for all blocks for a single pool + */ + public async $getTotalRewardForPoolId(poolId: number): Promise { + const params: any[] = []; + const query = ` + SELECT sum(reward) as total_reward + FROM blocks + WHERE blocks.pool_id = ? + `; + params.push(poolId); + + try { + const [rows] = await DB.query(query, params); + if (!rows[0] || !rows[0].total_reward) { + return 0; + } + return rows[0].total_reward; + } catch (e) { + logger.err(`Cannot get total reward for pool id ${poolId}. Reason: ` + (e instanceof Error ? e.message : e)); + throw e; + } + } + /** * Get the oldest indexed block */ diff --git a/backend/src/tasks/lightning/stats-updater.service.ts b/backend/src/tasks/lightning/stats-updater.service.ts index 69b4cbadd..5d0ac3cfc 100644 --- a/backend/src/tasks/lightning/stats-updater.service.ts +++ b/backend/src/tasks/lightning/stats-updater.service.ts @@ -22,12 +22,15 @@ class LightningStatsUpdater { * Update the latest entry for each node every config.LIGHTNING.STATS_REFRESH_INTERVAL seconds */ private async $logStatsDaily(): Promise { - const date = new Date(); - Common.setDateMidnight(date); - const networkGraph = await lightningApi.$getNetworkGraph(); - await LightningStatsImporter.computeNetworkStats(date.getTime() / 1000, networkGraph); - - logger.debug(`Updated latest network stats`, logger.tags.ln); + try { + const date = new Date(); + Common.setDateMidnight(date); + const networkGraph = await lightningApi.$getNetworkGraph(); + await LightningStatsImporter.computeNetworkStats(date.getTime() / 1000, networkGraph); + logger.debug(`Updated latest network stats`, logger.tags.ln); + } catch (e) { + logger.err(`Exception in $logStatsDaily. Reason: ${(e instanceof Error ? e.message : e)}`); + } } } diff --git a/backend/src/tasks/pools-updater.ts b/backend/src/tasks/pools-updater.ts index dc76382d6..fb86d03be 100644 --- a/backend/src/tasks/pools-updater.ts +++ b/backend/src/tasks/pools-updater.ts @@ -17,7 +17,9 @@ class PoolsUpdater { treeUrl: string = config.MEMPOOL.POOLS_JSON_TREE_URL; public async updatePoolsJson(): Promise { - if (['mainnet', 'testnet', 'signet'].includes(config.MEMPOOL.NETWORK) === false) { + if (['mainnet', 'testnet', 'signet'].includes(config.MEMPOOL.NETWORK) === false || + config.MEMPOOL.ENABLED === false + ) { return; } diff --git a/backend/src/tasks/price-updater.ts b/backend/src/tasks/price-updater.ts index ccb8d3e68..716ac9ee6 100644 --- a/backend/src/tasks/price-updater.ts +++ b/backend/src/tasks/price-updater.ts @@ -73,6 +73,11 @@ class PriceUpdater { } public async $run(): Promise { + if (config.MEMPOOL.NETWORK === 'signet' || config.MEMPOOL.NETWORK === 'testnet') { + // Coins have no value on testnet/signet, so we want to always show 0 + return; + } + if (this.running === true) { return; } @@ -88,7 +93,7 @@ class PriceUpdater { if (this.historyInserted === false && config.DATABASE.ENABLED === true) { await this.$insertHistoricalPrices(); } - } catch (e) { + } catch (e: any) { logger.err(`Cannot save BTC prices in db. Reason: ${e instanceof Error ? e.message : e}`, logger.tags.mining); } diff --git a/docker/README.md b/docker/README.md index 9389d32c0..e81e45b42 100644 --- a/docker/README.md +++ b/docker/README.md @@ -34,6 +34,7 @@ If you want to use different credentials, specify them in the `docker-compose.ym CORE_RPC_PORT: "8332" CORE_RPC_USERNAME: "customuser" CORE_RPC_PASSWORD: "custompassword" + CORE_RPC_TIMEOUT: "60000" ``` The IP address in the example above refers to Docker's default gateway IP address so that the container can hit the `bitcoind` instance running on the host machine. If your setup is different, update it accordingly. @@ -112,6 +113,7 @@ Below we list all settings from `mempool-config.json` and the corresponding over "ADVANCED_GBT_MEMPOOL": false, "CPFP_INDEXING": false, "MAX_BLOCKS_BULK_QUERY": 0, + "DISK_CACHE_BLOCK_INTERVAL": 6 }, ``` @@ -143,6 +145,7 @@ Corresponding `docker-compose.yml` overrides: MEMPOOL_ADVANCED_GBT_MEMPOOL: "" MEMPOOL_CPFP_INDEXING: "" MAX_BLOCKS_BULK_QUERY: "" + DISK_CACHE_BLOCK_INTERVAL: "" ... ``` @@ -158,7 +161,8 @@ Corresponding `docker-compose.yml` overrides: "HOST": "127.0.0.1", "PORT": 8332, "USERNAME": "mempool", - "PASSWORD": "mempool" + "PASSWORD": "mempool", + "TIMEOUT": 60000 }, ``` @@ -170,6 +174,7 @@ Corresponding `docker-compose.yml` overrides: CORE_RPC_PORT: "" CORE_RPC_USERNAME: "" CORE_RPC_PASSWORD: "" + CORE_RPC_TIMEOUT: 60000 ... ``` @@ -221,7 +226,8 @@ Corresponding `docker-compose.yml` overrides: "HOST": "127.0.0.1", "PORT": 8332, "USERNAME": "mempool", - "PASSWORD": "mempool" + "PASSWORD": "mempool", + "TIMEOUT": 60000 }, ``` @@ -233,6 +239,7 @@ Corresponding `docker-compose.yml` overrides: SECOND_CORE_RPC_PORT: "" SECOND_CORE_RPC_USERNAME: "" SECOND_CORE_RPC_PASSWORD: "" + SECOND_CORE_RPC_TIMEOUT: "" ... ``` @@ -405,6 +412,7 @@ Corresponding `docker-compose.yml` overrides: "TLS_CERT_PATH": "" "MACAROON_PATH": "" "REST_API_URL": "https://localhost:8080" + "TIMEOUT": 10000 } ``` @@ -415,6 +423,7 @@ Corresponding `docker-compose.yml` overrides: LND_TLS_CERT_PATH: "" LND_MACAROON_PATH: "" LND_REST_API_URL: "https://localhost:8080" + LND_TIMEOUT: 10000 ... ``` @@ -434,3 +443,26 @@ Corresponding `docker-compose.yml` overrides: CLIGHTNING_SOCKET: "" ... ``` + +
+ +`mempool-config.json`: +```json + "MAXMIND": { + "ENABLED": true, + "GEOLITE2_CITY": "/usr/local/share/GeoIP/GeoLite2-City.mmdb", + "GEOLITE2_ASN": "/usr/local/share/GeoIP/GeoLite2-ASN.mmdb", + "GEOIP2_ISP": "/usr/local/share/GeoIP/GeoIP2-ISP.mmdb" + } +``` + +Corresponding `docker-compose.yml` overrides: +```yaml + api: + environment: + MAXMIND_ENABLED: true, + MAXMIND_GEOLITE2_CITY: "/backend/GeoIP/GeoLite2-City.mmdb", + MAXMIND_GEOLITE2_ASN": "/backend/GeoIP/GeoLite2-ASN.mmdb", + MAXMIND_GEOIP2_ISP": "/backend/GeoIP/GeoIP2-ISP.mmdb" + ... +``` diff --git a/docker/backend/Dockerfile b/docker/backend/Dockerfile index 9be457bb2..fd5044c0f 100644 --- a/docker/backend/Dockerfile +++ b/docker/backend/Dockerfile @@ -17,6 +17,7 @@ WORKDIR /backend RUN chown 1000:1000 ./ COPY --from=builder --chown=1000:1000 /build/package ./package/ +COPY --from=builder --chown=1000:1000 /build/GeoIP ./GeoIP/ COPY --from=builder --chown=1000:1000 /build/mempool-config.json /build/start.sh /build/wait-for-it.sh ./ USER 1000 diff --git a/docker/backend/mempool-config.json b/docker/backend/mempool-config.json index e8ab87d92..7d2737e9c 100644 --- a/docker/backend/mempool-config.json +++ b/docker/backend/mempool-config.json @@ -26,13 +26,15 @@ "ADVANCED_GBT_AUDIT": __MEMPOOL_ADVANCED_GBT_AUDIT__, "ADVANCED_GBT_MEMPOOL": __MEMPOOL_ADVANCED_GBT_MEMPOOL__, "CPFP_INDEXING": __MEMPOOL_CPFP_INDEXING__, - "MAX_BLOCKS_BULK_QUERY": __MEMPOOL_MAX_BLOCKS_BULK_QUERY__ + "MAX_BLOCKS_BULK_QUERY": __MEMPOOL_MAX_BLOCKS_BULK_QUERY__, + "DISK_CACHE_BLOCK_INTERVAL": __MEMPOOL_DISK_CACHE_BLOCK_INTERVAL__ }, "CORE_RPC": { "HOST": "__CORE_RPC_HOST__", "PORT": __CORE_RPC_PORT__, "USERNAME": "__CORE_RPC_USERNAME__", - "PASSWORD": "__CORE_RPC_PASSWORD__" + "PASSWORD": "__CORE_RPC_PASSWORD__", + "TIMEOUT": __CORE_RPC_TIMEOUT__ }, "ELECTRUM": { "HOST": "__ELECTRUM_HOST__", @@ -47,7 +49,8 @@ "HOST": "__SECOND_CORE_RPC_HOST__", "PORT": __SECOND_CORE_RPC_PORT__, "USERNAME": "__SECOND_CORE_RPC_USERNAME__", - "PASSWORD": "__SECOND_CORE_RPC_PASSWORD__" + "PASSWORD": "__SECOND_CORE_RPC_PASSWORD__", + "TIMEOUT": __SECOND_CORE_RPC_TIMEOUT__ }, "DATABASE": { "ENABLED": __DATABASE_ENABLED__, @@ -84,7 +87,8 @@ "LND": { "TLS_CERT_PATH": "__LND_TLS_CERT_PATH__", "MACAROON_PATH": "__LND_MACAROON_PATH__", - "REST_API_URL": "__LND_REST_API_URL__" + "REST_API_URL": "__LND_REST_API_URL__", + "TIMEOUT": "__LND_TIMEOUT__" }, "CLIGHTNING": { "SOCKET": "__CLIGHTNING_SOCKET__" @@ -108,5 +112,11 @@ "LIQUID_ONION": "__EXTERNAL_DATA_SERVER_LIQUID_ONION__", "BISQ_URL": "__EXTERNAL_DATA_SERVER_BISQ_URL__", "BISQ_ONION": "__EXTERNAL_DATA_SERVER_BISQ_ONION__" + }, + "MAXMIND": { + "ENABLED": __MAXMIND_ENABLED__, + "GEOLITE2_CITY": "__MAXMIND_GEOLITE2_CITY__", + "GEOLITE2_ASN": "__MAXMIND_GEOLITE2_ASN__", + "GEOIP2_ISP": "__MAXMIND_GEOIP2_ISP__" } -} \ No newline at end of file +} diff --git a/docker/backend/start.sh b/docker/backend/start.sh index 76a89610b..55da48464 100755 --- a/docker/backend/start.sh +++ b/docker/backend/start.sh @@ -22,7 +22,6 @@ __MEMPOOL_EXTERNAL_MAX_RETRY__=${MEMPOOL_EXTERNAL_MAX_RETRY:=1} __MEMPOOL_EXTERNAL_RETRY_INTERVAL__=${MEMPOOL_EXTERNAL_RETRY_INTERVAL:=0} __MEMPOOL_USER_AGENT__=${MEMPOOL_USER_AGENT:=mempool} __MEMPOOL_STDOUT_LOG_MIN_PRIORITY__=${MEMPOOL_STDOUT_LOG_MIN_PRIORITY:=info} -__MEMPOOL_INDEXING_BLOCKS_AMOUNT__=${MEMPOOL_INDEXING_BLOCKS_AMOUNT:=false} __MEMPOOL_AUTOMATIC_BLOCK_REINDEXING__=${MEMPOOL_AUTOMATIC_BLOCK_REINDEXING:=false} __MEMPOOL_POOLS_JSON_URL__=${MEMPOOL_POOLS_JSON_URL:=https://raw.githubusercontent.com/mempool/mining-pools/master/pools-v2.json} __MEMPOOL_POOLS_JSON_TREE_URL__=${MEMPOOL_POOLS_JSON_TREE_URL:=https://api.github.com/repos/mempool/mining-pools/git/trees/master} @@ -31,12 +30,14 @@ __MEMPOOL_ADVANCED_GBT_AUDIT__=${MEMPOOL_ADVANCED_GBT_AUDIT:=false} __MEMPOOL_ADVANCED_GBT_MEMPOOL__=${MEMPOOL_ADVANCED_GBT_MEMPOOL:=false} __MEMPOOL_CPFP_INDEXING__=${MEMPOOL_CPFP_INDEXING:=false} __MEMPOOL_MAX_BLOCKS_BULK_QUERY__=${MEMPOOL_MAX_BLOCKS_BULK_QUERY:=0} +__MEMPOOL_DISK_CACHE_BLOCK_INTERVAL__=${MEMPOOL_DISK_CACHE_BLOCK_INTERVAL:=6} # CORE_RPC __CORE_RPC_HOST__=${CORE_RPC_HOST:=127.0.0.1} __CORE_RPC_PORT__=${CORE_RPC_PORT:=8332} __CORE_RPC_USERNAME__=${CORE_RPC_USERNAME:=mempool} __CORE_RPC_PASSWORD__=${CORE_RPC_PASSWORD:=mempool} +__CORE_RPC_TIMEOUT__=${CORE_RPC_TIMEOUT:=60000} # ELECTRUM __ELECTRUM_HOST__=${ELECTRUM_HOST:=127.0.0.1} @@ -52,6 +53,7 @@ __SECOND_CORE_RPC_HOST__=${SECOND_CORE_RPC_HOST:=127.0.0.1} __SECOND_CORE_RPC_PORT__=${SECOND_CORE_RPC_PORT:=8332} __SECOND_CORE_RPC_USERNAME__=${SECOND_CORE_RPC_USERNAME:=mempool} __SECOND_CORE_RPC_PASSWORD__=${SECOND_CORE_RPC_PASSWORD:=mempool} +__SECOND_CORE_RPC_TIMEOUT__=${SECOND_CORE_RPC_TIMEOUT:=60000} # DATABASE __DATABASE_ENABLED__=${DATABASE_ENABLED:=true} @@ -109,10 +111,18 @@ __LIGHTNING_LOGGER_UPDATE_INTERVAL__=${LIGHTNING_LOGGER_UPDATE_INTERVAL:=30} __LND_TLS_CERT_PATH__=${LND_TLS_CERT_PATH:=""} __LND_MACAROON_PATH__=${LND_MACAROON_PATH:=""} __LND_REST_API_URL__=${LND_REST_API_URL:="https://localhost:8080"} +__LND_TIMEOUT__=${LND_TIMEOUT:=10000} # CLN __CLIGHTNING_SOCKET__=${CLIGHTNING_SOCKET:=""} +# MAXMIND +__MAXMIND_ENABLED__=${MAXMIND_ENABLED:=true} +__MAXMIND_GEOLITE2_CITY__=${MAXMIND_GEOLITE2_CITY:="/backend/GeoIP/GeoLite2-City.mmdb"} +__MAXMIND_GEOLITE2_ASN__=${MAXMIND_GEOLITE2_ASN:="/backend/GeoIP/GeoLite2-ASN.mmdb"} +__MAXMIND_GEOIP2_ISP__=${MAXMIND_GEOIP2_ISP:=""} + + mkdir -p "${__MEMPOOL_CACHE_DIR__}" sed -i "s/__MEMPOOL_NETWORK__/${__MEMPOOL_NETWORK__}/g" mempool-config.json @@ -136,7 +146,6 @@ sed -i "s!__MEMPOOL_EXTERNAL_MAX_RETRY__!${__MEMPOOL_EXTERNAL_MAX_RETRY__}!g" me sed -i "s!__MEMPOOL_EXTERNAL_RETRY_INTERVAL__!${__MEMPOOL_EXTERNAL_RETRY_INTERVAL__}!g" mempool-config.json sed -i "s!__MEMPOOL_USER_AGENT__!${__MEMPOOL_USER_AGENT__}!g" mempool-config.json sed -i "s/__MEMPOOL_STDOUT_LOG_MIN_PRIORITY__/${__MEMPOOL_STDOUT_LOG_MIN_PRIORITY__}/g" mempool-config.json -sed -i "s/__MEMPOOL_INDEXING_BLOCKS_AMOUNT__/${__MEMPOOL_INDEXING_BLOCKS_AMOUNT__}/g" mempool-config.json sed -i "s/__MEMPOOL_AUTOMATIC_BLOCK_REINDEXING__/${__MEMPOOL_AUTOMATIC_BLOCK_REINDEXING__}/g" mempool-config.json sed -i "s!__MEMPOOL_POOLS_JSON_URL__!${__MEMPOOL_POOLS_JSON_URL__}!g" mempool-config.json sed -i "s!__MEMPOOL_POOLS_JSON_TREE_URL__!${__MEMPOOL_POOLS_JSON_TREE_URL__}!g" mempool-config.json @@ -145,11 +154,13 @@ sed -i "s!__MEMPOOL_ADVANCED_GBT_MEMPOOL__!${__MEMPOOL_ADVANCED_GBT_MEMPOOL__}!g sed -i "s!__MEMPOOL_ADVANCED_GBT_AUDIT__!${__MEMPOOL_ADVANCED_GBT_AUDIT__}!g" mempool-config.json sed -i "s!__MEMPOOL_CPFP_INDEXING__!${__MEMPOOL_CPFP_INDEXING__}!g" mempool-config.json sed -i "s!__MEMPOOL_MAX_BLOCKS_BULK_QUERY__!${__MEMPOOL_MAX_BLOCKS_BULK_QUERY__}!g" mempool-config.json +sed -i "s!__MEMPOOL_DISK_CACHE_BLOCK_INTERVAL__!${__MEMPOOL_DISK_CACHE_BLOCK_INTERVAL__}!g" mempool-config.json sed -i "s/__CORE_RPC_HOST__/${__CORE_RPC_HOST__}/g" mempool-config.json sed -i "s/__CORE_RPC_PORT__/${__CORE_RPC_PORT__}/g" mempool-config.json sed -i "s/__CORE_RPC_USERNAME__/${__CORE_RPC_USERNAME__}/g" mempool-config.json sed -i "s/__CORE_RPC_PASSWORD__/${__CORE_RPC_PASSWORD__}/g" mempool-config.json +sed -i "s/__CORE_RPC_TIMEOUT__/${__CORE_RPC_TIMEOUT__}/g" mempool-config.json sed -i "s/__ELECTRUM_HOST__/${__ELECTRUM_HOST__}/g" mempool-config.json sed -i "s/__ELECTRUM_PORT__/${__ELECTRUM_PORT__}/g" mempool-config.json @@ -162,6 +173,7 @@ sed -i "s/__SECOND_CORE_RPC_HOST__/${__SECOND_CORE_RPC_HOST__}/g" mempool-config sed -i "s/__SECOND_CORE_RPC_PORT__/${__SECOND_CORE_RPC_PORT__}/g" mempool-config.json sed -i "s/__SECOND_CORE_RPC_USERNAME__/${__SECOND_CORE_RPC_USERNAME__}/g" mempool-config.json sed -i "s/__SECOND_CORE_RPC_PASSWORD__/${__SECOND_CORE_RPC_PASSWORD__}/g" mempool-config.json +sed -i "s/__SECOND_CORE_RPC_TIMEOUT__/${__SECOND_CORE_RPC_TIMEOUT__}/g" mempool-config.json sed -i "s/__DATABASE_ENABLED__/${__DATABASE_ENABLED__}/g" mempool-config.json sed -i "s/__DATABASE_HOST__/${__DATABASE_HOST__}/g" mempool-config.json @@ -213,8 +225,16 @@ sed -i "s!__LIGHTNING_LOGGER_UPDATE_INTERVAL__!${__LIGHTNING_LOGGER_UPDATE_INTER sed -i "s!__LND_TLS_CERT_PATH__!${__LND_TLS_CERT_PATH__}!g" mempool-config.json sed -i "s!__LND_MACAROON_PATH__!${__LND_MACAROON_PATH__}!g" mempool-config.json sed -i "s!__LND_REST_API_URL__!${__LND_REST_API_URL__}!g" mempool-config.json +sed -i "s!__LND_TIMEOUT__!${__LND_TIMEOUT__}!g" mempool-config.json # CLN sed -i "s!__CLIGHTNING_SOCKET__!${__CLIGHTNING_SOCKET__}!g" mempool-config.json +# MAXMIND +sed -i "s!__MAXMIND_ENABLED__!${__MAXMIND_ENABLED__}!g" mempool-config.json +sed -i "s!__MAXMIND_GEOLITE2_CITY__!${__MAXMIND_GEOLITE2_CITY__}!g" mempool-config.json +sed -i "s!__MAXMIND_GEOLITE2_ASN__!${__MAXMIND_GEOLITE2_ASN__}!g" mempool-config.json +sed -i "s!__MAXMIND_GEOIP2_ISP__!${__MAXMIND_GEOIP2_ISP__}!g" mempool-config.json + + node /backend/package/index.js diff --git a/docker/init.sh b/docker/init.sh index 4eb06f0c1..ee9ac9542 100755 --- a/docker/init.sh +++ b/docker/init.sh @@ -3,6 +3,11 @@ #backend cp ./docker/backend/* ./backend/ +#geoip-data +mkdir -p ./backend/GeoIP/ +wget -O ./backend/GeoIP/GeoLite2-City.mmdb https://raw.githubusercontent.com/mempool/geoip-data/master/GeoLite2-City.mmdb +wget -O ./backend/GeoIP/GeoLite2-ASN.mmdb https://raw.githubusercontent.com/mempool/geoip-data/master/GeoLite2-ASN.mmdb + #frontend localhostIP="127.0.0.1" cp ./docker/frontend/* ./frontend diff --git a/frontend/.gitignore b/frontend/.gitignore index 9c4b5d5e8..8159e7c7b 100644 --- a/frontend/.gitignore +++ b/frontend/.gitignore @@ -54,7 +54,8 @@ src/resources/assets-testnet.json src/resources/assets-testnet.minimal.json src/resources/pools.json src/resources/mining-pools/* -src/resources/*.mp4 +src/resources/**/*.mp4 +src/resources/**/*.vtt # environment config mempool-frontend-config.json diff --git a/frontend/README.md b/frontend/README.md index 68fa12e48..d90aa541b 100644 --- a/frontend/README.md +++ b/frontend/README.md @@ -111,7 +111,7 @@ https://www.transifex.com/mempool/mempool/dashboard/ * Spanish @maxhodler @bisqes * Persian @techmix * French @Bayernatoor -* Korean @kcalvinalvinn +* Korean @kcalvinalvinn @sogoagain * Italian @HodlBits * Hebrew @rapidlab309 * Georgian @wyd_idk diff --git a/frontend/angular.json b/frontend/angular.json index d157cc443..792f59443 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -38,6 +38,10 @@ "translation": "src/locale/messages.de.xlf", "baseHref": "/de/" }, + "da": { + "translation": "src/locale/messages.da.xlf", + "baseHref": "/da/" + }, "es": { "translation": "src/locale/messages.es.xlf", "baseHref": "/es/" diff --git a/frontend/cypress/e2e/liquid/liquid.spec.ts b/frontend/cypress/e2e/liquid/liquid.spec.ts index e22a9b94e..325a2ad0c 100644 --- a/frontend/cypress/e2e/liquid/liquid.spec.ts +++ b/frontend/cypress/e2e/liquid/liquid.spec.ts @@ -158,10 +158,10 @@ describe('Liquid', () => { it('show empty unblinded TX', () => { cy.visit(`${basePath}/tx/f2f41c0850e8e7e3f1af233161fd596662e67c11ef10ed15943884186fbb7f46#blinded=`); cy.waitForSkeletonGone(); - cy.get('.table-tx-vin tr:nth-child(1)').should('have.class', ''); + cy.get('.table-tx-vin tr:nth-child(1)').should('have.class', 'ng-star-inserted'); cy.get('.table-tx-vin tr:nth-child(1) .amount').should('contain.text', 'Confidential'); - cy.get('.table-tx-vout tr:nth-child(1)').should('have.class', ''); - cy.get('.table-tx-vout tr:nth-child(2)').should('have.class', ''); + cy.get('.table-tx-vout tr:nth-child(1)').should('have.class', 'ng-star-inserted'); + cy.get('.table-tx-vout tr:nth-child(2)').should('have.class', 'ng-star-inserted'); cy.get('.table-tx-vout tr:nth-child(1) .amount').should('contain.text', 'Confidential'); cy.get('.table-tx-vout tr:nth-child(2) .amount').should('contain.text', 'Confidential'); }); @@ -169,8 +169,8 @@ describe('Liquid', () => { it('show invalid unblinded TX hex', () => { cy.visit(`${basePath}/tx/f2f41c0850e8e7e3f1af233161fd596662e67c11ef10ed15943884186fbb7f46#blinded=123`); cy.waitForSkeletonGone(); - cy.get('.table-tx-vin tr').should('have.class', ''); - cy.get('.table-tx-vout tr').should('have.class', ''); + cy.get('.table-tx-vin tr').should('have.class', 'ng-star-inserted'); + cy.get('.table-tx-vout tr').should('have.class', 'ng-star-inserted'); cy.get('.error-unblinded').contains('Error: Invalid blinding data (invalid hex)'); }); diff --git a/frontend/cypress/e2e/liquidtestnet/liquidtestnet.spec.ts b/frontend/cypress/e2e/liquidtestnet/liquidtestnet.spec.ts index e1172e51a..1f959dd3a 100644 --- a/frontend/cypress/e2e/liquidtestnet/liquidtestnet.spec.ts +++ b/frontend/cypress/e2e/liquidtestnet/liquidtestnet.spec.ts @@ -109,10 +109,10 @@ describe('Liquid Testnet', () => { it('show empty unblinded TX', () => { cy.visit(`${basePath}/tx/c3d908ab77891e4c569b0df71aae90f4720b157019ebb20db176f4f9c4d626b8#blinded=`); cy.waitForSkeletonGone(); - cy.get('.table-tx-vin tr:nth-child(1)').should('have.class', ''); + cy.get('.table-tx-vin tr:nth-child(1)').should('have.class', 'ng-star-inserted'); cy.get('.table-tx-vin tr:nth-child(1) .amount').should('contain.text', 'Confidential'); - cy.get('.table-tx-vout tr:nth-child(1)').should('have.class', ''); - cy.get('.table-tx-vout tr:nth-child(2)').should('have.class', ''); + cy.get('.table-tx-vout tr:nth-child(1)').should('have.class', 'ng-star-inserted'); + cy.get('.table-tx-vout tr:nth-child(2)').should('have.class', 'ng-star-inserted'); cy.get('.table-tx-vout tr:nth-child(1) .amount').should('contain.text', 'Confidential'); cy.get('.table-tx-vout tr:nth-child(2) .amount').should('contain.text', 'Confidential'); }); @@ -120,8 +120,8 @@ describe('Liquid Testnet', () => { it('show invalid unblinded TX hex', () => { cy.visit(`${basePath}/tx/2477f220eef1d03f8ffa4a2861c275d155c3562adf0d79523aeeb0c59ee611ba#blinded=5000`); cy.waitForSkeletonGone(); - cy.get('.table-tx-vin tr').should('have.class', ''); - cy.get('.table-tx-vout tr').should('have.class', ''); + cy.get('.table-tx-vin tr').should('have.class', 'ng-star-inserted'); + cy.get('.table-tx-vout tr').should('have.class', 'ng-star-inserted'); cy.get('.error-unblinded').contains('Error: Invalid blinding data (invalid hex)'); }); diff --git a/frontend/src/app/app.constants.ts b/frontend/src/app/app.constants.ts index f15733bb0..8a091706a 100644 --- a/frontend/src/app/app.constants.ts +++ b/frontend/src/app/app.constants.ts @@ -139,26 +139,87 @@ export const specialBlocks = { '0': { labelEvent: 'Genesis', labelEventCompleted: 'The Genesis of Bitcoin', + networks: ['mainnet', 'testnet'], }, '210000': { labelEvent: 'Bitcoin\'s 1st Halving', labelEventCompleted: 'Block Subsidy has halved to 25 BTC per block', + networks: ['mainnet', 'testnet'], }, '420000': { labelEvent: 'Bitcoin\'s 2nd Halving', labelEventCompleted: 'Block Subsidy has halved to 12.5 BTC per block', + networks: ['mainnet', 'testnet'], }, '630000': { labelEvent: 'Bitcoin\'s 3rd Halving', labelEventCompleted: 'Block Subsidy has halved to 6.25 BTC per block', + networks: ['mainnet', 'testnet'], }, '709632': { labelEvent: 'Taproot 🌱 activation', labelEventCompleted: 'Taproot 🌱 has been activated!', + networks: ['mainnet'], }, '840000': { labelEvent: 'Bitcoin\'s 4th Halving', labelEventCompleted: 'Block Subsidy has halved to 3.125 BTC per block', + networks: ['mainnet', 'testnet'], + }, + '1050000': { + labelEvent: 'Bitcoin\'s 5th Halving', + labelEventCompleted: 'Block Subsidy has halved to 1.5625 BTC per block', + networks: ['mainnet', 'testnet'], + }, + '1260000': { + labelEvent: 'Bitcoin\'s 6th Halving', + labelEventCompleted: 'Block Subsidy has halved to 0.78125 BTC per block', + networks: ['mainnet', 'testnet'], + }, + '1470000': { + labelEvent: 'Bitcoin\'s 7th Halving', + labelEventCompleted: 'Block Subsidy has halved to 0.390625 BTC per block', + networks: ['mainnet', 'testnet'], + }, + '1680000': { + labelEvent: 'Bitcoin\'s 8th Halving', + labelEventCompleted: 'Block Subsidy has halved to 0.1953125 BTC per block', + networks: ['mainnet', 'testnet'], + }, + '1890000': { + labelEvent: 'Bitcoin\'s 9th Halving', + labelEventCompleted: 'Block Subsidy has halved to 0.09765625 BTC per block', + networks: ['mainnet', 'testnet'], + }, + '2100000': { + labelEvent: 'Bitcoin\'s 10th Halving', + labelEventCompleted: 'Block Subsidy has halved to 0.04882812 BTC per block', + networks: ['mainnet', 'testnet'], + }, + '2310000': { + labelEvent: 'Bitcoin\'s 11th Halving', + labelEventCompleted: 'Block Subsidy has halved to 0.02441406 BTC per block', + networks: ['mainnet', 'testnet'], + }, + '2520000': { + labelEvent: 'Bitcoin\'s 12th Halving', + labelEventCompleted: 'Block Subsidy has halved to 0.01220703 BTC per block', + networks: ['mainnet', 'testnet'], + }, + '2730000': { + labelEvent: 'Bitcoin\'s 13th Halving', + labelEventCompleted: 'Block Subsidy has halved to 0.00610351 BTC per block', + networks: ['mainnet', 'testnet'], + }, + '2940000': { + labelEvent: 'Bitcoin\'s 14th Halving', + labelEventCompleted: 'Block Subsidy has halved to 0.00305175 BTC per block', + networks: ['mainnet', 'testnet'], + }, + '3150000': { + labelEvent: 'Bitcoin\'s 15th Halving', + labelEventCompleted: 'Block Subsidy has halved to 0.00152587 BTC per block', + networks: ['mainnet', 'testnet'], } }; diff --git a/frontend/src/app/bitcoin.utils.ts b/frontend/src/app/bitcoin.utils.ts index 25432565c..5419464a9 100644 --- a/frontend/src/app/bitcoin.utils.ts +++ b/frontend/src/app/bitcoin.utils.ts @@ -254,3 +254,30 @@ export function selectPowerOfTen(val: number): { divider: number, unit: string } return selectedPowerOfTen; } + +const featureActivation = { + mainnet: { + rbf: 399701, + segwit: 477120, + taproot: 709632, + }, + testnet: { + rbf: 720255, + segwit: 872730, + taproot: 2032291, + }, + signet: { + rbf: 0, + segwit: 0, + taproot: 0, + }, +}; + +export function isFeatureActive(network: string, height: number, feature: 'rbf' | 'segwit' | 'taproot'): boolean { + const activationHeight = featureActivation[network || 'mainnet']?.[feature]; + if (activationHeight != null) { + return height >= activationHeight; + } else { + return false; + } +} diff --git a/frontend/src/app/components/about/about.component.html b/frontend/src/app/components/about/about.component.html index 73e7a17a2..ad2fd7bf7 100644 --- a/frontend/src/app/components/about/about.component.html +++ b/frontend/src/app/components/about/about.component.html @@ -13,7 +13,23 @@

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.

- +

Enterprise Sponsors 🚀

@@ -284,6 +300,10 @@ Boltz + + + Mutiny +
diff --git a/frontend/src/app/components/about/about.component.scss b/frontend/src/app/components/about/about.component.scss index e538d724b..e1d6c829a 100644 --- a/frontend/src/app/components/about/about.component.scss +++ b/frontend/src/app/components/about/about.component.scss @@ -13,8 +13,8 @@ .image.not-rounded { border-radius: 0; - width: 74px; - height: 74px; + width: 60px; + height: 60px; } .intro { @@ -42,9 +42,11 @@ video { width: 640px; - height: 360px; max-width: 90%; margin-top: 0; + @media (min-width: 768px) { + height: 360px; + } } .social-icons { @@ -57,9 +59,13 @@ .enterprise-sponsor, .community-integrations-sponsor, .maintainers { - margin-top: 68px; + margin-top: 30px; margin-bottom: 68px; scroll-margin: 30px; + + @media (min-width: 768px) { + margin-top: 68px; + } } .maintainers { @@ -228,11 +234,11 @@ } .community-integrations-sponsor { - max-width: 965px; + max-width: 1110px; margin: auto; } .community-integrations-sponsor img.image { - width: 78px; - height: 78px; + width: 64px; + height: 64px; } diff --git a/frontend/src/app/components/about/about.component.ts b/frontend/src/app/components/about/about.component.ts index 0f71645d6..2bc42bde9 100644 --- a/frontend/src/app/components/about/about.component.ts +++ b/frontend/src/app/components/about/about.component.ts @@ -68,7 +68,7 @@ export class AboutComponent implements OnInit { tap(() => this.goToAnchor()) ); } - + ngAfterViewInit() { this.goToAnchor(); } @@ -90,4 +90,8 @@ export class AboutComponent implements OnInit { this.showNavigateToSponsor = true; } } + + showSubtitles(language) { + return ( this.locale.startsWith( language ) && !this.locale.startsWith('en') ); + } } diff --git a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html index 8323cf8c6..6cdb895ff 100644 --- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html +++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html @@ -6,7 +6,7 @@
+ [class.blink-bg]="isSpecial(block.height)">  
diff --git a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.ts b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.ts index 30b98813a..9c0049c4d 100644 --- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.ts +++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.ts @@ -269,6 +269,10 @@ export class BlockchainBlocksComponent implements OnInit, OnChanges, OnDestroy { this.cd.markForCheck(); } + isSpecial(height: number): boolean { + return this.specialBlocks[height]?.networks.includes(this.stateService.network || 'mainnet') ? true : false; + } + getStyleForBlock(block: BlockchainBlock, index: number, animateEnterFrom: number = 0) { if (!block || block.placeholder) { return this.getStyleForPlaceholderBlock(index, animateEnterFrom); diff --git a/frontend/src/app/components/blocks-list/blocks-list.component.html b/frontend/src/app/components/blocks-list/blocks-list.component.html index 86a5a2ef3..d6c229846 100644 --- a/frontend/src/app/components/blocks-list/blocks-list.component.html +++ b/frontend/src/app/components/blocks-list/blocks-list.component.html @@ -26,7 +26,7 @@ - + {{ block.height }} @@ -89,7 +89,6 @@ - @@ -98,7 +97,7 @@ - + diff --git a/frontend/src/app/components/blocks-list/blocks-list.component.scss b/frontend/src/app/components/blocks-list/blocks-list.component.scss index 1a32f7ed7..ea6e93347 100644 --- a/frontend/src/app/components/blocks-list/blocks-list.component.scss +++ b/frontend/src/app/components/blocks-list/blocks-list.component.scss @@ -51,7 +51,12 @@ tr, td, th { .pool.widget { width: 40%; padding-left: 24px; - @media (max-width: 376px) { + @media (min-width: 768px) AND (max-width: 926px) { + padding-left: 0px; + width: 60%; + } + @media (max-width: 430px) { + padding-left: 0px; width: 60%; } } @@ -59,6 +64,10 @@ tr, td, th { display: inline-block; vertical-align: text-top; padding-left: 10px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + max-width: 160px; } .height { @@ -69,6 +78,12 @@ tr, td, th { @media (max-width: 576px) { width: 10%; } + @media (min-width: 768px) AND (max-width: 926px) { + width: 30%; + } + @media (max-width: 430px) { + width: 30%; + } } .height.legacy { width: 15%; @@ -92,7 +107,7 @@ tr, td, th { .mined { width: 13%; - @media (max-width: 576px) { + @media (max-width: 730px) { display: none; } } @@ -138,7 +153,7 @@ tr, td, th { .fees { width: 8%; - @media (max-width: 650px) { + @media (max-width: 820px) { display: none; } } @@ -163,6 +178,16 @@ tr, td, th { width: 30%; padding-right: 0; } + @media (min-width: 768px) AND (max-width: 926px) { + overflow: hidden; + text-overflow: ellipsis; + max-width: 90px; + } + @media (max-width: 430px) { + overflow: hidden; + text-overflow: ellipsis; + max-width: 90px; + } } .size { @@ -189,10 +214,10 @@ tr, td, th { .health { width: 10%; - @media (max-width: 1000px) { + @media (max-width: 1105px) { width: 13%; } - @media (max-width: 950px) { + @media (max-width: 560px) { display: none; } @@ -202,7 +227,7 @@ tr, td, th { } .health.widget { width: 25%; - @media (max-width: 1000px) { + @media (max-width: 1105px) { display: none; } @media (max-width: 767px) { @@ -242,4 +267,4 @@ tr, td, th { vertical-align: middle; max-width: 50vw; text-align: left; -} \ No newline at end of file +} diff --git a/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html b/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html index 0950a11ed..dace043f8 100644 --- a/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html +++ b/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -2,17 +2,18 @@ - - - - + + + + - - + @@ -23,8 +24,8 @@ - - + + diff --git a/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.scss b/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.scss index f379effe2..f53c052db 100644 --- a/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.scss +++ b/frontend/src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.scss @@ -17,3 +17,12 @@ } } } + +.date { + @media (min-width: 767px) AND (max-width: 991px) { + display: none; + } + @media (max-width: 500px) { + display: none; + } +} \ No newline at end of file diff --git a/frontend/src/app/components/difficulty-mining/difficulty-mining.component.html b/frontend/src/app/components/difficulty-mining/difficulty-mining.component.html index ce0bf7eff..774ddef07 100644 --- a/frontend/src/app/components/difficulty-mining/difficulty-mining.component.html +++ b/frontend/src/app/components/difficulty-mining/difficulty-mining.component.html @@ -47,7 +47,8 @@
-
Next Halving
+
Next Halving
{{ i }} blocks @@ -77,7 +78,7 @@
-
Current Period
+
Next Halving
diff --git a/frontend/src/app/components/difficulty-mining/difficulty-mining.component.scss b/frontend/src/app/components/difficulty-mining/difficulty-mining.component.scss index 0530bc0cf..cf031bebc 100644 --- a/frontend/src/app/components/difficulty-mining/difficulty-mining.component.scss +++ b/frontend/src/app/components/difficulty-mining/difficulty-mining.component.scss @@ -10,6 +10,7 @@ .item { padding: 0 5px; width: 100%; + max-width: 150px; &:nth-child(1) { display: none; @media (min-width: 485px) { @@ -85,6 +86,9 @@ .card-title { color: #4a68b9; font-size: 1rem; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } .progress { diff --git a/frontend/src/app/components/difficulty-mining/difficulty-mining.component.ts b/frontend/src/app/components/difficulty-mining/difficulty-mining.component.ts index 2abb02e22..fbf31f238 100644 --- a/frontend/src/app/components/difficulty-mining/difficulty-mining.component.ts +++ b/frontend/src/app/components/difficulty-mining/difficulty-mining.component.ts @@ -83,4 +83,8 @@ export class DifficultyMiningComponent implements OnInit { }) ); } + + isEllipsisActive(e): boolean { + return (e.offsetWidth < e.scrollWidth); + } } diff --git a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html index 692f7d863..58d555657 100644 --- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html +++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html @@ -2,7 +2,7 @@
-
+
 
diff --git a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts index 8a0a06f0c..d48d1f299 100644 --- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts +++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.ts @@ -1,5 +1,5 @@ -import { Component, OnInit, OnDestroy, ChangeDetectionStrategy, ChangeDetectorRef, Input } from '@angular/core'; -import { Subscription, Observable, fromEvent, merge, of, combineLatest, timer } from 'rxjs'; +import { Component, OnInit, OnDestroy, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { Subscription, Observable, fromEvent, merge, of, combineLatest } from 'rxjs'; import { MempoolBlock } from '../../interfaces/websocket.interface'; import { StateService } from '../../services/state.service'; import { Router } from '@angular/router'; @@ -9,11 +9,18 @@ import { specialBlocks } from '../../app.constants'; import { RelativeUrlPipe } from '../../shared/pipes/relative-url/relative-url.pipe'; import { Location } from '@angular/common'; import { DifficultyAdjustment } from '../../interfaces/node-api.interface'; +import { animate, style, transition, trigger } from '@angular/animations'; @Component({ selector: 'app-mempool-blocks', templateUrl: './mempool-blocks.component.html', styleUrls: ['./mempool-blocks.component.scss'], + animations: [trigger('blockEntryTrigger', [ + transition(':enter', [ + style({ transform: 'translateX(-155px)' }), + animate('2s 0s ease', style({ transform: '' })), + ]), + ])], changeDetection: ChangeDetectionStrategy.OnPush, }) export class MempoolBlocksComponent implements OnInit, OnDestroy { @@ -32,12 +39,14 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy { isLoadingWebsocketSubscription: Subscription; blockSubscription: Subscription; networkSubscription: Subscription; + chainTipSubscription: Subscription; network = ''; now = new Date().getTime(); timeOffset = 0; showMiningInfo = false; timeLtrSubscription: Subscription; timeLtr: boolean; + animateEntry: boolean = false; blockWidth = 125; blockPadding = 30; @@ -53,6 +62,7 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy { resetTransitionTimeout: number; + chainTip: number = -1; blockIndex = 1; constructor( @@ -69,6 +79,8 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy { } ngOnInit() { + this.chainTip = this.stateService.latestBlockHeight; + if (['', 'testnet', 'signet'].includes(this.stateService.network)) { this.enabledMiningInfoIfNeeded(this.location.path()); this.location.onUrlChange((url) => this.enabledMiningInfoIfNeeded(url)); @@ -116,9 +128,7 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy { mempoolBlocks.forEach((block, i) => { block.index = this.blockIndex + i; block.height = lastBlock.height + i + 1; - if (this.stateService.network === '') { - block.blink = specialBlocks[block.height] ? true : false; - } + block.blink = specialBlocks[block.height]?.networks.includes(this.stateService.network || 'mainnet') ? true : false; }); const stringifiedBlocks = JSON.stringify(mempoolBlocks); @@ -155,11 +165,24 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy { this.blockSubscription = this.stateService.blocks$ .subscribe(([block]) => { - if (block?.extras?.matchRate >= 66 && !this.tabHidden) { + if (this.chainTip === -1) { + this.animateEntry = block.height === this.stateService.latestBlockHeight; + } else { + this.animateEntry = block.height > this.chainTip; + } + + this.chainTip = this.stateService.latestBlockHeight; + if ((block?.extras?.similarity == null || block?.extras?.similarity > 0.5) && !this.tabHidden) { this.blockIndex++; } }); + this.chainTipSubscription = this.stateService.chainTip$.subscribe((height) => { + if (this.chainTip === -1) { + this.chainTip = height; + } + }); + this.networkSubscription = this.stateService.networkChanged$ .subscribe((network) => this.network = network); @@ -195,11 +218,12 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy { this.blockSubscription.unsubscribe(); this.networkSubscription.unsubscribe(); this.timeLtrSubscription.unsubscribe(); + this.chainTipSubscription.unsubscribe(); clearTimeout(this.resetTransitionTimeout); } trackByFn(index: number, block: MempoolBlock) { - return block.index; + return (block.isStack) ? 'stack' : block.index; } reduceMempoolBlocksToFitScreen(blocks: MempoolBlock[]): MempoolBlock[] { @@ -216,6 +240,9 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy { lastBlock.medianFee = this.median(lastBlock.feeRange); lastBlock.totalFees += block.totalFees; } + if (blocks.length) { + blocks[blocks.length - 1].isStack = blocks[blocks.length - 1].blockVSize > this.stateService.blockVSize; + } return blocks; } @@ -334,4 +361,4 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy { } return emptyBlocks; } -} +} \ No newline at end of file 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 0f2103024..ea3a52e8e 100644 --- a/frontend/src/app/components/pool-ranking/pool-ranking.component.ts +++ b/frontend/src/app/components/pool-ranking/pool-ranking.component.ts @@ -162,10 +162,10 @@ export class PoolRankingComponent implements OnInit { if (this.miningWindowPreference === '24h') { return `${pool.name} (${pool.share}%)
` + pool.lastEstimatedHashrate.toString() + ' PH/s' + - `
` + $localize`${i} blocks`; + `
` + $localize`${ i }:INTERPOLATION: blocks`; } else { return `${pool.name} (${pool.share}%)
` + - $localize`${i} blocks`; + $localize`${ i }:INTERPOLATION: blocks`; } } }, @@ -195,13 +195,15 @@ export class PoolRankingComponent implements OnInit { }, borderColor: '#000', formatter: () => { + const percentage = totalShareOther.toFixed(2) + '%'; + const i = totalBlockOther.toString(); if (this.miningWindowPreference === '24h') { - return `${'Other'} (${totalShareOther.toFixed(2)}%)
` + + return `` + $localize`Other (${percentage})` + `
` + totalEstimatedHashrateOther.toString() + ' PH/s' + - `
` + totalBlockOther.toString() + ` blocks`; + `
` + $localize`${ i }:INTERPOLATION: blocks`; } else { - return `${'Other'} (${totalShareOther.toFixed(2)}%)
` + - totalBlockOther.toString() + ` blocks`; + return `` + $localize`Other (${percentage})` + `
` + + $localize`${ i }:INTERPOLATION: blocks`; } } }, diff --git a/frontend/src/app/components/pool/pool-preview.component.ts b/frontend/src/app/components/pool/pool-preview.component.ts index 277bacb33..0431686d6 100644 --- a/frontend/src/app/components/pool/pool-preview.component.ts +++ b/frontend/src/app/components/pool/pool-preview.component.ts @@ -86,11 +86,6 @@ export class PoolPreviewComponent implements OnInit { regexes += regex + '", "'; } poolStats.pool.regexes = regexes.slice(0, -3); - poolStats.pool.addresses = poolStats.pool.addresses; - - if (poolStats.reportedHashrate) { - poolStats.luck = poolStats.estimatedHashrate / poolStats.reportedHashrate * 100; - } this.openGraphService.waitOver('pool-stats-' + this.slug); diff --git a/frontend/src/app/components/pool/pool.component.html b/frontend/src/app/components/pool/pool.component.html index 0ae32ccb8..57d7ac51c 100644 --- a/frontend/src/app/components/pool/pool.component.html +++ b/frontend/src/app/components/pool/pool.component.html @@ -38,12 +38,12 @@
@@ -88,22 +88,25 @@ - @@ -111,49 +114,46 @@ - - - - - - + - + @@ -234,10 +234,24 @@ {{ block.extras.coinbaseRaw | hex2ascii }} + - -
HeightAdjustedDifficultyChangeHeightAdjustedDifficultyChange
{{ diffChange.height - }} + + {{ diffChange.height }} + {{ diffChange.difficultyShorten }}
Addresses - + {{ poolStats.pool.addresses[0] }}
@@ -67,13 +67,13 @@ [attr.aria-expanded]="!gfg" aria-controls="collapseExample"> Show all ({{ poolStats.pool.addresses.length }}) - - {{ poolStats.pool.addresses[0] | shortenString: 40 }} + + {{ poolStats.pool.addresses[0] | shortenString: 30 }}
- {{ - address | shortenString: 40 }}
+ address | shortenString: 30 }}
Hashrate (24h) - - - + + + - - - - - + + +
EstimatedReportedLuckRewardHashrate (24h)Avg Health
{{ poolStats.estimatedHashrate | amountShortener : 1 : 'H/s' }}{{ poolStats.reportedHashrate | amountShortener : 1 : 'H/s' }}{{ formatNumber(poolStats.luck, this.locale, '1.2-2') }}%{{ poolStats.estimatedHashrate | amountShortener : 1 : 'H/s' }}{{ poolStats.avgBlockHealth }}% + + Unknown + +
- Hashrate (24h) - - - + + + - - - - - + + +
EstimatedReportedLuckRewardHashrate (24h)Avg Health
{{ poolStats.estimatedHashrate | amountShortener : 1 : 'H/s' }}{{ poolStats.reportedHashrate | amountShortener : 1 : 'H/s' }}{{ formatNumber(poolStats.luck, this.locale, '1.2-2') }}%{{ poolStats.estimatedHashrate | amountShortener : 1 : 'H/s' }}{{ poolStats.avgBlockHealth }}% + + Unknown + +
~~
Mined blocks - - - + + + - - -
24h1wAllBlocks 24h1wAll
{{ formatNumber(poolStats.blockCount['24h'], this.locale, '1.0-0') }} ({{ formatNumber(100 * + {{ formatNumber(poolStats.blockCount['24h'], this.locale, '1.0-0') }} ({{ formatNumber(100 * poolStats.blockShare['24h'], this.locale, '1.0-0') }}%){{ formatNumber(poolStats.blockCount['1w'], this.locale, '1.0-0') }} ({{ formatNumber(100 * + {{ formatNumber(poolStats.blockCount['1w'], this.locale, '1.0-0') }} ({{ formatNumber(100 * poolStats.blockShare['1w'], this.locale, '1.0-0') }}%){{ formatNumber(poolStats.blockCount['all'], this.locale, '1.0-0') }} ({{ formatNumber(100 * + {{ formatNumber(poolStats.blockCount['all'], this.locale, '1.0-0') }} ({{ formatNumber(100 * poolStats.blockShare['all'], this.locale, '1.0-0') }}%)
@@ -162,21 +162,20 @@
- Mined blocks - - - + + + - - -
24h1wAllBlocks 24h1wAll
{{ formatNumber(poolStats.blockCount['24h'], this.locale, '1.0-0') }} ({{ formatNumber(100 * + {{ formatNumber(poolStats.blockCount['24h'], this.locale, '1.0-0') }} ({{ formatNumber(100 * poolStats.blockShare['24h'], this.locale, '1.0-0') }}%){{ formatNumber(poolStats.blockCount['1w'], this.locale, '1.0-0') }} ({{ formatNumber(100 * + {{ formatNumber(poolStats.blockCount['1w'], this.locale, '1.0-0') }} ({{ formatNumber(100 * poolStats.blockShare['1w'], this.locale, '1.0-0') }}%){{ formatNumber(poolStats.blockCount['all'], this.locale, '1.0-0') }} ({{ formatNumber(100 * + {{ formatNumber(poolStats.blockCount['all'], this.locale, '1.0-0') }} ({{ formatNumber(100 * poolStats.blockShare['all'], this.locale, '1.0-0') }}%)
@@ -213,8 +212,9 @@
Timestamp Mined Coinbase tagHealth RewardFeesFees TXs Size + {{ block.extras.matchRate }}% + + Unknown + + + @@ -364,24 +378,23 @@
Hashrate (24h) - - - + + + - - - @@ -391,23 +404,22 @@
EstimatedReportedLuckRewardHashrate (24h)Avg Health
+
+
+
- Hashrate (24h) - - - + + + - - - @@ -417,24 +429,23 @@ -
EstimatedReportedLuckRewardHashrate (24h)Avg Health
+
+
+
Mined blocks - - - + + + - - - @@ -444,23 +455,22 @@
24h1wAllBlocks 24h1wAll
+
+
+
- Mined blocks - - - + + + - - - diff --git a/frontend/src/app/components/pool/pool.component.scss b/frontend/src/app/components/pool/pool.component.scss index 9103f38f5..21468773f 100644 --- a/frontend/src/app/components/pool/pool.component.scss +++ b/frontend/src/app/components/pool/pool.component.scss @@ -68,6 +68,11 @@ div.scrollable { vertical-align: top; padding-top: 25px; } +.addresses-data { + vertical-align: top; + font-family: monospace; + font-size: 14px; +} .data { text-align: right; @@ -100,7 +105,7 @@ div.scrollable { @media (max-width: 875px) { padding-left: 50px; } - @media (max-width: 650px) { + @media (max-width: 685px) { display: none; } } @@ -118,7 +123,7 @@ div.scrollable { padding-right: 10px; } @media (max-width: 875px) { - padding-right: 50px; + padding-right: 20px; } @media (max-width: 567px) { padding-right: 10px; @@ -186,10 +191,6 @@ div.scrollable { .block-count-title { color: #4a68b9; font-size: 14px; - text-align: left; - @media (max-width: 767.98px) { - text-align: center; - } } .table-data tr { diff --git a/frontend/src/app/components/pool/pool.component.ts b/frontend/src/app/components/pool/pool.component.ts index 56b8bd392..85fd028ef 100644 --- a/frontend/src/app/components/pool/pool.component.ts +++ b/frontend/src/app/components/pool/pool.component.ts @@ -1,7 +1,7 @@ import { ChangeDetectionStrategy, Component, Inject, Input, LOCALE_ID, OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { EChartsOption, graphic } from 'echarts'; -import { BehaviorSubject, Observable, timer } from 'rxjs'; +import { BehaviorSubject, Observable } from 'rxjs'; import { distinctUntilChanged, map, share, switchMap, tap } from 'rxjs/operators'; import { BlockExtended, PoolStat } from '../../interfaces/node-api.interface'; import { ApiService } from '../../services/api.service'; @@ -35,6 +35,8 @@ export class PoolComponent implements OnInit { blocks: BlockExtended[] = []; slug: string = undefined; + auditAvailable = false; + loadMoreSubject: BehaviorSubject = new BehaviorSubject(this.blocks[this.blocks.length - 1]?.height); constructor( @@ -44,6 +46,7 @@ export class PoolComponent implements OnInit { public stateService: StateService, private seoService: SeoService, ) { + this.auditAvailable = this.stateService.env.AUDIT; } ngOnInit(): void { @@ -74,11 +77,6 @@ export class PoolComponent implements OnInit { regexes += regex + '", "'; } poolStats.pool.regexes = regexes.slice(0, -3); - poolStats.pool.addresses = poolStats.pool.addresses; - - if (poolStats.reportedHashrate) { - poolStats.luck = poolStats.estimatedHashrate / poolStats.reportedHashrate * 100; - } return Object.assign({ logo: `/resources/mining-pools/` + poolStats.pool.name.toLowerCase().replace(' ', '').replace('.', '') + '.svg' diff --git a/frontend/src/app/components/reward-stats/reward-stats.component.html b/frontend/src/app/components/reward-stats/reward-stats.component.html index d59280fd1..5c1a8d7cd 100644 --- a/frontend/src/app/components/reward-stats/reward-stats.component.html +++ b/frontend/src/app/components/reward-stats/reward-stats.component.html @@ -50,14 +50,14 @@
-
Reward Per Tx
+
Avg Block Fees
-
Reward Per Tx
+
Avg Tx Fee
diff --git a/frontend/src/app/components/start/start.component.ts b/frontend/src/app/components/start/start.component.ts index 77c8fd7f2..dde7bc234 100644 --- a/frontend/src/app/components/start/start.component.ts +++ b/frontend/src/app/components/start/start.component.ts @@ -85,21 +85,20 @@ export class StartComponent implements OnInit, OnDestroy { }); this.stateService.blocks$ .subscribe((blocks: any) => { - if (this.stateService.network !== '') { - return; - } this.countdown = 0; const block = blocks[0]; for (const sb in specialBlocks) { - const height = parseInt(sb, 10); - const diff = height - block.height; - if (diff > 0 && diff <= 1008) { - this.countdown = diff; - this.eventName = specialBlocks[sb].labelEvent; + if (specialBlocks[sb].networks.includes(this.stateService.network || 'mainnet')) { + const height = parseInt(sb, 10); + const diff = height - block.height; + if (diff > 0 && diff <= 1008) { + this.countdown = diff; + this.eventName = specialBlocks[sb].labelEvent; + } } } - if (specialBlocks[block.height]) { + if (specialBlocks[block.height] && specialBlocks[block.height].networks.includes(this.stateService.network || 'mainnet')) { this.specialEvent = true; this.eventName = specialBlocks[block.height].labelEventCompleted; setTimeout(() => { diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index ec08c9303..04d13b07a 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -67,7 +67,7 @@
- +
24h1wAllBlocks 24h1wAll
+
+
+
Features @@ -468,6 +468,7 @@ + diff --git a/frontend/src/app/components/transaction/transaction.component.ts b/frontend/src/app/components/transaction/transaction.component.ts index 899f5ee6b..5f23633bf 100644 --- a/frontend/src/app/components/transaction/transaction.component.ts +++ b/frontend/src/app/components/transaction/transaction.component.ts @@ -23,6 +23,7 @@ import { BlockExtended, CpfpInfo } from '../../interfaces/node-api.interface'; import { LiquidUnblinding } from './liquid-ublinding'; import { RelativeUrlPipe } from '../../shared/pipes/relative-url/relative-url.pipe'; import { Price, PriceService } from '../../services/price.service'; +import { isFeatureActive } from '../../bitcoin.utils'; @Component({ selector: 'app-transaction', @@ -74,6 +75,12 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { flowEnabled: boolean; blockConversion: Price; tooltipPosition: { x: number, y: number }; + isMobile: boolean; + + featuresEnabled: boolean; + segwitEnabled: boolean; + rbfEnabled: boolean; + taprootEnabled: boolean; @ViewChild('graphContainer') graphContainer: ElementRef; @@ -197,6 +204,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { } this.tx = tx; + this.setFeatures(); this.isCached = true; if (tx.fee === undefined) { this.tx.fee = 0; @@ -291,6 +299,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { } this.tx = tx; + this.setFeatures(); this.isCached = false; if (tx.fee === undefined) { this.tx.fee = 0; @@ -428,9 +437,23 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { }); } + setFeatures(): void { + if (this.tx) { + this.segwitEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'segwit'); + this.taprootEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'taproot'); + this.rbfEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'rbf'); + } else { + this.segwitEnabled = false; + this.taprootEnabled = false; + this.rbfEnabled = false; + } + this.featuresEnabled = this.segwitEnabled || this.taprootEnabled || this.rbfEnabled; + } + resetTransaction() { this.error = undefined; this.tx = null; + this.setFeatures(); this.waitingForTransaction = false; this.isLoadingTx = true; this.rbfTransaction = undefined; @@ -495,6 +518,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy { @HostListener('window:resize', ['$event']) setGraphSize(): void { + this.isMobile = window.innerWidth < 850; if (this.graphContainer) { setTimeout(() => { this.graphWidth = this.graphContainer.nativeElement.clientWidth; diff --git a/frontend/src/app/components/tx-features/tx-features.component.html b/frontend/src/app/components/tx-features/tx-features.component.html index 54df244b2..e9e7a3b53 100644 --- a/frontend/src/app/components/tx-features/tx-features.component.html +++ b/frontend/src/app/components/tx-features/tx-features.component.html @@ -1,4 +1,4 @@ - + SegWit SegWit @@ -8,7 +8,7 @@ - + Taproot Taproot @@ -24,7 +24,7 @@ - + RBF RBF diff --git a/frontend/src/app/components/tx-features/tx-features.component.ts b/frontend/src/app/components/tx-features/tx-features.component.ts index 8f7d30b12..ffc2f291d 100644 --- a/frontend/src/app/components/tx-features/tx-features.component.ts +++ b/frontend/src/app/components/tx-features/tx-features.component.ts @@ -1,6 +1,7 @@ import { Component, ChangeDetectionStrategy, OnChanges, Input } from '@angular/core'; -import { calcSegwitFeeGains } from '../../bitcoin.utils'; +import { calcSegwitFeeGains, isFeatureActive } from '../../bitcoin.utils'; import { Transaction } from '../../interfaces/electrs.interface'; +import { StateService } from '../../services/state.service'; @Component({ selector: 'app-tx-features', @@ -21,12 +22,21 @@ export class TxFeaturesComponent implements OnChanges { isRbfTransaction: boolean; isTaproot: boolean; - constructor() { } + segwitEnabled: boolean; + rbfEnabled: boolean; + taprootEnabled: boolean; + + constructor( + private stateService: StateService, + ) { } ngOnChanges() { if (!this.tx) { return; } + this.segwitEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'segwit'); + this.taprootEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'taproot'); + this.rbfEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'rbf'); this.segwitGains = calcSegwitFeeGains(this.tx); this.isRbfTransaction = this.tx.vin.some((v) => v.sequence < 0xfffffffe); this.isTaproot = this.tx.vin.some((v) => v.prevout && v.prevout.scriptpubkey_type === 'v1_p2tr'); 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 62d031613..e6ed38a77 100644 --- a/frontend/src/app/docs/api-docs/api-docs-data.ts +++ b/frontend/src/app/docs/api-docs/api-docs-data.ts @@ -8859,6 +8859,21 @@ export const faqData = [ fragment: "what-is-full-mempool", title: "What does it mean for the mempool to be \"full\"?", }, + { + type: "endpoint", + category: "advanced", + showConditions: bitcoinNetworks, + fragment: "how-big-is-mempool-used-by-mempool.space", + title: "How big is the mempool used by mempool.space?", + options: { officialOnly: true }, + }, + { + type: "endpoint", + category: "advanced", + showConditions: bitcoinNetworks, + fragment: "what-is-memory-usage", + title: "What is memory usage?", + }, { type: "endpoint", category: "advanced", diff --git a/frontend/src/app/docs/api-docs/api-docs-nav.component.html b/frontend/src/app/docs/api-docs/api-docs-nav.component.html index 0353d5fb0..ec1cde38f 100644 --- a/frontend/src/app/docs/api-docs/api-docs-nav.component.html +++ b/frontend/src/app/docs/api-docs/api-docs-nav.component.html @@ -1,4 +1,4 @@

{{ item.title }}

- {{ item.title }} + {{ item.title }}
diff --git a/frontend/src/app/docs/api-docs/api-docs-nav.component.ts b/frontend/src/app/docs/api-docs/api-docs-nav.component.ts index 439f20339..6e804de46 100644 --- a/frontend/src/app/docs/api-docs/api-docs-nav.component.ts +++ b/frontend/src/app/docs/api-docs/api-docs-nav.component.ts @@ -16,6 +16,7 @@ export class ApiDocsNavComponent implements OnInit { env: Env; tabData: any[]; auditEnabled: boolean; + officialMempoolInstance: boolean; constructor( private stateService: StateService @@ -23,6 +24,7 @@ export class ApiDocsNavComponent implements OnInit { ngOnInit(): void { this.env = this.stateService.env; + this.officialMempoolInstance = this.env.OFFICIAL_MEMPOOL_SPACE; this.auditEnabled = this.env.AUDIT; if (this.whichTab === 'rest') { this.tabData = restApiDocsData; 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 f5bf519bf..8d274625a 100644 --- a/frontend/src/app/docs/api-docs/api-docs.component.html +++ b/frontend/src/app/docs/api-docs/api-docs.component.html @@ -16,7 +16,7 @@
-
+

{{ item.title }}

Fee {{ tx.fee | number }} sat
{{ item.title }}{{ item.category }}
@@ -207,6 +207,18 @@

When a Bitcoin transaction is made, it is stored in a Bitcoin node's mempool before it is confirmed into a block. When the rate of incoming transactions exceeds the rate transactions are confirmed, the mempool grows in size.

By default, Bitcoin Core allocates 300MB of memory for its mempool, so when a node's mempool grows big enough to use all 300MB of allocated memory, we say it's "full".

Once a node's mempool is using all of its allocated memory, it will start rejecting new transactions below a certain feerate threshold—so when this is the case, be extra sure to set a feerate that (at a minimum) exceeds that threshold. The current threshold feerate (and memory usage) are displayed right on Mempool's front page.

+ +

mempool.space uses multiple Bitcoin nodes to obtain data: some with the default 300MB mempool memory limit (call these Small Nodes) and others with a much larger mempool memory limit (call these Big Nodes).

+

Many nodes on the Bitcoin network are configured to run with the default 300MB mempool memory setting. When all 300MB of memory are used up, such nodes will reject transactions below a certain threshold feerate. Running Small Nodes allows mempool.space to tell you what this threshold feerate is—this is the "Purging" feerate that shows on the front page when mempools are full, which you can use to be reasonably sure that your transaction will be widely propagated.

+

Big Node mempools are so big that they don't need to reject (or purge) transactions. Such nodes allow for mempool.space to provide you with information on any pending transaction it has received—no matter how congested the mempool is, and no matter how low-feerate or low-priority the transaction is.

+
+ + +

Memory usage on the front page refers to the real-time amount of system memory used by a Bitcoin node's mempool. This memory usage number is always higher than the total size of all pending transactions in the mempool due to indexes, pointers, and other overhead used by Bitcoin Core for storage and processing.

+

mempool.space shows the memory usage of a Bitcoin node that has a very high mempool memory limit. As a result, when mempools fill up, you may notice memory usage on mempool.space go beyond 300MB. This is not a mistake—this memory usage figure is high because it's for a Bitcoin node that isn't rejecting (or evicting) transactions. Consider it to be another data point to give you an idea of how congested the mempool is relative to the default memory limit of 300MB.

+

A Bitcoin node running the default 300MB mempool memory limit, like most Raspberry Pi nodes, will never go past 300MB of memory usage.

+
+

When a new block is found, mining pools send miners a block template with no transactions so they can start searching for the next block as soon as possible. They send a block template full of transactions right afterward, but a full block template is a bigger data transfer and takes slightly longer to reach miners.

In this intervening time, which is usually no more than 1-2 seconds, miners sometimes get lucky and find a new block using the empty block template.

diff --git a/frontend/src/app/interfaces/node-api.interface.ts b/frontend/src/app/interfaces/node-api.interface.ts index cad623f9f..46654a3b7 100644 --- a/frontend/src/app/interfaces/node-api.interface.ts +++ b/frontend/src/app/interfaces/node-api.interface.ts @@ -107,8 +107,8 @@ export interface PoolStat { '1w': number, }; estimatedHashrate: number; - reportedHashrate: number; - luck?: number; + avgBlockHealth: number; + totalReward: number; } export interface BlockExtension { @@ -118,6 +118,7 @@ export interface BlockExtension { reward?: number; coinbaseRaw?: string; matchRate?: number; + similarity?: number; pool?: { id: number; name: string; diff --git a/frontend/src/app/interfaces/websocket.interface.ts b/frontend/src/app/interfaces/websocket.interface.ts index 96f7530c9..46416857e 100644 --- a/frontend/src/app/interfaces/websocket.interface.ts +++ b/frontend/src/app/interfaces/websocket.interface.ts @@ -43,6 +43,7 @@ export interface MempoolBlock { totalFees: number; feeRange: number[]; index: number; + isStack?: boolean; } export interface MempoolBlockWithTransactions extends MempoolBlock { diff --git a/frontend/src/app/lightning/nodes-map/nodes-map.component.ts b/frontend/src/app/lightning/nodes-map/nodes-map.component.ts index db13ca6fe..e0fd80a53 100644 --- a/frontend/src/app/lightning/nodes-map/nodes-map.component.ts +++ b/frontend/src/app/lightning/nodes-map/nodes-map.component.ts @@ -207,8 +207,8 @@ export class NodesMap implements OnInit, OnChanges { return ` ${alias}
- ${liquidity}
- ${data[5]} channels
+ ${liquidity}
` + + $localize`:@@205c1b86ac1cc419c4d0cca51fdde418c4ffdc20:${data[5]}:INTERPOLATION: channels` + `
${getFlagEmoji(data[7])} ${data[6]} `; } diff --git a/frontend/src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts b/frontend/src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts index 681688842..b4621d7bf 100644 --- a/frontend/src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts +++ b/frontend/src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts @@ -99,8 +99,9 @@ export class NodesPerCountryChartComponent implements OnInit { }, borderColor: '#000', formatter: () => { + const nodeCount = country.count.toString(); return `${country.name.en} (${country.share}%)
` + - $localize`${country.count.toString()} nodes` + `
` + + $localize`${nodeCount} nodes` + `
` + $localize`${this.amountShortenerPipe.transform(country.capacity / 100000000, 2)} BTC capacity` ; } @@ -115,7 +116,7 @@ export class NodesPerCountryChartComponent implements OnInit { color: 'grey', }, value: totalShareOther, - name: 'Other' + (this.isMobile() ? `` : ` (${totalShareOther.toFixed(2)}%)`), + name: $localize`Other (${totalShareOther.toFixed(2) + '%'})`, label: { overflow: 'truncate', color: '#b1b1b1', @@ -131,8 +132,9 @@ export class NodesPerCountryChartComponent implements OnInit { }, borderColor: '#000', formatter: () => { - return `${'Other'} (${totalShareOther.toFixed(2)}%)
` + - totalNodeOther.toString() + ` nodes`; + const nodeCount = totalNodeOther.toString(); + return `` + $localize`Other (${totalShareOther.toFixed(2) + '%'})` + `
` + + $localize`${nodeCount} nodes`; }, }, data: 9999 as any diff --git a/frontend/src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts b/frontend/src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts index caaa350d6..614704ed6 100644 --- a/frontend/src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts +++ b/frontend/src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -153,8 +153,9 @@ export class NodesPerISPChartComponent implements OnInit { }, borderColor: '#000', formatter: () => { + const nodeCount = isp[4].toString(); return `${isp[1]} (${this.sortBy === 'capacity' ? isp[7] : isp[6]}%)
` + - $localize`${isp[4].toString()} nodes` + `
` + + $localize`${nodeCount} nodes` + `
` + $localize`${this.amountShortenerPipe.transform(isp[2] / 100000000, 2)} BTC` ; } @@ -169,7 +170,7 @@ export class NodesPerISPChartComponent implements OnInit { color: 'grey', }, value: totalShareOther, - name: 'Other' + (isMobile() || this.widget ? `` : ` (${totalShareOther.toFixed(2)}%)`), + name: $localize`Other (${totalShareOther.toFixed(2) + '%'})`, label: { overflow: 'truncate', color: '#b1b1b1', @@ -185,8 +186,9 @@ export class NodesPerISPChartComponent implements OnInit { }, borderColor: '#000', formatter: () => { - return `Other (${totalShareOther.toFixed(2)}%)
` + - $localize`${nodeCountOther.toString()} nodes` + `
` + + const nodeCount = nodeCountOther.toString(); + return `` + $localize`Other (${totalShareOther.toFixed(2) + '%'})` + `
` + + $localize`${nodeCount} nodes` + `
` + $localize`${this.amountShortenerPipe.transform(capacityOther / 100000000, 2)} BTC`; } }, diff --git a/frontend/src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts b/frontend/src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts index b93ee1f3d..dd034eabd 100644 --- a/frontend/src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts +++ b/frontend/src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts @@ -256,7 +256,7 @@ export class LightningStatisticsChartComponent implements OnInit { series: data.channel_count.length === 0 ? [] : [ { zlevel: 1, - name: 'Channels', + name: $localize`:@@807cf11e6ac1cde912496f764c176bdfdd6b7e19:Channels`, showSymbol: false, symbol: 'none', data: data.channel_count, diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index 98e8c44c6..6c00d6e07 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ التحالفات المجتمعية src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ مترجمو المشروع src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ المساهمون في المشروع src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ أعضاء المشروع src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ فريق صيانة المشروع src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment تعديل الصعوبة + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining متبقي - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks كتل - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block كتله - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate متوقعة - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous السابق - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period الفترة الحالية - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving الانقسام التالي - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) إما ضعف الحد الأدنى أو معدل الأولوية المنخفضة (أيهما أقل) @@ -3346,7 +3446,7 @@ التعدين src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3455,7 @@ ترتيب التجمعات src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3468,7 @@ هيمنة التجمعات src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3481,7 @@ معدل التجزئة & معدل الصعوبة src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3490,7 @@ البرق src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3499,7 @@ أنواد برق لكل شبكة src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3520,7 @@ سعة شبكة البرق src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3541,7 @@ شبكات البرق حسب مزود خدمة انترنت src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3554,7 @@ شبكات البرق حسب الدولة src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3571,7 @@ أنواد البرق على خريطة العالم src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3588,7 @@ قنوات البرق على خريطة العالم src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3643,11 @@ (متوسط) معدل التجزئة src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3767,7 @@ إحصائيات المكافأة src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (١٤٤ كتله) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ احدث الكتل src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ التعديلات src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ بث معاملة src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - كتل + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4473,7 @@ تصفية src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4482,7 @@ عكس src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4491,7 @@ حجم التحويلات في الثانية (بايت افتراضي/ثانية) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4499,187 @@ Just now الآن - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago منذ - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After بعد - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - خلال ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4813,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4832,7 @@ اعرض المزيد src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4849,7 @@ قلل العرض src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4862,7 @@ اعرض الرسم االبياني src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4871,7 @@ وقت القفل src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4880,7 @@ الحوالة غير موجودة. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4889,7 @@ في انتظار ظهورها على mempool src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4898,7 @@ معدل الرسوم الفعلي src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5227,6 +5352,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5234,7 +5363,7 @@ اعادة تشغيل خادم API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5243,11 +5372,11 @@ نقطة النهاية src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5256,11 +5385,11 @@ وصف src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5268,7 +5397,7 @@ الدفع الإعتيادي:إجراء:أريد, بيانات:[’الكتل’،...]لتحدديد ما تريد دفعه.متوفر:كتل،;كتل عقود للعمليات غير المعلنة،جدول-2h-مباشر،وإحصاءات .دفع المعاملات المرتبطة بالعنوان:’إتبع-عنوان’: ’3PbJ...bF98’للحصول على معاملة جديدة تحتوي ذلك العنوان كإدخال و إخراج. إرجاع مصفوف المعاملات.عنوان المعاملاتلكتل العقود غير المعلنة الجديدة، و معاملات الكتللالمعاملات المؤكدة في الكتل الجديدة. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5443,6 +5572,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5557,6 +5690,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5675,7 +5816,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5815,7 +5956,7 @@ ساتوشي src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6075,6 +6216,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6123,6 +6272,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6598,19 +6751,22 @@ lightning.share - nodes - أنواد + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6618,7 +6774,7 @@ سعة BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6736,11 +6892,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.ca.xlf b/frontend/src/locale/messages.ca.xlf index 50d44b541..48d9623ac 100644 --- a/frontend/src/locale/messages.ca.xlf +++ b/frontend/src/locale/messages.ca.xlf @@ -354,11 +354,11 @@ src/app/components/block/block.component.html - 290,291 + 310,311 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 26,27 + 46,47 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -378,11 +378,11 @@ src/app/components/block/block.component.html - 291,292 + 311,312 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 27,28 + 47,48 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -418,7 +418,7 @@ src/app/components/block/block.component.html - 40,41 + 38,39 block.hash @@ -443,7 +443,7 @@ src/app/components/block/block.component.html - 44,46 + 42,44 src/app/components/blocks-list/blocks-list.component.html @@ -585,11 +585,11 @@ src/app/components/master-page/master-page.component.html - 49,51 + 48,50 src/app/components/pool-ranking/pool-ranking.component.html - 94,96 + 94,95 @@ -740,11 +740,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -765,16 +765,24 @@ src/app/components/about/about.component.html - 385,389 + 391,394 + + + src/app/components/mining-dashboard/mining-dashboard.component.html + 87 src/app/dashboard/dashboard.component.html - 150,152 + 157,159 src/app/docs/docs/docs.component.html 51 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 97 + Terms of Service shared.terms-of-service @@ -784,14 +792,22 @@ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 113,120 + + src/app/components/mining-dashboard/mining-dashboard.component.html + 89 + src/app/dashboard/dashboard.component.html - 152,154 + 159,161 src/app/docs/docs/docs.component.html 53 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 99 + Privacy Policy shared.privacy-policy @@ -978,7 +994,7 @@ src/app/dashboard/dashboard.component.html - 124,125 + 124,126 @@ -1026,7 +1042,7 @@ src/app/components/transaction/transaction.component.html - 158,160 + 152,154 src/app/components/transactions-list/transactions-list.component.html @@ -1042,11 +1058,11 @@ src/app/components/block/block.component.html - 246,247 + 252,253 src/app/components/transaction/transaction.component.html - 288,290 + 283,285 transaction.version @@ -1095,7 +1111,7 @@ src/app/components/transactions-list/transactions-list.component.html - 294,295 + 296,297 Transaction singular confirmation count shared.confirmation-count.singular @@ -1116,7 +1132,7 @@ src/app/components/transactions-list/transactions-list.component.html - 295,296 + 297,298 Transaction plural confirmation count shared.confirmation-count.plural @@ -1128,10 +1144,6 @@ src/app/bisq/bisq-transaction/bisq-transaction.component.html 43,45 - - src/app/components/transaction/transaction.component.html - 65,67 - Transaction included in block transaction.included-in-block @@ -1144,11 +1156,11 @@ src/app/components/transaction/transaction.component.html - 77,80 + 71,74 src/app/components/transaction/transaction.component.html - 135,138 + 129,132 Transaction features transaction.features @@ -1176,11 +1188,11 @@ src/app/components/transaction/transaction.component.html - 262,267 + 257,262 src/app/components/transaction/transaction.component.html - 406,412 + 401,407 transaction.details @@ -1197,11 +1209,11 @@ src/app/components/transaction/transaction.component.html - 249,253 + 244,248 src/app/components/transaction/transaction.component.html - 377,383 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1218,7 +1230,7 @@ src/app/components/transaction/transaction.component.ts - 241,240 + 246,245 @@ -1238,7 +1250,7 @@ src/app/components/transaction/transaction.component.html - 159,160 + 153,154 src/app/dashboard/dashboard.component.html @@ -1254,7 +1266,7 @@ src/app/components/transaction/transaction.component.html - 72,73 + 66,67 Transaction Confirmed state transaction.confirmed @@ -1422,7 +1434,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. src/app/components/about/about.component.html - 13,17 + 13,16 @@ -1430,7 +1442,7 @@ Empreses patrocinadores 🚀 src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1439,7 +1451,7 @@ Patrocinadors de la comunitat ❤️ src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart @@ -1447,7 +1459,7 @@ Community Integrations src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1455,7 +1467,7 @@ Community Alliances src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1463,7 +1475,7 @@ Project Translators src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1472,7 +1484,7 @@ Col·laboradors del projecte src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1480,7 +1492,7 @@ Project Members src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1489,7 +1501,7 @@ Mantenidors del projecte src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1498,7 +1510,7 @@ Sobre src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -1510,7 +1522,7 @@ src/app/components/master-page/master-page.component.html - 58,61 + 57,60 @@ -1545,7 +1557,7 @@ src/app/components/amount/amount.component.html - 6,9 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -1561,7 +1573,7 @@ src/app/components/transactions-list/transactions-list.component.html - 302,304 + 304,306 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -1640,7 +1652,7 @@ src/app/components/assets/assets.component.html - 29,31 + 31,33 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -1847,7 +1859,7 @@ src/app/components/assets/assets.component.html - 30,31 + 32,33 Asset ticker header @@ -1860,7 +1872,7 @@ src/app/components/assets/assets.component.html - 31,34 + 33,36 Asset Issuer Domain header @@ -1873,7 +1885,7 @@ src/app/components/assets/assets.component.html - 32,36 + 34,38 Asset ID header @@ -1882,7 +1894,7 @@ Error al carregar les dades dels actius. src/app/components/assets/assets.component.html - 48,53 + 50,55 Asset data load error @@ -1987,7 +1999,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2003,7 +2015,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 161 + 165 @@ -2018,7 +2030,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 163 + 167 @@ -2029,11 +2041,11 @@ src/app/components/block-fees-graph/block-fees-graph.component.ts - 62 + 67 src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2041,19 +2053,19 @@ Indexing blocks src/app/components/block-fees-graph/block-fees-graph.component.ts - 110,105 + 116,111 src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 108,103 + 113,108 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 115,110 + 116,111 src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2093,7 +2105,7 @@ src/app/components/transaction/transaction.component.html - 476 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2119,11 +2131,11 @@ src/app/components/transaction/transaction.component.html - 476,477 + 473 src/app/components/transactions-list/transactions-list.component.html - 286,287 + 288 sat shared.sat @@ -2137,11 +2149,11 @@ src/app/components/transaction/transaction.component.html - 161,165 + 155,159 src/app/components/transaction/transaction.component.html - 479,481 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2153,7 +2165,7 @@ src/app/lightning/channels-list/channels-list.component.html - 38,39 + 41,43 Transaction fee rate transaction.fee-rate @@ -2171,19 +2183,19 @@ src/app/components/block/block.component.html - 125,128 + 124,127 src/app/components/block/block.component.html - 129 + 128,130 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 12,14 + 19,22 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 15,17 + 30,33 src/app/components/fees-box/fees-box.component.html @@ -2223,27 +2235,27 @@ src/app/components/transaction/transaction.component.html - 173,174 + 167,168 src/app/components/transaction/transaction.component.html - 184,185 + 178,179 src/app/components/transaction/transaction.component.html - 195,196 + 189,190 src/app/components/transaction/transaction.component.html - 481,484 + 478,481 src/app/components/transaction/transaction.component.html - 492,494 + 489,491 src/app/components/transactions-list/transactions-list.component.html - 286 + 286,287 src/app/dashboard/dashboard.component.html @@ -2251,7 +2263,7 @@ src/app/dashboard/dashboard.component.html - 204,208 + 213,217 sat/vB shared.sat-vbyte @@ -2265,11 +2277,11 @@ src/app/components/transaction/transaction.component.html - 160,162 + 154,156 src/app/components/transaction/transaction.component.html - 274,277 + 269,272 Transaction Virtual Size transaction.vsize @@ -2338,7 +2350,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2372,11 +2384,11 @@ src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 60 + 65 src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2392,7 +2404,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2401,15 +2413,15 @@ Mida src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 180,179 + 184,183 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 226,224 + 239,237 src/app/components/block/block.component.html - 50,52 + 48,50 src/app/components/blocks-list/blocks-list.component.html @@ -2433,7 +2445,7 @@ src/app/components/transaction/transaction.component.html - 270,272 + 265,267 src/app/dashboard/dashboard.component.html @@ -2445,11 +2457,11 @@ Pes src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 188,187 + 192,191 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 257,254 + 270,267 src/app/components/block/block-preview.component.html @@ -2457,11 +2469,22 @@ src/app/components/block/block.component.html - 54,56 + 52,54 src/app/components/transaction/transaction.component.html - 278,280 + 273,275 + + + + Size per weight + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 200,199 + + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 282,279 @@ -2476,14 +2499,6 @@ shared.block-title - - - - src/app/components/block/block-preview.component.html - 11,12 - - shared.block-title - Median fee Quota mediana @@ -2493,7 +2508,7 @@ src/app/components/block/block.component.html - 128,129 + 127,128 src/app/components/mempool-block/mempool-block.component.html @@ -2510,11 +2525,11 @@ src/app/components/block/block.component.html - 133,135 + 138,140 src/app/components/block/block.component.html - 159,162 + 164,167 src/app/components/mempool-block/mempool-block.component.html @@ -2532,7 +2547,7 @@ src/app/components/block/block.component.html - 168,170 + 173,175 block.miner @@ -2544,7 +2559,7 @@ src/app/components/block/block.component.ts - 227 + 242 @@ -2553,6 +2568,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2567,31 +2586,47 @@ Previous Block - - Block health + + Health src/app/components/block/block.component.html - 58,61 + 56 - block.health + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + latest-blocks.health Unknown src/app/components/block/block.component.html - 69,72 + 67,70 src/app/components/blocks-list/blocks-list.component.html 60,63 - src/app/lightning/node/node.component.html - 52,55 + src/app/components/pool-ranking/pool-ranking.component.html + 121,124 + + + src/app/lightning/channel/closing-type/closing-type.component.ts + 32 src/app/lightning/node/node.component.html - 96,100 + 55,58 + + + src/app/lightning/node/node.component.html + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2608,7 +2643,7 @@ Rang de quotes src/app/components/block/block.component.html - 124,125 + 123,124 src/app/components/mempool-block/mempool-block.component.html @@ -2620,7 +2655,7 @@ Based on average native segwit transaction of 140 vBytes src/app/components/block/block.component.html - 129,131 + 131,136 src/app/components/fees-box/fees-box.component.html @@ -2644,49 +2679,60 @@ Transaction fee tooltip - - Subsidy + fees: - Subvenció + Quota + + Subsidy + fees src/app/components/block/block.component.html - 148,151 + 153,156 src/app/components/block/block.component.html - 163,167 + 168,172 Total subsidy and fees in a block block.subsidy-and-fees - - Projected + + Expected src/app/components/block/block.component.html - 210,212 + 216 - block.projected + block.expected + + + beta + + src/app/components/block/block.component.html + 216,217 + + + src/app/components/block/block.component.html + 222,224 + + beta Actual src/app/components/block/block.component.html - 212,216 + 218,222 block.actual - - Projected Block + + Expected Block src/app/components/block/block.component.html - 216,218 + 222 - block.projected-block + block.expected-block Actual Block src/app/components/block/block.component.html - 225,227 + 231 block.actual-block @@ -2695,7 +2741,7 @@ Bits src/app/components/block/block.component.html - 250,252 + 256,258 block.bits @@ -2703,7 +2749,7 @@ Merkle root src/app/components/block/block.component.html - 254,256 + 260,262 block.merkle-root @@ -2712,7 +2758,7 @@ Dificultat src/app/components/block/block.component.html - 265,268 + 271,274 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -2728,11 +2774,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2740,7 +2786,7 @@ Nonce src/app/components/block/block.component.html - 269,271 + 275,277 block.nonce @@ -2748,32 +2794,41 @@ Block Header Hex src/app/components/block/block.component.html - 273,274 + 279,280 block.header + + Audit + + src/app/components/block/block.component.html + 297,301 + + Toggle Audit + block.toggle-audit + Details Detalls src/app/components/block/block.component.html - 284,288 + 304,308 src/app/components/transaction/transaction.component.html - 254,259 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2782,20 +2837,16 @@ Error loading data. src/app/components/block/block.component.html - 303,305 + 323,325 src/app/components/block/block.component.html - 339,343 + 362,366 src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -2810,7 +2861,7 @@ Why is this block empty? src/app/components/block/block.component.html - 361,367 + 384,390 block.empty-block-explanation @@ -2855,18 +2906,6 @@ latest-blocks.mined - - Health - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - latest-blocks.health - Reward @@ -2928,7 +2967,7 @@ src/app/dashboard/dashboard.component.html - 210,214 + 219,223 dashboard.txs @@ -2959,13 +2998,17 @@ Difficulty Adjustment Canvi de dificultat + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -2973,11 +3016,11 @@ Remaining Restant - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -2985,11 +3028,11 @@ blocks - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3009,11 +3052,11 @@ block - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3025,11 +3068,11 @@ Estimate - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3037,19 +3080,23 @@ Previous - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3057,11 +3104,99 @@ Next Halving - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) @@ -3151,7 +3286,7 @@ src/app/dashboard/dashboard.component.html - 237,238 + 246,247 dashboard.incoming-transactions @@ -3163,7 +3298,7 @@ src/app/dashboard/dashboard.component.html - 240,243 + 249,252 dashboard.backend-is-synchronizing @@ -3176,7 +3311,7 @@ src/app/dashboard/dashboard.component.html - 245,250 + 254,259 vB/s shared.vbytes-per-second @@ -3189,7 +3324,7 @@ src/app/dashboard/dashboard.component.html - 208,209 + 217,218 Unconfirmed count dashboard.unconfirmed @@ -3208,7 +3343,7 @@ Mining src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3216,7 +3351,7 @@ Pools Ranking src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3228,7 +3363,7 @@ Pools Dominance src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3240,7 +3375,7 @@ Hashrate & Difficulty src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3248,7 +3383,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3256,7 +3391,7 @@ Lightning Nodes Per Network src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3276,7 +3411,7 @@ Lightning Network Capacity src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3296,7 +3431,7 @@ Lightning Nodes Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3308,7 +3443,7 @@ Lightning Nodes Per Country src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3324,7 +3459,7 @@ Lightning Nodes World Map src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3340,7 +3475,7 @@ Lightning Nodes Channels World Map src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3360,11 +3495,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3392,11 +3527,11 @@ Hashrate (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3429,7 +3564,7 @@ src/app/components/master-page/master-page.component.html - 52,54 + 51,53 src/app/components/statistics/statistics.component.ts @@ -3453,7 +3588,7 @@ Lightning Explorer src/app/components/master-page/master-page.component.html - 44,45 + 44,47 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -3461,19 +3596,11 @@ master-page.lightning - - beta - - src/app/components/master-page/master-page.component.html - 45,48 - - beta - Documentation src/app/components/master-page/master-page.component.html - 55,57 + 54,56 src/app/docs/docs/docs.component.html @@ -3513,7 +3640,7 @@ Reward stats src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3521,7 +3648,7 @@ (144 blocks) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3530,7 +3657,7 @@ Últims blocs src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3542,10 +3669,35 @@ Adjustments src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments + + Broadcast Transaction + + src/app/components/mining-dashboard/mining-dashboard.component.html + 91 + + + src/app/components/push-transaction/push-transaction.component.html + 2 + + + src/app/components/push-transaction/push-transaction.component.html + 8 + + + src/app/dashboard/dashboard.component.html + 161,169 + + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 102 + + Broadcast Transaction + shared.broadcast-transaction + Pools luck (1 week) @@ -3606,7 +3758,7 @@ src/app/components/pool-ranking/pool-ranking.component.html - 136,138 + 152,154 master-page.blocks @@ -3634,11 +3786,23 @@ mining.rank + + Avg Health + + src/app/components/pool-ranking/pool-ranking.component.html + 96,97 + + + src/app/components/pool-ranking/pool-ranking.component.html + 96,98 + + latest-blocks.avg_health + Empty blocks src/app/components/pool-ranking/pool-ranking.component.html - 95,98 + 97,100 mining.empty-blocks @@ -3646,7 +3810,7 @@ All miners src/app/components/pool-ranking/pool-ranking.component.html - 113,114 + 129,130 mining.all-miners @@ -3654,7 +3818,7 @@ Pools Luck (1w) src/app/components/pool-ranking/pool-ranking.component.html - 130,132 + 146,148 mining.miners-luck @@ -3662,7 +3826,7 @@ Pools Count (1w) src/app/components/pool-ranking/pool-ranking.component.html - 142,144 + 158,160 mining.miners-count @@ -3670,11 +3834,11 @@ Mining Pools src/app/components/pool-ranking/pool-ranking.component.ts - 57 + 58 - - blocks + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3683,6 +3847,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -3884,23 +4083,6 @@ latest-blocks.coinbasetag - - Broadcast Transaction - - src/app/components/push-transaction/push-transaction.component.html - 2 - - - src/app/components/push-transaction/push-transaction.component.html - 8 - - - src/app/dashboard/dashboard.component.html - 154,161 - - Broadcast Transaction - shared.broadcast-transaction - Transaction hex @@ -3909,7 +4091,7 @@ src/app/components/transaction/transaction.component.html - 296,297 + 291,292 transaction.hex @@ -4024,6 +4206,70 @@ search-form.search-title + + Bitcoin Block Height + + src/app/components/search-form/search-results/search-results.component.html + 3 + + search.bitcoin-block-height + + + Bitcoin Transaction + + src/app/components/search-form/search-results/search-results.component.html + 9 + + search.bitcoin-transaction + + + Bitcoin Address + + src/app/components/search-form/search-results/search-results.component.html + 15 + + search.bitcoin-address + + + Bitcoin Block + + src/app/components/search-form/search-results/search-results.component.html + 21 + + search.bitcoin-block + + + Bitcoin Addresses + + src/app/components/search-form/search-results/search-results.component.html + 27 + + search.bitcoin-addresses + + + Lightning Nodes + + src/app/components/search-form/search-results/search-results.component.html + 35 + + search.lightning-nodes + + + Lightning Channels + + src/app/components/search-form/search-results/search-results.component.html + 43 + + search.lightning-channels + + + Go to "" + + src/app/components/search-form/search-results/search-results.component.html + 52 + + search.go-to + Mempool by vBytes (sat/vByte) @@ -4049,7 +4295,7 @@ Filter src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4058,7 +4304,7 @@ Invertir src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4066,7 +4312,7 @@ Transaction vBytes per second (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4074,193 +4320,185 @@ Just now Ara mateix - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4299,7 +4537,7 @@ src/app/components/transactions-list/transactions-list.component.html - 298,301 + 300,303 Transaction unconfirmed state transaction.unconfirmed @@ -4309,11 +4547,11 @@ Vist per primera vegada src/app/components/transaction/transaction.component.html - 108,109 + 102,103 src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4329,11 +4567,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4343,7 +4581,7 @@ ETA src/app/components/transaction/transaction.component.html - 115,116 + 109,110 Transaction ETA transaction.eta @@ -4353,7 +4591,7 @@ D'aquí unes hores (o més) src/app/components/transaction/transaction.component.html - 121,124 + 115,118 Transaction ETA in several hours or more transaction.eta.in-several-hours @@ -4362,11 +4600,11 @@ Descendant src/app/components/transaction/transaction.component.html - 168,170 + 162,164 src/app/components/transaction/transaction.component.html - 179,181 + 173,175 Descendant transaction.descendant @@ -4375,7 +4613,7 @@ Ancestor src/app/components/transaction/transaction.component.html - 190,192 + 184,186 Transaction Ancestor transaction.ancestor @@ -4384,11 +4622,11 @@ Flow src/app/components/transaction/transaction.component.html - 208,211 + 202,205 src/app/components/transaction/transaction.component.html - 346,350 + 341,345 Transaction flow transaction.flow @@ -4397,7 +4635,7 @@ Hide diagram src/app/components/transaction/transaction.component.html - 211,216 + 205,210 hide-diagram @@ -4405,7 +4643,7 @@ Show more src/app/components/transaction/transaction.component.html - 231,233 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4421,7 +4659,7 @@ Show less src/app/components/transaction/transaction.component.html - 233,239 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4433,7 +4671,7 @@ Show diagram src/app/components/transaction/transaction.component.html - 253,254 + 248,249 show-diagram @@ -4441,7 +4679,7 @@ Locktime src/app/components/transaction/transaction.component.html - 292,294 + 287,289 transaction.locktime @@ -4449,7 +4687,7 @@ Transaction not found. src/app/components/transaction/transaction.component.html - 455,456 + 450,451 transaction.error.transaction-not-found @@ -4458,7 +4696,7 @@ Esperant a que apareixi a la memòria... src/app/components/transaction/transaction.component.html - 456,461 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4467,7 +4705,7 @@ Quota efectiva d'intercanvi src/app/components/transaction/transaction.component.html - 489,492 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4607,7 +4845,7 @@ Show more inputs to reveal fee data src/app/components/transactions-list/transactions-list.component.html - 288,291 + 290,293 transactions-list.load-to-reveal-fee-info @@ -4615,7 +4853,7 @@ remaining src/app/components/transactions-list/transactions-list.component.html - 330,331 + 332,333 x-remaining @@ -4849,21 +5087,12 @@ dashboard.latest-transactions - - USD - USD - - src/app/dashboard/dashboard.component.html - 126,127 - - dashboard.latest-transactions.USD - Minimum fee Quota mínima src/app/dashboard/dashboard.component.html - 201,202 + 210,211 Minimum mempool fee dashboard.minimum-fee @@ -4872,7 +5101,7 @@ Purging src/app/dashboard/dashboard.component.html - 202,203 + 211,212 Purgin below fee dashboard.purging @@ -4882,7 +5111,7 @@ Ús de memòria src/app/dashboard/dashboard.component.html - 214,215 + 223,224 Memory usage dashboard.memory-usage @@ -4891,15 +5120,27 @@ L-BTC in circulation src/app/dashboard/dashboard.component.html - 228,230 + 237,239 dashboard.lbtc-pegs-in-circulation + + mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + + src/app/docs/api-docs/api-docs.component.html + 13 + + + src/app/docs/api-docs/api-docs.component.html + 14 + + faq.big-disclaimer + REST API service src/app/docs/api-docs/api-docs.component.html - 39,40 + 42,43 api-docs.title @@ -4907,11 +5148,11 @@ Endpoint src/app/docs/api-docs/api-docs.component.html - 48,49 + 51,52 src/app/docs/api-docs/api-docs.component.html - 102,105 + 105,108 Api docs endpoint @@ -4920,18 +5161,18 @@ Descripció src/app/docs/api-docs/api-docs.component.html - 67,68 + 70,71 src/app/docs/api-docs/api-docs.component.html - 106,107 + 109,110 Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-blocks, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. src/app/docs/api-docs/api-docs.component.html - 107,108 + 110,111 api-docs.websocket.websocket @@ -5025,7 +5266,7 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats @@ -5093,7 +5334,11 @@ src/app/lightning/channels-list/channels-list.component.html - 120,121 + 123,124 + + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 lightning.x-channels @@ -5131,11 +5376,11 @@ src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html - 65,66 + 68,69 status.inactive @@ -5147,11 +5392,11 @@ src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html - 66,68 + 69,71 status.active @@ -5163,7 +5408,7 @@ src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5171,7 +5416,7 @@ src/app/lightning/channels-list/channels-list.component.html - 68,70 + 71,73 status.closed @@ -5183,7 +5428,7 @@ src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created @@ -5195,11 +5440,19 @@ src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html - 40,43 + 43,46 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 src/app/lightning/node-statistics/node-statistics.component.html @@ -5207,7 +5460,7 @@ src/app/lightning/node-statistics/node-statistics.component.html - 47,50 + 46,49 src/app/lightning/nodes-list/nodes-list.component.html @@ -5229,6 +5482,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5263,11 +5520,11 @@ Lightning channel src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel @@ -5275,11 +5532,11 @@ Last update src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5295,11 +5552,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update @@ -5307,11 +5564,11 @@ Closing date src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 39,40 + 42,44 lightning.closing_date @@ -5319,7 +5576,7 @@ Closed by src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by @@ -5327,7 +5584,7 @@ Opening transaction src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction @@ -5335,7 +5592,7 @@ Closing transaction src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction @@ -5346,6 +5603,27 @@ 37 + + Mutually closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 20 + + + + Force closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 24 + + + + Force closed with penalty + + src/app/lightning/channel/closing-type/closing-type.component.ts + 28 + + Open @@ -5358,7 +5636,7 @@ No channels to display src/app/lightning/channels-list/channels-list.component.html - 29,35 + 29,37 lightning.empty-channels-list @@ -5366,7 +5644,7 @@ Alias src/app/lightning/channels-list/channels-list.component.html - 35,37 + 38,40 src/app/lightning/group/group.component.html @@ -5390,11 +5668,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias @@ -5402,7 +5680,7 @@ Status src/app/lightning/channels-list/channels-list.component.html - 37,38 + 40,41 status @@ -5410,7 +5688,7 @@ Channel ID src/app/lightning/channels-list/channels-list.component.html - 41,45 + 44,48 channels.id @@ -5418,11 +5696,11 @@ sats src/app/lightning/channels-list/channels-list.component.html - 60,64 + 63,68 src/app/lightning/channels-list/channels-list.component.html - 84,88 + 87,91 src/app/lightning/channels-statistics/channels-statistics.component.html @@ -5466,6 +5744,22 @@ shared.sats + + avg + + src/app/lightning/channels-statistics/channels-statistics.component.html + 3,5 + + statistics.average-small + + + med + + src/app/lightning/channels-statistics/channels-statistics.component.html + 6,9 + + statistics.median-small + Avg Capacity @@ -5582,11 +5876,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 17,18 + 16,17 src/app/lightning/node-statistics/node-statistics.component.html - 54,57 + 53,56 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -5634,10 +5928,6 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity @@ -5653,12 +5943,20 @@ 40,44 - src/app/lightning/node-statistics/node-statistics.component.html - 29,30 + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 src/app/lightning/node-statistics/node-statistics.component.html - 61,64 + 28,29 + + + src/app/lightning/node-statistics/node-statistics.component.html + 60,63 src/app/lightning/nodes-list/nodes-list.component.html @@ -5690,16 +5988,20 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -5730,7 +6032,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5746,11 +6048,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location @@ -5784,9 +6086,17 @@ src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -5814,6 +6124,28 @@ lightning.node-fee-distribution + + Outgoing Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 170 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 208 + + + + Incoming Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 178 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 222 + + Percentage change past week @@ -5822,11 +6154,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 18,20 + 17,19 src/app/lightning/node-statistics/node-statistics.component.html - 30,32 + 29,31 mining.percentage-change-last-week @@ -5838,11 +6170,11 @@ src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node @@ -5854,7 +6186,7 @@ src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity @@ -5866,7 +6198,7 @@ src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels @@ -5878,19 +6210,11 @@ country - - No node found for public key "" - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg @@ -5898,7 +6222,7 @@ Avg channel distance src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance @@ -5906,7 +6230,7 @@ Color src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color @@ -5914,7 +6238,7 @@ ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -5926,7 +6250,7 @@ Exclusively on Tor src/app/lightning/node/node.component.html - 93,95 + 96,98 tor @@ -5934,7 +6258,7 @@ Liquidity ad src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad @@ -5942,7 +6266,7 @@ Lease fee rate src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate @@ -5951,7 +6275,7 @@ Lease base fee src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee @@ -5959,7 +6283,7 @@ Funding weight src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight @@ -5967,7 +6291,7 @@ Channel fee rate src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate @@ -5976,7 +6300,7 @@ Channel base fee src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee @@ -5984,7 +6308,7 @@ Compact lease src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease @@ -5992,7 +6316,7 @@ TLV extension records src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records @@ -6000,7 +6324,7 @@ Open channels src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels @@ -6008,7 +6332,7 @@ Closed channels src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels @@ -6050,7 +6374,7 @@ No geolocation data available src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 218,213 + 219,214 @@ -6072,8 +6396,8 @@ 112,107 - - Reachable on Clearnet Only + + Clearnet and Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6083,8 +6407,8 @@ 303,302 - - Reachable on Clearnet and Darknet + + Clearnet Only (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6094,8 +6418,8 @@ 295,294 - - Reachable on Darknet Only + + Darknet Only (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6118,25 +6442,29 @@ lightning.share - nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6242,11 +6570,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6327,22 +6655,6 @@ 27 - - Top 100 nodes liquidity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index 304f3fba4..fb249f4a1 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ Komunitní aliance src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Překladatelé projektu src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Přispěvatelé projektu src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Členové projektu src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Správci projektu src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,11 +2534,12 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 Size per weight + Velikost dle váhy src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 200,199 @@ -2632,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2745,6 +2750,7 @@ Subsidy + fees + Vytěžené + poplatky src/app/components/block/block.component.html 153,156 @@ -2844,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2889,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3078,13 +3084,17 @@ Difficulty Adjustment Změna obtížnosti + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3092,11 +3102,11 @@ Remaining Zbývá - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3105,11 +3115,11 @@ blocks bloky - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3130,11 +3140,11 @@ block blok - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3147,11 +3157,11 @@ Estimate Odhad - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3160,20 +3170,24 @@ Previous Předchozí - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Současné období - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3182,11 +3196,99 @@ Next Halving Další půlení - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Buď dvojnásobek minimální sazby, nebo sazba Nízká priorita (podle toho, která je nižší). @@ -3344,7 +3446,7 @@ Těžba src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3353,7 +3455,7 @@ Hodnocení poolů src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3366,7 +3468,7 @@ Dominance poolů src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3379,7 +3481,7 @@ Hashrate & obtížnost src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3388,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3397,7 +3499,7 @@ Lightning uzly v síti src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3418,7 +3520,7 @@ Kapacita Lightning sítě src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3439,7 +3541,7 @@ Lightning uzly na jednoho ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3452,7 +3554,7 @@ Lightning uzly podle zemí src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3469,7 +3571,7 @@ Světová mapa Lightning uzlů src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3486,7 +3588,7 @@ Světová mapa kanálů Lightning uzlů src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3507,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3541,11 +3643,11 @@ Hashrate (KP) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3665,7 +3767,7 @@ Statistiky odměn src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3674,7 +3776,7 @@ (144 bloků) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3683,7 +3785,7 @@ Poslední bloky src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3696,7 +3798,7 @@ Úpravy src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3705,7 +3807,7 @@ Vyslat transakci src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3825,6 +3927,7 @@ Avg Health + Průměrné zdraví src/app/components/pool-ranking/pool-ranking.component.html 96,97 @@ -3879,9 +3982,8 @@ 58 - - blocks - bloků + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3890,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4112,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4239,6 +4376,7 @@ Bitcoin Block Height + Výška bitcoinového bloku src/app/components/search-form/search-results/search-results.component.html 3 @@ -4247,6 +4385,7 @@ Bitcoin Transaction + Bitcoinová transakce src/app/components/search-form/search-results/search-results.component.html 9 @@ -4255,6 +4394,7 @@ Bitcoin Address + Bitcoinová adresa src/app/components/search-form/search-results/search-results.component.html 15 @@ -4263,6 +4403,7 @@ Bitcoin Block + Bitcoinový blok src/app/components/search-form/search-results/search-results.component.html 21 @@ -4271,6 +4412,7 @@ Bitcoin Addresses + Bitcoinové adresy src/app/components/search-form/search-results/search-results.component.html 27 @@ -4279,6 +4421,7 @@ Lightning Nodes + Lightningové uzly src/app/components/search-form/search-results/search-results.component.html 35 @@ -4287,6 +4430,7 @@ Lightning Channels + Lightningové kanály src/app/components/search-form/search-results/search-results.component.html 43 @@ -4329,7 +4473,7 @@ Filtr src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4338,7 +4482,7 @@ Převrátit src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4347,7 +4491,7 @@ Transakce vBytů za sekundu (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4355,196 +4499,188 @@ Just now Právě teď - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago před - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After Po - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - Za ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4678,7 +4814,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4697,7 +4833,7 @@ Zobrazit více src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4714,7 +4850,7 @@ Zobrazit méně src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4727,7 +4863,7 @@ Zobrazit diagram src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4736,7 +4872,7 @@ Locktime src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4745,7 +4881,7 @@ Transakce nebyla nalezena. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4754,7 +4890,7 @@ Čekání na to, až se objeví v mempoolu... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4763,7 +4899,7 @@ Efektivní poplatek src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5213,10 +5349,15 @@ mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + mempool.space pouze poskytuje údaje o Bitcoinové síti. Nemůže vám pomoci při získávání finančních prostředků, rychlejším potvrzování transakcí atd. src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5224,7 +5365,7 @@ Služba REST API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5233,11 +5374,11 @@ Endpoint src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5246,11 +5387,11 @@ Popis src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5258,7 +5399,7 @@ Výchozí push: akce: 'want', data: ['blocks', ...] pro vyjádření toho, co chcete pushnout. K dispozici: blocks, mempool-blocks, live-2h-chart a stats. Push transakce související s adresou: 'track-address': '3PbJ...bF9B' pro příjem všech nových transakcí obsahujících tuto adresu jako vstup nebo výstup. Vrací pole transakcí. address-transactions pro nové transakce mempoolu a block-transactions pro nové transakce potvrzené blokem. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5433,6 +5574,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5547,6 +5692,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5665,7 +5818,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5706,6 +5859,7 @@ Mutually closed + Vzájemně uzavřeno src/app/lightning/channel/closing-type/closing-type.component.ts 20 @@ -5713,6 +5867,7 @@ Force closed + Uzavřeno vynuceně src/app/lightning/channel/closing-type/closing-type.component.ts 24 @@ -5720,6 +5875,7 @@ Force closed with penalty + Uzavřeno vynuceně s pokutou src/app/lightning/channel/closing-type/closing-type.component.ts 28 @@ -5803,7 +5959,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -5853,6 +6009,7 @@ avg + prům src/app/lightning/channels-statistics/channels-statistics.component.html 3,5 @@ -5861,6 +6018,7 @@ med + med src/app/lightning/channels-statistics/channels-statistics.component.html 6,9 @@ -6063,6 +6221,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6111,6 +6277,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6243,6 +6413,7 @@ Outgoing Fees + Odchozí poplatky src/app/lightning/node-fee-chart/node-fee-chart.component.ts 170 @@ -6254,6 +6425,7 @@ Incoming Fees + Příchozí poplatky src/app/lightning/node-fee-chart/node-fee-chart.component.ts 178 @@ -6541,6 +6713,7 @@ Clearnet and Darknet + Clearnet a Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6552,6 +6725,7 @@ Clearnet Only (IPv4, IPv6) + Pouze Clearnet (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6563,6 +6737,7 @@ Darknet Only (Tor, I2P, cjdns) + Pouze Darknet (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6586,19 +6761,22 @@ lightning.share - nodes - uzlů + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6606,7 +6784,7 @@ BTC kapacita src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6724,11 +6902,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.da.xlf b/frontend/src/locale/messages.da.xlf index 29f667ed5..57f4c2cf4 100644 --- a/frontend/src/locale/messages.da.xlf +++ b/frontend/src/locale/messages.da.xlf @@ -487,7 +487,7 @@ Block : - Blok : + Blok : src/app/bisq/bisq-block/bisq-block.component.ts 89 @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Community alliancer src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Oversættere src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Bidragsydere src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Medlemmer src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Vedligeholdere src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -3080,13 +3084,17 @@ Difficulty Adjustment Sværhedsgrad justering + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Tilbage - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks blokke - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block blok - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Estimat - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Forrige - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Nuværende periode - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving Næste Halvering - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Enten 2x minimum eller lavprioritetssatsen (alt efter hvad der er lavest) @@ -3667,7 +3767,7 @@ Belønningsstatistik src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 blokke) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ Seneste blokke src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ Justeringer src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Udsend transaktion src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,9 @@ 58 - - blocks - blokke + + blocks + blokke src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3993,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4366,40 +4501,28 @@ Lige nu src/app/components/time/time.component.ts - 78 + 79 ago siden - - src/app/components/time/time.component.ts - 97 - - - src/app/components/time/time.component.ts - 98 - - - src/app/components/time/time.component.ts - 99 - - - src/app/components/time/time.component.ts - 100 - - - src/app/components/time/time.component.ts - 101 - - - src/app/components/time/time.component.ts - 102 - src/app/components/time/time.component.ts 103 + + src/app/components/time/time.component.ts + 104 + + + src/app/components/time/time.component.ts + 105 + + + src/app/components/time/time.component.ts + 106 + src/app/components/time/time.component.ts 107 @@ -4412,54 +4535,54 @@ src/app/components/time/time.component.ts 109 - - src/app/components/time/time.component.ts - 110 - - - src/app/components/time/time.component.ts - 111 - - - src/app/components/time/time.component.ts - 112 - src/app/components/time/time.component.ts 113 + + src/app/components/time/time.component.ts + 114 + + + src/app/components/time/time.component.ts + 115 + + + src/app/components/time/time.component.ts + 116 + + + src/app/components/time/time.component.ts + 117 + + + src/app/components/time/time.component.ts + 118 + + + src/app/components/time/time.component.ts + 119 + In ~ Om ~ - - src/app/components/time/time.component.ts - 120 - - - src/app/components/time/time.component.ts - 121 - - - src/app/components/time/time.component.ts - 122 - - - src/app/components/time/time.component.ts - 123 - - - src/app/components/time/time.component.ts - 124 - - - src/app/components/time/time.component.ts - 125 - src/app/components/time/time.component.ts 126 + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + src/app/components/time/time.component.ts 130 @@ -4472,54 +4595,54 @@ src/app/components/time/time.component.ts 132 - - src/app/components/time/time.component.ts - 133 - - - src/app/components/time/time.component.ts - 134 - - - src/app/components/time/time.component.ts - 135 - src/app/components/time/time.component.ts 136 + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 + After Efter - - src/app/components/time/time.component.ts - 143 - - - src/app/components/time/time.component.ts - 144 - - - src/app/components/time/time.component.ts - 145 - - - src/app/components/time/time.component.ts - 146 - - - src/app/components/time/time.component.ts - 147 - - - src/app/components/time/time.component.ts - 148 - src/app/components/time/time.component.ts 149 + + src/app/components/time/time.component.ts + 150 + + + src/app/components/time/time.component.ts + 151 + + + src/app/components/time/time.component.ts + 152 + src/app/components/time/time.component.ts 153 @@ -4532,22 +4655,34 @@ src/app/components/time/time.component.ts 155 - - src/app/components/time/time.component.ts - 156 - - - src/app/components/time/time.component.ts - 157 - - - src/app/components/time/time.component.ts - 158 - src/app/components/time/time.component.ts 159 + + src/app/components/time/time.component.ts + 160 + + + src/app/components/time/time.component.ts + 161 + + + src/app/components/time/time.component.ts + 162 + + + src/app/components/time/time.component.ts + 163 + + + src/app/components/time/time.component.ts + 164 + + + src/app/components/time/time.component.ts + 165 + This transaction has been replaced by: @@ -5440,6 +5575,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5680,7 +5819,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5821,7 +5960,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6139,6 +6278,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6619,19 +6762,23 @@ lightning.share - nodes - noder + nodes + noder src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6639,7 +6786,7 @@ BTC kapacitet src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6757,11 +6904,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6879,7 +7026,7 @@ year - år + år src/app/shared/i18n/dates.ts 3 @@ -6887,7 +7034,7 @@ years - år + år src/app/shared/i18n/dates.ts 4 @@ -6895,7 +7042,7 @@ month - måned + måned src/app/shared/i18n/dates.ts 5 @@ -6903,7 +7050,7 @@ months - måneder + måneder src/app/shared/i18n/dates.ts 6 @@ -6911,7 +7058,7 @@ week - uge + uge src/app/shared/i18n/dates.ts 7 @@ -6919,7 +7066,7 @@ weeks - uger + uger src/app/shared/i18n/dates.ts 8 @@ -6927,7 +7074,7 @@ day - dag + dag src/app/shared/i18n/dates.ts 9 @@ -6935,7 +7082,7 @@ days - dage + dage src/app/shared/i18n/dates.ts 10 @@ -6943,7 +7090,7 @@ hour - time + time src/app/shared/i18n/dates.ts 11 @@ -6951,7 +7098,7 @@ hours - timer + timer src/app/shared/i18n/dates.ts 12 @@ -6959,7 +7106,7 @@ minute - minut + minut src/app/shared/i18n/dates.ts 13 @@ -6967,7 +7114,7 @@ minutes - minutter + minutter src/app/shared/i18n/dates.ts 14 @@ -6975,7 +7122,7 @@ second - sekund + sekund src/app/shared/i18n/dates.ts 15 @@ -6983,7 +7130,7 @@ seconds - sekunder + sekunder src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index 398f4f60e..87050f55b 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Community-Allianzen src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Projektübersetzer src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Projektmitwirkende src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Projektmitglieder src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Projektbetreuer src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -3094,7 +3094,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3203,7 +3203,7 @@ blocks expected - Blöcke erwartet + Blöcke erwartet src/app/components/difficulty/difficulty-tooltip.component.html 13 @@ -3221,7 +3221,7 @@ blocks mined - Blöcke gefunden + Blöcke gefunden src/app/components/difficulty/difficulty-tooltip.component.html 18 @@ -3239,7 +3239,7 @@ blocks remaining - verbleibende Blöcke + verbleibende Blöcke src/app/components/difficulty/difficulty-tooltip.component.html 24 @@ -3257,7 +3257,7 @@ blocks ahead - Blöcke voraus + Blöcke voraus src/app/components/difficulty/difficulty-tooltip.component.html 29 @@ -3275,7 +3275,7 @@ blocks behind - Blöcke dahinter + Blöcke dahinter src/app/components/difficulty/difficulty-tooltip.component.html 34 @@ -3778,7 +3778,7 @@ Belohnungsstatistiken src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3787,7 +3787,7 @@ (144 Blöcke) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3796,7 +3796,7 @@ Neueste Blöcke src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3809,7 +3809,7 @@ Anpassungen src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3818,7 +3818,7 @@ Transaktion senden src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3993,9 +3993,9 @@ 58 - - blocks - Blocks + + blocks + blöcke src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -4004,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + Andere () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -5551,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5791,7 +5831,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5932,7 +5972,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6250,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6730,19 +6774,23 @@ lightning.share - nodes - Nodes + nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6750,7 +6798,7 @@ BTC Kapazität src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6868,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index 66437d4fb..8baaf9532 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Alianzas de la comunidad src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Traductores del proyecto src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Contribuyentes al proyecto src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Miembros del proyecto src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Mantenedores del proyecto src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -3080,13 +3084,17 @@ Difficulty Adjustment Ajuste de Dificultad + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Restante - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks bloques - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block bloque - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Estimada - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Previo - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Período Actual - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,110 @@ Next Halving Siguiente halving - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + bloques esperados + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + bloque esperado + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + bloques minados + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + bloque minado + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + bloques restantes + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + bloque restante + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + bloques por delante + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + bloque por delante + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + bloques por detrás + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + bloque por detrás + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + Tiempo medio de bloque + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) O bien 2x el mínimo, o la tasa de prioridad baja (lo que resulte menor) @@ -3667,7 +3778,7 @@ Estadísticas de recompensa src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3787,7 @@ (144 bloques) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3796,7 @@ Últimos bloques src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3809,7 @@ Ajustes src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3818,7 @@ Transmitir transacción src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3827,7 +3938,7 @@ Avg Health - El promedio de salud + Promedio de salud src/app/components/pool-ranking/pool-ranking.component.html 96,97 @@ -3882,9 +3993,9 @@ 58 - - blocks - bloques + + blocks + bloques src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + Otros () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4366,40 +4513,28 @@ Justo ahora src/app/components/time/time.component.ts - 78 + 79 ago atrás - - src/app/components/time/time.component.ts - 97 - - - src/app/components/time/time.component.ts - 98 - - - src/app/components/time/time.component.ts - 99 - - - src/app/components/time/time.component.ts - 100 - - - src/app/components/time/time.component.ts - 101 - - - src/app/components/time/time.component.ts - 102 - src/app/components/time/time.component.ts 103 + + src/app/components/time/time.component.ts + 104 + + + src/app/components/time/time.component.ts + 105 + + + src/app/components/time/time.component.ts + 106 + src/app/components/time/time.component.ts 107 @@ -4412,54 +4547,54 @@ src/app/components/time/time.component.ts 109 - - src/app/components/time/time.component.ts - 110 - - - src/app/components/time/time.component.ts - 111 - - - src/app/components/time/time.component.ts - 112 - src/app/components/time/time.component.ts 113 + + src/app/components/time/time.component.ts + 114 + + + src/app/components/time/time.component.ts + 115 + + + src/app/components/time/time.component.ts + 116 + + + src/app/components/time/time.component.ts + 117 + + + src/app/components/time/time.component.ts + 118 + + + src/app/components/time/time.component.ts + 119 + In ~ En ~ - - src/app/components/time/time.component.ts - 120 - - - src/app/components/time/time.component.ts - 121 - - - src/app/components/time/time.component.ts - 122 - - - src/app/components/time/time.component.ts - 123 - - - src/app/components/time/time.component.ts - 124 - - - src/app/components/time/time.component.ts - 125 - src/app/components/time/time.component.ts 126 + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + src/app/components/time/time.component.ts 130 @@ -4472,54 +4607,54 @@ src/app/components/time/time.component.ts 132 - - src/app/components/time/time.component.ts - 133 - - - src/app/components/time/time.component.ts - 134 - - - src/app/components/time/time.component.ts - 135 - src/app/components/time/time.component.ts 136 + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 + After Después - - src/app/components/time/time.component.ts - 143 - - - src/app/components/time/time.component.ts - 144 - - - src/app/components/time/time.component.ts - 145 - - - src/app/components/time/time.component.ts - 146 - - - src/app/components/time/time.component.ts - 147 - - - src/app/components/time/time.component.ts - 148 - src/app/components/time/time.component.ts 149 + + src/app/components/time/time.component.ts + 150 + + + src/app/components/time/time.component.ts + 151 + + + src/app/components/time/time.component.ts + 152 + src/app/components/time/time.component.ts 153 @@ -4532,22 +4667,34 @@ src/app/components/time/time.component.ts 155 - - src/app/components/time/time.component.ts - 156 - - - src/app/components/time/time.component.ts - 157 - - - src/app/components/time/time.component.ts - 158 - src/app/components/time/time.component.ts 159 + + src/app/components/time/time.component.ts + 160 + + + src/app/components/time/time.component.ts + 161 + + + src/app/components/time/time.component.ts + 162 + + + src/app/components/time/time.component.ts + 163 + + + src/app/components/time/time.component.ts + 164 + + + src/app/components/time/time.component.ts + 165 + This transaction has been replaced by: @@ -5215,7 +5362,7 @@ mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. - memepool.space simplemente proporciona datos sobre la red Bitcoin. No puede ayudarle a recuperar fondos, confirmar su transacción más rápdio, etc. + mempool.space simplemente proporciona datos sobre la red Bitcoin. No puede ayudarle a recuperar fondos, confirmar su transacción más rápido, etc. src/app/docs/api-docs/api-docs.component.html 13 @@ -5440,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5680,7 +5831,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5729,7 +5880,7 @@ Force closed - Forzar cierre + Cierre forzado src/app/lightning/channel/closing-type/closing-type.component.ts 24 @@ -5737,7 +5888,7 @@ Force closed with penalty - Fuerza cerrada con sanción + Cierre forzado con sanción src/app/lightning/channel/closing-type/closing-type.component.ts 28 @@ -5821,7 +5972,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -5871,7 +6022,7 @@ avg - El promedio + Promedio src/app/lightning/channels-statistics/channels-statistics.component.html 3,5 @@ -5880,7 +6031,7 @@ med - Media + Med src/app/lightning/channels-statistics/channels-statistics.component.html 6,9 @@ -6139,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6271,7 +6426,7 @@ Outgoing Fees - Gastos de salida + Tasas de salida src/app/lightning/node-fee-chart/node-fee-chart.component.ts 170 @@ -6283,7 +6438,7 @@ Incoming Fees - Gastos de entrada + Tasas de entrada src/app/lightning/node-fee-chart/node-fee-chart.component.ts 178 @@ -6619,19 +6774,23 @@ lightning.share - nodes - nodos + nodes + nodos src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6639,7 +6798,7 @@ capacidad BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6757,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index 4f11ea03e..e4bec8dbc 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ متحدین جامعه src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ مترجم‌های پروژه src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ مشارکت کنندگان src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ اعضای پروژه src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ نگهدارندگان پروژه src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment تنظیم سختی بلاک‌ها + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining باقیمانده - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks بلاک - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block بلاک - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate تخمین - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous قبلی - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period دوره فعلی - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,110 @@ Next Halving نصف‌شدن یارانهٔ بلاک بعدی - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + بلاک مورد انتظار + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + بلاک مورد انتظار + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + بلاک استخراج‌شده + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + بلاک استخراج‌شده + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + بلاک باقی‌مانده + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + بلاک باقی‌مانده + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + بلاک جلوتر از پیش‌بینی + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + بلاک جلوتر از پیش‌بینی + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + بلاک عقب‌تر از پیش‌بینی + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + بلاک عقب‌تر از پیش‌بینی + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + متوسط زمان ایجاد بلاک + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) «2 برابر نرخ کمینه» یا «اولویت پایین» (هر کدام که کمتر است) @@ -3346,7 +3457,7 @@ استخراج src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3466,7 @@ رتبه‌بندی استخرها src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3479,7 @@ سهم استخرها src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3492,7 @@ نرخ تولید هش و سختی src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3501,7 @@ لایتنینگ src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3510,7 @@ نسبت گره‌های لایتنینگ به شبکه src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3531,7 @@ ظرفیت شبکه لایتنینگ src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3552,7 @@ نسبت گره‌های لایتنینگ به ارائه کننده اینترنت src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3565,7 @@ نسبت گره‌های لایتنینگ به کشور src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3582,7 @@ نقشه گره‌های لایتنینگ دنیا src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3599,7 @@ نقشه کانال‌های گره‌های لایتنینگ دنیا src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3620,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3654,11 @@ نرخ تولید هش (میانگین متحرک) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3778,7 @@ وضعیت پاداش src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3787,7 @@ (144 بلاک) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3796,7 @@ آخرین بلاک‌ها src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3809,7 @@ تنظیم‌سختی‌ها src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3818,7 @@ انتشار تراکنش src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3993,9 @@ 58 - - blocks - بلاک + + blocks + بلاک src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + دیگر () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4262,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4486,7 @@ پالایش src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4495,7 @@ معکوس src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4504,7 @@ تراکنش vByte بر ثانیه (vB بر ثانیه) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4512,188 @@ Just now همین الان - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago پیش - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + در حدود + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After بعد از - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - در حدود - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4827,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4846,7 @@ بیشتر src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4863,7 @@ کمتر src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4876,7 @@ نمایش نمودار src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4885,7 @@ قفل‌زمانی src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4894,7 @@ تراکنش پیدا نشد. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4903,7 @@ منتظر دیده‌شدن در mempool... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4912,7 @@ نرخ کارمزد مؤثر src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5367,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5378,7 @@ خدمات REST API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5387,11 @@ نقطه اتصال src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5400,11 @@ توضیحات src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5412,7 @@ دستور پیش‌فرض: action: 'want', data: ['blocks', ...] که نشان می‌دهد چه چیزی باید ارسال شود. گزینه‌های در دسترس: blocks, mempool-blocks, live-2h-chart و stats. دستورهای مربوط به آدرس: 'track-address': '3PbJ...bF9B' جهت دریافت تمام تراکنش‌های جدیدی که خروجی یا ورودی‌های آنها شامل این آدرس می‌شود. آرایه‌ای از تراکنش‌ها برمی‌گرداند. address-transactions برای تراکنش‌های جدید ممپول و block-transactions برای تراکنش‌های بلاک تایید شده‌ی جدید. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5705,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5831,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5972,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6234,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6607,19 +6774,23 @@ lightning.share - nodes - گره + nodes + گره src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6627,7 +6798,7 @@ ظرفیت BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6745,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.fi.xlf b/frontend/src/locale/messages.fi.xlf index 44217e369..438fdde54 100644 --- a/frontend/src/locale/messages.fi.xlf +++ b/frontend/src/locale/messages.fi.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Yhteisöliittoumat src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Projektin kääntäjät src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Projektin avustajat src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Projektin jäsenet src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Projektin ylläpitäjät src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -3080,13 +3084,17 @@ Difficulty Adjustment Vaikeudensäätö + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Jäljellä - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks lohkoa - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block lohko - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Arvio - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Edellinen - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Nykyinen jakso - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving Puoliintuminen - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Joko 2x vähimmäismäärä tai alhaisen prioriteetin määrä (riippuen siitä, kumpi on alhaisempi) @@ -3667,7 +3767,7 @@ Palkkiotilastot src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 lohkoa) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ Viimeisimmät lohkot src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ Vaikeudensäädöt src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Siirtotapahtuman kuulutus src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - lohkoa + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4366,40 +4500,28 @@ Juuri nyt src/app/components/time/time.component.ts - 78 + 79 ago sitten - - src/app/components/time/time.component.ts - 97 - - - src/app/components/time/time.component.ts - 98 - - - src/app/components/time/time.component.ts - 99 - - - src/app/components/time/time.component.ts - 100 - - - src/app/components/time/time.component.ts - 101 - - - src/app/components/time/time.component.ts - 102 - src/app/components/time/time.component.ts 103 + + src/app/components/time/time.component.ts + 104 + + + src/app/components/time/time.component.ts + 105 + + + src/app/components/time/time.component.ts + 106 + src/app/components/time/time.component.ts 107 @@ -4412,53 +4534,53 @@ src/app/components/time/time.component.ts 109 - - src/app/components/time/time.component.ts - 110 - - - src/app/components/time/time.component.ts - 111 - - - src/app/components/time/time.component.ts - 112 - src/app/components/time/time.component.ts 113 + + src/app/components/time/time.component.ts + 114 + + + src/app/components/time/time.component.ts + 115 + + + src/app/components/time/time.component.ts + 116 + + + src/app/components/time/time.component.ts + 117 + + + src/app/components/time/time.component.ts + 118 + + + src/app/components/time/time.component.ts + 119 + In ~ - - src/app/components/time/time.component.ts - 120 - - - src/app/components/time/time.component.ts - 121 - - - src/app/components/time/time.component.ts - 122 - - - src/app/components/time/time.component.ts - 123 - - - src/app/components/time/time.component.ts - 124 - - - src/app/components/time/time.component.ts - 125 - src/app/components/time/time.component.ts 126 + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + src/app/components/time/time.component.ts 130 @@ -4471,54 +4593,54 @@ src/app/components/time/time.component.ts 132 - - src/app/components/time/time.component.ts - 133 - - - src/app/components/time/time.component.ts - 134 - - - src/app/components/time/time.component.ts - 135 - src/app/components/time/time.component.ts 136 + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 + After jälkeen - - src/app/components/time/time.component.ts - 143 - - - src/app/components/time/time.component.ts - 144 - - - src/app/components/time/time.component.ts - 145 - - - src/app/components/time/time.component.ts - 146 - - - src/app/components/time/time.component.ts - 147 - - - src/app/components/time/time.component.ts - 148 - src/app/components/time/time.component.ts 149 + + src/app/components/time/time.component.ts + 150 + + + src/app/components/time/time.component.ts + 151 + + + src/app/components/time/time.component.ts + 152 + src/app/components/time/time.component.ts 153 @@ -4531,22 +4653,34 @@ src/app/components/time/time.component.ts 155 - - src/app/components/time/time.component.ts - 156 - - - src/app/components/time/time.component.ts - 157 - - - src/app/components/time/time.component.ts - 158 - src/app/components/time/time.component.ts 159 + + src/app/components/time/time.component.ts + 160 + + + src/app/components/time/time.component.ts + 161 + + + src/app/components/time/time.component.ts + 162 + + + src/app/components/time/time.component.ts + 163 + + + src/app/components/time/time.component.ts + 164 + + + src/app/components/time/time.component.ts + 165 + This transaction has been replaced by: @@ -5439,6 +5573,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5679,7 +5817,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5820,7 +5958,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6138,6 +6276,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6618,19 +6760,22 @@ lightning.share - nodes - solmua + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6638,7 +6783,7 @@ BTC kapasiteetti src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6756,11 +6901,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index 208b71ce0..4322b5be3 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -487,7 +487,7 @@ Block : - Bloc : + Bloc : src/app/bisq/bisq-block/bisq-block.component.ts 89 @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -842,7 +842,7 @@ Amount () - Montant ( ) + Montant () src/app/bisq/bisq-market/bisq-market.component.html 112,113 @@ -1109,7 +1109,7 @@ confirmation - confirmation + confirmation src/app/bisq/bisq-transaction/bisq-transaction.component.html 20,21 @@ -1131,7 +1131,7 @@ confirmations - confirmations + confirmations src/app/bisq/bisq-transaction/bisq-transaction.component.html 21,22 @@ -1234,7 +1234,7 @@ Transaction: - Transaction : + Transaction: src/app/bisq/bisq-transaction/bisq-transaction.component.ts 50 @@ -1487,7 +1487,7 @@ Alliances communautaires src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Traducteurs src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Contributeurs au projet src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Membres du projet src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Mainteneurs de projet src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1611,7 +1611,7 @@ Address: - Adresse : + Adresse: src/app/components/address/address-preview.component.ts 70 @@ -1800,7 +1800,7 @@ Asset: - Actif : + Actif: src/app/components/asset/asset.component.ts 75 @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -3080,13 +3084,17 @@ Difficulty Adjustment Ajustement de la difficulté + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Restant - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks blocs - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block bloc - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Estimation - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Précédent - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Période actuelle - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,110 @@ Next Halving Prochain halving - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + blocs attendus + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + bloc attendu + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + blocs trouvés + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + bloc trouvé + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + blocs restants + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + bloc restant + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + blocs d'avance + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + bloc d'avance + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + blocs de retard + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + bloc de retard + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + Temps de bloc moyen + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Soit 2x les frais minimum, soit les frais de faible priorité (selon le plus bas) @@ -3667,7 +3778,7 @@ Statistiques de récompense src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3787,7 @@ (144 blocs) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3796,7 @@ Derniers blocs src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3809,7 @@ Ajustements src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3818,7 @@ Émettre une transaction src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3993,9 @@ 58 - - blocks - blocs + + blocks + blocs src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + Autre ( ) + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4366,40 +4513,28 @@ Juste maintenant src/app/components/time/time.component.ts - 78 + 79 ago Il y a - - src/app/components/time/time.component.ts - 97 - - - src/app/components/time/time.component.ts - 98 - - - src/app/components/time/time.component.ts - 99 - - - src/app/components/time/time.component.ts - 100 - - - src/app/components/time/time.component.ts - 101 - - - src/app/components/time/time.component.ts - 102 - src/app/components/time/time.component.ts 103 + + src/app/components/time/time.component.ts + 104 + + + src/app/components/time/time.component.ts + 105 + + + src/app/components/time/time.component.ts + 106 + src/app/components/time/time.component.ts 107 @@ -4412,54 +4547,54 @@ src/app/components/time/time.component.ts 109 - - src/app/components/time/time.component.ts - 110 - - - src/app/components/time/time.component.ts - 111 - - - src/app/components/time/time.component.ts - 112 - src/app/components/time/time.component.ts 113 + + src/app/components/time/time.component.ts + 114 + + + src/app/components/time/time.component.ts + 115 + + + src/app/components/time/time.component.ts + 116 + + + src/app/components/time/time.component.ts + 117 + + + src/app/components/time/time.component.ts + 118 + + + src/app/components/time/time.component.ts + 119 + In ~ - Dans ~ - - src/app/components/time/time.component.ts - 120 - - - src/app/components/time/time.component.ts - 121 - - - src/app/components/time/time.component.ts - 122 - - - src/app/components/time/time.component.ts - 123 - - - src/app/components/time/time.component.ts - 124 - - - src/app/components/time/time.component.ts - 125 - + Dans ~ src/app/components/time/time.component.ts 126 + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + src/app/components/time/time.component.ts 130 @@ -4472,54 +4607,54 @@ src/app/components/time/time.component.ts 132 - - src/app/components/time/time.component.ts - 133 - - - src/app/components/time/time.component.ts - 134 - - - src/app/components/time/time.component.ts - 135 - src/app/components/time/time.component.ts 136 + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 + After Après - - src/app/components/time/time.component.ts - 143 - - - src/app/components/time/time.component.ts - 144 - - - src/app/components/time/time.component.ts - 145 - - - src/app/components/time/time.component.ts - 146 - - - src/app/components/time/time.component.ts - 147 - - - src/app/components/time/time.component.ts - 148 - src/app/components/time/time.component.ts 149 + + src/app/components/time/time.component.ts + 150 + + + src/app/components/time/time.component.ts + 151 + + + src/app/components/time/time.component.ts + 152 + src/app/components/time/time.component.ts 153 @@ -4532,22 +4667,34 @@ src/app/components/time/time.component.ts 155 - - src/app/components/time/time.component.ts - 156 - - - src/app/components/time/time.component.ts - 157 - - - src/app/components/time/time.component.ts - 158 - src/app/components/time/time.component.ts 159 + + src/app/components/time/time.component.ts + 160 + + + src/app/components/time/time.component.ts + 161 + + + src/app/components/time/time.component.ts + 162 + + + src/app/components/time/time.component.ts + 163 + + + src/app/components/time/time.component.ts + 164 + + + src/app/components/time/time.component.ts + 165 + This transaction has been replaced by: @@ -5053,7 +5200,7 @@ This transaction uses Taproot and already saved at least % on fees, but could save an additional % by fully using Taproot - Cette transaction utilise Taproot et a déjà économisé au moins  % sur les frais, mais pourrait économiser  % supplémentaires en utilisant pleinement Taproot + Cette transaction utilise Taproot et a déjà économisé au moins % sur les frais, mais pourrait économiser % supplémentaires en utilisant pleinement Taproot src/app/components/tx-features/tx-features.component.html 14 @@ -5431,7 +5578,7 @@ channels - canaux + canaux src/app/lightning/channel/channel-box/channel-box.component.html 79 @@ -5440,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5680,7 +5831,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5713,7 +5864,7 @@ Channel: - Canal : + Canal: src/app/lightning/channel/channel.component.ts 37 @@ -5821,7 +5972,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6139,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6619,19 +6774,23 @@ lightning.share - nodes - nœuds + nodes + nœuds src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6639,7 +6798,7 @@ Capacité de BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6757,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6879,7 +7038,7 @@ year - année + année src/app/shared/i18n/dates.ts 3 @@ -6887,7 +7046,7 @@ years - ans + ans src/app/shared/i18n/dates.ts 4 @@ -6895,7 +7054,7 @@ month - mois + mois src/app/shared/i18n/dates.ts 5 @@ -6903,7 +7062,7 @@ months - mois + mois src/app/shared/i18n/dates.ts 6 @@ -6911,7 +7070,7 @@ week - semaine + sem src/app/shared/i18n/dates.ts 7 @@ -6919,7 +7078,7 @@ weeks - semaines + sem src/app/shared/i18n/dates.ts 8 @@ -6927,7 +7086,7 @@ day - jour + jour src/app/shared/i18n/dates.ts 9 @@ -6935,7 +7094,7 @@ days - jours + jours src/app/shared/i18n/dates.ts 10 @@ -6943,7 +7102,7 @@ hour - heure + heure src/app/shared/i18n/dates.ts 11 @@ -6951,7 +7110,7 @@ hours - heures + heures src/app/shared/i18n/dates.ts 12 @@ -6959,7 +7118,7 @@ minute - minute + minute src/app/shared/i18n/dates.ts 13 @@ -6967,7 +7126,7 @@ minutes - minutes + minutes src/app/shared/i18n/dates.ts 14 @@ -6975,7 +7134,7 @@ second - seconde + seconde src/app/shared/i18n/dates.ts 15 @@ -6983,7 +7142,7 @@ seconds - secondes + secondes src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.he.xlf b/frontend/src/locale/messages.he.xlf index 3ab6c3305..a7e3962da 100644 --- a/frontend/src/locale/messages.he.xlf +++ b/frontend/src/locale/messages.he.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ בני ברית מהקהילה src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ מתרגמי הפרוייקט src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ תורמי הפרוייקט src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ חברי צוות הפרוייקט src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ מתחזקי הפרוייקט src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -3080,13 +3084,17 @@ Difficulty Adjustment התאמת קשי + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining נותרו - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks בלוקים - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block בלוק - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate הערכה - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous הקודם - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period מחזור נוכחי - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving חצייה הבאה - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) או כפול מהמינימום או בעמלת עדיפות נמוכה (הנמוך מבין השניים) @@ -3666,7 +3766,7 @@ סטטיסטיקת פרסים src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3675,7 +3775,7 @@ (144 בלוקים) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3684,7 +3784,7 @@ בלוקים אחרונים src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3697,7 +3797,7 @@ התאמות src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3706,7 +3806,7 @@ שדר טרנזקציה src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3880,9 +3980,8 @@ 58 - - blocks - בלוקים + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3891,6 +3990,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4363,40 +4497,28 @@ זה עתה src/app/components/time/time.component.ts - 78 + 79 ago לפני - - src/app/components/time/time.component.ts - 97 - - - src/app/components/time/time.component.ts - 98 - - - src/app/components/time/time.component.ts - 99 - - - src/app/components/time/time.component.ts - 100 - - - src/app/components/time/time.component.ts - 101 - - - src/app/components/time/time.component.ts - 102 - src/app/components/time/time.component.ts 103 + + src/app/components/time/time.component.ts + 104 + + + src/app/components/time/time.component.ts + 105 + + + src/app/components/time/time.component.ts + 106 + src/app/components/time/time.component.ts 107 @@ -4409,53 +4531,53 @@ src/app/components/time/time.component.ts 109 - - src/app/components/time/time.component.ts - 110 - - - src/app/components/time/time.component.ts - 111 - - - src/app/components/time/time.component.ts - 112 - src/app/components/time/time.component.ts 113 + + src/app/components/time/time.component.ts + 114 + + + src/app/components/time/time.component.ts + 115 + + + src/app/components/time/time.component.ts + 116 + + + src/app/components/time/time.component.ts + 117 + + + src/app/components/time/time.component.ts + 118 + + + src/app/components/time/time.component.ts + 119 + In ~ - - src/app/components/time/time.component.ts - 120 - - - src/app/components/time/time.component.ts - 121 - - - src/app/components/time/time.component.ts - 122 - - - src/app/components/time/time.component.ts - 123 - - - src/app/components/time/time.component.ts - 124 - - - src/app/components/time/time.component.ts - 125 - src/app/components/time/time.component.ts 126 + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + src/app/components/time/time.component.ts 130 @@ -4468,54 +4590,54 @@ src/app/components/time/time.component.ts 132 - - src/app/components/time/time.component.ts - 133 - - - src/app/components/time/time.component.ts - 134 - - - src/app/components/time/time.component.ts - 135 - src/app/components/time/time.component.ts 136 + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 + After לאחר - - src/app/components/time/time.component.ts - 143 - - - src/app/components/time/time.component.ts - 144 - - - src/app/components/time/time.component.ts - 145 - - - src/app/components/time/time.component.ts - 146 - - - src/app/components/time/time.component.ts - 147 - - - src/app/components/time/time.component.ts - 148 - src/app/components/time/time.component.ts 149 + + src/app/components/time/time.component.ts + 150 + + + src/app/components/time/time.component.ts + 151 + + + src/app/components/time/time.component.ts + 152 + src/app/components/time/time.component.ts 153 @@ -4528,22 +4650,34 @@ src/app/components/time/time.component.ts 155 - - src/app/components/time/time.component.ts - 156 - - - src/app/components/time/time.component.ts - 157 - - - src/app/components/time/time.component.ts - 158 - src/app/components/time/time.component.ts 159 + + src/app/components/time/time.component.ts + 160 + + + src/app/components/time/time.component.ts + 161 + + + src/app/components/time/time.component.ts + 162 + + + src/app/components/time/time.component.ts + 163 + + + src/app/components/time/time.component.ts + 164 + + + src/app/components/time/time.component.ts + 165 + This transaction has been replaced by: @@ -5426,6 +5560,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5665,7 +5803,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5806,7 +5944,7 @@ סאטושיז src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6120,6 +6258,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6589,19 +6731,22 @@ lightning.share - nodes - צמתים + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6609,7 +6754,7 @@ קיבולת ביטקוין src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6721,11 +6866,11 @@ ביטקוין src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.hi.xlf b/frontend/src/locale/messages.hi.xlf index 5eda29125..0bd98f80f 100644 --- a/frontend/src/locale/messages.hi.xlf +++ b/frontend/src/locale/messages.hi.xlf @@ -355,11 +355,11 @@ src/app/components/block/block.component.html - 290,291 + 310,311 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 26,27 + 46,47 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -380,11 +380,11 @@ src/app/components/block/block.component.html - 291,292 + 311,312 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 27,28 + 47,48 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -422,7 +422,7 @@ src/app/components/block/block.component.html - 40,41 + 38,39 block.hash @@ -447,7 +447,7 @@ src/app/components/block/block.component.html - 44,46 + 42,44 src/app/components/blocks-list/blocks-list.component.html @@ -590,11 +590,11 @@ src/app/components/master-page/master-page.component.html - 49,51 + 48,50 src/app/components/pool-ranking/pool-ranking.component.html - 94,96 + 94,95 @@ -745,11 +745,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -770,16 +770,24 @@ src/app/components/about/about.component.html - 385,389 + 391,394 + + + src/app/components/mining-dashboard/mining-dashboard.component.html + 87 src/app/dashboard/dashboard.component.html - 150,152 + 157,159 src/app/docs/docs/docs.component.html 51 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 97 + Terms of Service shared.terms-of-service @@ -790,14 +798,22 @@ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 113,120 + + src/app/components/mining-dashboard/mining-dashboard.component.html + 89 + src/app/dashboard/dashboard.component.html - 152,154 + 159,161 src/app/docs/docs/docs.component.html 53 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 99 + Privacy Policy shared.privacy-policy @@ -985,7 +1001,7 @@ src/app/dashboard/dashboard.component.html - 124,125 + 124,126 @@ -1033,7 +1049,7 @@ src/app/components/transaction/transaction.component.html - 158,160 + 152,154 src/app/components/transactions-list/transactions-list.component.html @@ -1049,11 +1065,11 @@ src/app/components/block/block.component.html - 246,247 + 252,253 src/app/components/transaction/transaction.component.html - 288,290 + 283,285 transaction.version @@ -1103,7 +1119,7 @@ src/app/components/transactions-list/transactions-list.component.html - 294,295 + 296,297 Transaction singular confirmation count shared.confirmation-count.singular @@ -1125,7 +1141,7 @@ src/app/components/transactions-list/transactions-list.component.html - 295,296 + 297,298 Transaction plural confirmation count shared.confirmation-count.plural @@ -1137,10 +1153,6 @@ src/app/bisq/bisq-transaction/bisq-transaction.component.html 43,45 - - src/app/components/transaction/transaction.component.html - 65,67 - Transaction included in block transaction.included-in-block @@ -1153,11 +1165,11 @@ src/app/components/transaction/transaction.component.html - 77,80 + 71,74 src/app/components/transaction/transaction.component.html - 135,138 + 129,132 Transaction features transaction.features @@ -1185,11 +1197,11 @@ src/app/components/transaction/transaction.component.html - 262,267 + 257,262 src/app/components/transaction/transaction.component.html - 406,412 + 401,407 transaction.details @@ -1206,11 +1218,11 @@ src/app/components/transaction/transaction.component.html - 249,253 + 244,248 src/app/components/transaction/transaction.component.html - 377,383 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1228,7 +1240,7 @@ src/app/components/transaction/transaction.component.ts - 241,240 + 246,245 @@ -1248,7 +1260,7 @@ src/app/components/transaction/transaction.component.html - 159,160 + 153,154 src/app/dashboard/dashboard.component.html @@ -1264,7 +1276,7 @@ src/app/components/transaction/transaction.component.html - 72,73 + 66,67 Transaction Confirmed state transaction.confirmed @@ -1434,7 +1446,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. src/app/components/about/about.component.html - 13,17 + 13,16 @@ -1442,7 +1454,7 @@ एंटरप्राइज़ प्रायोजक src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1451,7 +1463,7 @@ समुदाय प्रायोजक ❤️ src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart @@ -1459,7 +1471,7 @@ Community Integrations src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1468,7 +1480,7 @@ सामुदायिक गठबंधन src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1476,7 +1488,7 @@ Project Translators src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1485,7 +1497,7 @@ परियोजना योगदानकर्ता src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1494,7 +1506,7 @@ परियोजना सदस्य src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1503,7 +1515,7 @@ परियोजना अनुरक्षक src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1512,7 +1524,7 @@ विवरण src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -1524,7 +1536,7 @@ src/app/components/master-page/master-page.component.html - 58,61 + 57,60 @@ -1560,7 +1572,7 @@ src/app/components/amount/amount.component.html - 6,9 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -1576,7 +1588,7 @@ src/app/components/transactions-list/transactions-list.component.html - 302,304 + 304,306 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -1656,7 +1668,7 @@ src/app/components/assets/assets.component.html - 29,31 + 31,33 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -1875,7 +1887,7 @@ src/app/components/assets/assets.component.html - 30,31 + 32,33 Asset ticker header @@ -1888,7 +1900,7 @@ src/app/components/assets/assets.component.html - 31,34 + 33,36 Asset Issuer Domain header @@ -1901,7 +1913,7 @@ src/app/components/assets/assets.component.html - 32,36 + 34,38 Asset ID header @@ -1910,7 +1922,7 @@ एसेट डेटा लोड करने में गड़बड़ी. src/app/components/assets/assets.component.html - 48,53 + 50,55 Asset data load error @@ -2016,7 +2028,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2032,7 +2044,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 161 + 165 @@ -2047,7 +2059,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 163 + 167 @@ -2058,11 +2070,11 @@ src/app/components/block-fees-graph/block-fees-graph.component.ts - 62 + 67 src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2070,19 +2082,19 @@ Indexing blocks src/app/components/block-fees-graph/block-fees-graph.component.ts - 110,105 + 116,111 src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 108,103 + 113,108 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 115,110 + 116,111 src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2122,7 +2134,7 @@ src/app/components/transaction/transaction.component.html - 476 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2148,11 +2160,11 @@ src/app/components/transaction/transaction.component.html - 476,477 + 473 src/app/components/transactions-list/transactions-list.component.html - 286,287 + 288 sat shared.sat @@ -2166,11 +2178,11 @@ src/app/components/transaction/transaction.component.html - 161,165 + 155,159 src/app/components/transaction/transaction.component.html - 479,481 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2182,7 +2194,7 @@ src/app/lightning/channels-list/channels-list.component.html - 38,39 + 41,43 Transaction fee rate transaction.fee-rate @@ -2200,19 +2212,19 @@ src/app/components/block/block.component.html - 125,128 + 124,127 src/app/components/block/block.component.html - 129 + 128,130 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 12,14 + 19,22 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 15,17 + 30,33 src/app/components/fees-box/fees-box.component.html @@ -2252,27 +2264,27 @@ src/app/components/transaction/transaction.component.html - 173,174 + 167,168 src/app/components/transaction/transaction.component.html - 184,185 + 178,179 src/app/components/transaction/transaction.component.html - 195,196 + 189,190 src/app/components/transaction/transaction.component.html - 481,484 + 478,481 src/app/components/transaction/transaction.component.html - 492,494 + 489,491 src/app/components/transactions-list/transactions-list.component.html - 286 + 286,287 src/app/dashboard/dashboard.component.html @@ -2280,7 +2292,7 @@ src/app/dashboard/dashboard.component.html - 204,208 + 213,217 sat/vB shared.sat-vbyte @@ -2294,11 +2306,11 @@ src/app/components/transaction/transaction.component.html - 160,162 + 154,156 src/app/components/transaction/transaction.component.html - 274,277 + 269,272 Transaction Virtual Size transaction.vsize @@ -2367,7 +2379,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2401,11 +2413,11 @@ src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 60 + 65 src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2421,7 +2433,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2430,15 +2442,15 @@ साइज src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 180,179 + 184,183 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 226,224 + 239,237 src/app/components/block/block.component.html - 50,52 + 48,50 src/app/components/blocks-list/blocks-list.component.html @@ -2462,7 +2474,7 @@ src/app/components/transaction/transaction.component.html - 270,272 + 265,267 src/app/dashboard/dashboard.component.html @@ -2474,11 +2486,11 @@ वेइट src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 188,187 + 192,191 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 257,254 + 270,267 src/app/components/block/block-preview.component.html @@ -2486,11 +2498,22 @@ src/app/components/block/block.component.html - 54,56 + 52,54 src/app/components/transaction/transaction.component.html - 278,280 + 273,275 + + + + Size per weight + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 200,199 + + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 282,279 @@ -2505,14 +2528,6 @@ shared.block-title - - - - src/app/components/block/block-preview.component.html - 11,12 - - shared.block-title - Median fee औसत शुल्क @@ -2522,7 +2537,7 @@ src/app/components/block/block.component.html - 128,129 + 127,128 src/app/components/mempool-block/mempool-block.component.html @@ -2539,11 +2554,11 @@ src/app/components/block/block.component.html - 133,135 + 138,140 src/app/components/block/block.component.html - 159,162 + 164,167 src/app/components/mempool-block/mempool-block.component.html @@ -2561,7 +2576,7 @@ src/app/components/block/block.component.html - 168,170 + 173,175 block.miner @@ -2574,7 +2589,7 @@ src/app/components/block/block.component.ts - 227 + 242 @@ -2584,6 +2599,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2599,31 +2618,47 @@ Previous Block - - Block health + + Health src/app/components/block/block.component.html - 58,61 + 56 - block.health + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + latest-blocks.health Unknown src/app/components/block/block.component.html - 69,72 + 67,70 src/app/components/blocks-list/blocks-list.component.html 60,63 - src/app/lightning/node/node.component.html - 52,55 + src/app/components/pool-ranking/pool-ranking.component.html + 121,124 + + + src/app/lightning/channel/closing-type/closing-type.component.ts + 32 src/app/lightning/node/node.component.html - 96,100 + 55,58 + + + src/app/lightning/node/node.component.html + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2640,7 +2675,7 @@ फी स्पेन src/app/components/block/block.component.html - 124,125 + 123,124 src/app/components/mempool-block/mempool-block.component.html @@ -2653,7 +2688,7 @@ 140 वीबाइट्स के औसत नेटिव सेगविट लेनदेन के आधार पर src/app/components/block/block.component.html - 129,131 + 131,136 src/app/components/fees-box/fees-box.component.html @@ -2677,49 +2712,60 @@ Transaction fee tooltip - - Subsidy + fees: - सब्सिडी + शुल्क: + + Subsidy + fees src/app/components/block/block.component.html - 148,151 + 153,156 src/app/components/block/block.component.html - 163,167 + 168,172 Total subsidy and fees in a block block.subsidy-and-fees - - Projected + + Expected src/app/components/block/block.component.html - 210,212 + 216 - block.projected + block.expected + + + beta + + src/app/components/block/block.component.html + 216,217 + + + src/app/components/block/block.component.html + 222,224 + + beta Actual src/app/components/block/block.component.html - 212,216 + 218,222 block.actual - - Projected Block + + Expected Block src/app/components/block/block.component.html - 216,218 + 222 - block.projected-block + block.expected-block Actual Block src/app/components/block/block.component.html - 225,227 + 231 block.actual-block @@ -2728,7 +2774,7 @@ बिट्स src/app/components/block/block.component.html - 250,252 + 256,258 block.bits @@ -2737,7 +2783,7 @@ मर्कल रुट src/app/components/block/block.component.html - 254,256 + 260,262 block.merkle-root @@ -2746,7 +2792,7 @@ कठिनाई src/app/components/block/block.component.html - 265,268 + 271,274 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -2762,11 +2808,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2775,7 +2821,7 @@ नोन्स src/app/components/block/block.component.html - 269,271 + 275,277 block.nonce @@ -2784,32 +2830,41 @@ ब्लॉक हैडर हेक्स src/app/components/block/block.component.html - 273,274 + 279,280 block.header + + Audit + + src/app/components/block/block.component.html + 297,301 + + Toggle Audit + block.toggle-audit + Details विवरण src/app/components/block/block.component.html - 284,288 + 304,308 src/app/components/transaction/transaction.component.html - 254,259 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2818,20 +2873,16 @@ Error loading data. src/app/components/block/block.component.html - 303,305 + 323,325 src/app/components/block/block.component.html - 339,343 + 362,366 src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -2846,7 +2897,7 @@ Why is this block empty? src/app/components/block/block.component.html - 361,367 + 384,390 block.empty-block-explanation @@ -2891,18 +2942,6 @@ latest-blocks.mined - - Health - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - latest-blocks.health - Reward @@ -2964,7 +3003,7 @@ src/app/dashboard/dashboard.component.html - 210,214 + 219,223 dashboard.txs @@ -2995,13 +3034,17 @@ Difficulty Adjustment डिफीकल्टी एडजस्टमेंट + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3009,11 +3052,11 @@ Remaining बचा हुआ - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3021,11 +3064,11 @@ blocks - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3045,11 +3088,11 @@ block - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3062,11 +3105,11 @@ Estimate आकलन - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3075,20 +3118,24 @@ Previous पिछला - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period वर्तमान अवधि - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3096,11 +3143,99 @@ Next Halving - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) @@ -3190,7 +3325,7 @@ src/app/dashboard/dashboard.component.html - 237,238 + 246,247 dashboard.incoming-transactions @@ -3203,7 +3338,7 @@ src/app/dashboard/dashboard.component.html - 240,243 + 249,252 dashboard.backend-is-synchronizing @@ -3216,7 +3351,7 @@ src/app/dashboard/dashboard.component.html - 245,250 + 254,259 vB/s shared.vbytes-per-second @@ -3230,7 +3365,7 @@ src/app/dashboard/dashboard.component.html - 208,209 + 217,218 Unconfirmed count dashboard.unconfirmed @@ -3249,7 +3384,7 @@ Mining src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3257,7 +3392,7 @@ Pools Ranking src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3269,7 +3404,7 @@ Pools Dominance src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3281,7 +3416,7 @@ Hashrate & Difficulty src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3289,7 +3424,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3297,7 +3432,7 @@ Lightning Nodes Per Network src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3317,7 +3452,7 @@ Lightning Network Capacity src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3337,7 +3472,7 @@ Lightning Nodes Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3349,7 +3484,7 @@ Lightning Nodes Per Country src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3365,7 +3500,7 @@ Lightning Nodes World Map src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3381,7 +3516,7 @@ Lightning Nodes Channels World Map src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3401,11 +3536,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3433,11 +3568,11 @@ Hashrate (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3470,7 +3605,7 @@ src/app/components/master-page/master-page.component.html - 52,54 + 51,53 src/app/components/statistics/statistics.component.ts @@ -3494,7 +3629,7 @@ Lightning Explorer src/app/components/master-page/master-page.component.html - 44,45 + 44,47 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -3502,20 +3637,12 @@ master-page.lightning - - beta - - src/app/components/master-page/master-page.component.html - 45,48 - - beta - Documentation प्रलेखन src/app/components/master-page/master-page.component.html - 55,57 + 54,56 src/app/docs/docs/docs.component.html @@ -3559,7 +3686,7 @@ Reward stats src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3567,7 +3694,7 @@ (144 blocks) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3576,7 +3703,7 @@ नई ब्लॉक src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3588,10 +3715,36 @@ Adjustments src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments + + Broadcast Transaction + प्रसारण लेनदेन + + src/app/components/mining-dashboard/mining-dashboard.component.html + 91 + + + src/app/components/push-transaction/push-transaction.component.html + 2 + + + src/app/components/push-transaction/push-transaction.component.html + 8 + + + src/app/dashboard/dashboard.component.html + 161,169 + + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 102 + + Broadcast Transaction + shared.broadcast-transaction + Pools luck (1 week) @@ -3652,7 +3805,7 @@ src/app/components/pool-ranking/pool-ranking.component.html - 136,138 + 152,154 master-page.blocks @@ -3680,11 +3833,23 @@ mining.rank + + Avg Health + + src/app/components/pool-ranking/pool-ranking.component.html + 96,97 + + + src/app/components/pool-ranking/pool-ranking.component.html + 96,98 + + latest-blocks.avg_health + Empty blocks src/app/components/pool-ranking/pool-ranking.component.html - 95,98 + 97,100 mining.empty-blocks @@ -3692,7 +3857,7 @@ All miners src/app/components/pool-ranking/pool-ranking.component.html - 113,114 + 129,130 mining.all-miners @@ -3700,7 +3865,7 @@ Pools Luck (1w) src/app/components/pool-ranking/pool-ranking.component.html - 130,132 + 146,148 mining.miners-luck @@ -3708,7 +3873,7 @@ Pools Count (1w) src/app/components/pool-ranking/pool-ranking.component.html - 142,144 + 158,160 mining.miners-count @@ -3716,11 +3881,11 @@ Mining Pools src/app/components/pool-ranking/pool-ranking.component.ts - 57 + 58 - - blocks + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3729,6 +3894,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -3930,24 +4130,6 @@ latest-blocks.coinbasetag - - Broadcast Transaction - प्रसारण लेनदेन - - src/app/components/push-transaction/push-transaction.component.html - 2 - - - src/app/components/push-transaction/push-transaction.component.html - 8 - - - src/app/dashboard/dashboard.component.html - 154,161 - - Broadcast Transaction - shared.broadcast-transaction - Transaction hex @@ -3956,7 +4138,7 @@ src/app/components/transaction/transaction.component.html - 296,297 + 291,292 transaction.hex @@ -4071,6 +4253,70 @@ search-form.search-title + + Bitcoin Block Height + + src/app/components/search-form/search-results/search-results.component.html + 3 + + search.bitcoin-block-height + + + Bitcoin Transaction + + src/app/components/search-form/search-results/search-results.component.html + 9 + + search.bitcoin-transaction + + + Bitcoin Address + + src/app/components/search-form/search-results/search-results.component.html + 15 + + search.bitcoin-address + + + Bitcoin Block + + src/app/components/search-form/search-results/search-results.component.html + 21 + + search.bitcoin-block + + + Bitcoin Addresses + + src/app/components/search-form/search-results/search-results.component.html + 27 + + search.bitcoin-addresses + + + Lightning Nodes + + src/app/components/search-form/search-results/search-results.component.html + 35 + + search.lightning-nodes + + + Lightning Channels + + src/app/components/search-form/search-results/search-results.component.html + 43 + + search.lightning-channels + + + Go to "" + + src/app/components/search-form/search-results/search-results.component.html + 52 + + search.go-to + Mempool by vBytes (sat/vByte) vBytes द्वारा मेमपूल (sat/vByte) @@ -4098,7 +4344,7 @@ फ़िल्टर src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4107,7 +4353,7 @@ उल्टे src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4116,7 +4362,7 @@ लेनदेन vBytes प्रति सेकंड (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4124,196 +4370,187 @@ Just now अभी - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago पहले - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After . के बाद - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - ~ . में - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4353,7 +4590,7 @@ src/app/components/transactions-list/transactions-list.component.html - 298,301 + 300,303 Transaction unconfirmed state transaction.unconfirmed @@ -4363,11 +4600,11 @@ प्रथम देखा src/app/components/transaction/transaction.component.html - 108,109 + 102,103 src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4383,11 +4620,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4397,7 +4634,7 @@ इटीए src/app/components/transaction/transaction.component.html - 115,116 + 109,110 Transaction ETA transaction.eta @@ -4407,7 +4644,7 @@ कई घंटों में (या अधिक) src/app/components/transaction/transaction.component.html - 121,124 + 115,118 Transaction ETA in several hours or more transaction.eta.in-several-hours @@ -4417,11 +4654,11 @@ वंशज src/app/components/transaction/transaction.component.html - 168,170 + 162,164 src/app/components/transaction/transaction.component.html - 179,181 + 173,175 Descendant transaction.descendant @@ -4431,7 +4668,7 @@ पूर्वज src/app/components/transaction/transaction.component.html - 190,192 + 184,186 Transaction Ancestor transaction.ancestor @@ -4440,11 +4677,11 @@ Flow src/app/components/transaction/transaction.component.html - 208,211 + 202,205 src/app/components/transaction/transaction.component.html - 346,350 + 341,345 Transaction flow transaction.flow @@ -4453,7 +4690,7 @@ Hide diagram src/app/components/transaction/transaction.component.html - 211,216 + 205,210 hide-diagram @@ -4461,7 +4698,7 @@ Show more src/app/components/transaction/transaction.component.html - 231,233 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4477,7 +4714,7 @@ Show less src/app/components/transaction/transaction.component.html - 233,239 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4489,7 +4726,7 @@ Show diagram src/app/components/transaction/transaction.component.html - 253,254 + 248,249 show-diagram @@ -4498,7 +4735,7 @@ लॉकटाइम src/app/components/transaction/transaction.component.html - 292,294 + 287,289 transaction.locktime @@ -4507,7 +4744,7 @@ ट्रांसेक्शन नहीं मिला। src/app/components/transaction/transaction.component.html - 455,456 + 450,451 transaction.error.transaction-not-found @@ -4516,7 +4753,7 @@ मेमपूल में इसके प्रकट होने की प्रतीक्षा की जा रही है... src/app/components/transaction/transaction.component.html - 456,461 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4525,7 +4762,7 @@ प्रभावी शुल्क दर src/app/components/transaction/transaction.component.html - 489,492 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4672,7 +4909,7 @@ Show more inputs to reveal fee data src/app/components/transactions-list/transactions-list.component.html - 288,291 + 290,293 transactions-list.load-to-reveal-fee-info @@ -4680,7 +4917,7 @@ remaining src/app/components/transactions-list/transactions-list.component.html - 330,331 + 332,333 x-remaining @@ -4918,21 +5155,12 @@ dashboard.latest-transactions - - USD - USD - - src/app/dashboard/dashboard.component.html - 126,127 - - dashboard.latest-transactions.USD - Minimum fee न्यूनतम शुल्क src/app/dashboard/dashboard.component.html - 201,202 + 210,211 Minimum mempool fee dashboard.minimum-fee @@ -4942,7 +5170,7 @@ पर्जिंग src/app/dashboard/dashboard.component.html - 202,203 + 211,212 Purgin below fee dashboard.purging @@ -4952,7 +5180,7 @@ मेमोरी उपयोग src/app/dashboard/dashboard.component.html - 214,215 + 223,224 Memory usage dashboard.memory-usage @@ -4962,15 +5190,27 @@ प्रचलन में एल-बीटीसी src/app/dashboard/dashboard.component.html - 228,230 + 237,239 dashboard.lbtc-pegs-in-circulation + + mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + + src/app/docs/api-docs/api-docs.component.html + 13 + + + src/app/docs/api-docs/api-docs.component.html + 14 + + faq.big-disclaimer + REST API service src/app/docs/api-docs/api-docs.component.html - 39,40 + 42,43 api-docs.title @@ -4979,11 +5219,11 @@ ैंडपॉइन्ट src/app/docs/api-docs/api-docs.component.html - 48,49 + 51,52 src/app/docs/api-docs/api-docs.component.html - 102,105 + 105,108 Api docs endpoint @@ -4992,11 +5232,11 @@ विवरण src/app/docs/api-docs/api-docs.component.html - 67,68 + 70,71 src/app/docs/api-docs/api-docs.component.html - 106,107 + 109,110 @@ -5004,7 +5244,7 @@ डिफ़ॉल्ट पुश: क्रिया: 'चाहते हैं', डेटा: ['ब्लॉक', ...] जो आप चाहते हैं उसे व्यक्त करने के लिए धक्का दिया। उपलब्ध: ब्लॉक, मेमपूल-ब्लॉक, लाइव-2h-चार्ट, और आँकड़े। पते से संबंधित लेनदेन को पुश करें: 'ट्रैक-एड्रेस': '3PbJ...bF9B' इनपुट या आउटपुट के रूप में उस पते वाले सभी नए लेनदेन प्राप्त करने के लिए। लेन-देन की एक सरणी देता है। नए मेमपूल लेनदेन के लिए पता-लेनदेन, और नए ब्लॉक की पुष्टि लेनदेन के लिए ब्लॉक-लेनदेन। src/app/docs/api-docs/api-docs.component.html - 107,108 + 110,111 api-docs.websocket.websocket @@ -5098,7 +5338,7 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats @@ -5166,7 +5406,11 @@ src/app/lightning/channels-list/channels-list.component.html - 120,121 + 123,124 + + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 lightning.x-channels @@ -5204,11 +5448,11 @@ src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html - 65,66 + 68,69 status.inactive @@ -5220,11 +5464,11 @@ src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html - 66,68 + 69,71 status.active @@ -5236,7 +5480,7 @@ src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5244,7 +5488,7 @@ src/app/lightning/channels-list/channels-list.component.html - 68,70 + 71,73 status.closed @@ -5256,7 +5500,7 @@ src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created @@ -5268,11 +5512,19 @@ src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html - 40,43 + 43,46 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 src/app/lightning/node-statistics/node-statistics.component.html @@ -5280,7 +5532,7 @@ src/app/lightning/node-statistics/node-statistics.component.html - 47,50 + 46,49 src/app/lightning/nodes-list/nodes-list.component.html @@ -5302,6 +5554,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5336,11 +5592,11 @@ Lightning channel src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel @@ -5348,11 +5604,11 @@ Last update src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5368,11 +5624,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update @@ -5380,11 +5636,11 @@ Closing date src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 39,40 + 42,44 lightning.closing_date @@ -5392,7 +5648,7 @@ Closed by src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by @@ -5400,7 +5656,7 @@ Opening transaction src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction @@ -5408,7 +5664,7 @@ Closing transaction src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction @@ -5419,6 +5675,27 @@ 37 + + Mutually closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 20 + + + + Force closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 24 + + + + Force closed with penalty + + src/app/lightning/channel/closing-type/closing-type.component.ts + 28 + + Open @@ -5431,7 +5708,7 @@ No channels to display src/app/lightning/channels-list/channels-list.component.html - 29,35 + 29,37 lightning.empty-channels-list @@ -5439,7 +5716,7 @@ Alias src/app/lightning/channels-list/channels-list.component.html - 35,37 + 38,40 src/app/lightning/group/group.component.html @@ -5463,11 +5740,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias @@ -5475,7 +5752,7 @@ Status src/app/lightning/channels-list/channels-list.component.html - 37,38 + 40,41 status @@ -5483,7 +5760,7 @@ Channel ID src/app/lightning/channels-list/channels-list.component.html - 41,45 + 44,48 channels.id @@ -5491,11 +5768,11 @@ sats src/app/lightning/channels-list/channels-list.component.html - 60,64 + 63,68 src/app/lightning/channels-list/channels-list.component.html - 84,88 + 87,91 src/app/lightning/channels-statistics/channels-statistics.component.html @@ -5539,6 +5816,22 @@ shared.sats + + avg + + src/app/lightning/channels-statistics/channels-statistics.component.html + 3,5 + + statistics.average-small + + + med + + src/app/lightning/channels-statistics/channels-statistics.component.html + 6,9 + + statistics.median-small + Avg Capacity @@ -5655,11 +5948,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 17,18 + 16,17 src/app/lightning/node-statistics/node-statistics.component.html - 54,57 + 53,56 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -5707,10 +6000,6 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity @@ -5726,12 +6015,20 @@ 40,44 - src/app/lightning/node-statistics/node-statistics.component.html - 29,30 + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 src/app/lightning/node-statistics/node-statistics.component.html - 61,64 + 28,29 + + + src/app/lightning/node-statistics/node-statistics.component.html + 60,63 src/app/lightning/nodes-list/nodes-list.component.html @@ -5763,16 +6060,20 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -5803,7 +6104,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5819,11 +6120,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location @@ -5857,9 +6158,17 @@ src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -5887,6 +6196,28 @@ lightning.node-fee-distribution + + Outgoing Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 170 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 208 + + + + Incoming Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 178 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 222 + + Percentage change past week @@ -5895,11 +6226,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 18,20 + 17,19 src/app/lightning/node-statistics/node-statistics.component.html - 30,32 + 29,31 mining.percentage-change-last-week @@ -5911,11 +6242,11 @@ src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node @@ -5927,7 +6258,7 @@ src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity @@ -5939,7 +6270,7 @@ src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels @@ -5951,19 +6282,11 @@ country - - No node found for public key "" - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg @@ -5971,7 +6294,7 @@ Avg channel distance src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance @@ -5979,7 +6302,7 @@ Color src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color @@ -5987,7 +6310,7 @@ ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -5999,7 +6322,7 @@ Exclusively on Tor src/app/lightning/node/node.component.html - 93,95 + 96,98 tor @@ -6007,7 +6330,7 @@ Liquidity ad src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad @@ -6015,7 +6338,7 @@ Lease fee rate src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate @@ -6024,7 +6347,7 @@ Lease base fee src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee @@ -6032,7 +6355,7 @@ Funding weight src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight @@ -6040,7 +6363,7 @@ Channel fee rate src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate @@ -6049,7 +6372,7 @@ Channel base fee src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee @@ -6057,7 +6380,7 @@ Compact lease src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease @@ -6065,7 +6388,7 @@ TLV extension records src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records @@ -6073,7 +6396,7 @@ Open channels src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels @@ -6081,7 +6404,7 @@ Closed channels src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels @@ -6123,7 +6446,7 @@ No geolocation data available src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 218,213 + 219,214 @@ -6145,8 +6468,8 @@ 112,107 - - Reachable on Clearnet Only + + Clearnet and Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6156,8 +6479,8 @@ 303,302 - - Reachable on Clearnet and Darknet + + Clearnet Only (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6167,8 +6490,8 @@ 295,294 - - Reachable on Darknet Only + + Darknet Only (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6191,25 +6514,29 @@ lightning.share - nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6315,11 +6642,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6400,22 +6727,6 @@ 27 - - Top 100 nodes liquidity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes diff --git a/frontend/src/locale/messages.hr.xlf b/frontend/src/locale/messages.hr.xlf index 4b0691fe3..4d6ea4e03 100644 --- a/frontend/src/locale/messages.hr.xlf +++ b/frontend/src/locale/messages.hr.xlf @@ -322,11 +322,11 @@ src/app/components/block/block.component.html - 290,291 + 310,311 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 26,27 + 46,47 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -346,11 +346,11 @@ src/app/components/block/block.component.html - 291,292 + 311,312 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 27,28 + 47,48 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -385,7 +385,7 @@ src/app/components/block/block.component.html - 40,41 + 38,39 block.hash @@ -409,7 +409,7 @@ src/app/components/block/block.component.html - 44,46 + 42,44 src/app/components/blocks-list/blocks-list.component.html @@ -545,11 +545,11 @@ src/app/components/master-page/master-page.component.html - 49,51 + 48,50 src/app/components/pool-ranking/pool-ranking.component.html - 94,96 + 94,95 @@ -690,11 +690,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -714,16 +714,24 @@ src/app/components/about/about.component.html - 385,389 + 391,394 + + + src/app/components/mining-dashboard/mining-dashboard.component.html + 87 src/app/dashboard/dashboard.component.html - 150,152 + 157,159 src/app/docs/docs/docs.component.html 51 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 97 + Terms of Service shared.terms-of-service @@ -733,14 +741,22 @@ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 113,120 + + src/app/components/mining-dashboard/mining-dashboard.component.html + 89 + src/app/dashboard/dashboard.component.html - 152,154 + 159,161 src/app/docs/docs/docs.component.html 53 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 99 + Privacy Policy shared.privacy-policy @@ -915,7 +931,7 @@ src/app/dashboard/dashboard.component.html - 124,125 + 124,126 @@ -959,7 +975,7 @@ src/app/components/transaction/transaction.component.html - 158,160 + 152,154 src/app/components/transactions-list/transactions-list.component.html @@ -974,11 +990,11 @@ src/app/components/block/block.component.html - 246,247 + 252,253 src/app/components/transaction/transaction.component.html - 288,290 + 283,285 transaction.version @@ -1027,7 +1043,7 @@ src/app/components/transactions-list/transactions-list.component.html - 294,295 + 296,297 Transaction singular confirmation count shared.confirmation-count.singular @@ -1048,7 +1064,7 @@ src/app/components/transactions-list/transactions-list.component.html - 295,296 + 297,298 Transaction plural confirmation count shared.confirmation-count.plural @@ -1060,10 +1076,6 @@ src/app/bisq/bisq-transaction/bisq-transaction.component.html 43,45 - - src/app/components/transaction/transaction.component.html - 65,67 - Transaction included in block transaction.included-in-block @@ -1075,11 +1087,11 @@ src/app/components/transaction/transaction.component.html - 77,80 + 71,74 src/app/components/transaction/transaction.component.html - 135,138 + 129,132 Transaction features transaction.features @@ -1107,11 +1119,11 @@ src/app/components/transaction/transaction.component.html - 262,267 + 257,262 src/app/components/transaction/transaction.component.html - 406,412 + 401,407 transaction.details @@ -1128,11 +1140,11 @@ src/app/components/transaction/transaction.component.html - 249,253 + 244,248 src/app/components/transaction/transaction.component.html - 377,383 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1149,7 +1161,7 @@ src/app/components/transaction/transaction.component.ts - 241,240 + 246,245 @@ -1167,7 +1179,7 @@ src/app/components/transaction/transaction.component.html - 159,160 + 153,154 src/app/dashboard/dashboard.component.html @@ -1183,7 +1195,7 @@ src/app/components/transaction/transaction.component.html - 72,73 + 66,67 Transaction Confirmed state transaction.confirmed @@ -1334,14 +1346,14 @@ 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. src/app/components/about/about.component.html - 13,17 + 13,16 Enterprise Sponsors 🚀 src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1349,7 +1361,7 @@ Community Sponsors ❤️ src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart @@ -1357,7 +1369,7 @@ Community Integrations src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1365,7 +1377,7 @@ Community Alliances src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1373,7 +1385,7 @@ Project Translators src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1381,7 +1393,7 @@ Project Contributors src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1389,7 +1401,7 @@ Project Members src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1397,7 +1409,7 @@ Project Maintainers src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1405,7 +1417,7 @@ About src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -1417,7 +1429,7 @@ src/app/components/master-page/master-page.component.html - 58,61 + 57,60 @@ -1451,7 +1463,7 @@ src/app/components/amount/amount.component.html - 6,9 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -1467,7 +1479,7 @@ src/app/components/transactions-list/transactions-list.component.html - 302,304 + 304,306 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -1543,7 +1555,7 @@ src/app/components/assets/assets.component.html - 29,31 + 31,33 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -1746,7 +1758,7 @@ src/app/components/assets/assets.component.html - 30,31 + 32,33 Asset ticker header @@ -1758,7 +1770,7 @@ src/app/components/assets/assets.component.html - 31,34 + 33,36 Asset Issuer Domain header @@ -1770,7 +1782,7 @@ src/app/components/assets/assets.component.html - 32,36 + 34,38 Asset ID header @@ -1778,7 +1790,7 @@ Error loading assets data. src/app/components/assets/assets.component.html - 48,53 + 50,55 Asset data load error @@ -1878,7 +1890,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -1894,7 +1906,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 161 + 165 @@ -1909,7 +1921,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 163 + 167 @@ -1920,11 +1932,11 @@ src/app/components/block-fees-graph/block-fees-graph.component.ts - 62 + 67 src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -1932,19 +1944,19 @@ Indexing blocks src/app/components/block-fees-graph/block-fees-graph.component.ts - 110,105 + 116,111 src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 108,103 + 113,108 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 115,110 + 116,111 src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -1984,7 +1996,7 @@ src/app/components/transaction/transaction.component.html - 476 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2009,11 +2021,11 @@ src/app/components/transaction/transaction.component.html - 476,477 + 473 src/app/components/transactions-list/transactions-list.component.html - 286,287 + 288 sat shared.sat @@ -2026,11 +2038,11 @@ src/app/components/transaction/transaction.component.html - 161,165 + 155,159 src/app/components/transaction/transaction.component.html - 479,481 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2042,7 +2054,7 @@ src/app/lightning/channels-list/channels-list.component.html - 38,39 + 41,43 Transaction fee rate transaction.fee-rate @@ -2060,19 +2072,19 @@ src/app/components/block/block.component.html - 125,128 + 124,127 src/app/components/block/block.component.html - 129 + 128,130 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 12,14 + 19,22 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 15,17 + 30,33 src/app/components/fees-box/fees-box.component.html @@ -2112,27 +2124,27 @@ src/app/components/transaction/transaction.component.html - 173,174 + 167,168 src/app/components/transaction/transaction.component.html - 184,185 + 178,179 src/app/components/transaction/transaction.component.html - 195,196 + 189,190 src/app/components/transaction/transaction.component.html - 481,484 + 478,481 src/app/components/transaction/transaction.component.html - 492,494 + 489,491 src/app/components/transactions-list/transactions-list.component.html - 286 + 286,287 src/app/dashboard/dashboard.component.html @@ -2140,7 +2152,7 @@ src/app/dashboard/dashboard.component.html - 204,208 + 213,217 sat/vB shared.sat-vbyte @@ -2154,11 +2166,11 @@ src/app/components/transaction/transaction.component.html - 160,162 + 154,156 src/app/components/transaction/transaction.component.html - 274,277 + 269,272 Transaction Virtual Size transaction.vsize @@ -2227,7 +2239,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2261,11 +2273,11 @@ src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 60 + 65 src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2281,7 +2293,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2289,15 +2301,15 @@ Size src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 180,179 + 184,183 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 226,224 + 239,237 src/app/components/block/block.component.html - 50,52 + 48,50 src/app/components/blocks-list/blocks-list.component.html @@ -2321,7 +2333,7 @@ src/app/components/transaction/transaction.component.html - 270,272 + 265,267 src/app/dashboard/dashboard.component.html @@ -2332,11 +2344,11 @@ Weight src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 188,187 + 192,191 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 257,254 + 270,267 src/app/components/block/block-preview.component.html @@ -2344,11 +2356,22 @@ src/app/components/block/block.component.html - 54,56 + 52,54 src/app/components/transaction/transaction.component.html - 278,280 + 273,275 + + + + Size per weight + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 200,199 + + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 282,279 @@ -2363,14 +2386,6 @@ shared.block-title - - - - src/app/components/block/block-preview.component.html - 11,12 - - shared.block-title - Median fee @@ -2379,7 +2394,7 @@ src/app/components/block/block.component.html - 128,129 + 127,128 src/app/components/mempool-block/mempool-block.component.html @@ -2395,11 +2410,11 @@ src/app/components/block/block.component.html - 133,135 + 138,140 src/app/components/block/block.component.html - 159,162 + 164,167 src/app/components/mempool-block/mempool-block.component.html @@ -2416,7 +2431,7 @@ src/app/components/block/block.component.html - 168,170 + 173,175 block.miner @@ -2428,7 +2443,7 @@ src/app/components/block/block.component.ts - 227 + 242 @@ -2437,6 +2452,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2451,31 +2470,47 @@ Previous Block - - Block health + + Health src/app/components/block/block.component.html - 58,61 + 56 - block.health + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + latest-blocks.health Unknown src/app/components/block/block.component.html - 69,72 + 67,70 src/app/components/blocks-list/blocks-list.component.html 60,63 - src/app/lightning/node/node.component.html - 52,55 + src/app/components/pool-ranking/pool-ranking.component.html + 121,124 + + + src/app/lightning/channel/closing-type/closing-type.component.ts + 32 src/app/lightning/node/node.component.html - 96,100 + 55,58 + + + src/app/lightning/node/node.component.html + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2491,7 +2526,7 @@ Fee span src/app/components/block/block.component.html - 124,125 + 123,124 src/app/components/mempool-block/mempool-block.component.html @@ -2503,7 +2538,7 @@ Based on average native segwit transaction of 140 vBytes src/app/components/block/block.component.html - 129,131 + 131,136 src/app/components/fees-box/fees-box.component.html @@ -2527,48 +2562,60 @@ Transaction fee tooltip - - Subsidy + fees: + + Subsidy + fees src/app/components/block/block.component.html - 148,151 + 153,156 src/app/components/block/block.component.html - 163,167 + 168,172 Total subsidy and fees in a block block.subsidy-and-fees - - Projected + + Expected src/app/components/block/block.component.html - 210,212 + 216 - block.projected + block.expected + + + beta + + src/app/components/block/block.component.html + 216,217 + + + src/app/components/block/block.component.html + 222,224 + + beta Actual src/app/components/block/block.component.html - 212,216 + 218,222 block.actual - - Projected Block + + Expected Block src/app/components/block/block.component.html - 216,218 + 222 - block.projected-block + block.expected-block Actual Block src/app/components/block/block.component.html - 225,227 + 231 block.actual-block @@ -2576,7 +2623,7 @@ Bits src/app/components/block/block.component.html - 250,252 + 256,258 block.bits @@ -2584,7 +2631,7 @@ Merkle root src/app/components/block/block.component.html - 254,256 + 260,262 block.merkle-root @@ -2592,7 +2639,7 @@ Difficulty src/app/components/block/block.component.html - 265,268 + 271,274 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -2608,11 +2655,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2620,7 +2667,7 @@ Nonce src/app/components/block/block.component.html - 269,271 + 275,277 block.nonce @@ -2628,32 +2675,41 @@ Block Header Hex src/app/components/block/block.component.html - 273,274 + 279,280 block.header + + Audit + + src/app/components/block/block.component.html + 297,301 + + Toggle Audit + block.toggle-audit + Details Detalji src/app/components/block/block.component.html - 284,288 + 304,308 src/app/components/transaction/transaction.component.html - 254,259 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2662,20 +2718,16 @@ Error loading data. src/app/components/block/block.component.html - 303,305 + 323,325 src/app/components/block/block.component.html - 339,343 + 362,366 src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -2690,7 +2742,7 @@ Why is this block empty? src/app/components/block/block.component.html - 361,367 + 384,390 block.empty-block-explanation @@ -2734,18 +2786,6 @@ latest-blocks.mined - - Health - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - latest-blocks.health - Reward @@ -2806,7 +2846,7 @@ src/app/dashboard/dashboard.component.html - 210,214 + 219,223 dashboard.txs @@ -2835,24 +2875,28 @@ Difficulty Adjustment + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment Remaining - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -2860,11 +2904,11 @@ blocks - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -2884,11 +2928,11 @@ block - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -2900,11 +2944,11 @@ Estimate - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -2912,19 +2956,23 @@ Previous - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -2932,11 +2980,99 @@ Next Halving - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) @@ -3025,7 +3161,7 @@ src/app/dashboard/dashboard.component.html - 237,238 + 246,247 dashboard.incoming-transactions @@ -3037,7 +3173,7 @@ src/app/dashboard/dashboard.component.html - 240,243 + 249,252 dashboard.backend-is-synchronizing @@ -3049,7 +3185,7 @@ src/app/dashboard/dashboard.component.html - 245,250 + 254,259 vB/s shared.vbytes-per-second @@ -3062,7 +3198,7 @@ src/app/dashboard/dashboard.component.html - 208,209 + 217,218 Unconfirmed count dashboard.unconfirmed @@ -3080,7 +3216,7 @@ Mining src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3088,7 +3224,7 @@ Pools Ranking src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3100,7 +3236,7 @@ Pools Dominance src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3112,7 +3248,7 @@ Hashrate & Difficulty src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3120,7 +3256,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3128,7 +3264,7 @@ Lightning Nodes Per Network src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3148,7 +3284,7 @@ Lightning Network Capacity src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3168,7 +3304,7 @@ Lightning Nodes Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3180,7 +3316,7 @@ Lightning Nodes Per Country src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3196,7 +3332,7 @@ Lightning Nodes World Map src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3212,7 +3348,7 @@ Lightning Nodes Channels World Map src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3232,11 +3368,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3264,11 +3400,11 @@ Hashrate (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3300,7 +3436,7 @@ src/app/components/master-page/master-page.component.html - 52,54 + 51,53 src/app/components/statistics/statistics.component.ts @@ -3324,7 +3460,7 @@ Lightning Explorer src/app/components/master-page/master-page.component.html - 44,45 + 44,47 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -3332,19 +3468,11 @@ master-page.lightning - - beta - - src/app/components/master-page/master-page.component.html - 45,48 - - beta - Documentation src/app/components/master-page/master-page.component.html - 55,57 + 54,56 src/app/docs/docs/docs.component.html @@ -3384,7 +3512,7 @@ Reward stats src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3392,7 +3520,7 @@ (144 blocks) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3400,7 +3528,7 @@ Latest blocks src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3412,10 +3540,35 @@ Adjustments src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments + + Broadcast Transaction + + src/app/components/mining-dashboard/mining-dashboard.component.html + 91 + + + src/app/components/push-transaction/push-transaction.component.html + 2 + + + src/app/components/push-transaction/push-transaction.component.html + 8 + + + src/app/dashboard/dashboard.component.html + 161,169 + + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 102 + + Broadcast Transaction + shared.broadcast-transaction + Pools luck (1 week) @@ -3476,7 +3629,7 @@ src/app/components/pool-ranking/pool-ranking.component.html - 136,138 + 152,154 master-page.blocks @@ -3504,11 +3657,23 @@ mining.rank + + Avg Health + + src/app/components/pool-ranking/pool-ranking.component.html + 96,97 + + + src/app/components/pool-ranking/pool-ranking.component.html + 96,98 + + latest-blocks.avg_health + Empty blocks src/app/components/pool-ranking/pool-ranking.component.html - 95,98 + 97,100 mining.empty-blocks @@ -3516,7 +3681,7 @@ All miners src/app/components/pool-ranking/pool-ranking.component.html - 113,114 + 129,130 mining.all-miners @@ -3524,7 +3689,7 @@ Pools Luck (1w) src/app/components/pool-ranking/pool-ranking.component.html - 130,132 + 146,148 mining.miners-luck @@ -3532,7 +3697,7 @@ Pools Count (1w) src/app/components/pool-ranking/pool-ranking.component.html - 142,144 + 158,160 mining.miners-count @@ -3540,11 +3705,11 @@ Mining Pools src/app/components/pool-ranking/pool-ranking.component.ts - 57 + 58 - - blocks + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3553,6 +3718,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -3754,23 +3954,6 @@ latest-blocks.coinbasetag - - Broadcast Transaction - - src/app/components/push-transaction/push-transaction.component.html - 2 - - - src/app/components/push-transaction/push-transaction.component.html - 8 - - - src/app/dashboard/dashboard.component.html - 154,161 - - Broadcast Transaction - shared.broadcast-transaction - Transaction hex @@ -3779,7 +3962,7 @@ src/app/components/transaction/transaction.component.html - 296,297 + 291,292 transaction.hex @@ -3893,6 +4076,70 @@ search-form.search-title + + Bitcoin Block Height + + src/app/components/search-form/search-results/search-results.component.html + 3 + + search.bitcoin-block-height + + + Bitcoin Transaction + + src/app/components/search-form/search-results/search-results.component.html + 9 + + search.bitcoin-transaction + + + Bitcoin Address + + src/app/components/search-form/search-results/search-results.component.html + 15 + + search.bitcoin-address + + + Bitcoin Block + + src/app/components/search-form/search-results/search-results.component.html + 21 + + search.bitcoin-block + + + Bitcoin Addresses + + src/app/components/search-form/search-results/search-results.component.html + 27 + + search.bitcoin-addresses + + + Lightning Nodes + + src/app/components/search-form/search-results/search-results.component.html + 35 + + search.lightning-nodes + + + Lightning Channels + + src/app/components/search-form/search-results/search-results.component.html + 43 + + search.lightning-channels + + + Go to "" + + src/app/components/search-form/search-results/search-results.component.html + 52 + + search.go-to + Mempool by vBytes (sat/vByte) @@ -3917,7 +4164,7 @@ Filter src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -3925,7 +4172,7 @@ Invert src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -3933,200 +4180,192 @@ Transaction vBytes per second (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second Just now - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4166,7 +4405,7 @@ src/app/components/transactions-list/transactions-list.component.html - 298,301 + 300,303 Transaction unconfirmed state transaction.unconfirmed @@ -4176,11 +4415,11 @@ Prvo viđeno src/app/components/transaction/transaction.component.html - 108,109 + 102,103 src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4196,11 +4435,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4209,7 +4448,7 @@ ETA src/app/components/transaction/transaction.component.html - 115,116 + 109,110 Transaction ETA transaction.eta @@ -4218,7 +4457,7 @@ In several hours (or more) src/app/components/transaction/transaction.component.html - 121,124 + 115,118 Transaction ETA in several hours or more transaction.eta.in-several-hours @@ -4227,11 +4466,11 @@ Descendant src/app/components/transaction/transaction.component.html - 168,170 + 162,164 src/app/components/transaction/transaction.component.html - 179,181 + 173,175 Descendant transaction.descendant @@ -4240,7 +4479,7 @@ Ancestor src/app/components/transaction/transaction.component.html - 190,192 + 184,186 Transaction Ancestor transaction.ancestor @@ -4249,11 +4488,11 @@ Flow src/app/components/transaction/transaction.component.html - 208,211 + 202,205 src/app/components/transaction/transaction.component.html - 346,350 + 341,345 Transaction flow transaction.flow @@ -4262,7 +4501,7 @@ Hide diagram src/app/components/transaction/transaction.component.html - 211,216 + 205,210 hide-diagram @@ -4270,7 +4509,7 @@ Show more src/app/components/transaction/transaction.component.html - 231,233 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4286,7 +4525,7 @@ Show less src/app/components/transaction/transaction.component.html - 233,239 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4298,7 +4537,7 @@ Show diagram src/app/components/transaction/transaction.component.html - 253,254 + 248,249 show-diagram @@ -4306,7 +4545,7 @@ Locktime src/app/components/transaction/transaction.component.html - 292,294 + 287,289 transaction.locktime @@ -4314,7 +4553,7 @@ Transaction not found. src/app/components/transaction/transaction.component.html - 455,456 + 450,451 transaction.error.transaction-not-found @@ -4322,7 +4561,7 @@ Waiting for it to appear in the mempool... src/app/components/transaction/transaction.component.html - 456,461 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4330,7 +4569,7 @@ Effective fee rate src/app/components/transaction/transaction.component.html - 489,492 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4463,7 +4702,7 @@ Show more inputs to reveal fee data src/app/components/transactions-list/transactions-list.component.html - 288,291 + 290,293 transactions-list.load-to-reveal-fee-info @@ -4471,7 +4710,7 @@ remaining src/app/components/transactions-list/transactions-list.component.html - 330,331 + 332,333 x-remaining @@ -4700,19 +4939,11 @@ dashboard.latest-transactions - - USD - - src/app/dashboard/dashboard.component.html - 126,127 - - dashboard.latest-transactions.USD - Minimum fee src/app/dashboard/dashboard.component.html - 201,202 + 210,211 Minimum mempool fee dashboard.minimum-fee @@ -4721,7 +4952,7 @@ Purging src/app/dashboard/dashboard.component.html - 202,203 + 211,212 Purgin below fee dashboard.purging @@ -4730,7 +4961,7 @@ Memory usage src/app/dashboard/dashboard.component.html - 214,215 + 223,224 Memory usage dashboard.memory-usage @@ -4739,15 +4970,27 @@ L-BTC in circulation src/app/dashboard/dashboard.component.html - 228,230 + 237,239 dashboard.lbtc-pegs-in-circulation + + mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + + src/app/docs/api-docs/api-docs.component.html + 13 + + + src/app/docs/api-docs/api-docs.component.html + 14 + + faq.big-disclaimer + REST API service src/app/docs/api-docs/api-docs.component.html - 39,40 + 42,43 api-docs.title @@ -4755,11 +4998,11 @@ Endpoint src/app/docs/api-docs/api-docs.component.html - 48,49 + 51,52 src/app/docs/api-docs/api-docs.component.html - 102,105 + 105,108 Api docs endpoint @@ -4767,18 +5010,18 @@ Description src/app/docs/api-docs/api-docs.component.html - 67,68 + 70,71 src/app/docs/api-docs/api-docs.component.html - 106,107 + 109,110 Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-blocks, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. src/app/docs/api-docs/api-docs.component.html - 107,108 + 110,111 api-docs.websocket.websocket @@ -4868,7 +5111,7 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats @@ -4936,7 +5179,11 @@ src/app/lightning/channels-list/channels-list.component.html - 120,121 + 123,124 + + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 lightning.x-channels @@ -4974,11 +5221,11 @@ src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html - 65,66 + 68,69 status.inactive @@ -4990,11 +5237,11 @@ src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html - 66,68 + 69,71 status.active @@ -5006,7 +5253,7 @@ src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5014,7 +5261,7 @@ src/app/lightning/channels-list/channels-list.component.html - 68,70 + 71,73 status.closed @@ -5026,7 +5273,7 @@ src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created @@ -5038,11 +5285,19 @@ src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html - 40,43 + 43,46 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 src/app/lightning/node-statistics/node-statistics.component.html @@ -5050,7 +5305,7 @@ src/app/lightning/node-statistics/node-statistics.component.html - 47,50 + 46,49 src/app/lightning/nodes-list/nodes-list.component.html @@ -5072,6 +5327,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5106,11 +5365,11 @@ Lightning channel src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel @@ -5118,11 +5377,11 @@ Last update src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5138,11 +5397,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update @@ -5150,11 +5409,11 @@ Closing date src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 39,40 + 42,44 lightning.closing_date @@ -5162,7 +5421,7 @@ Closed by src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by @@ -5170,7 +5429,7 @@ Opening transaction src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction @@ -5178,7 +5437,7 @@ Closing transaction src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction @@ -5189,6 +5448,27 @@ 37 + + Mutually closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 20 + + + + Force closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 24 + + + + Force closed with penalty + + src/app/lightning/channel/closing-type/closing-type.component.ts + 28 + + Open @@ -5201,7 +5481,7 @@ No channels to display src/app/lightning/channels-list/channels-list.component.html - 29,35 + 29,37 lightning.empty-channels-list @@ -5209,7 +5489,7 @@ Alias src/app/lightning/channels-list/channels-list.component.html - 35,37 + 38,40 src/app/lightning/group/group.component.html @@ -5233,11 +5513,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias @@ -5245,7 +5525,7 @@ Status src/app/lightning/channels-list/channels-list.component.html - 37,38 + 40,41 status @@ -5253,7 +5533,7 @@ Channel ID src/app/lightning/channels-list/channels-list.component.html - 41,45 + 44,48 channels.id @@ -5261,11 +5541,11 @@ sats src/app/lightning/channels-list/channels-list.component.html - 60,64 + 63,68 src/app/lightning/channels-list/channels-list.component.html - 84,88 + 87,91 src/app/lightning/channels-statistics/channels-statistics.component.html @@ -5309,6 +5589,22 @@ shared.sats + + avg + + src/app/lightning/channels-statistics/channels-statistics.component.html + 3,5 + + statistics.average-small + + + med + + src/app/lightning/channels-statistics/channels-statistics.component.html + 6,9 + + statistics.median-small + Avg Capacity @@ -5425,11 +5721,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 17,18 + 16,17 src/app/lightning/node-statistics/node-statistics.component.html - 54,57 + 53,56 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -5477,10 +5773,6 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity @@ -5496,12 +5788,20 @@ 40,44 - src/app/lightning/node-statistics/node-statistics.component.html - 29,30 + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 src/app/lightning/node-statistics/node-statistics.component.html - 61,64 + 28,29 + + + src/app/lightning/node-statistics/node-statistics.component.html + 60,63 src/app/lightning/nodes-list/nodes-list.component.html @@ -5533,16 +5833,20 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -5573,7 +5877,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5589,11 +5893,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location @@ -5627,9 +5931,17 @@ src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -5657,6 +5969,28 @@ lightning.node-fee-distribution + + Outgoing Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 170 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 208 + + + + Incoming Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 178 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 222 + + Percentage change past week @@ -5665,11 +5999,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 18,20 + 17,19 src/app/lightning/node-statistics/node-statistics.component.html - 30,32 + 29,31 mining.percentage-change-last-week @@ -5681,11 +6015,11 @@ src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node @@ -5697,7 +6031,7 @@ src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity @@ -5709,7 +6043,7 @@ src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels @@ -5721,19 +6055,11 @@ country - - No node found for public key "" - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg @@ -5741,7 +6067,7 @@ Avg channel distance src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance @@ -5749,7 +6075,7 @@ Color src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color @@ -5757,7 +6083,7 @@ ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -5769,7 +6095,7 @@ Exclusively on Tor src/app/lightning/node/node.component.html - 93,95 + 96,98 tor @@ -5777,7 +6103,7 @@ Liquidity ad src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad @@ -5785,7 +6111,7 @@ Lease fee rate src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate @@ -5794,7 +6120,7 @@ Lease base fee src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee @@ -5802,7 +6128,7 @@ Funding weight src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight @@ -5810,7 +6136,7 @@ Channel fee rate src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate @@ -5819,7 +6145,7 @@ Channel base fee src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee @@ -5827,7 +6153,7 @@ Compact lease src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease @@ -5835,7 +6161,7 @@ TLV extension records src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records @@ -5843,7 +6169,7 @@ Open channels src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels @@ -5851,7 +6177,7 @@ Closed channels src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels @@ -5893,7 +6219,7 @@ No geolocation data available src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 218,213 + 219,214 @@ -5915,8 +6241,8 @@ 112,107 - - Reachable on Clearnet Only + + Clearnet and Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -5926,8 +6252,8 @@ 303,302 - - Reachable on Clearnet and Darknet + + Clearnet Only (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -5937,8 +6263,8 @@ 295,294 - - Reachable on Darknet Only + + Darknet Only (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -5961,25 +6287,29 @@ lightning.share - nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6085,11 +6415,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6170,22 +6500,6 @@ 27 - - Top 100 nodes liquidity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes diff --git a/frontend/src/locale/messages.hu.xlf b/frontend/src/locale/messages.hu.xlf index 2cbb07923..9b07c7917 100644 --- a/frontend/src/locale/messages.hu.xlf +++ b/frontend/src/locale/messages.hu.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 385,389 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1451,7 +1451,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. src/app/components/about/about.component.html - 13,17 + 13,16 @@ -1459,7 +1459,7 @@ Céges Szponzorok 🚀 src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1468,7 +1468,7 @@ Közösségi Szponzorok ❤️ src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart @@ -1477,7 +1477,7 @@ Közösségi Integrációk src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1486,7 +1486,7 @@ Közösségi Szövetségesek src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1495,7 +1495,7 @@ Projekt Fordítók src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1504,7 +1504,7 @@ Projekt Kontribútorok src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1513,7 +1513,7 @@ Projekt Tagok src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1522,7 +1522,7 @@ Projekt Fenntartók src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1531,7 +1531,7 @@ Részletek src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -2042,7 +2042,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2091,7 +2091,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2112,7 +2112,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2153,7 +2153,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2179,7 +2179,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2201,7 +2201,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2213,7 +2213,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2295,11 +2295,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2329,7 +2329,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2405,7 +2405,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2446,7 +2446,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2463,7 +2463,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2504,7 +2504,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2532,11 +2532,12 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 Size per weight + Méret súlyonként src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 200,199 @@ -2630,6 +2631,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2683,11 +2688,11 @@ src/app/lightning/node/node.component.html - 52,55 + 55,58 src/app/lightning/node/node.component.html - 96,100 + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2843,11 +2848,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2888,19 +2893,19 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2920,10 +2925,6 @@ src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -3081,13 +3082,17 @@ Difficulty Adjustment Bányászási Nehézségifok + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3095,11 +3100,11 @@ Remaining Hátramaradt - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3112,11 @@ blocks - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3131,11 +3136,11 @@ block - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3148,11 +3153,11 @@ Estimate Becslés - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3161,20 +3166,24 @@ Previous Előző - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Mostani Periódus - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3183,11 +3192,99 @@ Next Halving Következő Felezés - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) @@ -3343,7 +3440,7 @@ Bányászat src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3352,7 +3449,7 @@ Pool Rangsorolás src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3365,7 +3462,7 @@ Pool Fölény src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3378,7 +3475,7 @@ Hashráta és Nehézség src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3387,7 +3484,7 @@ Villám src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3396,7 +3493,7 @@ Villám Nodeok Hálózatonként src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3417,7 +3514,7 @@ Villám Hálózati Kapacítás src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3438,7 +3535,7 @@ Villám Node Szolgáltatónként src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3451,7 +3548,7 @@ Villám Nodeok Országonként src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3468,7 +3565,7 @@ Villám Node Világ Térkép src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3485,7 +3582,7 @@ Villám Node Csatorna Világ Térkép src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3506,11 +3603,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3540,11 +3637,11 @@ Hashráta (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3661,7 +3758,7 @@ Jutalmi statisztikák src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3670,7 +3767,7 @@ (144 blokk) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3679,7 +3776,7 @@ Legutóbbi blokkok src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3692,7 +3789,7 @@ Módosítás src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3701,7 +3798,7 @@ Tranzakció Küldése src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3869,9 +3966,8 @@ 58 - - blocks - blokk + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3880,6 +3976,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4099,12 +4230,13 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex Miners Reward + Bányász Jutalma src/app/components/reward-stats/reward-stats.component.html 5 @@ -4308,7 +4440,7 @@ Filter src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4317,7 +4449,7 @@ Invertál src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4326,7 +4458,7 @@ vBájtnyi tranzakciók másodpercenként (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4334,196 +4466,187 @@ Just now Épp most - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After után - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4578,7 +4701,7 @@ src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4594,11 +4717,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4656,7 +4779,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4675,7 +4798,7 @@ Továbbiak megjelenítése src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4692,7 +4815,7 @@ Kevesebb megjelenítése src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4705,7 +4828,7 @@ Diagram megjelenítése src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4714,7 +4837,7 @@ Zárolási idő src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4723,7 +4846,7 @@ Nem található tranzakció. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4732,7 +4855,7 @@ Várakozás arra hogy a mempoolban feltünjön... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4741,7 +4864,7 @@ Effektív díj ráta src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5186,6 +5309,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5193,7 +5320,7 @@ REST API szolgáltatás src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5202,11 +5329,11 @@ Végpont src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5215,11 +5342,11 @@ Leírás src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5227,7 +5354,7 @@ Alaphelyzeti push: művelet: 'kell', data: ['blocks', ...] hogy kifejezd mit szeretnél pusholni. Elérhető: blocks, mempool-blocks, live-2h-chart, and stats.Pusholjon tranzakciókat címekhez fogva: 'cím-követés': '3PbJ...bF9B' az összes új tranzakció fogadásához, amely ezt a címet tartalmazza bemenetként vagy kimenetként. Tranzakciók tömbjét adja vissza. cím-tranzakciókúj mempool tranzakciókhoz , és block-tranzakciók az új blokk megerősített tranzakciókhoz. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5324,7 +5451,7 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats @@ -5400,6 +5527,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5440,7 +5571,7 @@ src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html @@ -5457,7 +5588,7 @@ src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html @@ -5474,7 +5605,7 @@ src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5495,7 +5626,7 @@ src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created @@ -5508,12 +5639,20 @@ src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5542,6 +5681,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5578,11 +5721,11 @@ Villám csatorna src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel @@ -5591,11 +5734,11 @@ Utolsó frissítés src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5611,11 +5754,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update @@ -5624,11 +5767,11 @@ Zárási dátum src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5637,7 +5780,7 @@ Lezárva átala src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by @@ -5646,7 +5789,7 @@ Nyitó tranzakció src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction @@ -5655,7 +5798,7 @@ Záró tranzakció src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction @@ -5677,6 +5820,7 @@ Force closed + Kényszer zárva src/app/lightning/channel/closing-type/closing-type.component.ts 24 @@ -5684,6 +5828,7 @@ Force closed with penalty + Kényszer zárva büntető díjjal src/app/lightning/channel/closing-type/closing-type.component.ts 28 @@ -5736,11 +5881,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias @@ -5767,7 +5912,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -5817,6 +5962,7 @@ avg + átlag src/app/lightning/channels-statistics/channels-statistics.component.html 3,5 @@ -5825,6 +5971,7 @@ med + közép src/app/lightning/channels-statistics/channels-statistics.component.html 6,9 @@ -6005,10 +6152,6 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity @@ -6024,6 +6167,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6062,16 +6213,20 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6104,7 +6259,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -6120,11 +6275,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location @@ -6158,9 +6313,17 @@ src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -6182,6 +6345,7 @@ Fee distribution + Díj eloszlás src/app/lightning/node-fee-chart/node-fee-chart.component.html 2 @@ -6190,6 +6354,7 @@ Outgoing Fees + Kimenő Díjak src/app/lightning/node-fee-chart/node-fee-chart.component.ts 170 @@ -6201,6 +6366,7 @@ Incoming Fees + Beérkező Díjak src/app/lightning/node-fee-chart/node-fee-chart.component.ts 178 @@ -6235,11 +6401,11 @@ src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node @@ -6252,19 +6418,20 @@ src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity Active channels + Aktív csatornák src/app/lightning/node/node-preview.component.html 26,30 src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels @@ -6277,19 +6444,11 @@ country - - No node found for public key "" - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg @@ -6297,7 +6456,7 @@ Avg channel distance src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance @@ -6306,7 +6465,7 @@ Szín src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color @@ -6315,7 +6474,7 @@ ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6327,7 +6486,7 @@ Exclusively on Tor src/app/lightning/node/node.component.html - 93,95 + 96,98 tor @@ -6335,7 +6494,7 @@ Liquidity ad src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad @@ -6343,7 +6502,7 @@ Lease fee rate src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate @@ -6352,7 +6511,7 @@ Lease base fee src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee @@ -6360,7 +6519,7 @@ Funding weight src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight @@ -6368,16 +6527,17 @@ Channel fee rate src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate Channel base fee + Csatorna alapdíj src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee @@ -6385,7 +6545,7 @@ Compact lease src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease @@ -6394,7 +6554,7 @@ TLV kiterjesztési esemény src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records @@ -6403,7 +6563,7 @@ Nyitott csatornák src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels @@ -6412,7 +6572,7 @@ Lezárt csatornák src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels @@ -6453,6 +6613,7 @@ No geolocation data available + Geolokációs adat nem elérhető src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 219,214 @@ -6460,6 +6621,7 @@ Active channels map + Aktív csatorna térkép src/app/lightning/nodes-channels/node-channels.component.html 2,3 @@ -6468,6 +6630,7 @@ Indexing in progress + Indexelés folyamatban src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 121,116 @@ -6477,8 +6640,8 @@ 112,107 - - Reachable on Clearnet Only + + Clearnet and Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6488,8 +6651,8 @@ 303,302 - - Reachable on Clearnet and Darknet + + Clearnet Only (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6499,8 +6662,8 @@ 295,294 - - Reachable on Darknet Only + + Darknet Only (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6524,26 +6687,30 @@ lightning.share - nodes - nódok + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity + BTC kapacitás src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6656,11 +6823,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6741,27 +6908,12 @@ Oldest lightning nodes + Legidősebb villám nodeok src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts 27 - - Top 100 nodes liquidity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes Legrégebbi nodeok diff --git a/frontend/src/locale/messages.it.xlf b/frontend/src/locale/messages.it.xlf index d48ce0dcb..7a86d0e30 100644 --- a/frontend/src/locale/messages.it.xlf +++ b/frontend/src/locale/messages.it.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 385,389 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1452,7 +1452,7 @@ I nostri mempool e blockchain explorer per la community di Bitcoin, con attenzione su costi di transazione di mercato e ecosistema multi-strato, completamente self-hosted senza bisogno di terze parti. src/app/components/about/about.component.html - 13,17 + 13,16 @@ -1460,7 +1460,7 @@ Sponsor Aziendali 🚀 src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1469,7 +1469,7 @@ Sponsor comunitari ❤️ src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart @@ -1478,7 +1478,7 @@ Integrazioni della comunità src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1487,7 +1487,7 @@ Alleanze della comunità src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Traduttori del progetto src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Hanno contribuito al progetto src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Membri del Progetto src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Manutentori del progetto src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1532,7 +1532,7 @@ Su di noi src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2686,11 +2690,11 @@ src/app/lightning/node/node.component.html - 52,55 + 55,58 src/app/lightning/node/node.component.html - 96,100 + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,19 +2895,19 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2923,10 +2927,6 @@ src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -3084,13 +3084,17 @@ Difficulty Adjustment Aggiustamento della Difficoltà + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3098,11 +3102,11 @@ Remaining Rimanente - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3111,11 +3115,11 @@ blocks blocchi - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3136,11 +3140,11 @@ block blocco - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3153,11 +3157,11 @@ Estimate Stima - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3166,20 +3170,24 @@ Previous Precedente - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Periodo Attuale - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3188,11 +3196,110 @@ Next Halving Prossimo Halving - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + blocchi previsti + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + blocco previsto + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + blocchi minati + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + blocco estratto + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + blocchi rimanenti + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + blocco rimanente + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + blocchi avanti + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + blocco avanti + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + blocchi dietro + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + blocco dietro + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + Tempo medio del blocco + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) O 2x il minimo o il tasso di Bassa Priorità (in base a quale sia il più basso) @@ -3350,7 +3457,7 @@ Mining src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3359,7 +3466,7 @@ Classifica Pool src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3372,7 +3479,7 @@ Predominanza Pool src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3385,7 +3492,7 @@ Hashrate & Difficoltà src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3394,7 +3501,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3403,7 +3510,7 @@ Nodi Lightning Per Network src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3424,7 +3531,7 @@ Capacità Lightning Network src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3445,7 +3552,7 @@ Nodi Lightning Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3458,7 +3565,7 @@ Nodi Lightning Per Paese src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3472,9 +3579,10 @@ Lightning Nodes World Map + Mappa Mondiale dei Nodi Lightning src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,9 +3596,10 @@ Lightning Nodes Channels World Map + Mappa Mondiale dei Canali tra Nodi Lightning src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3511,11 +3620,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3545,11 +3654,11 @@ Hashrate (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3608,6 +3717,7 @@ Lightning Explorer + Lightning Explorer src/app/components/master-page/master-page.component.html 44,47 @@ -3668,7 +3778,7 @@ Statistiche di ricompensa src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3677,7 +3787,7 @@ (144 blocchi) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3686,7 +3796,7 @@ Ultimi blocchi src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3699,7 +3809,7 @@ Adeguamenti src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3708,7 +3818,7 @@ Trasmetti Transazione src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3828,6 +3938,7 @@ Avg Health + Salute Media src/app/components/pool-ranking/pool-ranking.component.html 96,97 @@ -3882,9 +3993,9 @@ 58 - - blocks - blocchi + + blocks + blocchi src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,9 +4004,46 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + Altro () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool + mining pool src/app/components/pool/pool-preview.component.html 3,5 @@ -4114,7 +4262,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4146,6 +4294,7 @@ Avg Block Fees + Commissioni Medie per Blocco src/app/components/reward-stats/reward-stats.component.html 17 @@ -4158,6 +4307,7 @@ Average fees per block in the past 144 blocks + Commissioni medie per blocco negli ultimi 144 blocchi src/app/components/reward-stats/reward-stats.component.html 18,20 @@ -4166,6 +4316,7 @@ BTC/block + BTC/blocco src/app/components/reward-stats/reward-stats.component.html 21,24 @@ -4175,6 +4326,7 @@ Avg Tx Fee + Commissione Tx Media src/app/components/reward-stats/reward-stats.component.html 30 @@ -4219,6 +4371,7 @@ Explore the full Bitcoin ecosystem + Esplora l'intero ecosistema Bitcoin src/app/components/search-form/search-form.component.html 4,5 @@ -4236,6 +4389,7 @@ Bitcoin Block Height + Altezza Blocco Bitcoin src/app/components/search-form/search-results/search-results.component.html 3 @@ -4244,6 +4398,7 @@ Bitcoin Transaction + Transazione Bitcoin src/app/components/search-form/search-results/search-results.component.html 9 @@ -4252,6 +4407,7 @@ Bitcoin Address + Indirizzo Bitcoin src/app/components/search-form/search-results/search-results.component.html 15 @@ -4260,6 +4416,7 @@ Bitcoin Block + Blocco Bitcoin src/app/components/search-form/search-results/search-results.component.html 21 @@ -4268,6 +4425,7 @@ Bitcoin Addresses + Indirizzi Bitcoin src/app/components/search-form/search-results/search-results.component.html 27 @@ -4276,6 +4434,7 @@ Lightning Nodes + Nodi Lightning src/app/components/search-form/search-results/search-results.component.html 35 @@ -4284,6 +4443,7 @@ Lightning Channels + Canali Lightning src/app/components/search-form/search-results/search-results.component.html 43 @@ -4292,6 +4452,7 @@ Go to "" + Vai a "" src/app/components/search-form/search-results/search-results.component.html 52 @@ -4325,7 +4486,7 @@ Filtro src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4334,7 +4495,7 @@ Invertire src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4343,7 +4504,7 @@ vByte transati al secondo (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4351,196 +4512,188 @@ Just now Proprio adesso - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago - fa + fa - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After Dopo - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - In ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4555,6 +4708,7 @@ This transaction replaced: + Questa transazione ha sostituito: src/app/components/transaction/transaction.component.html 10,12 @@ -4564,6 +4718,7 @@ Replaced + Sostituito src/app/components/transaction/transaction.component.html 36,39 @@ -4594,7 +4749,7 @@ src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4610,11 +4765,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4665,19 +4820,21 @@ Flow + Flow src/app/components/transaction/transaction.component.html 202,205 src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow Hide diagram + Nascondi diagramma src/app/components/transaction/transaction.component.html 205,210 @@ -4686,9 +4843,10 @@ Show more + Mostra di più src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4702,9 +4860,10 @@ Show less + Mostra meno src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4714,9 +4873,10 @@ Show diagram + Mostra diagramma src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4725,7 +4885,7 @@ Locktime src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4734,7 +4894,7 @@ Transazione non trovata. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4743,7 +4903,7 @@ Aspettando che appaia nella mempool... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4752,7 +4912,7 @@ Prezzo effettivo della commissione src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4898,6 +5058,7 @@ Show more inputs to reveal fee data + Mostra più input per rivelare i dati sulle commissioni src/app/components/transactions-list/transactions-list.component.html 290,293 @@ -4906,6 +5067,7 @@ remaining + rimanente src/app/components/transactions-list/transactions-list.component.html 332,333 @@ -4914,6 +5076,7 @@ other inputs + altri input src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 12 @@ -4922,6 +5085,7 @@ other outputs + altri output src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 13 @@ -4930,6 +5094,7 @@ Input + Input src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 42 @@ -4942,6 +5107,7 @@ Output + Output src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 43 @@ -4954,6 +5120,7 @@ This transaction saved % on fees by using native SegWit + Questa transazione ha fatto risparmiare il % sulle commissioni utilizzando SegWit nativo src/app/components/tx-features/tx-features.component.html 2 @@ -4980,6 +5147,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit + Questa transazione ha fatto risparmiare il % sulle commissioni utilizzando SegWit e avrebbe potuto risparmiare il % in più aggiornando completamente a SegWit nativo src/app/components/tx-features/tx-features.component.html 4 @@ -4988,6 +5156,7 @@ This transaction could save % on fees by upgrading to native SegWit or % by upgrading to SegWit-P2SH + Questa transazione avrebbe potuto far risparmiare il % sulle commissioni aggiornando a SegWit nativo o il % aggiornando a SegWit-P2SH src/app/components/tx-features/tx-features.component.html 6 @@ -4996,6 +5165,7 @@ This transaction uses Taproot and thereby saved at least % on fees + Questa transazione utilizza Taproot e quindi ha risparmiato almeno il % sulle commissioni src/app/components/tx-features/tx-features.component.html 12 @@ -5004,6 +5174,7 @@ Taproot + Taproot src/app/components/tx-features/tx-features.component.html 12 @@ -5029,6 +5200,7 @@ This transaction uses Taproot and already saved at least % on fees, but could save an additional % by fully using Taproot + Questa transazione utilizza Taproot e ha già fatto risparmiare almeno il % sulle commissioni, ma poteva far risparmiare un ulteriore % utilizzando completamente Taproot src/app/components/tx-features/tx-features.component.html 14 @@ -5037,6 +5209,7 @@ This transaction could save % on fees by using Taproot + Questa transazione poteva far risparmiare il % sulle commissioni utilizzando Taproot src/app/components/tx-features/tx-features.component.html 16 @@ -5045,6 +5218,7 @@ This transaction does not use Taproot + Questa transazione non utilizza Taproot src/app/components/tx-features/tx-features.component.html 18 @@ -5062,6 +5236,7 @@ This transaction supports Replace-By-Fee (RBF) allowing fee bumping + Questa transazione supporta Replace-By-Fee (RBF) che consente l'aumento delle commissioni src/app/components/tx-features/tx-features.component.html 28 @@ -5187,10 +5362,15 @@ mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + mempool.space fornisce solo dati sulla rete Bitcoin. Non può aiutarti a recuperare fondi, confermare la tua transazione più velocemente, ecc. src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5198,7 +5378,7 @@ Servizio REST API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5207,11 +5387,11 @@ Endpoint src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5220,11 +5400,11 @@ Descrizione src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5232,7 +5412,7 @@ Push predefinito: action: 'want', data: ['blocks', ...] per esprimere cosa vuoi spingere. Disponibile: blocks, mempool-blocks, live-2h-chart, and stats.Spingi transazioni collegate all'indirizzo: 'track-address': '3PbJ...bF9B' per ricevere tutte le nuove transazioni contenenti quell'indirizzo come input o output. Restituisce un array di transazioni. address-transactions per nuove transazioni di mempool e block-transactions per le nuove transazioni confermate nel blocco. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5301,6 +5481,7 @@ Base fee + Base fee src/app/lightning/channel/channel-box/channel-box.component.html 29 @@ -5313,6 +5494,7 @@ mSats + mSats src/app/lightning/channel/channel-box/channel-box.component.html 35 @@ -5327,12 +5509,13 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats This channel supports zero base fee routing + Questo canale supporta lo zero base fee routing src/app/lightning/channel/channel-box/channel-box.component.html 44 @@ -5341,6 +5524,7 @@ Zero base fee + Zero base fee src/app/lightning/channel/channel-box/channel-box.component.html 45 @@ -5349,6 +5533,7 @@ This channel does not support zero base fee routing + Questo canale non supporta lo zero base fee routing src/app/lightning/channel/channel-box/channel-box.component.html 50 @@ -5357,6 +5542,7 @@ Non-zero base fee + Non-zero base fee src/app/lightning/channel/channel-box/channel-box.component.html 51 @@ -5365,6 +5551,7 @@ Min HTLC + Min HTLC src/app/lightning/channel/channel-box/channel-box.component.html 57 @@ -5373,6 +5560,7 @@ Max HTLC + Max HTLC src/app/lightning/channel/channel-box/channel-box.component.html 63 @@ -5381,6 +5569,7 @@ Timelock delta + Timelock delta src/app/lightning/channel/channel-box/channel-box.component.html 69 @@ -5389,6 +5578,7 @@ channels + canali src/app/lightning/channel/channel-box/channel-box.component.html 79 @@ -5397,10 +5587,15 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels Starting balance + Saldo iniziale src/app/lightning/channel/channel-close-box/channel-close-box.component.html 6 @@ -5410,6 +5605,7 @@ Closing balance + Saldo di chiusura src/app/lightning/channel/channel-close-box/channel-close-box.component.html 12 @@ -5419,6 +5615,7 @@ lightning channel + canale lightning src/app/lightning/channel/channel-preview.component.html 3,5 @@ -5427,13 +5624,14 @@ Inactive + Inattivo src/app/lightning/channel/channel-preview.component.html 10,11 src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html @@ -5443,13 +5641,14 @@ Active + Attivo src/app/lightning/channel/channel-preview.component.html 11,12 src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html @@ -5459,13 +5658,14 @@ Closed + Chiuso src/app/lightning/channel/channel-preview.component.html 12,14 src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5479,30 +5679,40 @@ Created + Creato src/app/lightning/channel/channel-preview.component.html 23,26 src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created Capacity + Capacità src/app/lightning/channel/channel-preview.component.html 27,28 src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5531,6 +5741,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5543,6 +5757,7 @@ ppm + ppm src/app/lightning/channel/channel-preview.component.html 34,35 @@ -5563,25 +5778,27 @@ Lightning channel + Canale Lightning src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel Last update + Ultimo aggiornamento src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5597,52 +5814,57 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update Closing date + Data di chiusura src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date Closed by + Chiuso da src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by Opening transaction + Transazione di apertura src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction Closing transaction + Transazione di chiusura src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction Channel: + Canale: src/app/lightning/channel/channel.component.ts 37 @@ -5650,6 +5872,7 @@ Mutually closed + Chiuso collaborativamente src/app/lightning/channel/closing-type/closing-type.component.ts 20 @@ -5657,6 +5880,7 @@ Force closed + Chiusura forzata src/app/lightning/channel/closing-type/closing-type.component.ts 24 @@ -5664,6 +5888,7 @@ Force closed with penalty + Chiusura forzata con penalità src/app/lightning/channel/closing-type/closing-type.component.ts 28 @@ -5671,6 +5896,7 @@ Open + Aprire src/app/lightning/channels-list/channels-list.component.html 5,7 @@ -5679,6 +5905,7 @@ No channels to display + Nessun canale da visualizzare src/app/lightning/channels-list/channels-list.component.html 29,37 @@ -5687,6 +5914,7 @@ Alias + Alias src/app/lightning/channels-list/channels-list.component.html 38,40 @@ -5713,16 +5941,17 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias Status + Status src/app/lightning/channels-list/channels-list.component.html 40,41 @@ -5731,6 +5960,7 @@ Channel ID + ID Canale src/app/lightning/channels-list/channels-list.component.html 44,48 @@ -5739,9 +5969,10 @@ sats + sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -5791,6 +6022,7 @@ avg + avg src/app/lightning/channels-statistics/channels-statistics.component.html 3,5 @@ -5799,6 +6031,7 @@ med + med src/app/lightning/channels-statistics/channels-statistics.component.html 6,9 @@ -5807,6 +6040,7 @@ Avg Capacity + Capacità Media src/app/lightning/channels-statistics/channels-statistics.component.html 13,15 @@ -5819,6 +6053,7 @@ Avg Fee Rate + Tariffa Media src/app/lightning/channels-statistics/channels-statistics.component.html 26,28 @@ -5831,6 +6066,7 @@ The average fee rate charged by routing nodes, ignoring fee rates > 0.5% or 5000ppm + La tariffa media addebitata dai nodi di routing, ignorando le tariffe > 0,5% o 5000 ppm src/app/lightning/channels-statistics/channels-statistics.component.html 28,30 @@ -5839,6 +6075,7 @@ Avg Base Fee + Commissione Base Media src/app/lightning/channels-statistics/channels-statistics.component.html 41,43 @@ -5851,6 +6088,7 @@ The average base fee charged by routing nodes, ignoring base fees > 5000ppm + La tariffa di base media addebitata dai nodi di routing, ignorando le tariffe di base > 5000 ppm src/app/lightning/channels-statistics/channels-statistics.component.html 43,45 @@ -5859,6 +6097,7 @@ Med Capacity + Capacità Media src/app/lightning/channels-statistics/channels-statistics.component.html 59,61 @@ -5867,6 +6106,7 @@ Med Fee Rate + Tariffa Media src/app/lightning/channels-statistics/channels-statistics.component.html 72,74 @@ -5875,6 +6115,7 @@ The median fee rate charged by routing nodes, ignoring fee rates > 0.5% or 5000ppm + La tariffa mediana addebitata dai nodi di routing, ignorando le tariffe > 0,5% o 5000 ppm src/app/lightning/channels-statistics/channels-statistics.component.html 74,76 @@ -5883,6 +6124,7 @@ Med Base Fee + Tariffa Base Media src/app/lightning/channels-statistics/channels-statistics.component.html 87,89 @@ -5891,6 +6133,7 @@ The median base fee charged by routing nodes, ignoring base fees > 5000ppm + La tariffa di base mediana addebitata dai nodi di routing, ignorando le tariffe di base > 5000 ppm src/app/lightning/channels-statistics/channels-statistics.component.html 89,91 @@ -5899,6 +6142,7 @@ Lightning node group + Gruppo di nodi Lightning src/app/lightning/group/group-preview.component.html 3,5 @@ -5911,6 +6155,7 @@ Nodes + Nodi src/app/lightning/group/group-preview.component.html 25,29 @@ -5947,6 +6192,7 @@ Liquidity + Liquidità src/app/lightning/group/group-preview.component.html 29,31 @@ -5973,16 +6219,13 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity Channels + Canali src/app/lightning/group/group-preview.component.html 40,43 @@ -5991,6 +6234,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6029,20 +6280,25 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels Average size + Dimensione media src/app/lightning/group/group-preview.component.html 44,46 @@ -6055,6 +6311,7 @@ Location + Posizione src/app/lightning/group/group.component.html 74,77 @@ -6069,7 +6326,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -6085,16 +6342,17 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location Network Statistics + Statistiche di Rete src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 10 @@ -6103,6 +6361,7 @@ Channels Statistics + Statistiche dei Canali src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 24 @@ -6111,6 +6370,7 @@ Lightning Network History + Cronologia della Rete Lightning src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 49 @@ -6119,13 +6379,22 @@ Liquidity Ranking + Classifica della Liquidità src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -6135,6 +6404,7 @@ Connectivity Ranking + Classifica Connettività src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 76 @@ -6147,6 +6417,7 @@ Fee distribution + Distribuzione delle commissioni src/app/lightning/node-fee-chart/node-fee-chart.component.html 2 @@ -6155,6 +6426,7 @@ Outgoing Fees + Commissioni in Uscita src/app/lightning/node-fee-chart/node-fee-chart.component.ts 170 @@ -6166,6 +6438,7 @@ Incoming Fees + Commissioni in Entrata src/app/lightning/node-fee-chart/node-fee-chart.component.ts 178 @@ -6177,6 +6450,7 @@ Percentage change past week + Variazione percentuale nell'ultima settimana src/app/lightning/node-statistics/node-statistics.component.html 5,7 @@ -6193,89 +6467,89 @@ Lightning node + Nodo Lightning src/app/lightning/node/node-preview.component.html 3,5 src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node Active capacity + Capacità attiva src/app/lightning/node/node-preview.component.html 20,22 src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity Active channels + Canali attivi src/app/lightning/node/node-preview.component.html 26,30 src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels Country + Paese src/app/lightning/node/node-preview.component.html 44,47 country - - No node found for public key "" - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size + Dimensione media del canale src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg Avg channel distance + Distanza media del canale src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance Color + Colore src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color ISP + ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6285,96 +6559,108 @@ Exclusively on Tor + Esclusivamente su Tor src/app/lightning/node/node.component.html - 93,95 + 96,98 tor Liquidity ad + Annuncio di liquidità src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad Lease fee rate + Tasso di lease src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate Lease base fee + Canone base di lease src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee Funding weight + Peso del finanziamento src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight Channel fee rate + Tariffa del canale src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate Channel base fee + Tariffa base del canale src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee Compact lease + Lease compatto src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease TLV extension records + Record di estensione TLV src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records Open channels + Canali aperti src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels Closed channels + Canali chiusi src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels Node: + Nodo: src/app/lightning/node/node.component.ts 60 @@ -6382,6 +6668,7 @@ (Tor nodes excluded) + (nodi Tor esclusi) src/app/lightning/nodes-channels-map/nodes-channels-map.component.html 8,11 @@ -6402,6 +6689,7 @@ Lightning Nodes Channels World Map + Mappa Mondiale dei Canali tra Nodi Lightning src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 69 @@ -6409,6 +6697,7 @@ No geolocation data available + Nessun dato di geolocalizzazione disponibile src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 219,214 @@ -6416,6 +6705,7 @@ Active channels map + Mappa dei canali attivi src/app/lightning/nodes-channels/node-channels.component.html 2,3 @@ -6424,6 +6714,7 @@ Indexing in progress + Indicizzazione in corso src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 121,116 @@ -6433,8 +6724,9 @@ 112,107 - - Reachable on Clearnet Only + + Clearnet and Darknet + Clearnet e Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6444,8 +6736,9 @@ 303,302 - - Reachable on Clearnet and Darknet + + Clearnet Only (IPv4, IPv6) + Solo Clearnet (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6455,8 +6748,9 @@ 295,294 - - Reachable on Darknet Only + + Darknet Only (Tor, I2P, cjdns) + Solo Darknet (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6468,6 +6762,7 @@ Share + Condividere src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html 29,31 @@ -6479,29 +6774,36 @@ lightning.share - nodes + nodes + nodi src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity + Capacità BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 Lightning nodes in + Nodi Lightning in src/app/lightning/nodes-per-country/nodes-per-country.component.html 3,4 @@ -6510,6 +6812,7 @@ ISP Count + Conteggio ISP src/app/lightning/nodes-per-country/nodes-per-country.component.html 34,38 @@ -6518,6 +6821,7 @@ Top ISP + Top ISP src/app/lightning/nodes-per-country/nodes-per-country.component.html 38,40 @@ -6526,6 +6830,7 @@ Lightning nodes in + Nodi Lightning in src/app/lightning/nodes-per-country/nodes-per-country.component.ts 35 @@ -6533,6 +6838,7 @@ Clearnet Capacity + Capacità Clearnet src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 6,8 @@ -6545,6 +6851,7 @@ How much liquidity is running on nodes advertising at least one clearnet IP address + Quanta liquidità è in esecuzione sui nodi che pubblicizzano almeno un indirizzo IP clearnet src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 8,9 @@ -6553,6 +6860,7 @@ Unknown Capacity + Capacità Sconosciuta src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 13,15 @@ -6565,6 +6873,7 @@ How much liquidity is running on nodes which ISP was not identifiable + Quanta liquidità è in esecuzione su nodi il cui ISP non era identificabile src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 15,16 @@ -6573,6 +6882,7 @@ Tor Capacity + Capacità Tor src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 20,22 @@ -6585,6 +6895,7 @@ How much liquidity is running on nodes advertising only Tor addresses + Quanta liquidità è in esecuzione sui nodi che pubblicizzano solo indirizzi Tor src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 22,23 @@ -6593,6 +6904,7 @@ Top 100 ISPs hosting LN nodes + Top 100 ISP che ospitano nodi LN src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 31,33 @@ -6601,17 +6913,19 @@ BTC + BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 Lightning ISP + ISP Lightning src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.html 3,5 @@ -6620,6 +6934,7 @@ Top country + Il miglior paese src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.html 39,41 @@ -6632,6 +6947,7 @@ Top node + Il miglior nodo src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.html 45,48 @@ -6640,6 +6956,7 @@ Lightning nodes on ISP: [AS] + Nodi Lightning su ISP: [AS ] src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts 44 @@ -6651,6 +6968,7 @@ Lightning nodes on ISP: + Nodi Lightning sull'ISP: src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 2,4 @@ -6659,6 +6977,7 @@ ASN + ASN src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 11,14 @@ -6667,6 +6986,7 @@ Active nodes + Nodi attivi src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 14,18 @@ -6675,6 +6995,7 @@ Top 100 oldest lightning nodes + I 100 nodi Lightning più vecchi src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html 3,7 @@ -6683,29 +7004,15 @@ Oldest lightning nodes + Nodi lightning più vecchi src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts 27 - - Top 100 nodes liquidity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes + Nodi più vecchi src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html 36 @@ -6714,6 +7021,7 @@ Top lightning nodes + Principali nodi lightning src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts 22 @@ -6721,6 +7029,7 @@ Indexing in progress + Indicizzazione in corso src/app/lightning/statistics-chart/lightning-statistics-chart.component.html 52,55 @@ -6729,7 +7038,7 @@ year - anno + anno src/app/shared/i18n/dates.ts 3 @@ -6737,7 +7046,7 @@ years - anni + anni src/app/shared/i18n/dates.ts 4 @@ -6745,7 +7054,7 @@ month - mese + mese src/app/shared/i18n/dates.ts 5 @@ -6753,7 +7062,7 @@ months - mesi + mesi src/app/shared/i18n/dates.ts 6 @@ -6761,7 +7070,7 @@ week - settimana + settimana src/app/shared/i18n/dates.ts 7 @@ -6769,7 +7078,7 @@ weeks - settimane + settimane src/app/shared/i18n/dates.ts 8 @@ -6777,7 +7086,7 @@ day - giorno + giorno src/app/shared/i18n/dates.ts 9 @@ -6785,7 +7094,7 @@ days - giorni + giorni src/app/shared/i18n/dates.ts 10 @@ -6793,7 +7102,7 @@ hour - ora + ora src/app/shared/i18n/dates.ts 11 @@ -6801,7 +7110,7 @@ hours - ore + ore src/app/shared/i18n/dates.ts 12 @@ -6809,7 +7118,7 @@ minute - minuto + minuto src/app/shared/i18n/dates.ts 13 @@ -6817,7 +7126,7 @@ minutes - minuti + minuti src/app/shared/i18n/dates.ts 14 @@ -6825,7 +7134,7 @@ second - secondo + secondo src/app/shared/i18n/dates.ts 15 @@ -6833,7 +7142,7 @@ seconds - secondi + secondi src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index 56975a922..cf9d860dd 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ コミュニティーの提携 src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ プロジェクト翻訳者 src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ プロジェクト貢献者 src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ プロジェクトメンバー src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ プロジェクトメンテナー src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -3094,7 +3094,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3203,6 +3203,7 @@ blocks expected + 個のブロック - 期待値 src/app/components/difficulty/difficulty-tooltip.component.html 13 @@ -3211,6 +3212,7 @@ block expected + 個のブロック - 期待値 src/app/components/difficulty/difficulty-tooltip.component.html 14 @@ -3219,6 +3221,7 @@ blocks mined + 個のブロック - 採掘済 src/app/components/difficulty/difficulty-tooltip.component.html 18 @@ -3227,6 +3230,7 @@ block mined + 個のブロック - 採掘済 src/app/components/difficulty/difficulty-tooltip.component.html 19 @@ -3235,6 +3239,7 @@ blocks remaining + 個のブロック - 残り src/app/components/difficulty/difficulty-tooltip.component.html 24 @@ -3243,6 +3248,7 @@ block remaining + 個のブロック - 残り src/app/components/difficulty/difficulty-tooltip.component.html 25 @@ -3251,6 +3257,7 @@ blocks ahead + 個のブロック - 早い src/app/components/difficulty/difficulty-tooltip.component.html 29 @@ -3259,6 +3266,7 @@ block ahead + 個のブロック - 早い src/app/components/difficulty/difficulty-tooltip.component.html 30 @@ -3267,6 +3275,7 @@ blocks behind + 個のブロック - 遅い src/app/components/difficulty/difficulty-tooltip.component.html 34 @@ -3275,6 +3284,7 @@ block behind + 個のブロック - 遅い src/app/components/difficulty/difficulty-tooltip.component.html 35 @@ -3283,6 +3293,7 @@ Average block time + 平均ブロック生成時間 src/app/components/difficulty/difficulty.component.html 42,45 @@ -3767,7 +3778,7 @@ 報酬の統計値 src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3776,7 +3787,7 @@ (144つのブロック) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3785,7 +3796,7 @@ 最新のブロック src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3798,7 +3809,7 @@ 補正 src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3807,7 +3818,7 @@ ブロードキャストトランザクション src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3982,9 +3993,9 @@ 58 - - blocks - のブロック + + blocks + ブロック src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3993,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + その他 ( ) + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4148,7 +4195,7 @@ Mined blocks - マイニングされたブロック + 採掘されたブロック src/app/components/pool/pool.component.html 141,143 @@ -4269,7 +4316,7 @@ BTC/block - BTC/ブロック + BTC/ブロック src/app/components/reward-stats/reward-stats.component.html 21,24 @@ -4279,7 +4326,7 @@ Avg Tx Fee - 平均トランザクション手数料 + 平均取引手数料 src/app/components/reward-stats/reward-stats.component.html 30 @@ -4531,6 +4578,7 @@ In ~ + あと〜 src/app/components/time/time.component.ts 126 @@ -5539,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5779,7 +5831,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5920,7 +5972,7 @@ サトシ src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6238,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6718,19 +6774,23 @@ lightning.share - nodes - + nodes + ノード src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6738,7 +6798,7 @@ BTC 容量 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6856,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.ka.xlf b/frontend/src/locale/messages.ka.xlf index 762fd754e..ae1ba6c6d 100644 --- a/frontend/src/locale/messages.ka.xlf +++ b/frontend/src/locale/messages.ka.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ ალიანსი src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ მთარგმნელები src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ მოხალისეები src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ პროექტის წევრები src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ პროექტის შემქმნელები src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment სირთულე + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining დარჩა - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks ბლოკი - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block ბლოკი - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate დაახლოებით - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous წინა - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period ეს პერიოდი - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving შემდეგი ჰალვინგი - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) ან მინიმუმის 2x ან დაბალ პრიორიტეტული საკომისიო (რომელიც უფრო დაბალია) @@ -3346,7 +3446,7 @@ მაინინგი src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3455,7 @@ Pools ის რეიტინგი src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3468,7 @@ Pools ის დომინურობა src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3481,7 @@ ჰაშრეიტი და სირთულე src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3499,7 @@ Lightning ნოდა ყოველ ნეთვორქზე src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3520,7 @@ Lightning ის შესაძლებლობა src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3541,7 @@ Lightning Nodes Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3554,7 @@ Lightning ის ნოდა ქვეყნების მიხედვით src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3571,7 @@ Lightning ის ნოდები მსოფლიოს რუქაზე src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3588,7 @@ Lightning ის ნოდის ჩანელები მსოფლიო რუქაზე src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3643,11 @@ ჰაშრეიტი src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3767,7 @@ ანაზღაურების სტატისტიკა src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 ბლოკი) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ ბოლო ბლოკები src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ ცვლილებები src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Broadcast Transaction src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - ბლოკები + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4473,7 @@ გაფილტვრა src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4482,7 @@ შებრუნება src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4491,7 @@ ტრანზაქცია vBytes წამში (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4499,187 @@ Just now ახლა - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago წინ - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After შემდეგ - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - ~-ში - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4813,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4832,7 @@ მეტის ჩვენება src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4849,7 @@ ნაკლების ჩვენება src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4862,7 @@ დიაგრამის ჩვენება src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4871,7 @@ Locktime src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4880,7 @@ ტრანსაქცია ვერ მოიძებნა. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4889,7 @@ დაელოდეთ mempool-ში რომ გამოჩნდეს... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4898,7 @@ ეფექტური საკომისიო src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5353,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5364,7 @@ REST API service src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5373,11 @@ დასასრული src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5386,11 @@ აღწერა src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5398,7 @@ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-blocks, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5573,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5691,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5817,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5958,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6220,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6276,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6607,19 +6760,22 @@ lightning.share - nodes - ნოდა + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6627,7 +6783,7 @@ BTC სიმძლავრე src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6745,11 +6901,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.ko.xlf b/frontend/src/locale/messages.ko.xlf index 1d2be3910..78e33b5f7 100644 --- a/frontend/src/locale/messages.ko.xlf +++ b/frontend/src/locale/messages.ko.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1475,6 +1475,7 @@ Community Integrations + 커뮤니티 통합 src/app/components/about/about.component.html 181,183 @@ -1486,7 +1487,7 @@ 커뮤니티 연합 src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1495,7 +1496,7 @@ 프로젝트 번역자 src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1504,7 +1505,7 @@ 프로젝트 참여자 목록 src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1513,7 +1514,7 @@ 프로젝트 멤버들 src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1522,7 +1523,7 @@ 프로젝트 관리자 목록 src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1580,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2043,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2092,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2113,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2134,6 +2135,7 @@ not available + 사용할 수 없음 src/app/components/block-overview-graph/block-overview-graph.component.html 5 @@ -2153,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2179,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2201,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2213,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2295,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2329,13 +2331,14 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize Audit status + 감사 상태 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 36 @@ -2344,6 +2347,7 @@ Match + 일치 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 38 @@ -2352,6 +2356,7 @@ Removed + 제거됨 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 39 @@ -2360,6 +2365,7 @@ Marginal fee rate + 한계 수수료율 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 40 @@ -2372,6 +2378,7 @@ Recently broadcasted + 최근 전파됨 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 41 @@ -2380,6 +2387,7 @@ Added + 추가됨 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 42 @@ -2388,6 +2396,7 @@ Block Prediction Accuracy + 블록 예측 정확도 src/app/components/block-prediction-graph/block-prediction-graph.component.html 6,8 @@ -2398,12 +2407,13 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy No data to display yet. Try again later. + 아직 표시할 데이터가 없습니다. 나중에 다시 시도해주세요. src/app/components/block-prediction-graph/block-prediction-graph.component.ts 108,103 @@ -2419,6 +2429,7 @@ Match rate + 일치율 src/app/components/block-prediction-graph/block-prediction-graph.component.ts 189,187 @@ -2437,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2454,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2495,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2523,11 +2534,12 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 Size per weight + 무게당 사이즈 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 200,199 @@ -2621,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2638,6 +2654,7 @@ Health + 건강도 src/app/components/block/block.component.html 56 @@ -2654,6 +2671,7 @@ Unknown + 알 수 없음 src/app/components/block/block.component.html 67,70 @@ -2732,6 +2750,7 @@ Subsidy + fees + 보상금 + 수수료 src/app/components/block/block.component.html 153,156 @@ -2745,6 +2764,7 @@ Expected + 예상 src/app/components/block/block.component.html 216 @@ -2753,6 +2773,7 @@ beta + 베타 src/app/components/block/block.component.html 216,217 @@ -2765,6 +2786,7 @@ Actual + 실제 src/app/components/block/block.component.html 218,222 @@ -2828,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2856,6 +2878,7 @@ Audit + 감사 src/app/components/block/block.component.html 297,301 @@ -2872,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3061,13 +3084,17 @@ Difficulty Adjustment 난이도 조정 + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3075,11 +3102,11 @@ Remaining 남은 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3088,11 +3115,11 @@ blocks 블록 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3113,11 +3140,11 @@ block 블록 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3130,11 +3157,11 @@ Estimate 추정 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3143,20 +3170,24 @@ Previous 이전 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period 현재 기간 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3165,11 +3196,110 @@ Next Halving 다음 반감기 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + 예상한 개 블록 + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + 예상한 개 블록 + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + 채굴된 개 블록 + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + 채굴된 개 블록 + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + 남은 개 블록 + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + 남은 개 블록 + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + 앞서있는 개 블록 + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + 앞서있는 개 블록 + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + 뒤처진 개 블록 + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + 뒤처진 개 블록 + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + 평균 블록 생성 시간 + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) 최소 수수료의 2배 또는 낮은 우선 순위 금액(낮은 금액 선택) @@ -3194,6 +3324,7 @@ Usually places your transaction in between the second and third mempool blocks + 보통 트랜잭션이 두 번째와 세 번째 멤풀 블록에 배치됩니다. src/app/components/fees-box/fees-box.component.html 8,9 @@ -3215,6 +3346,7 @@ Usually places your transaction in between the first and second mempool blocks + 보통 트랜잭션이 첫 번째와 두 번째 멤풀 블록에 배치됩니다. src/app/components/fees-box/fees-box.component.html 9,10 @@ -3325,7 +3457,7 @@ 채굴 src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3334,7 +3466,7 @@ 채굴풀 순위 src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3347,7 +3479,7 @@ 채굴풀 도미넌스 src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3357,9 +3489,10 @@ Hashrate & Difficulty + 해시레이트 & 난이도 src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3368,7 +3501,7 @@ 라이트닝 src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3377,7 +3510,7 @@ 네트워크당 라이트닝 노드 src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3395,9 +3528,10 @@ Lightning Network Capacity + 라이트닝 네트워크 용량 src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3415,9 +3549,10 @@ Lightning Nodes Per ISP + 통신사별 라이트닝 노드 수 src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3427,9 +3562,10 @@ Lightning Nodes Per Country + 국가별 라이트닝 노드 수 src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3443,9 +3579,10 @@ Lightning Nodes World Map + 라이트닝 노드 세계지도 src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3459,9 +3596,10 @@ Lightning Nodes Channels World Map + 라이트닝 노드 채널 세계지도 src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3482,11 +3620,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3513,13 +3651,14 @@ Hashrate (MA) + 해시레이트 (이동 평균) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3578,6 +3717,7 @@ Lightning Explorer + 라이트닝 탐색기 src/app/components/master-page/master-page.component.html 44,47 @@ -3638,7 +3778,7 @@ 보상 관련 데이터 src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3647,7 +3787,7 @@ (144 블록) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3656,7 +3796,7 @@ 최신 블록 src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3669,7 +3809,7 @@ 조정 src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3678,7 +3818,7 @@ 트랜잭션을 비트코인 네트워크에 전송하기 src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3701,6 +3841,7 @@ Pools luck (1 week) + 채굴풀들의 운 (1주) src/app/components/pool-ranking/pool-ranking.component.html 9 @@ -3709,6 +3850,7 @@ Pools luck + 채굴풀들의 운 src/app/components/pool-ranking/pool-ranking.component.html 9,11 @@ -3717,6 +3859,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. + 지난 한 주 동안의 모든 채굴풀의 전반적인 운입니다. 운이 100%보다 크면 현재 에포크의 평균 블록 생성 시간이 10분 미만이라는 뜻입니다. src/app/components/pool-ranking/pool-ranking.component.html 11,15 @@ -3725,6 +3868,7 @@ Pools count (1w) + 채굴풀 개수 (1주) src/app/components/pool-ranking/pool-ranking.component.html 17 @@ -3733,6 +3877,7 @@ Pools count + 채굴풀 개수 src/app/components/pool-ranking/pool-ranking.component.html 17,19 @@ -3741,6 +3886,7 @@ How many unique pools found at least one block over the past week. + 지난 한 주 동안 최소 한 블록 이상 발견한 고유한 채굴 풀의 수입니다. src/app/components/pool-ranking/pool-ranking.component.html 19,23 @@ -3766,6 +3912,7 @@ The number of blocks found over the past week. + 지난 한 주 동안 발견된 블록의 수입니다. src/app/components/pool-ranking/pool-ranking.component.html 27,31 @@ -3791,6 +3938,7 @@ Avg Health + 평균 건강도 src/app/components/pool-ranking/pool-ranking.component.html 96,97 @@ -3821,7 +3969,7 @@ Pools Luck (1w) - 채굴 풀들의 운 (1주) + 채굴풀들의 운 (1주) src/app/components/pool-ranking/pool-ranking.component.html 146,148 @@ -3830,7 +3978,7 @@ Pools Count (1w) - 채굴 풀 개수 + 채굴풀 개수 (1주) src/app/components/pool-ranking/pool-ranking.component.html 158,160 @@ -3839,15 +3987,15 @@ Mining Pools - 채굴 풀 + 채굴풀 src/app/components/pool-ranking/pool-ranking.component.ts 58 - - blocks - 블록 + + blocks + 개 블록 src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3856,9 +4004,46 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + 기타 () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool + 채굴풀 src/app/components/pool/pool-preview.component.html 3,5 @@ -4077,7 +4262,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4109,6 +4294,7 @@ Avg Block Fees + 평균 블록 수수료 src/app/components/reward-stats/reward-stats.component.html 17 @@ -4121,6 +4307,7 @@ Average fees per block in the past 144 blocks + 지난 144개 블록의 평균 블록당 수수료 src/app/components/reward-stats/reward-stats.component.html 18,20 @@ -4129,6 +4316,7 @@ BTC/block + BTC/블록 src/app/components/reward-stats/reward-stats.component.html 21,24 @@ -4138,6 +4326,7 @@ Avg Tx Fee + 평균 거래 수수료 src/app/components/reward-stats/reward-stats.component.html 30 @@ -4182,6 +4371,7 @@ Explore the full Bitcoin ecosystem + 비트코인 생태계 전체를 탐험하세요. src/app/components/search-form/search-form.component.html 4,5 @@ -4262,6 +4452,7 @@ Go to "" + "" 로 이동 src/app/components/search-form/search-results/search-results.component.html 52 @@ -4270,7 +4461,7 @@ Mempool by vBytes (sat/vByte) - Mempool by vBytes (sat.vByte) + vBytes별 멤풀 (sat.vByte) src/app/components/statistics/statistics.component.html 7 @@ -4295,7 +4486,7 @@ 필터 src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4304,16 +4495,16 @@ 뒤집기 src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title Transaction vBytes per second (vB/s) - 초당 트랜잭션 vByte (vB / s) + 초당 트랜잭션 vByte (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4321,196 +4512,188 @@ Just now 방금 전 - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + ~ 안에 + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After 이후 - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - ~ 안에 - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4525,6 +4708,7 @@ This transaction replaced: + 이 트랜잭션이 대체되었습니다: src/app/components/transaction/transaction.component.html 10,12 @@ -4534,6 +4718,7 @@ Replaced + 대체됨 src/app/components/transaction/transaction.component.html 36,39 @@ -4635,19 +4820,21 @@ Flow + 흐름 src/app/components/transaction/transaction.component.html 202,205 src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow Hide diagram + 도표 숨기기 src/app/components/transaction/transaction.component.html 205,210 @@ -4659,7 +4846,7 @@ 더 보기 src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4676,7 +4863,7 @@ 숨기기 src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4689,7 +4876,7 @@ 도표 보기 src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4698,7 +4885,7 @@ 잠금 시간 src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4707,7 +4894,7 @@ 트랜잭션을 찾을 수 없음 src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4716,7 +4903,7 @@ 멤풀에 포함될때까지 대기하는 중... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4725,7 +4912,7 @@ 유효 수수료율 src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4871,6 +5058,7 @@ Show more inputs to reveal fee data + 수수료 정보를 표기하기 위해 더 많은 인풋을 보기 src/app/components/transactions-list/transactions-list.component.html 290,293 @@ -4879,6 +5067,7 @@ remaining + 남음 src/app/components/transactions-list/transactions-list.component.html 332,333 @@ -4887,6 +5076,7 @@ other inputs + 기타 인풋 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 12 @@ -4895,6 +5085,7 @@ other outputs + 기타 아웃풋 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 13 @@ -4903,6 +5094,7 @@ Input + 인풋 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 42 @@ -4915,6 +5107,7 @@ Output + 아웃풋 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html 43 @@ -4927,6 +5120,7 @@ This transaction saved % on fees by using native SegWit + 이 트랜잭션은 네이티브 세그윗을 사용해 수수료를 % 절약했습니다 src/app/components/tx-features/tx-features.component.html 2 @@ -4953,6 +5147,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit + 이 트랜잭션은 세그윗을 사용해 수수료를 % 절약했으며, 네이티브 세그윗으로 완전히 업그레이드하면 % 를 더 절약할 수 있습니다 src/app/components/tx-features/tx-features.component.html 4 @@ -4961,6 +5156,7 @@ This transaction could save % on fees by upgrading to native SegWit or % by upgrading to SegWit-P2SH + 이 트랜잭션은 네이티브 세그윗으로 업그레이드하면 수수료를 % 절약할 수 있으며, 세그윗-P2SH로 업그레이드하면 % 를 더 절약할 수 있습니다 src/app/components/tx-features/tx-features.component.html 6 @@ -4969,6 +5165,7 @@ This transaction uses Taproot and thereby saved at least % on fees + 이 트랜잭션은 탭루트를 사용했으며 수수료를 최소 % 절약했습니다 src/app/components/tx-features/tx-features.component.html 12 @@ -4977,6 +5174,7 @@ Taproot + 탭루트 src/app/components/tx-features/tx-features.component.html 12 @@ -5002,6 +5200,7 @@ This transaction uses Taproot and already saved at least % on fees, but could save an additional % by fully using Taproot + 이 트랜잭션은 탭루트를 사용해 이미 수수료를 최소 % 절약했지만, 탭루트를 완전히 사용하면 추가로 % 를 더 절약할 수 있습니다 src/app/components/tx-features/tx-features.component.html 14 @@ -5010,6 +5209,7 @@ This transaction could save % on fees by using Taproot + 이 트랜잭션은 탭루트를 사용해 수수료를 % 절약할 수 있습니다 src/app/components/tx-features/tx-features.component.html 16 @@ -5018,6 +5218,7 @@ This transaction does not use Taproot + 이 트랜잭션은 탭루트를 사용하지 않습니다 src/app/components/tx-features/tx-features.component.html 18 @@ -5035,6 +5236,7 @@ This transaction supports Replace-By-Fee (RBF) allowing fee bumping + 이 트랜잭션은 수수료를 조정할 수 있는 Replace-By-Fee (RBF)를 지원합니다 src/app/components/tx-features/tx-features.component.html 28 @@ -5160,17 +5362,23 @@ mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + mempool.space는 비트코인 네트워크에 대한 데이터만 제공할 뿐입니다. 자금을 회수하거나 트랜잭션을 더 빨리 컨펌시키는 것 등에 대해서는 도움을 드릴 수 없습니다. src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer REST API service + REST API 서비스 src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5179,11 +5387,11 @@ 엔드포인트 src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5192,11 +5400,11 @@ 설명 src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5204,7 +5412,7 @@ 기본 푸시: 작업: 'want', 데이터 : [ 'blocks', ...] 을 사용하여 푸시하려는 것을 표시할 수 있습니다. 사용 가능: blocks, mempool-blocks, live-2h-chart, 및stats.주소와 관련된 트랜잭션을 푸시:’track-address’: ‘3PbJ…bF9B’을 사용하여 인풋 또는 아웃풋 주소를 포함한 새로운 트랜잭션을 받을 수 있습니다. 트랜잭션들은 행렬로 반환합니다. 새로운 트랜잭션일 경우address-transactions이고, 새롭게 컨펌된 트랜잭션일 경우block-transactions입니다. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5273,6 +5481,7 @@ Base fee + 기본 수수료 src/app/lightning/channel/channel-box/channel-box.component.html 29 @@ -5285,6 +5494,7 @@ mSats + mSats src/app/lightning/channel/channel-box/channel-box.component.html 35 @@ -5305,6 +5515,7 @@ This channel supports zero base fee routing + 이 채널은 무료 기본 수수료 라우팅을 지원합니다 src/app/lightning/channel/channel-box/channel-box.component.html 44 @@ -5313,6 +5524,7 @@ Zero base fee + 무료 기본 수수료 src/app/lightning/channel/channel-box/channel-box.component.html 45 @@ -5321,6 +5533,7 @@ This channel does not support zero base fee routing + 이 채널은 무료 기본 수수료 라우팅을 지원하지 않습니다 src/app/lightning/channel/channel-box/channel-box.component.html 50 @@ -5329,6 +5542,7 @@ Non-zero base fee + 유료 기본 수수료 src/app/lightning/channel/channel-box/channel-box.component.html 51 @@ -5337,6 +5551,7 @@ Min HTLC + 최소 HTLC src/app/lightning/channel/channel-box/channel-box.component.html 57 @@ -5345,6 +5560,7 @@ Max HTLC + 최대 HTLC src/app/lightning/channel/channel-box/channel-box.component.html 63 @@ -5353,6 +5569,7 @@ Timelock delta + 타임락 델타 src/app/lightning/channel/channel-box/channel-box.component.html 69 @@ -5361,6 +5578,7 @@ channels + 채널 src/app/lightning/channel/channel-box/channel-box.component.html 79 @@ -5369,10 +5587,15 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels Starting balance + 시작 잔액 src/app/lightning/channel/channel-close-box/channel-close-box.component.html 6 @@ -5382,6 +5605,7 @@ Closing balance + 종료 잔액 src/app/lightning/channel/channel-close-box/channel-close-box.component.html 12 @@ -5391,6 +5615,7 @@ lightning channel + 라이트닝 채널 src/app/lightning/channel/channel-preview.component.html 3,5 @@ -5399,6 +5624,7 @@ Inactive + 비활성 src/app/lightning/channel/channel-preview.component.html 10,11 @@ -5415,6 +5641,7 @@ Active + 활성 src/app/lightning/channel/channel-preview.component.html 11,12 @@ -5431,6 +5658,7 @@ Closed + 폐쇄 src/app/lightning/channel/channel-preview.component.html 12,14 @@ -5451,6 +5679,7 @@ Created + 생성 src/app/lightning/channel/channel-preview.component.html 23,26 @@ -5463,6 +5692,7 @@ Capacity + 용량 src/app/lightning/channel/channel-preview.component.html 27,28 @@ -5475,6 +5705,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5519,6 +5757,7 @@ ppm + ppm src/app/lightning/channel/channel-preview.component.html 34,35 @@ -5539,6 +5778,7 @@ Lightning channel + 라이트닝 채널 src/app/lightning/channel/channel.component.html 4,7 @@ -5551,6 +5791,7 @@ Last update + 마지막 업데이트 src/app/lightning/channel/channel.component.html 40,41 @@ -5583,18 +5824,20 @@ Closing date + 폐쇄 일시 src/app/lightning/channel/channel.component.html 44,45 src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date Closed by + 폐쇄한 측 : src/app/lightning/channel/channel.component.html 59,61 @@ -5603,6 +5846,7 @@ Opening transaction + 개설 트랜잭션 src/app/lightning/channel/channel.component.html 91,92 @@ -5611,6 +5855,7 @@ Closing transaction + 폐쇄 트랜잭션 src/app/lightning/channel/channel.component.html 100,102 @@ -5619,6 +5864,7 @@ Channel: + 채널: src/app/lightning/channel/channel.component.ts 37 @@ -5626,6 +5872,7 @@ Mutually closed + 상호 폐쇄 src/app/lightning/channel/closing-type/closing-type.component.ts 20 @@ -5633,6 +5880,7 @@ Force closed + 강제 폐쇄 src/app/lightning/channel/closing-type/closing-type.component.ts 24 @@ -5640,6 +5888,7 @@ Force closed with penalty + 페널티와 함께 강제 폐쇄 src/app/lightning/channel/closing-type/closing-type.component.ts 28 @@ -5647,6 +5896,7 @@ Open + 개설 src/app/lightning/channels-list/channels-list.component.html 5,7 @@ -5655,6 +5905,7 @@ No channels to display + 표시할 채널이 없습니다 src/app/lightning/channels-list/channels-list.component.html 29,37 @@ -5663,6 +5914,7 @@ Alias + 별칭 src/app/lightning/channels-list/channels-list.component.html 38,40 @@ -5699,6 +5951,7 @@ Status + 상태 src/app/lightning/channels-list/channels-list.component.html 40,41 @@ -5707,6 +5960,7 @@ Channel ID + 채널 ID src/app/lightning/channels-list/channels-list.component.html 44,48 @@ -5715,9 +5969,10 @@ sats + sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -5767,6 +6022,7 @@ avg + 평균 src/app/lightning/channels-statistics/channels-statistics.component.html 3,5 @@ -5775,6 +6031,7 @@ med + 중앙값 src/app/lightning/channels-statistics/channels-statistics.component.html 6,9 @@ -5783,6 +6040,7 @@ Avg Capacity + 평균 용량 src/app/lightning/channels-statistics/channels-statistics.component.html 13,15 @@ -5795,6 +6053,7 @@ Avg Fee Rate + 평균 수수료율 src/app/lightning/channels-statistics/channels-statistics.component.html 26,28 @@ -5807,6 +6066,7 @@ The average fee rate charged by routing nodes, ignoring fee rates > 0.5% or 5000ppm + 라우팅 노드가 부과하는 평균 수수료율, 수수료율이 0.5% 또는 5000ppm을 초과하는 경우는 무시한 값 src/app/lightning/channels-statistics/channels-statistics.component.html 28,30 @@ -5815,6 +6075,7 @@ Avg Base Fee + 평균 기본 수수료 src/app/lightning/channels-statistics/channels-statistics.component.html 41,43 @@ -5827,6 +6088,7 @@ The average base fee charged by routing nodes, ignoring base fees > 5000ppm + 라우팅 노드가 부과하는 평균 기본 수수료, 기본 수수료가 5000ppm을 초과하는 경우는 무시한 값 src/app/lightning/channels-statistics/channels-statistics.component.html 43,45 @@ -5835,6 +6097,7 @@ Med Capacity + 중간 용량 src/app/lightning/channels-statistics/channels-statistics.component.html 59,61 @@ -5843,6 +6106,7 @@ Med Fee Rate + 중간 수수료율 src/app/lightning/channels-statistics/channels-statistics.component.html 72,74 @@ -5851,6 +6115,7 @@ The median fee rate charged by routing nodes, ignoring fee rates > 0.5% or 5000ppm + 라우팅 노드가 부과하는 수수료율의 중간값, 수수료율이 0.5% 또는 5000ppm을 초과하는 경우는 무시한 값 src/app/lightning/channels-statistics/channels-statistics.component.html 74,76 @@ -5859,6 +6124,7 @@ Med Base Fee + 중간 기본 수수료 src/app/lightning/channels-statistics/channels-statistics.component.html 87,89 @@ -5867,6 +6133,7 @@ The median base fee charged by routing nodes, ignoring base fees > 5000ppm + 라우팅 노드가 부과하는 기본 수수료의 중간값, 기본 수수료가 5000ppm을 초과하는 경우는 무시한 값 src/app/lightning/channels-statistics/channels-statistics.component.html 89,91 @@ -5875,6 +6142,7 @@ Lightning node group + 라이트닝 노드 그룹 src/app/lightning/group/group-preview.component.html 3,5 @@ -5887,6 +6155,7 @@ Nodes + 노드 수 src/app/lightning/group/group-preview.component.html 25,29 @@ -5923,6 +6192,7 @@ Liquidity + 유동성 src/app/lightning/group/group-preview.component.html 29,31 @@ -5955,6 +6225,7 @@ Channels + 채널 src/app/lightning/group/group-preview.component.html 40,43 @@ -5963,6 +6234,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6011,10 +6290,15 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels Average size + 평균 크기 src/app/lightning/group/group-preview.component.html 44,46 @@ -6027,6 +6311,7 @@ Location + 위치 src/app/lightning/group/group.component.html 74,77 @@ -6067,6 +6352,7 @@ Network Statistics + 네트워크 통계 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 10 @@ -6075,6 +6361,7 @@ Channels Statistics + 채널 통계 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 24 @@ -6083,6 +6370,7 @@ Lightning Network History + 라이트닝 네트워크 히스토리 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 49 @@ -6091,6 +6379,7 @@ Liquidity Ranking + 유동성 순위 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 @@ -6115,6 +6404,7 @@ Connectivity Ranking + 연결성 순위 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 76 @@ -6127,6 +6417,7 @@ Fee distribution + 수수료 분포 src/app/lightning/node-fee-chart/node-fee-chart.component.html 2 @@ -6135,6 +6426,7 @@ Outgoing Fees + 인출 수수료 src/app/lightning/node-fee-chart/node-fee-chart.component.ts 170 @@ -6146,6 +6438,7 @@ Incoming Fees + 인입 수수료 src/app/lightning/node-fee-chart/node-fee-chart.component.ts 178 @@ -6157,6 +6450,7 @@ Percentage change past week + 지난 한 주 동안의 변화율 src/app/lightning/node-statistics/node-statistics.component.html 5,7 @@ -6173,6 +6467,7 @@ Lightning node + 라이트닝 노드 src/app/lightning/node/node-preview.component.html 3,5 @@ -6189,6 +6484,7 @@ Active capacity + 활성 용량 src/app/lightning/node/node-preview.component.html 20,22 @@ -6201,6 +6497,7 @@ Active channels + 활성 채널 src/app/lightning/node/node-preview.component.html 26,30 @@ -6213,6 +6510,7 @@ Country + 국가 src/app/lightning/node/node-preview.component.html 44,47 @@ -6221,6 +6519,7 @@ Average channel size + 평균 채널 크기 src/app/lightning/node/node.component.html 43,46 @@ -6229,6 +6528,7 @@ Avg channel distance + 평균 채널 거리 src/app/lightning/node/node.component.html 59,60 @@ -6259,6 +6559,7 @@ Exclusively on Tor + Tor 전용 src/app/lightning/node/node.component.html 96,98 @@ -6276,6 +6577,7 @@ Lease fee rate + 임대 수수료율 src/app/lightning/node/node.component.html 147,150 @@ -6285,6 +6587,7 @@ Lease base fee + 임대 기본 수수료 src/app/lightning/node/node.component.html 155,157 @@ -6293,6 +6596,7 @@ Funding weight + 자금 가중치 src/app/lightning/node/node.component.html 161,162 @@ -6301,6 +6605,7 @@ Channel fee rate + 채널 수수료율 src/app/lightning/node/node.component.html 171,174 @@ -6310,6 +6615,7 @@ Channel base fee + 채널 기본 수수료 src/app/lightning/node/node.component.html 179,181 @@ -6318,6 +6624,7 @@ Compact lease + 간소화된 임대 src/app/lightning/node/node.component.html 191,193 @@ -6326,6 +6633,7 @@ TLV extension records + TLV 확장 레코드 src/app/lightning/node/node.component.html 202,205 @@ -6334,6 +6642,7 @@ Open channels + 개설된 채널 src/app/lightning/node/node.component.html 243,246 @@ -6342,6 +6651,7 @@ Closed channels + 폐쇄된 채널 src/app/lightning/node/node.component.html 247,250 @@ -6350,6 +6660,7 @@ Node: + 노드: src/app/lightning/node/node.component.ts 60 @@ -6357,6 +6668,7 @@ (Tor nodes excluded) + (Tor 노드 제외) src/app/lightning/nodes-channels-map/nodes-channels-map.component.html 8,11 @@ -6377,6 +6689,7 @@ Lightning Nodes Channels World Map + 라이트닝 노드 채널 세계지도 src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 69 @@ -6384,6 +6697,7 @@ No geolocation data available + 사용 가능한 지리 정보가 없습니다 src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts 219,214 @@ -6391,6 +6705,7 @@ Active channels map + 활성 채널 지도 src/app/lightning/nodes-channels/node-channels.component.html 2,3 @@ -6399,6 +6714,7 @@ Indexing in progress + 인덱싱 진행 중 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 121,116 @@ -6410,6 +6726,7 @@ Clearnet and Darknet + 클리어넷과 다크넷 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6421,6 +6738,7 @@ Clearnet Only (IPv4, IPv6) + 클리어넷 전용 (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6432,6 +6750,7 @@ Darknet Only (Tor, I2P, cjdns) + 다크넷 전용 (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6443,6 +6762,7 @@ Share + 공유 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html 29,31 @@ -6454,29 +6774,36 @@ lightning.share - nodes + nodes + 개 노드 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity + BTC 용량 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 Lightning nodes in + 의 라이트닝 노드 src/app/lightning/nodes-per-country/nodes-per-country.component.html 3,4 @@ -6485,6 +6812,7 @@ ISP Count + 통신사 수 src/app/lightning/nodes-per-country/nodes-per-country.component.html 34,38 @@ -6493,6 +6821,7 @@ Top ISP + 최상위 통신사 src/app/lightning/nodes-per-country/nodes-per-country.component.html 38,40 @@ -6501,6 +6830,7 @@ Lightning nodes in + 의 라이트닝 노드 src/app/lightning/nodes-per-country/nodes-per-country.component.ts 35 @@ -6508,6 +6838,7 @@ Clearnet Capacity + 클리어넷 용량 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 6,8 @@ -6520,6 +6851,7 @@ How much liquidity is running on nodes advertising at least one clearnet IP address + 하나 이상의 클리어넷 IP 주소를 공개한 노드에서 관리하는 유동성의 크기 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 8,9 @@ -6528,6 +6860,7 @@ Unknown Capacity + 알 수 없는 용량 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 13,15 @@ -6540,6 +6873,7 @@ How much liquidity is running on nodes which ISP was not identifiable + 통신사를 식별할 수 없는 노드에서 관리하는 유동성의 크기 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 15,16 @@ -6548,6 +6882,7 @@ Tor Capacity + Tor 용량 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 20,22 @@ -6560,6 +6895,7 @@ How much liquidity is running on nodes advertising only Tor addresses + Tor 주소만 공개한 노드에서 관리하는 유동성의 크기 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 22,23 @@ -6568,6 +6904,7 @@ Top 100 ISPs hosting LN nodes + LN 노드를 호스팅하는 상위 100개 통신사 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 31,33 @@ -6576,17 +6913,19 @@ BTC + BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 Lightning ISP + 라이트닝 통신사 src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.html 3,5 @@ -6595,6 +6934,7 @@ Top country + 상위 국가 src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.html 39,41 @@ -6607,6 +6947,7 @@ Top node + 상위 노드 src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.html 45,48 @@ -6615,6 +6956,7 @@ Lightning nodes on ISP: [AS] + 통신사 관할 내 라이트닝 노드: [AS] src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts 44 @@ -6626,6 +6968,7 @@ Lightning nodes on ISP: + 통신사 관할 내 라이트닝 노드: src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 2,4 @@ -6634,6 +6977,7 @@ ASN + ASN src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 11,14 @@ -6642,6 +6986,7 @@ Active nodes + 활성 노드 src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 14,18 @@ -6650,6 +6995,7 @@ Top 100 oldest lightning nodes + 가장 오래된 상위 100개 라이트닝 노드 src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.html 3,7 @@ -6658,6 +7004,7 @@ Oldest lightning nodes + 가장 오래된 라이트닝 노드 src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts 27 @@ -6665,6 +7012,7 @@ Oldest nodes + 가장 오래된 노드 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html 36 @@ -6673,6 +7021,7 @@ Top lightning nodes + 상위 라이트닝 노드 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts 22 @@ -6680,6 +7029,7 @@ Indexing in progress + 인덱싱 진행 중 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html 52,55 diff --git a/frontend/src/locale/messages.lt.xlf b/frontend/src/locale/messages.lt.xlf index f809420b4..d10094194 100644 --- a/frontend/src/locale/messages.lt.xlf +++ b/frontend/src/locale/messages.lt.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Bendruomenės Aljansai src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Projekto Vertėjai src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Projekto Pagalbininkai src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Projekto Nariai src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Projekto Prižiūrėtojai src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -3094,7 +3094,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3767,7 +3767,7 @@ Atlygio statistika src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3776,7 +3776,7 @@ (144 blokai) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3785,7 +3785,7 @@ Naujausi blokai src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3798,7 +3798,7 @@ Koregavimai src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3807,7 +3807,7 @@ Transliuoti Sandorį src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3982,9 +3982,8 @@ 58 - - blocks - blokai + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3993,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -5539,6 +5573,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5779,7 +5817,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5920,7 +5958,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6238,6 +6276,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6718,19 +6760,22 @@ lightning.share - nodes - mazgai + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6738,7 +6783,7 @@ BTC talpumas src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6856,11 +6901,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.mk.xlf b/frontend/src/locale/messages.mk.xlf index 7ee9b19ae..848cdf8d7 100644 --- a/frontend/src/locale/messages.mk.xlf +++ b/frontend/src/locale/messages.mk.xlf @@ -148,7 +148,7 @@ - + node_modules/src/progressbar/progressbar.ts 30,33 @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Соработка со Заедницата src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Преведувачи src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Контрибутори src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Членови на проектот src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Одржувачи на проектот src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -3094,7 +3094,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3778,7 +3778,7 @@ Статистика за награди src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3787,7 +3787,7 @@ (144 блока) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3796,7 +3796,7 @@ Последни блокови src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3809,7 +3809,7 @@ Промени src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3818,7 +3818,7 @@ Емитирај ја Трансакцијата src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3993,9 +3993,9 @@ 58 - - blocks - блока + + blocks + блокови src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -4004,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + Други () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -5551,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5791,7 +5831,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5932,7 +5972,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6250,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6730,19 +6774,23 @@ lightning.share - nodes - нодови + nodes + нодови src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6750,7 +6798,7 @@ BTC капацитет src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6868,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf index 3786617b7..d4fdbce21 100644 --- a/frontend/src/locale/messages.nb.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ Samfunnsallianser src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Oversettere src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Bidragsytere til prosjektet src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Prosjektmedlemmer src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Prosjektvedlikeholdere src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment Vanskelighetsgradjustering + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Gjenstående - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks blokker - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block blokk - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Anslag - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Forrige - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Nåværende periode - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving Neste halvering - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Enten 2x av minimum eller lav prioritetsrate (den som er lavest) @@ -3346,7 +3446,7 @@ Utvinning src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3455,7 @@ Utvinningsgruppe-rangering src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3468,7 @@ Utvinningsgruppe-dominans src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3481,7 @@ Hashrate og vanskelighetsgrad src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3499,7 @@ Lightning-noder per nettverk src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3520,7 @@ Lightningnettverk-kapasitet src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3541,7 @@ Lightning-noder per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3554,7 @@ Lightning-noder per land src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3571,7 @@ Lightning-noder verdenskart src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3588,7 @@ Lightning-kanaler Verdenskart src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3643,11 @@ Hashrate (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3767,7 @@ Belonnings-statistikk src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 blokker) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ Nyeste blokker src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ Justeringer src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Send transaksjon src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - blokker + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4473,7 @@ Filter src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4482,7 @@ Inverter src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4491,7 @@ Transaksjoner per sekund (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4499,187 @@ Just now Akkurat nå - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago siden - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After Etter - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - Om ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4813,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4832,7 @@ Vis mer src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4849,7 @@ Vis mindre src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4862,7 @@ Vis diagram src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4871,7 @@ Locktime src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4880,7 @@ Transaksjon ikke funnet src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4889,7 @@ Venter på at den kommer inn i mempool... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4898,7 @@ Effektiv avgift src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5353,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5364,7 @@ REST API-tjeneste src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5373,11 @@ Endepunkt src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5386,11 @@ Beskrivelse src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5398,7 @@ Standard push: handling: 'want', data: ['blocks', ...] for å uttrykke hva du vil ha pushet. Tilgjengelig: blocks , mempool-blocks , live-2h-chart , og stats . Push-transaksjoner relatert til adresse: 'track-address': '3PbJ...bF9B' for å motta alle nye transaksjoner som inneholder den adressen som inngang eller utgang. Returnerer en tabell av transaksjoner. adress-transactions for nye mempool-transaksjoner, og block-transactions for nye blokkbekreftede transaksjoner. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5573,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5691,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5817,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5958,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6220,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6276,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6607,19 +6760,22 @@ lightning.share - nodes - noder + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6627,7 +6783,7 @@ BTC-kapasitet src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6745,11 +6901,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.ne.xlf b/frontend/src/locale/messages.ne.xlf index 92be31844..1408a0225 100644 --- a/frontend/src/locale/messages.ne.xlf +++ b/frontend/src/locale/messages.ne.xlf @@ -357,11 +357,11 @@ src/app/components/block/block.component.html - 290,291 + 310,311 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 26,27 + 46,47 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -382,11 +382,11 @@ src/app/components/block/block.component.html - 291,292 + 311,312 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 27,28 + 47,48 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -424,7 +424,7 @@ src/app/components/block/block.component.html - 40,41 + 38,39 block.hash @@ -449,7 +449,7 @@ src/app/components/block/block.component.html - 44,46 + 42,44 src/app/components/blocks-list/blocks-list.component.html @@ -592,11 +592,11 @@ src/app/components/master-page/master-page.component.html - 49,51 + 48,50 src/app/components/pool-ranking/pool-ranking.component.html - 94,96 + 94,95 @@ -748,11 +748,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -773,16 +773,24 @@ src/app/components/about/about.component.html - 385,389 + 391,394 + + + src/app/components/mining-dashboard/mining-dashboard.component.html + 87 src/app/dashboard/dashboard.component.html - 150,152 + 157,159 src/app/docs/docs/docs.component.html 51 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 97 + Terms of Service shared.terms-of-service @@ -793,14 +801,22 @@ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 113,120 + + src/app/components/mining-dashboard/mining-dashboard.component.html + 89 + src/app/dashboard/dashboard.component.html - 152,154 + 159,161 src/app/docs/docs/docs.component.html 53 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 99 + Privacy Policy shared.privacy-policy @@ -988,7 +1004,7 @@ src/app/dashboard/dashboard.component.html - 124,125 + 124,126 @@ -1036,7 +1052,7 @@ src/app/components/transaction/transaction.component.html - 158,160 + 152,154 src/app/components/transactions-list/transactions-list.component.html @@ -1052,11 +1068,11 @@ src/app/components/block/block.component.html - 246,247 + 252,253 src/app/components/transaction/transaction.component.html - 288,290 + 283,285 transaction.version @@ -1106,7 +1122,7 @@ src/app/components/transactions-list/transactions-list.component.html - 294,295 + 296,297 Transaction singular confirmation count shared.confirmation-count.singular @@ -1128,7 +1144,7 @@ src/app/components/transactions-list/transactions-list.component.html - 295,296 + 297,298 Transaction plural confirmation count shared.confirmation-count.plural @@ -1140,10 +1156,6 @@ src/app/bisq/bisq-transaction/bisq-transaction.component.html 43,45 - - src/app/components/transaction/transaction.component.html - 65,67 - Transaction included in block transaction.included-in-block @@ -1156,11 +1168,11 @@ src/app/components/transaction/transaction.component.html - 77,80 + 71,74 src/app/components/transaction/transaction.component.html - 135,138 + 129,132 Transaction features transaction.features @@ -1188,11 +1200,11 @@ src/app/components/transaction/transaction.component.html - 262,267 + 257,262 src/app/components/transaction/transaction.component.html - 406,412 + 401,407 transaction.details @@ -1209,11 +1221,11 @@ src/app/components/transaction/transaction.component.html - 249,253 + 244,248 src/app/components/transaction/transaction.component.html - 377,383 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1231,7 +1243,7 @@ src/app/components/transaction/transaction.component.ts - 241,240 + 246,245 @@ -1251,7 +1263,7 @@ src/app/components/transaction/transaction.component.html - 159,160 + 153,154 src/app/dashboard/dashboard.component.html @@ -1267,7 +1279,7 @@ src/app/components/transaction/transaction.component.html - 72,73 + 66,67 Transaction Confirmed state transaction.confirmed @@ -1438,7 +1450,7 @@ Bitcoin समुदायको लागि हाम्रो mempool र blockchain अन्वेषक, लेनदेन शुल्क बजार र बहु-तह इकोसिस्टममा ध्यान केन्द्रित गर्दै, कुनै पनि विश्वसनीय तेस्रो-पक्ष बिना पूर्ण रूपमा स्व-होस्ट गरिएको। src/app/components/about/about.component.html - 13,17 + 13,16 @@ -1446,7 +1458,7 @@ एंटरप्राइज़ प्रायोजक 🚀 src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1455,7 +1467,7 @@ समुदाय प्रायोजक ❤️ src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart @@ -1464,7 +1476,7 @@ समुदाय एकीकरण src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1473,7 +1485,7 @@ सामुदायिक गठबन्धनहरू src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1482,7 +1494,7 @@ परियोजना अनुवादकहरू src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1491,7 +1503,7 @@ परियोजना योगदानकर्ताहरू src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1500,7 +1512,7 @@ परियोजना सदस्यहरू src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1509,7 +1521,7 @@ परियोजना संरक्षकहरू src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1518,7 +1530,7 @@ विवरण src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -1530,7 +1542,7 @@ src/app/components/master-page/master-page.component.html - 58,61 + 57,60 @@ -1567,7 +1579,7 @@ src/app/components/amount/amount.component.html - 6,9 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -1583,7 +1595,7 @@ src/app/components/transactions-list/transactions-list.component.html - 302,304 + 304,306 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -1665,7 +1677,7 @@ src/app/components/assets/assets.component.html - 29,31 + 31,33 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -1886,7 +1898,7 @@ src/app/components/assets/assets.component.html - 30,31 + 32,33 Asset ticker header @@ -1899,7 +1911,7 @@ src/app/components/assets/assets.component.html - 31,34 + 33,36 Asset Issuer Domain header @@ -1912,7 +1924,7 @@ src/app/components/assets/assets.component.html - 32,36 + 34,38 Asset ID header @@ -1921,7 +1933,7 @@ एसेट/सम्पत्ति डेटा लोड गर्दा त्रुटि। src/app/components/assets/assets.component.html - 48,53 + 50,55 Asset data load error @@ -2028,7 +2040,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2045,7 +2057,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 161 + 165 @@ -2061,7 +2073,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 163 + 167 @@ -2073,11 +2085,11 @@ src/app/components/block-fees-graph/block-fees-graph.component.ts - 62 + 67 src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2085,19 +2097,19 @@ Indexing blocks src/app/components/block-fees-graph/block-fees-graph.component.ts - 110,105 + 116,111 src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 108,103 + 113,108 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 115,110 + 116,111 src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2137,7 +2149,7 @@ src/app/components/transaction/transaction.component.html - 476 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2163,11 +2175,11 @@ src/app/components/transaction/transaction.component.html - 476,477 + 473 src/app/components/transactions-list/transactions-list.component.html - 286,287 + 288 sat shared.sat @@ -2181,11 +2193,11 @@ src/app/components/transaction/transaction.component.html - 161,165 + 155,159 src/app/components/transaction/transaction.component.html - 479,481 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2197,7 +2209,7 @@ src/app/lightning/channels-list/channels-list.component.html - 38,39 + 41,43 Transaction fee rate transaction.fee-rate @@ -2215,19 +2227,19 @@ src/app/components/block/block.component.html - 125,128 + 124,127 src/app/components/block/block.component.html - 129 + 128,130 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 12,14 + 19,22 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 15,17 + 30,33 src/app/components/fees-box/fees-box.component.html @@ -2267,27 +2279,27 @@ src/app/components/transaction/transaction.component.html - 173,174 + 167,168 src/app/components/transaction/transaction.component.html - 184,185 + 178,179 src/app/components/transaction/transaction.component.html - 195,196 + 189,190 src/app/components/transaction/transaction.component.html - 481,484 + 478,481 src/app/components/transaction/transaction.component.html - 492,494 + 489,491 src/app/components/transactions-list/transactions-list.component.html - 286 + 286,287 src/app/dashboard/dashboard.component.html @@ -2295,7 +2307,7 @@ src/app/dashboard/dashboard.component.html - 204,208 + 213,217 sat/vB shared.sat-vbyte @@ -2309,11 +2321,11 @@ src/app/components/transaction/transaction.component.html - 160,162 + 154,156 src/app/components/transaction/transaction.component.html - 274,277 + 269,272 Transaction Virtual Size transaction.vsize @@ -2384,7 +2396,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2421,11 +2433,11 @@ src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 60 + 65 src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2442,7 +2454,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2451,15 +2463,15 @@ साइज src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 180,179 + 184,183 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 226,224 + 239,237 src/app/components/block/block.component.html - 50,52 + 48,50 src/app/components/blocks-list/blocks-list.component.html @@ -2483,7 +2495,7 @@ src/app/components/transaction/transaction.component.html - 270,272 + 265,267 src/app/dashboard/dashboard.component.html @@ -2495,11 +2507,11 @@ वजन src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 188,187 + 192,191 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 257,254 + 270,267 src/app/components/block/block-preview.component.html @@ -2507,11 +2519,22 @@ src/app/components/block/block.component.html - 54,56 + 52,54 src/app/components/transaction/transaction.component.html - 278,280 + 273,275 + + + + Size per weight + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 200,199 + + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 282,279 @@ -2527,15 +2550,6 @@ shared.block-title - - - - - src/app/components/block/block-preview.component.html - 11,12 - - shared.block-title - Median fee मध्य शुल्क @@ -2545,7 +2559,7 @@ src/app/components/block/block.component.html - 128,129 + 127,128 src/app/components/mempool-block/mempool-block.component.html @@ -2562,11 +2576,11 @@ src/app/components/block/block.component.html - 133,135 + 138,140 src/app/components/block/block.component.html - 159,162 + 164,167 src/app/components/mempool-block/mempool-block.component.html @@ -2584,7 +2598,7 @@ src/app/components/block/block.component.html - 168,170 + 173,175 block.miner @@ -2597,7 +2611,7 @@ src/app/components/block/block.component.ts - 227 + 242 @@ -2607,6 +2621,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2622,32 +2640,48 @@ Previous Block - - Block health + + Health src/app/components/block/block.component.html - 58,61 + 56 - block.health + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + latest-blocks.health Unknown अज्ञात src/app/components/block/block.component.html - 69,72 + 67,70 src/app/components/blocks-list/blocks-list.component.html 60,63 - src/app/lightning/node/node.component.html - 52,55 + src/app/components/pool-ranking/pool-ranking.component.html + 121,124 + + + src/app/lightning/channel/closing-type/closing-type.component.ts + 32 src/app/lightning/node/node.component.html - 96,100 + 55,58 + + + src/app/lightning/node/node.component.html + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2664,7 +2698,7 @@ शुल्क अवधि src/app/components/block/block.component.html - 124,125 + 123,124 src/app/components/mempool-block/mempool-block.component.html @@ -2677,7 +2711,7 @@ 140 vBytes नेटिव सेगविट ट्रांसेक्शन सरदर को अनुसार src/app/components/block/block.component.html - 129,131 + 131,136 src/app/components/fees-box/fees-box.component.html @@ -2701,49 +2735,60 @@ Transaction fee tooltip - - Subsidy + fees: - अनुदान + शुल्क: + + Subsidy + fees src/app/components/block/block.component.html - 148,151 + 153,156 src/app/components/block/block.component.html - 163,167 + 168,172 Total subsidy and fees in a block block.subsidy-and-fees - - Projected + + Expected src/app/components/block/block.component.html - 210,212 + 216 - block.projected + block.expected + + + beta + + src/app/components/block/block.component.html + 216,217 + + + src/app/components/block/block.component.html + 222,224 + + beta Actual src/app/components/block/block.component.html - 212,216 + 218,222 block.actual - - Projected Block + + Expected Block src/app/components/block/block.component.html - 216,218 + 222 - block.projected-block + block.expected-block Actual Block src/app/components/block/block.component.html - 225,227 + 231 block.actual-block @@ -2752,7 +2797,7 @@ बिट्स src/app/components/block/block.component.html - 250,252 + 256,258 block.bits @@ -2761,7 +2806,7 @@ मर्कल रुट src/app/components/block/block.component.html - 254,256 + 260,262 block.merkle-root @@ -2770,7 +2815,7 @@ कठिनाई src/app/components/block/block.component.html - 265,268 + 271,274 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -2786,11 +2831,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2799,7 +2844,7 @@ नोन्स src/app/components/block/block.component.html - 269,271 + 275,277 block.nonce @@ -2808,32 +2853,41 @@ ब्लक हेडर हेक्स src/app/components/block/block.component.html - 273,274 + 279,280 block.header + + Audit + + src/app/components/block/block.component.html + 297,301 + + Toggle Audit + block.toggle-audit + Details विवरण src/app/components/block/block.component.html - 284,288 + 304,308 src/app/components/transaction/transaction.component.html - 254,259 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2843,20 +2897,16 @@ डाटा लोड गर्दा त्रुटि भयो। src/app/components/block/block.component.html - 303,305 + 323,325 src/app/components/block/block.component.html - 339,343 + 362,366 src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -2871,7 +2921,7 @@ Why is this block empty? src/app/components/block/block.component.html - 361,367 + 384,390 block.empty-block-explanation @@ -2917,18 +2967,6 @@ latest-blocks.mined - - Health - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - latest-blocks.health - Reward इनाम @@ -2992,7 +3030,7 @@ src/app/dashboard/dashboard.component.html - 210,214 + 219,223 dashboard.txs @@ -3025,13 +3063,17 @@ Difficulty Adjustment कठिनाई समायोजन / डिफीकल्टी एडजस्टमेंट + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3039,11 +3081,11 @@ Remaining बाँकी - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3052,11 +3094,11 @@ blocks ब्लकहरू - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3077,11 +3119,11 @@ block ब्लक - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3094,11 +3136,11 @@ Estimate अनुमान - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3107,20 +3149,24 @@ Previous अघिल्लो - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period वर्तमान अवधि - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3129,11 +3175,99 @@ Next Halving अर्को हल्विंग - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) या त 2x न्यूनतम, वा कम प्राथमिकता दर (जुन कम छ) @@ -3231,7 +3365,7 @@ src/app/dashboard/dashboard.component.html - 237,238 + 246,247 dashboard.incoming-transactions @@ -3244,7 +3378,7 @@ src/app/dashboard/dashboard.component.html - 240,243 + 249,252 dashboard.backend-is-synchronizing @@ -3256,7 +3390,7 @@ src/app/dashboard/dashboard.component.html - 245,250 + 254,259 vB/s shared.vbytes-per-second @@ -3270,7 +3404,7 @@ src/app/dashboard/dashboard.component.html - 208,209 + 217,218 Unconfirmed count dashboard.unconfirmed @@ -3290,7 +3424,7 @@ माईनिंग src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3299,7 +3433,7 @@ पूल रैंकिंग src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3312,7 +3446,7 @@ पूल सर्वोच्चता src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3325,7 +3459,7 @@ हैसरेट र कठिनाई src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3334,7 +3468,7 @@ लाइटनिंग src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3342,7 +3476,7 @@ Lightning Nodes Per Network src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3363,7 +3497,7 @@ लाइटनिंग नेटवर्क क्षमता src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3384,7 +3518,7 @@ प्रति ISP लाइटनिंग नोडहरू src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3397,7 +3531,7 @@ प्रति देश लाइटनिंग नोड्स src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3414,7 +3548,7 @@ लाइटनिंग नोड्स विश्व नक्सा src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3431,7 +3565,7 @@ लाइटनिङ नोड्स च्यानल विश्व नक्सा src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3452,11 +3586,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3486,11 +3620,11 @@ हसरेट (एमए) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3524,7 +3658,7 @@ src/app/components/master-page/master-page.component.html - 52,54 + 51,53 src/app/components/statistics/statistics.component.ts @@ -3550,7 +3684,7 @@ लाइटनिङ एक्सप्लोरर src/app/components/master-page/master-page.component.html - 44,45 + 44,47 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -3558,20 +3692,12 @@ master-page.lightning - - beta - - src/app/components/master-page/master-page.component.html - 45,48 - - beta - Documentation कागजात src/app/components/master-page/master-page.component.html - 55,57 + 54,56 src/app/docs/docs/docs.component.html @@ -3616,7 +3742,7 @@ इनाम तथ्याङ्क src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3625,7 +3751,7 @@ (144 ब्लकहरू) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3634,7 +3760,7 @@ भर्खरका ब्लकहरू src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3647,10 +3773,36 @@ समायोजनहरू src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments + + Broadcast Transaction + ट्रांसेक्शन प्रसारण गर्नुहोस् + + src/app/components/mining-dashboard/mining-dashboard.component.html + 91 + + + src/app/components/push-transaction/push-transaction.component.html + 2 + + + src/app/components/push-transaction/push-transaction.component.html + 8 + + + src/app/dashboard/dashboard.component.html + 161,169 + + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 102 + + Broadcast Transaction + shared.broadcast-transaction + Pools luck (1 week) पूल भाग्य (1 हप्ता) @@ -3717,7 +3869,7 @@ src/app/components/pool-ranking/pool-ranking.component.html - 136,138 + 152,154 master-page.blocks @@ -3747,12 +3899,24 @@ mining.rank + + Avg Health + + src/app/components/pool-ranking/pool-ranking.component.html + 96,97 + + + src/app/components/pool-ranking/pool-ranking.component.html + 96,98 + + latest-blocks.avg_health + Empty blocks खाली ब्लकहरू src/app/components/pool-ranking/pool-ranking.component.html - 95,98 + 97,100 mining.empty-blocks @@ -3761,7 +3925,7 @@ सबै माईनर्स हरू src/app/components/pool-ranking/pool-ranking.component.html - 113,114 + 129,130 mining.all-miners @@ -3770,7 +3934,7 @@ पूल भाग्य (1w) src/app/components/pool-ranking/pool-ranking.component.html - 130,132 + 146,148 mining.miners-luck @@ -3779,7 +3943,7 @@ पूल गणना (1w) src/app/components/pool-ranking/pool-ranking.component.html - 142,144 + 158,160 mining.miners-count @@ -3788,12 +3952,11 @@ माईनिंग पुलहरू src/app/components/pool-ranking/pool-ranking.component.ts - 57 + 58 - - blocks - ब्लकहरू + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3802,6 +3965,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4013,24 +4211,6 @@ latest-blocks.coinbasetag - - Broadcast Transaction - ट्रांसेक्शन प्रसारण गर्नुहोस् - - src/app/components/push-transaction/push-transaction.component.html - 2 - - - src/app/components/push-transaction/push-transaction.component.html - 8 - - - src/app/dashboard/dashboard.component.html - 154,161 - - Broadcast Transaction - shared.broadcast-transaction - Transaction hex ट्रांसेक्शन हेक्स @@ -4040,7 +4220,7 @@ src/app/components/transaction/transaction.component.html - 296,297 + 291,292 transaction.hex @@ -4161,6 +4341,70 @@ search-form.search-title + + Bitcoin Block Height + + src/app/components/search-form/search-results/search-results.component.html + 3 + + search.bitcoin-block-height + + + Bitcoin Transaction + + src/app/components/search-form/search-results/search-results.component.html + 9 + + search.bitcoin-transaction + + + Bitcoin Address + + src/app/components/search-form/search-results/search-results.component.html + 15 + + search.bitcoin-address + + + Bitcoin Block + + src/app/components/search-form/search-results/search-results.component.html + 21 + + search.bitcoin-block + + + Bitcoin Addresses + + src/app/components/search-form/search-results/search-results.component.html + 27 + + search.bitcoin-addresses + + + Lightning Nodes + + src/app/components/search-form/search-results/search-results.component.html + 35 + + search.lightning-nodes + + + Lightning Channels + + src/app/components/search-form/search-results/search-results.component.html + 43 + + search.lightning-channels + + + Go to "" + + src/app/components/search-form/search-results/search-results.component.html + 52 + + search.go-to + Mempool by vBytes (sat/vByte) vBytes द्वारा मेम्पपुल (sat/vByte) @@ -4188,7 +4432,7 @@ फिल्टर src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4197,7 +4441,7 @@ उल्टो src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4206,7 +4450,7 @@ ट्रांसेक्शन vBytes प्रति सेकेन्ड (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4214,196 +4458,187 @@ Just now भर्खरै - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago पहिले - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After पछि - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - ~ मा - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4443,7 +4678,7 @@ src/app/components/transactions-list/transactions-list.component.html - 298,301 + 300,303 Transaction unconfirmed state transaction.unconfirmed @@ -4453,11 +4688,11 @@ पहिलो पटक देखियो src/app/components/transaction/transaction.component.html - 108,109 + 102,103 src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4473,11 +4708,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4487,7 +4722,7 @@ अनुमानित समय src/app/components/transaction/transaction.component.html - 115,116 + 109,110 Transaction ETA transaction.eta @@ -4497,7 +4732,7 @@ केहि घण्टामा (वा बढी) src/app/components/transaction/transaction.component.html - 121,124 + 115,118 Transaction ETA in several hours or more transaction.eta.in-several-hours @@ -4507,11 +4742,11 @@ वंशज src/app/components/transaction/transaction.component.html - 168,170 + 162,164 src/app/components/transaction/transaction.component.html - 179,181 + 173,175 Descendant transaction.descendant @@ -4521,7 +4756,7 @@ पुर्खा src/app/components/transaction/transaction.component.html - 190,192 + 184,186 Transaction Ancestor transaction.ancestor @@ -4531,11 +4766,11 @@ प्रवाह src/app/components/transaction/transaction.component.html - 208,211 + 202,205 src/app/components/transaction/transaction.component.html - 346,350 + 341,345 Transaction flow transaction.flow @@ -4545,7 +4780,7 @@ रेखाचित्र लुकाउनुहोस् src/app/components/transaction/transaction.component.html - 211,216 + 205,210 hide-diagram @@ -4554,7 +4789,7 @@ थप देखाउनुहोस् src/app/components/transaction/transaction.component.html - 231,233 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4571,7 +4806,7 @@ कम देखाउनुहोस् src/app/components/transaction/transaction.component.html - 233,239 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4584,7 +4819,7 @@ रेखाचित्र देखाउनुहोस् src/app/components/transaction/transaction.component.html - 253,254 + 248,249 show-diagram @@ -4593,7 +4828,7 @@ लकटाइम src/app/components/transaction/transaction.component.html - 292,294 + 287,289 transaction.locktime @@ -4602,7 +4837,7 @@ ट्रांसेक्शन फेला परेन। src/app/components/transaction/transaction.component.html - 455,456 + 450,451 transaction.error.transaction-not-found @@ -4611,7 +4846,7 @@ मेम्पपुल मा देखिन को लागी प्रतिक्षा गर्दै ... src/app/components/transaction/transaction.component.html - 456,461 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4620,7 +4855,7 @@ प्रभावकारी शुल्क दर src/app/components/transaction/transaction.component.html - 489,492 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4768,7 +5003,7 @@ Show more inputs to reveal fee data src/app/components/transactions-list/transactions-list.component.html - 288,291 + 290,293 transactions-list.load-to-reveal-fee-info @@ -4776,7 +5011,7 @@ remaining src/app/components/transactions-list/transactions-list.component.html - 330,331 + 332,333 x-remaining @@ -5026,21 +5261,12 @@ dashboard.latest-transactions - - USD - USD / अमेरिकी डलर - - src/app/dashboard/dashboard.component.html - 126,127 - - dashboard.latest-transactions.USD - Minimum fee न्यूनतम शुल्क src/app/dashboard/dashboard.component.html - 201,202 + 210,211 Minimum mempool fee dashboard.minimum-fee @@ -5050,7 +5276,7 @@ पर्जिंग / सफा src/app/dashboard/dashboard.component.html - 202,203 + 211,212 Purgin below fee dashboard.purging @@ -5060,7 +5286,7 @@ मेमोरी उपयोग src/app/dashboard/dashboard.component.html - 214,215 + 223,224 Memory usage dashboard.memory-usage @@ -5069,15 +5295,27 @@ L-BTC in circulation src/app/dashboard/dashboard.component.html - 228,230 + 237,239 dashboard.lbtc-pegs-in-circulation + + mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + + src/app/docs/api-docs/api-docs.component.html + 13 + + + src/app/docs/api-docs/api-docs.component.html + 14 + + faq.big-disclaimer + REST API service src/app/docs/api-docs/api-docs.component.html - 39,40 + 42,43 api-docs.title @@ -5085,11 +5323,11 @@ Endpoint src/app/docs/api-docs/api-docs.component.html - 48,49 + 51,52 src/app/docs/api-docs/api-docs.component.html - 102,105 + 105,108 Api docs endpoint @@ -5098,18 +5336,18 @@ विवरण src/app/docs/api-docs/api-docs.component.html - 67,68 + 70,71 src/app/docs/api-docs/api-docs.component.html - 106,107 + 109,110 Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-blocks, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. src/app/docs/api-docs/api-docs.component.html - 107,108 + 110,111 api-docs.websocket.websocket @@ -5202,7 +5440,7 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats @@ -5275,7 +5513,11 @@ src/app/lightning/channels-list/channels-list.component.html - 120,121 + 123,124 + + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 lightning.x-channels @@ -5315,11 +5557,11 @@ src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html - 65,66 + 68,69 status.inactive @@ -5332,11 +5574,11 @@ src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html - 66,68 + 69,71 status.active @@ -5349,7 +5591,7 @@ src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5357,7 +5599,7 @@ src/app/lightning/channels-list/channels-list.component.html - 68,70 + 71,73 status.closed @@ -5370,7 +5612,7 @@ src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created @@ -5383,11 +5625,19 @@ src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html - 40,43 + 43,46 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 src/app/lightning/node-statistics/node-statistics.component.html @@ -5395,7 +5645,7 @@ src/app/lightning/node-statistics/node-statistics.component.html - 47,50 + 46,49 src/app/lightning/nodes-list/nodes-list.component.html @@ -5417,6 +5667,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5452,11 +5706,11 @@ लाइटनिंग च्यानल src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel @@ -5465,11 +5719,11 @@ अन्तिम अपडेट src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5485,11 +5739,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update @@ -5498,11 +5752,11 @@ बन्द हुने मिति src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 39,40 + 42,44 lightning.closing_date @@ -5510,7 +5764,7 @@ Closed by src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by @@ -5519,7 +5773,7 @@ ट्रांसेक्शन खोल्दै src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction @@ -5528,7 +5782,7 @@ बन्द ट्रांसेक्शन src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction @@ -5540,6 +5794,27 @@ 37 + + Mutually closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 20 + + + + Force closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 24 + + + + Force closed with penalty + + src/app/lightning/channel/closing-type/closing-type.component.ts + 28 + + Open खोल्नु @@ -5554,7 +5829,7 @@ देखाउन कुनै च्यानलहरू छैनन् src/app/lightning/channels-list/channels-list.component.html - 29,35 + 29,37 lightning.empty-channels-list @@ -5563,7 +5838,7 @@ उपनाम src/app/lightning/channels-list/channels-list.component.html - 35,37 + 38,40 src/app/lightning/group/group.component.html @@ -5587,11 +5862,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias @@ -5600,7 +5875,7 @@ स्थिति src/app/lightning/channels-list/channels-list.component.html - 37,38 + 40,41 status @@ -5609,7 +5884,7 @@ च्यानल आईडी src/app/lightning/channels-list/channels-list.component.html - 41,45 + 44,48 channels.id @@ -5618,11 +5893,11 @@ sats / सैटस src/app/lightning/channels-list/channels-list.component.html - 60,64 + 63,68 src/app/lightning/channels-list/channels-list.component.html - 84,88 + 87,91 src/app/lightning/channels-statistics/channels-statistics.component.html @@ -5666,6 +5941,22 @@ shared.sats + + avg + + src/app/lightning/channels-statistics/channels-statistics.component.html + 3,5 + + statistics.average-small + + + med + + src/app/lightning/channels-statistics/channels-statistics.component.html + 6,9 + + statistics.median-small + Avg Capacity औसत क्षमता @@ -5790,11 +6081,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 17,18 + 16,17 src/app/lightning/node-statistics/node-statistics.component.html - 54,57 + 53,56 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -5843,10 +6134,6 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity @@ -5863,12 +6150,20 @@ 40,44 - src/app/lightning/node-statistics/node-statistics.component.html - 29,30 + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 src/app/lightning/node-statistics/node-statistics.component.html - 61,64 + 28,29 + + + src/app/lightning/node-statistics/node-statistics.component.html + 60,63 src/app/lightning/nodes-list/nodes-list.component.html @@ -5900,16 +6195,20 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -5942,7 +6241,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5958,11 +6257,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location @@ -6000,9 +6299,17 @@ src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -6031,6 +6338,28 @@ lightning.node-fee-distribution + + Outgoing Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 170 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 208 + + + + Incoming Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 178 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 222 + + Percentage change past week गत हप्ता प्रतिशत परिवर्तन @@ -6040,11 +6369,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 18,20 + 17,19 src/app/lightning/node-statistics/node-statistics.component.html - 30,32 + 29,31 mining.percentage-change-last-week @@ -6057,11 +6386,11 @@ src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node @@ -6074,7 +6403,7 @@ src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity @@ -6087,7 +6416,7 @@ src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels @@ -6100,20 +6429,12 @@ country - - No node found for public key "" - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size सरदर च्यानल साइज src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg @@ -6121,7 +6442,7 @@ Avg channel distance src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance @@ -6130,7 +6451,7 @@ रङ src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color @@ -6138,7 +6459,7 @@ ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6150,7 +6471,7 @@ Exclusively on Tor src/app/lightning/node/node.component.html - 93,95 + 96,98 tor @@ -6158,7 +6479,7 @@ Liquidity ad src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad @@ -6166,7 +6487,7 @@ Lease fee rate src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate @@ -6175,7 +6496,7 @@ Lease base fee src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee @@ -6183,7 +6504,7 @@ Funding weight src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight @@ -6191,7 +6512,7 @@ Channel fee rate src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate @@ -6200,7 +6521,7 @@ Channel base fee src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee @@ -6208,7 +6529,7 @@ Compact lease src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease @@ -6216,7 +6537,7 @@ TLV extension records src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records @@ -6225,7 +6546,7 @@ खुल्ला च्यानलहरू src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels @@ -6234,7 +6555,7 @@ बन्द च्यानलहरू src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels @@ -6278,7 +6599,7 @@ कुनै जियोलोकेशन डाटा उपलब्ध छैन src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 218,213 + 219,214 @@ -6300,8 +6621,8 @@ 112,107 - - Reachable on Clearnet Only + + Clearnet and Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6311,8 +6632,8 @@ 303,302 - - Reachable on Clearnet and Darknet + + Clearnet Only (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6322,8 +6643,8 @@ 295,294 - - Reachable on Darknet Only + + Darknet Only (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6347,19 +6668,22 @@ lightning.share - nodes - नोडहरू + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6367,7 +6691,7 @@ BTC क्षमता src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6482,11 +6806,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6575,24 +6899,6 @@ 27 - - Top 100 nodes liquidity ranking - शीर्ष 100 नोड्स तरलता रैंकिंग - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - शीर्ष 100 नोड कनेक्टिविटी रैंकिंग - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes सबैभन्दा पुरानो नोड्स diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index c1d10e51c..999a63145 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ Community-allianties src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Projectvertalers src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Projectbijdragers src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Projectleden src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Projectonderhouders src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment Moeilijkheidsaanpassing + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Resterend - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks blokken - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block blok - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Schatting - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Vorige - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Huidige Periode - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving Volgende Halvering - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Of 2x het minimum, of het lage prioriteitstarief (welke van beide lager is) @@ -3346,7 +3446,7 @@ Mining src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3455,7 @@ Poolrankering src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3468,7 @@ Pooldominatie src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3481,7 @@ Hashrate & Moeilijkheid src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3499,7 @@ Lightning Nodes Per Netwerk src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3520,7 @@ Lightning Netwerk Capaciteit src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3541,7 @@ Lightning Nodes Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3554,7 @@ Lightning Nodes Per Land src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3571,7 @@ Lightningnodes Wereldkaart src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3588,7 @@ Lightningnodekanalen Wereldkaart src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3643,11 @@ Hashrate (MG) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3767,7 @@ Beloningstatistieken src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 blokken) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ Laatste blokken src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ Aanpassingen src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Transactie Uitzenden src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - blokken + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4473,7 @@ Filter src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4482,7 @@ Omkeren src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4491,7 @@ Transactie-vBytes per seconde (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4499,188 @@ Just now Zojuist - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago geleden - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + Over ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After Na - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - In ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4814,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4833,7 @@ Toon meer src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4850,7 @@ Toon minder src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4863,7 @@ Toon diagram src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4872,7 @@ Locktime src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4881,7 @@ Transactie niet gevonden. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4890,7 @@ Wachten tot het in de mempool verschijnt... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4899,7 @@ Effectief vergoedingstarief src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5354,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5365,7 @@ REST API service src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5374,11 @@ Eindpunt src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5387,11 @@ Omschrijving src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5399,7 @@ Default push: actie: 'want', data: ['blocks', ...] om uit te drukken wat je gepushed wilt hebben. Beschikbaar: blocks, mempool-blocks, live-2h-chart, en stats.Pushtransacties gerelateerd aan adres: 'track-address': '3PbJ...bF9B' om alle nieuwe transacties met dat adres als invoer of uitvoer te ontvangen. Retourneert een reeks transacties. address-transactions voor nieuwe mempooltransacties, en block-transactions voor nieuwe blokbevestigde transacties. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5574,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5692,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5818,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5959,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6221,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6277,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6604,19 +6758,22 @@ lightning.share - nodes - nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6624,7 +6781,7 @@ BTC-capaciteit src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6742,11 +6899,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index 7970bfe8b..5e0e5ad44 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Sojusze społecznościowe src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Tłumacze projektu src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Współtwórcy projektu src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Członkowie projektu src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Opiekunowie projektu src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -3094,7 +3094,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3778,7 +3778,7 @@ Statystyki nagród src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3787,7 +3787,7 @@ (144 bloków) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3796,7 +3796,7 @@ Ostatnie bloki src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3809,7 +3809,7 @@ Dostosowania src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3818,7 +3818,7 @@ Rozgłoś transakcję src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3993,9 +3993,9 @@ 58 - - blocks - bloków + + blocks + bloków src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -4004,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + Inne () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -5551,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5791,7 +5831,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5932,7 +5972,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6250,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6730,19 +6774,23 @@ lightning.share - nodes - węzłów + nodes + węzłów src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6750,7 +6798,7 @@ pojemność BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6868,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index 1d7764f84..bed923e05 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1487,7 +1487,7 @@ Alianças da comunidade src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Tradutores do Projeto src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Contribuidores do projeto src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Membros do Projeto src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Mantenedores do projeto src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -3094,7 +3094,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3778,7 +3778,7 @@ Estatisticas de recompensas src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3787,7 +3787,7 @@ (144 blocos) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3796,7 +3796,7 @@ Últimos blocos src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3809,7 +3809,7 @@ Ajustes src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3818,7 +3818,7 @@ Transmitir Transação src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3993,9 +3993,9 @@ 58 - - blocks - blocos + + blocks + blocos src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -4004,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + Outras () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -5551,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5791,7 +5831,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5932,7 +5972,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6250,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6730,19 +6774,23 @@ lightning.share - nodes - nós + nodes + nós src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6750,7 +6798,7 @@ Capacidade de BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6868,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.ro.xlf b/frontend/src/locale/messages.ro.xlf index 18051fdbe..2dfca47ad 100644 --- a/frontend/src/locale/messages.ro.xlf +++ b/frontend/src/locale/messages.ro.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ Alianțe din Comunitate src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Traducători ai proiectului src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Contribuitori ai proiectului src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Membrii Proiectului src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Întreținători ai proiectului src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment Ajustarea Dificultății + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Rămas - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks blocuri - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block bloc - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Estimare - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Anterior - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Perioada Curentă - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving Înjumătățirea următoare - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) 2x minimum sau valoarea Prioritate Scăzută (oricare este mai mică) @@ -3346,7 +3446,7 @@ Minerit src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3455,7 @@ Clasament Fonduri src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3468,7 @@ Dominanță Fonduri src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3481,7 @@ Rată hash & Dificultate src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3499,7 @@ Noduri Lightning Per Rețea src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3520,7 @@ Capacitatea rețelei Lightning src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3541,7 @@ Noduri Lightning Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3554,7 @@ Noduri Lightning per țară src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3571,7 @@ Harta lumii cu Noduri Lightning src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3588,7 @@ Harta lumii cu canale ale nodurilor Lightning src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3643,11 @@ Rată hash (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3767,7 @@ Statistici Recompense src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 blocuri) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ Ultimele blocuri src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ Ajustări src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Transmite Tranzacție src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - blocuri + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4473,7 @@ Filtru src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4482,7 @@ Inversează src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4491,7 @@ Tranzacție vBytes pe secundă (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4499,188 @@ Just now Chiar acum - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago Acum - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + În ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After După - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - În ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4814,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4833,7 @@ Arată mai multe src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4850,7 @@ Arată mai puțin src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4863,7 @@ Arată diagrama src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4872,7 @@ Locktime src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4881,7 @@ Tranzacția nu a fost găsită. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4890,7 @@ Se așteaptă să apară în mempool... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4899,7 @@ Rata efectivă a comisionului src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5354,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5365,7 @@ Serviciu REST API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5374,11 @@ Terminație src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5387,11 @@ Descriere src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5399,7 @@ Trimitere implicită: acțiune: 'want', data: ['blocks', ...] pentru a exprima ce dorești să trimiți. Disponibil: blocks, mempool-blocks, live-2h-chart, și stats.Tranzacții de trimitere pentru adresa: 'track-address': '3PbJ...bF9B' pentru a primi toate tranzacțiile noi care conțin acea adresă ca intrare sau iesire. Returnează un șir de tranzacții. address-transactions pentru tranzacții noi din mempool, și block-transactions pentru tranzacții confirmate din blocuri noi. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5574,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5692,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5818,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5959,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6221,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6277,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6604,19 +6758,22 @@ lightning.share - nodes - noduri + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6624,7 +6781,7 @@ capacitate BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6742,11 +6899,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.ru.xlf b/frontend/src/locale/messages.ru.xlf index d9b9221b7..490b42bd9 100644 --- a/frontend/src/locale/messages.ru.xlf +++ b/frontend/src/locale/messages.ru.xlf @@ -348,7 +348,7 @@ transaction - транзакция + транзакция src/app/bisq/bisq-address/bisq-address.component.html 48 @@ -373,7 +373,7 @@ transactions - транзакции(й) + транзакции(й) src/app/bisq/bisq-address/bisq-address.component.html 49 @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1109,7 +1109,7 @@ confirmation - подтверждение + подтверждение src/app/bisq/bisq-transaction/bisq-transaction.component.html 20,21 @@ -1131,7 +1131,7 @@ confirmations - подтверждения(й) + подтверждения(й) src/app/bisq/bisq-transaction/bisq-transaction.component.html 21,22 @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ Обьединения Сообщества src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Переводы src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Участники проекта src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Участники проекта src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Разработчики проекта src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -1764,7 +1764,7 @@ of   - из + из src/app/components/asset/asset.component.html 78 @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment Корректировка сложности + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Осталось - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks блоков - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block блоков - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Приблизительно - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Предыдущий - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Текущий период - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,110 @@ Next Halving Следующий халвинг - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + блоков добавлено + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + блок добавлен + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + блоков намайнено + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + блок намайнен + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + блоков осталось + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + блок остался + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + блоков ожидает + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + блок ожидает + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + блоков позади + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + блок позади + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + Среднее время блока + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Введите как минимум ×2 или ставку низкого приоритета (меньшее из двух) @@ -3346,7 +3457,7 @@ Майнинг src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3466,7 @@ Рейтинг пулов src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3479,7 @@ Доминация пулов src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3492,7 @@ Хэшрейт и сложность src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3501,7 @@ Лайтнинг src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3510,7 @@ Узлы Лайтнинг на сеть src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3531,7 @@ Объем сети Лайтнинг src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3552,7 @@ Узлов Лайтнинг на провайдера src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3565,7 @@ Узлов Лайтнинг на страну src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3582,7 @@ Мировая карта узлов Лайтнинг src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3599,7 @@ Мировая карта лайтнинг-каналов src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3620,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3654,11 @@ Хэшрейт (ср.) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3778,7 @@ Статистика вознаграждений src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3787,7 @@ (144 блока) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3796,7 @@ Последние блоки src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3809,7 @@ Корректировки src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3818,7 @@ Транслировать транзакцию src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3993,9 @@ 58 - - blocks - блоки + + blocks + блоков src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + Другое ( ) + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4262,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4486,7 @@ Фильтр src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4495,7 @@ Инвертировать src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4504,7 @@ Транзакционные vBytes в секунду (vB / s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4512,188 @@ Just now Только что - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago - назад + назад - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + Через ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After После - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - Через ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4827,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4846,7 @@ Показать больше src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4863,7 @@ Показывай меньше src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4876,7 @@ Показать схему src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4885,7 @@ Время блокировки src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4894,7 @@ Транзакция не найдена. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4903,7 @@ Ожидаем ее появления в мемпуле ... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4912,7 @@ Эффективная комиссионная ставка src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4928,7 +5067,7 @@ remaining - осталось + осталось src/app/components/transactions-list/transactions-list.component.html 332,333 @@ -4981,7 +5120,7 @@ This transaction saved % on fees by using native SegWit - Эта транзакция сэкономила % на комиссиях за счет использования нативного SegWit. + Эта транзакция сэкономила % на комиссиях за счет использования нативного SegWit. src/app/components/tx-features/tx-features.component.html 2 @@ -5008,7 +5147,7 @@ This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit - Эта транзакция сэкономила % на комиссиях за счет использования SegWit и может сэкономить еще % за счет полного перехода на нативный SegWit. + Эта транзакция сэкономила % на комиссиях за счет использования SegWit и может сэкономить еще % за счет полного перехода на нативный SegWit. src/app/components/tx-features/tx-features.component.html 4 @@ -5017,7 +5156,7 @@ This transaction could save % on fees by upgrading to native SegWit or % by upgrading to SegWit-P2SH - Эта транзакция могла сэкономить % на комиссиях за счет перехода на нативный SegWit или % за счет обновления до SegWit-P2SH. + Эта транзакция могла сэкономить % на комиссиях за счет перехода на нативный SegWit или % за счет обновления до SegWit-P2SH. src/app/components/tx-features/tx-features.component.html 6 @@ -5139,7 +5278,7 @@ Only ~ sat/vB was needed to get into this block - Чтобы попасть в этот блок, необходимо всего ~ sat / vB + Чтобы попасть в этот блок, необходимо всего ~ sat/vB src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -5152,7 +5291,7 @@ Overpaid x - Переплачено x + Переплачено x src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -5228,6 +5367,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5378,7 @@ Служба REST API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5387,11 @@ Конечная точка src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5400,11 @@ Описание src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5412,7 @@ Пуш по умолчанию: действие: 'want', data: ['blocks', ...] , чтобы выразить то, что вы хотите запушить. Доступно: блоки , mempool-blocks , live-2h-chart иstats Пуш-транзакций, связанных с адресом: 'track-address': '3PbJ ... bF9B' для получения всех новых транзакционных входных или выходных данных, относящихся к данному адресу. Предоставляет массив транзакций. транзакций данного адреса, для новых транзакций мемпула и транзакций блока для транзакций, подтвержденных в новом блоке. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5435,7 +5578,7 @@ channels - каналов + каналов src/app/lightning/channel/channel-box/channel-box.component.html 79 @@ -5444,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5705,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5831,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5972,7 @@ сат src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6234,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6559,6 +6726,7 @@ Clearnet and Darknet + Clearnet и Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6570,6 +6738,7 @@ Clearnet Only (IPv4, IPv6) + Только Clearnet (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6581,6 +6750,7 @@ Darknet Only (Tor, I2P, cjdns) + Только Darknet (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6604,19 +6774,23 @@ lightning.share - nodes - узлы + nodes + узлов src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6624,7 +6798,7 @@ Емкость BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6742,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6864,7 +7038,7 @@ year - год + год src/app/shared/i18n/dates.ts 3 @@ -6872,7 +7046,7 @@ years - лет + лет src/app/shared/i18n/dates.ts 4 @@ -6880,7 +7054,7 @@ month - месяц + месяц src/app/shared/i18n/dates.ts 5 @@ -6888,7 +7062,7 @@ months - месяцев + месяцев src/app/shared/i18n/dates.ts 6 @@ -6896,7 +7070,7 @@ week - неделя + неделю src/app/shared/i18n/dates.ts 7 @@ -6904,7 +7078,7 @@ weeks - недель + недели src/app/shared/i18n/dates.ts 8 @@ -6912,7 +7086,7 @@ day - дней + дней src/app/shared/i18n/dates.ts 9 @@ -6920,7 +7094,7 @@ days - дней + дней src/app/shared/i18n/dates.ts 10 @@ -6928,7 +7102,7 @@ hour - час + час src/app/shared/i18n/dates.ts 11 @@ -6936,7 +7110,7 @@ hours - часов + часов src/app/shared/i18n/dates.ts 12 @@ -6944,7 +7118,7 @@ minute - минута + минута src/app/shared/i18n/dates.ts 13 @@ -6952,7 +7126,7 @@ minutes - минут + минут src/app/shared/i18n/dates.ts 14 @@ -6960,7 +7134,7 @@ second - секунда + секунда src/app/shared/i18n/dates.ts 15 @@ -6968,7 +7142,7 @@ seconds - секунд + секунд src/app/shared/i18n/dates.ts 16 diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index 6c5bfc3bb..0ab3be00c 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -357,11 +357,11 @@ src/app/components/block/block.component.html - 290,291 + 310,311 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 26,27 + 46,47 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -382,11 +382,11 @@ src/app/components/block/block.component.html - 291,292 + 311,312 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 27,28 + 47,48 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -424,7 +424,7 @@ src/app/components/block/block.component.html - 40,41 + 38,39 block.hash @@ -449,7 +449,7 @@ src/app/components/block/block.component.html - 44,46 + 42,44 src/app/components/blocks-list/blocks-list.component.html @@ -592,11 +592,11 @@ src/app/components/master-page/master-page.component.html - 49,51 + 48,50 src/app/components/pool-ranking/pool-ranking.component.html - 94,96 + 94,95 @@ -748,11 +748,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -773,16 +773,24 @@ src/app/components/about/about.component.html - 385,389 + 391,394 + + + src/app/components/mining-dashboard/mining-dashboard.component.html + 87 src/app/dashboard/dashboard.component.html - 150,152 + 157,159 src/app/docs/docs/docs.component.html 51 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 97 + Terms of Service shared.terms-of-service @@ -793,14 +801,22 @@ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 113,120 + + src/app/components/mining-dashboard/mining-dashboard.component.html + 89 + src/app/dashboard/dashboard.component.html - 152,154 + 159,161 src/app/docs/docs/docs.component.html 53 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 99 + Privacy Policy shared.privacy-policy @@ -988,7 +1004,7 @@ src/app/dashboard/dashboard.component.html - 124,125 + 124,126 @@ -1036,7 +1052,7 @@ src/app/components/transaction/transaction.component.html - 158,160 + 152,154 src/app/components/transactions-list/transactions-list.component.html @@ -1052,11 +1068,11 @@ src/app/components/block/block.component.html - 246,247 + 252,253 src/app/components/transaction/transaction.component.html - 288,290 + 283,285 transaction.version @@ -1106,7 +1122,7 @@ src/app/components/transactions-list/transactions-list.component.html - 294,295 + 296,297 Transaction singular confirmation count shared.confirmation-count.singular @@ -1128,7 +1144,7 @@ src/app/components/transactions-list/transactions-list.component.html - 295,296 + 297,298 Transaction plural confirmation count shared.confirmation-count.plural @@ -1140,10 +1156,6 @@ src/app/bisq/bisq-transaction/bisq-transaction.component.html 43,45 - - src/app/components/transaction/transaction.component.html - 65,67 - Transaction included in block transaction.included-in-block @@ -1156,11 +1168,11 @@ src/app/components/transaction/transaction.component.html - 77,80 + 71,74 src/app/components/transaction/transaction.component.html - 135,138 + 129,132 Transaction features transaction.features @@ -1188,11 +1200,11 @@ src/app/components/transaction/transaction.component.html - 262,267 + 257,262 src/app/components/transaction/transaction.component.html - 406,412 + 401,407 transaction.details @@ -1209,11 +1221,11 @@ src/app/components/transaction/transaction.component.html - 249,253 + 244,248 src/app/components/transaction/transaction.component.html - 377,383 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1231,7 +1243,7 @@ src/app/components/transaction/transaction.component.ts - 241,240 + 246,245 @@ -1251,7 +1263,7 @@ src/app/components/transaction/transaction.component.html - 159,160 + 153,154 src/app/dashboard/dashboard.component.html @@ -1267,7 +1279,7 @@ src/app/components/transaction/transaction.component.html - 72,73 + 66,67 Transaction Confirmed state transaction.confirmed @@ -1438,7 +1450,7 @@ Raziskovalec blokov in mempool-a razvit za Bitcoin skupnost, osredotočen na trg omrežnin za transakcije in večplastni ekosistem. Samogostovanje brez zaupanja vrednih tretjih oseb. src/app/components/about/about.component.html - 13,17 + 13,16 @@ -1446,7 +1458,7 @@ Sponzorji - podjetja 🚀 src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1455,7 +1467,7 @@ Sponzorji - posamezniki ❤️ src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart @@ -1463,7 +1475,7 @@ Community Integrations src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1472,7 +1484,7 @@ Zavezništva skupnosti src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1481,7 +1493,7 @@ Prevajalci src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1490,7 +1502,7 @@ Sodelujoči src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1499,7 +1511,7 @@ Člani projekta src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1508,7 +1520,7 @@ Vzdrževalci src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1517,7 +1529,7 @@ O projektu src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -1529,7 +1541,7 @@ src/app/components/master-page/master-page.component.html - 58,61 + 57,60 @@ -1565,7 +1577,7 @@ src/app/components/amount/amount.component.html - 6,9 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -1581,7 +1593,7 @@ src/app/components/transactions-list/transactions-list.component.html - 302,304 + 304,306 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -1664,7 +1676,7 @@ src/app/components/assets/assets.component.html - 29,31 + 31,33 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -1886,7 +1898,7 @@ src/app/components/assets/assets.component.html - 30,31 + 32,33 Asset ticker header @@ -1899,7 +1911,7 @@ src/app/components/assets/assets.component.html - 31,34 + 33,36 Asset Issuer Domain header @@ -1912,7 +1924,7 @@ src/app/components/assets/assets.component.html - 32,36 + 34,38 Asset ID header @@ -1921,7 +1933,7 @@ Napaka pri nalaganju podatkov o sredstvih. src/app/components/assets/assets.component.html - 48,53 + 50,55 Asset data load error @@ -2028,7 +2040,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2045,7 +2057,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 161 + 165 @@ -2061,7 +2073,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 163 + 167 @@ -2073,11 +2085,11 @@ src/app/components/block-fees-graph/block-fees-graph.component.ts - 62 + 67 src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2086,19 +2098,19 @@ Indeksiranje blokov src/app/components/block-fees-graph/block-fees-graph.component.ts - 110,105 + 116,111 src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 108,103 + 113,108 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 115,110 + 116,111 src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2138,7 +2150,7 @@ src/app/components/transaction/transaction.component.html - 476 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2164,11 +2176,11 @@ src/app/components/transaction/transaction.component.html - 476,477 + 473 src/app/components/transactions-list/transactions-list.component.html - 286,287 + 288 sat shared.sat @@ -2182,11 +2194,11 @@ src/app/components/transaction/transaction.component.html - 161,165 + 155,159 src/app/components/transaction/transaction.component.html - 479,481 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2198,7 +2210,7 @@ src/app/lightning/channels-list/channels-list.component.html - 38,39 + 41,43 Transaction fee rate transaction.fee-rate @@ -2216,19 +2228,19 @@ src/app/components/block/block.component.html - 125,128 + 124,127 src/app/components/block/block.component.html - 129 + 128,130 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 12,14 + 19,22 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 15,17 + 30,33 src/app/components/fees-box/fees-box.component.html @@ -2268,27 +2280,27 @@ src/app/components/transaction/transaction.component.html - 173,174 + 167,168 src/app/components/transaction/transaction.component.html - 184,185 + 178,179 src/app/components/transaction/transaction.component.html - 195,196 + 189,190 src/app/components/transaction/transaction.component.html - 481,484 + 478,481 src/app/components/transaction/transaction.component.html - 492,494 + 489,491 src/app/components/transactions-list/transactions-list.component.html - 286 + 286,287 src/app/dashboard/dashboard.component.html @@ -2296,7 +2308,7 @@ src/app/dashboard/dashboard.component.html - 204,208 + 213,217 sat/vB shared.sat-vbyte @@ -2310,11 +2322,11 @@ src/app/components/transaction/transaction.component.html - 160,162 + 154,156 src/app/components/transaction/transaction.component.html - 274,277 + 269,272 Transaction Virtual Size transaction.vsize @@ -2384,7 +2396,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2420,11 +2432,11 @@ src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 60 + 65 src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2441,7 +2453,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2450,15 +2462,15 @@ Velikost src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 180,179 + 184,183 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 226,224 + 239,237 src/app/components/block/block.component.html - 50,52 + 48,50 src/app/components/blocks-list/blocks-list.component.html @@ -2482,7 +2494,7 @@ src/app/components/transaction/transaction.component.html - 270,272 + 265,267 src/app/dashboard/dashboard.component.html @@ -2494,11 +2506,11 @@ Utež src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 188,187 + 192,191 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 257,254 + 270,267 src/app/components/block/block-preview.component.html @@ -2506,11 +2518,22 @@ src/app/components/block/block.component.html - 54,56 + 52,54 src/app/components/transaction/transaction.component.html - 278,280 + 273,275 + + + + Size per weight + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 200,199 + + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 282,279 @@ -2525,14 +2548,6 @@ shared.block-title - - - - src/app/components/block/block-preview.component.html - 11,12 - - shared.block-title - Median fee Mediana omrežnin @@ -2542,7 +2557,7 @@ src/app/components/block/block.component.html - 128,129 + 127,128 src/app/components/mempool-block/mempool-block.component.html @@ -2559,11 +2574,11 @@ src/app/components/block/block.component.html - 133,135 + 138,140 src/app/components/block/block.component.html - 159,162 + 164,167 src/app/components/mempool-block/mempool-block.component.html @@ -2581,7 +2596,7 @@ src/app/components/block/block.component.html - 168,170 + 173,175 block.miner @@ -2594,7 +2609,7 @@ src/app/components/block/block.component.ts - 227 + 242 @@ -2604,6 +2619,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2619,31 +2638,47 @@ Previous Block - - Block health + + Health src/app/components/block/block.component.html - 58,61 + 56 - block.health + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + latest-blocks.health Unknown src/app/components/block/block.component.html - 69,72 + 67,70 src/app/components/blocks-list/blocks-list.component.html 60,63 - src/app/lightning/node/node.component.html - 52,55 + src/app/components/pool-ranking/pool-ranking.component.html + 121,124 + + + src/app/lightning/channel/closing-type/closing-type.component.ts + 32 src/app/lightning/node/node.component.html - 96,100 + 55,58 + + + src/app/lightning/node/node.component.html + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2660,7 +2695,7 @@ Razpon omrežnin src/app/components/block/block.component.html - 124,125 + 123,124 src/app/components/mempool-block/mempool-block.component.html @@ -2673,7 +2708,7 @@ Na podlagi povprečne native segwit transakcije (140 vBajtov). src/app/components/block/block.component.html - 129,131 + 131,136 src/app/components/fees-box/fees-box.component.html @@ -2697,49 +2732,60 @@ Transaction fee tooltip - - Subsidy + fees: - Novi kovanci + omrežnine: + + Subsidy + fees src/app/components/block/block.component.html - 148,151 + 153,156 src/app/components/block/block.component.html - 163,167 + 168,172 Total subsidy and fees in a block block.subsidy-and-fees - - Projected + + Expected src/app/components/block/block.component.html - 210,212 + 216 - block.projected + block.expected + + + beta + + src/app/components/block/block.component.html + 216,217 + + + src/app/components/block/block.component.html + 222,224 + + beta Actual src/app/components/block/block.component.html - 212,216 + 218,222 block.actual - - Projected Block + + Expected Block src/app/components/block/block.component.html - 216,218 + 222 - block.projected-block + block.expected-block Actual Block src/app/components/block/block.component.html - 225,227 + 231 block.actual-block @@ -2748,7 +2794,7 @@ Bits src/app/components/block/block.component.html - 250,252 + 256,258 block.bits @@ -2757,7 +2803,7 @@ Merkle koren src/app/components/block/block.component.html - 254,256 + 260,262 block.merkle-root @@ -2766,7 +2812,7 @@ Težavnost src/app/components/block/block.component.html - 265,268 + 271,274 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -2782,11 +2828,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2795,7 +2841,7 @@ Nonce src/app/components/block/block.component.html - 269,271 + 275,277 block.nonce @@ -2804,32 +2850,41 @@ Glava bloka (Hex) src/app/components/block/block.component.html - 273,274 + 279,280 block.header + + Audit + + src/app/components/block/block.component.html + 297,301 + + Toggle Audit + block.toggle-audit + Details Podrobnosti src/app/components/block/block.component.html - 284,288 + 304,308 src/app/components/transaction/transaction.component.html - 254,259 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2839,20 +2894,16 @@ Napaka pri nalaganju podatkov. src/app/components/block/block.component.html - 303,305 + 323,325 src/app/components/block/block.component.html - 339,343 + 362,366 src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -2867,7 +2918,7 @@ Why is this block empty? src/app/components/block/block.component.html - 361,367 + 384,390 block.empty-block-explanation @@ -2913,18 +2964,6 @@ latest-blocks.mined - - Health - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - latest-blocks.health - Reward Nagrada @@ -2988,7 +3027,7 @@ src/app/dashboard/dashboard.component.html - 210,214 + 219,223 dashboard.txs @@ -3021,13 +3060,17 @@ Difficulty Adjustment Prilagoditev težavnosti + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3035,11 +3078,11 @@ Remaining Preostalo - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3048,11 +3091,11 @@ blocks blokov - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3073,11 +3116,11 @@ block blok - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3090,11 +3133,11 @@ Estimate Ocena - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3103,20 +3146,24 @@ Previous Prejšnja - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Trenutno obdobje - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3125,11 +3172,99 @@ Next Halving Naslednja razpolovitev - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Bodisi 2-kratnik najnižje omrežnine ali stopnja nizke prioritete (kar je nižje) @@ -3227,7 +3362,7 @@ src/app/dashboard/dashboard.component.html - 237,238 + 246,247 dashboard.incoming-transactions @@ -3240,7 +3375,7 @@ src/app/dashboard/dashboard.component.html - 240,243 + 249,252 dashboard.backend-is-synchronizing @@ -3253,7 +3388,7 @@ src/app/dashboard/dashboard.component.html - 245,250 + 254,259 vB/s shared.vbytes-per-second @@ -3267,7 +3402,7 @@ src/app/dashboard/dashboard.component.html - 208,209 + 217,218 Unconfirmed count dashboard.unconfirmed @@ -3287,7 +3422,7 @@ Rudarjenje src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3296,7 +3431,7 @@ Porazdelitev združenj src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3309,7 +3444,7 @@ Zgodovinska porazdelitev združenj src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3321,7 +3456,7 @@ Hashrate & Difficulty src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3329,7 +3464,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3337,7 +3472,7 @@ Lightning Nodes Per Network src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3357,7 +3492,7 @@ Lightning Network Capacity src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3377,7 +3512,7 @@ Lightning Nodes Per ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3389,7 +3524,7 @@ Lightning Nodes Per Country src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3405,7 +3540,7 @@ Lightning Nodes World Map src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3421,7 +3556,7 @@ Lightning Nodes Channels World Map src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3442,11 +3577,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3476,11 +3611,11 @@ Procesorska moč (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3516,7 +3651,7 @@ src/app/components/master-page/master-page.component.html - 52,54 + 51,53 src/app/components/statistics/statistics.component.ts @@ -3541,7 +3676,7 @@ Lightning Explorer src/app/components/master-page/master-page.component.html - 44,45 + 44,47 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -3549,20 +3684,12 @@ master-page.lightning - - beta - - src/app/components/master-page/master-page.component.html - 45,48 - - beta - Documentation Dokumentacija src/app/components/master-page/master-page.component.html - 55,57 + 54,56 src/app/docs/docs/docs.component.html @@ -3607,7 +3734,7 @@ Statistika nagrad src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3616,7 +3743,7 @@ (144 blokov) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3625,7 +3752,7 @@ Najnovejši bloki src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3638,10 +3765,36 @@ Prilagoditve src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments + + Broadcast Transaction + Objava transakcije + + src/app/components/mining-dashboard/mining-dashboard.component.html + 91 + + + src/app/components/push-transaction/push-transaction.component.html + 2 + + + src/app/components/push-transaction/push-transaction.component.html + 8 + + + src/app/dashboard/dashboard.component.html + 161,169 + + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 102 + + Broadcast Transaction + shared.broadcast-transaction + Pools luck (1 week) Sreča združenj (1 teden) @@ -3709,7 +3862,7 @@ src/app/components/pool-ranking/pool-ranking.component.html - 136,138 + 152,154 master-page.blocks @@ -3739,12 +3892,24 @@ mining.rank + + Avg Health + + src/app/components/pool-ranking/pool-ranking.component.html + 96,97 + + + src/app/components/pool-ranking/pool-ranking.component.html + 96,98 + + latest-blocks.avg_health + Empty blocks Prazni bloki src/app/components/pool-ranking/pool-ranking.component.html - 95,98 + 97,100 mining.empty-blocks @@ -3753,7 +3918,7 @@ Skupaj src/app/components/pool-ranking/pool-ranking.component.html - 113,114 + 129,130 mining.all-miners @@ -3762,7 +3927,7 @@ Sreča združenj (1 teden) src/app/components/pool-ranking/pool-ranking.component.html - 130,132 + 146,148 mining.miners-luck @@ -3771,7 +3936,7 @@ Število združenj (1 teden) src/app/components/pool-ranking/pool-ranking.component.html - 142,144 + 158,160 mining.miners-count @@ -3780,12 +3945,11 @@ Rudarska združenja src/app/components/pool-ranking/pool-ranking.component.ts - 57 + 58 - - blocks - blokov + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3794,6 +3958,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4006,24 +4205,6 @@ latest-blocks.coinbasetag - - Broadcast Transaction - Objava transakcije - - src/app/components/push-transaction/push-transaction.component.html - 2 - - - src/app/components/push-transaction/push-transaction.component.html - 8 - - - src/app/dashboard/dashboard.component.html - 154,161 - - Broadcast Transaction - shared.broadcast-transaction - Transaction hex Šestnajstiški zapis @@ -4033,7 +4214,7 @@ src/app/components/transaction/transaction.component.html - 296,297 + 291,292 transaction.hex @@ -4153,6 +4334,70 @@ search-form.search-title + + Bitcoin Block Height + + src/app/components/search-form/search-results/search-results.component.html + 3 + + search.bitcoin-block-height + + + Bitcoin Transaction + + src/app/components/search-form/search-results/search-results.component.html + 9 + + search.bitcoin-transaction + + + Bitcoin Address + + src/app/components/search-form/search-results/search-results.component.html + 15 + + search.bitcoin-address + + + Bitcoin Block + + src/app/components/search-form/search-results/search-results.component.html + 21 + + search.bitcoin-block + + + Bitcoin Addresses + + src/app/components/search-form/search-results/search-results.component.html + 27 + + search.bitcoin-addresses + + + Lightning Nodes + + src/app/components/search-form/search-results/search-results.component.html + 35 + + search.lightning-nodes + + + Lightning Channels + + src/app/components/search-form/search-results/search-results.component.html + 43 + + search.lightning-channels + + + Go to "" + + src/app/components/search-form/search-results/search-results.component.html + 52 + + search.go-to + Mempool by vBytes (sat/vByte) Mempool v vBajtih (sat/vBajt) @@ -4180,7 +4425,7 @@ Filter src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4189,7 +4434,7 @@ Obrni src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4198,7 +4443,7 @@ Pretočnost, vBajtov na sekundo (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4206,196 +4451,187 @@ Just now Pravkar - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago nazaj - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After Po - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - Čez ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4435,7 +4671,7 @@ src/app/components/transactions-list/transactions-list.component.html - 298,301 + 300,303 Transaction unconfirmed state transaction.unconfirmed @@ -4445,11 +4681,11 @@ Prejeto src/app/components/transaction/transaction.component.html - 108,109 + 102,103 src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4465,11 +4701,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4479,7 +4715,7 @@ ETA src/app/components/transaction/transaction.component.html - 115,116 + 109,110 Transaction ETA transaction.eta @@ -4489,7 +4725,7 @@ V nekaj urah (ali več) src/app/components/transaction/transaction.component.html - 121,124 + 115,118 Transaction ETA in several hours or more transaction.eta.in-several-hours @@ -4499,11 +4735,11 @@ Potomec src/app/components/transaction/transaction.component.html - 168,170 + 162,164 src/app/components/transaction/transaction.component.html - 179,181 + 173,175 Descendant transaction.descendant @@ -4513,7 +4749,7 @@ Prednik src/app/components/transaction/transaction.component.html - 190,192 + 184,186 Transaction Ancestor transaction.ancestor @@ -4522,11 +4758,11 @@ Flow src/app/components/transaction/transaction.component.html - 208,211 + 202,205 src/app/components/transaction/transaction.component.html - 346,350 + 341,345 Transaction flow transaction.flow @@ -4535,7 +4771,7 @@ Hide diagram src/app/components/transaction/transaction.component.html - 211,216 + 205,210 hide-diagram @@ -4543,7 +4779,7 @@ Show more src/app/components/transaction/transaction.component.html - 231,233 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4559,7 +4795,7 @@ Show less src/app/components/transaction/transaction.component.html - 233,239 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4571,7 +4807,7 @@ Show diagram src/app/components/transaction/transaction.component.html - 253,254 + 248,249 show-diagram @@ -4580,7 +4816,7 @@ Locktime src/app/components/transaction/transaction.component.html - 292,294 + 287,289 transaction.locktime @@ -4589,7 +4825,7 @@ Transakcije ni mogoče najti. src/app/components/transaction/transaction.component.html - 455,456 + 450,451 transaction.error.transaction-not-found @@ -4598,7 +4834,7 @@ Čakanje, da se prikaže v mempool-u... src/app/components/transaction/transaction.component.html - 456,461 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4607,7 +4843,7 @@ Efektivna stopnja omrežnine src/app/components/transaction/transaction.component.html - 489,492 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4755,7 +4991,7 @@ Show more inputs to reveal fee data src/app/components/transactions-list/transactions-list.component.html - 288,291 + 290,293 transactions-list.load-to-reveal-fee-info @@ -4763,7 +4999,7 @@ remaining src/app/components/transactions-list/transactions-list.component.html - 330,331 + 332,333 x-remaining @@ -5001,21 +5237,12 @@ dashboard.latest-transactions - - USD - USD - - src/app/dashboard/dashboard.component.html - 126,127 - - dashboard.latest-transactions.USD - Minimum fee Najnižja omrežnina src/app/dashboard/dashboard.component.html - 201,202 + 210,211 Minimum mempool fee dashboard.minimum-fee @@ -5025,7 +5252,7 @@ Prag src/app/dashboard/dashboard.component.html - 202,203 + 211,212 Purgin below fee dashboard.purging @@ -5035,7 +5262,7 @@ Velikost src/app/dashboard/dashboard.component.html - 214,215 + 223,224 Memory usage dashboard.memory-usage @@ -5045,16 +5272,28 @@ L-BTC v obtoku src/app/dashboard/dashboard.component.html - 228,230 + 237,239 dashboard.lbtc-pegs-in-circulation + + mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + + src/app/docs/api-docs/api-docs.component.html + 13 + + + src/app/docs/api-docs/api-docs.component.html + 14 + + faq.big-disclaimer + REST API service REST API storitev src/app/docs/api-docs/api-docs.component.html - 39,40 + 42,43 api-docs.title @@ -5063,11 +5302,11 @@ Končna točka src/app/docs/api-docs/api-docs.component.html - 48,49 + 51,52 src/app/docs/api-docs/api-docs.component.html - 102,105 + 105,108 Api docs endpoint @@ -5076,11 +5315,11 @@ Opis src/app/docs/api-docs/api-docs.component.html - 67,68 + 70,71 src/app/docs/api-docs/api-docs.component.html - 106,107 + 109,110 @@ -5088,7 +5327,7 @@ Začetni potisk: action: 'want', data: ['blocks', ...] za izbiro potisnih podatkov. Razpoložljivo: blocks, mempool-blocks, live-2h-chart in stats.Potisk transakcij povezanih z naslovom: 'track-address': '3PbJ...bF9B' za prejem vseh novih transakcij, ki vsebujejo ta naslov v vhodu ali izhodu. Vrne polje transakcij. address-transactions za nove transakcije v mempool-u in block-transactions za potrjene transakcije v novem bloku. src/app/docs/api-docs/api-docs.component.html - 107,108 + 110,111 api-docs.websocket.websocket @@ -5183,7 +5422,7 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats @@ -5251,7 +5490,11 @@ src/app/lightning/channels-list/channels-list.component.html - 120,121 + 123,124 + + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 lightning.x-channels @@ -5289,11 +5532,11 @@ src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html - 65,66 + 68,69 status.inactive @@ -5305,11 +5548,11 @@ src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html - 66,68 + 69,71 status.active @@ -5321,7 +5564,7 @@ src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5329,7 +5572,7 @@ src/app/lightning/channels-list/channels-list.component.html - 68,70 + 71,73 status.closed @@ -5341,7 +5584,7 @@ src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created @@ -5353,11 +5596,19 @@ src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html - 40,43 + 43,46 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 src/app/lightning/node-statistics/node-statistics.component.html @@ -5365,7 +5616,7 @@ src/app/lightning/node-statistics/node-statistics.component.html - 47,50 + 46,49 src/app/lightning/nodes-list/nodes-list.component.html @@ -5387,6 +5638,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5421,11 +5676,11 @@ Lightning channel src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel @@ -5433,11 +5688,11 @@ Last update src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5453,11 +5708,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update @@ -5465,11 +5720,11 @@ Closing date src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 39,40 + 42,44 lightning.closing_date @@ -5477,7 +5732,7 @@ Closed by src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by @@ -5485,7 +5740,7 @@ Opening transaction src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction @@ -5493,7 +5748,7 @@ Closing transaction src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction @@ -5504,6 +5759,27 @@ 37 + + Mutually closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 20 + + + + Force closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 24 + + + + Force closed with penalty + + src/app/lightning/channel/closing-type/closing-type.component.ts + 28 + + Open @@ -5516,7 +5792,7 @@ No channels to display src/app/lightning/channels-list/channels-list.component.html - 29,35 + 29,37 lightning.empty-channels-list @@ -5524,7 +5800,7 @@ Alias src/app/lightning/channels-list/channels-list.component.html - 35,37 + 38,40 src/app/lightning/group/group.component.html @@ -5548,11 +5824,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias @@ -5560,7 +5836,7 @@ Status src/app/lightning/channels-list/channels-list.component.html - 37,38 + 40,41 status @@ -5568,7 +5844,7 @@ Channel ID src/app/lightning/channels-list/channels-list.component.html - 41,45 + 44,48 channels.id @@ -5576,11 +5852,11 @@ sats src/app/lightning/channels-list/channels-list.component.html - 60,64 + 63,68 src/app/lightning/channels-list/channels-list.component.html - 84,88 + 87,91 src/app/lightning/channels-statistics/channels-statistics.component.html @@ -5624,6 +5900,22 @@ shared.sats + + avg + + src/app/lightning/channels-statistics/channels-statistics.component.html + 3,5 + + statistics.average-small + + + med + + src/app/lightning/channels-statistics/channels-statistics.component.html + 6,9 + + statistics.median-small + Avg Capacity @@ -5740,11 +6032,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 17,18 + 16,17 src/app/lightning/node-statistics/node-statistics.component.html - 54,57 + 53,56 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -5792,10 +6084,6 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity @@ -5811,12 +6099,20 @@ 40,44 - src/app/lightning/node-statistics/node-statistics.component.html - 29,30 + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 src/app/lightning/node-statistics/node-statistics.component.html - 61,64 + 28,29 + + + src/app/lightning/node-statistics/node-statistics.component.html + 60,63 src/app/lightning/nodes-list/nodes-list.component.html @@ -5848,16 +6144,20 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -5888,7 +6188,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5904,11 +6204,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location @@ -5942,9 +6242,17 @@ src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -5972,6 +6280,28 @@ lightning.node-fee-distribution + + Outgoing Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 170 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 208 + + + + Incoming Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 178 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 222 + + Percentage change past week @@ -5980,11 +6310,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 18,20 + 17,19 src/app/lightning/node-statistics/node-statistics.component.html - 30,32 + 29,31 mining.percentage-change-last-week @@ -5996,11 +6326,11 @@ src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node @@ -6012,7 +6342,7 @@ src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity @@ -6024,7 +6354,7 @@ src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels @@ -6036,19 +6366,11 @@ country - - No node found for public key "" - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg @@ -6056,7 +6378,7 @@ Avg channel distance src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance @@ -6064,7 +6386,7 @@ Color src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color @@ -6072,7 +6394,7 @@ ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6084,7 +6406,7 @@ Exclusively on Tor src/app/lightning/node/node.component.html - 93,95 + 96,98 tor @@ -6092,7 +6414,7 @@ Liquidity ad src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad @@ -6100,7 +6422,7 @@ Lease fee rate src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate @@ -6109,7 +6431,7 @@ Lease base fee src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee @@ -6117,7 +6439,7 @@ Funding weight src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight @@ -6125,7 +6447,7 @@ Channel fee rate src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate @@ -6134,7 +6456,7 @@ Channel base fee src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee @@ -6142,7 +6464,7 @@ Compact lease src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease @@ -6150,7 +6472,7 @@ TLV extension records src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records @@ -6158,7 +6480,7 @@ Open channels src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels @@ -6166,7 +6488,7 @@ Closed channels src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels @@ -6208,7 +6530,7 @@ No geolocation data available src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 218,213 + 219,214 @@ -6230,8 +6552,8 @@ 112,107 - - Reachable on Clearnet Only + + Clearnet and Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6241,8 +6563,8 @@ 303,302 - - Reachable on Clearnet and Darknet + + Clearnet Only (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6252,8 +6574,8 @@ 295,294 - - Reachable on Darknet Only + + Darknet Only (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6276,25 +6598,29 @@ lightning.share - nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6400,11 +6726,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6485,22 +6811,6 @@ 27 - - Top 100 nodes liquidity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index 9d7689760..638a8403d 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -3993,9 +3993,9 @@ 58 - - blocks - block + + blocks + block src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -4004,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + Övriga () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -5551,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -6250,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6730,19 +6774,23 @@ lightning.share - nodes - noder + nodes + noder src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6750,7 +6798,7 @@ BTC-kapacitet src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6868,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.th.xlf b/frontend/src/locale/messages.th.xlf index 8aea81ea2..8f423ffa8 100644 --- a/frontend/src/locale/messages.th.xlf +++ b/frontend/src/locale/messages.th.xlf @@ -11,6 +11,7 @@ Slide of + สไลด์ จาก node_modules/src/carousel/carousel.ts 175,181 @@ -147,6 +148,7 @@ + node_modules/src/progressbar/progressbar.ts 30,33 @@ -357,11 +359,11 @@ src/app/components/block/block.component.html - 290,291 + 310,311 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 26,27 + 46,47 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -382,11 +384,11 @@ src/app/components/block/block.component.html - 291,292 + 311,312 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 27,28 + 47,48 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -424,7 +426,7 @@ src/app/components/block/block.component.html - 40,41 + 38,39 block.hash @@ -449,7 +451,7 @@ src/app/components/block/block.component.html - 44,46 + 42,44 src/app/components/blocks-list/blocks-list.component.html @@ -592,11 +594,11 @@ src/app/components/master-page/master-page.component.html - 49,51 + 48,50 src/app/components/pool-ranking/pool-ranking.component.html - 94,96 + 94,95 @@ -748,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -773,16 +775,24 @@ src/app/components/about/about.component.html - 385,389 + 391,394 + + + src/app/components/mining-dashboard/mining-dashboard.component.html + 87 src/app/dashboard/dashboard.component.html - 150,152 + 157,159 src/app/docs/docs/docs.component.html 51 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 97 + Terms of Service shared.terms-of-service @@ -793,14 +803,22 @@ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 113,120 + + src/app/components/mining-dashboard/mining-dashboard.component.html + 89 + src/app/dashboard/dashboard.component.html - 152,154 + 159,161 src/app/docs/docs/docs.component.html 53 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 99 + Privacy Policy shared.privacy-policy @@ -988,7 +1006,7 @@ src/app/dashboard/dashboard.component.html - 124,125 + 124,126 @@ -1036,7 +1054,7 @@ src/app/components/transaction/transaction.component.html - 158,160 + 152,154 src/app/components/transactions-list/transactions-list.component.html @@ -1052,11 +1070,11 @@ src/app/components/block/block.component.html - 246,247 + 252,253 src/app/components/transaction/transaction.component.html - 288,290 + 283,285 transaction.version @@ -1106,7 +1124,7 @@ src/app/components/transactions-list/transactions-list.component.html - 294,295 + 296,297 Transaction singular confirmation count shared.confirmation-count.singular @@ -1128,7 +1146,7 @@ src/app/components/transactions-list/transactions-list.component.html - 295,296 + 297,298 Transaction plural confirmation count shared.confirmation-count.plural @@ -1140,10 +1158,6 @@ src/app/bisq/bisq-transaction/bisq-transaction.component.html 43,45 - - src/app/components/transaction/transaction.component.html - 65,67 - Transaction included in block transaction.included-in-block @@ -1156,11 +1170,11 @@ src/app/components/transaction/transaction.component.html - 77,80 + 71,74 src/app/components/transaction/transaction.component.html - 135,138 + 129,132 Transaction features transaction.features @@ -1188,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 262,267 + 257,262 src/app/components/transaction/transaction.component.html - 406,412 + 401,407 transaction.details @@ -1209,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 249,253 + 244,248 src/app/components/transaction/transaction.component.html - 377,383 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1231,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 241,240 + 246,245 @@ -1251,7 +1265,7 @@ src/app/components/transaction/transaction.component.html - 159,160 + 153,154 src/app/dashboard/dashboard.component.html @@ -1267,7 +1281,7 @@ src/app/components/transaction/transaction.component.html - 72,73 + 66,67 Transaction Confirmed state transaction.confirmed @@ -1438,7 +1452,7 @@ ระบบ mempool และระบบสำรวจ blockchain สำหรับคอมมูนิตี้ Bitcoin โดยมุ่งเป้าไปที่ค่าธรรมเนียมการทำธุรกรรมต่างๆบนระบบและระบบนิเวศหลายชั้น อีกทั้งยังสามารถโฮสได้ด้วยตัวเองโดยปราศจากบุคคลที่สาม src/app/components/about/about.component.html - 13,17 + 13,16 @@ -1446,7 +1460,7 @@ ผู้สนับสนุนระดับองค์กร 🚀 src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1455,15 +1469,16 @@ ผู้สนับสนุน ❤️ src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart Community Integrations + การร่วมมือกับคอมมูนิตี้ src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1472,7 +1487,7 @@ พันธมิตรของเรา src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1481,7 +1496,7 @@ ผู้แปลโปรเจค src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1490,7 +1505,7 @@ ผู้พัฒนาโปรเจค src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1499,7 +1514,7 @@ สมาชิกในโปรเจคนี้ src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1508,7 +1523,7 @@ ผู้ดูแลโปรเจค src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1517,7 +1532,7 @@ เกี่ยวกับ src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -1529,11 +1544,12 @@ src/app/components/master-page/master-page.component.html - 58,61 + 57,60 Multisig of + Multisig จาก src/app/components/address-labels/address-labels.component.ts 107 @@ -1565,7 +1581,7 @@ src/app/components/amount/amount.component.html - 6,9 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -1581,7 +1597,7 @@ src/app/components/transactions-list/transactions-list.component.html - 302,304 + 304,306 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -1664,7 +1680,7 @@ src/app/components/assets/assets.component.html - 29,31 + 31,33 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -1886,7 +1902,7 @@ src/app/components/assets/assets.component.html - 30,31 + 32,33 Asset ticker header @@ -1899,7 +1915,7 @@ src/app/components/assets/assets.component.html - 31,34 + 33,36 Asset Issuer Domain header @@ -1912,7 +1928,7 @@ src/app/components/assets/assets.component.html - 32,36 + 34,38 Asset ID header @@ -1921,7 +1937,7 @@ เกิดข้อผิดพลาดในการโหลดข้อมูลสินทรัพย์ src/app/components/assets/assets.component.html - 48,53 + 50,55 Asset data load error @@ -2028,12 +2044,13 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates At block: + บล็อกที่: src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts 188 @@ -2044,11 +2061,12 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 161 + 165 Around block: + ประมาณบล็อกที่: src/app/components/block-fee-rates-graph/block-fee-rates-graph.component.ts 190 @@ -2059,7 +2077,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 163 + 167 @@ -2071,11 +2089,11 @@ src/app/components/block-fees-graph/block-fees-graph.component.ts - 62 + 67 src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2084,19 +2102,19 @@ กำลังจัดเรียงบล็อก src/app/components/block-fees-graph/block-fees-graph.component.ts - 110,105 + 116,111 src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 108,103 + 113,108 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 115,110 + 116,111 src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2117,6 +2135,7 @@ not available + ไม่สามารถใช้ได้ src/app/components/block-overview-graph/block-overview-graph.component.html 5 @@ -2136,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 476 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2162,11 +2181,11 @@ src/app/components/transaction/transaction.component.html - 476,477 + 473 src/app/components/transactions-list/transactions-list.component.html - 286,287 + 288 sat shared.sat @@ -2180,11 +2199,11 @@ src/app/components/transaction/transaction.component.html - 161,165 + 155,159 src/app/components/transaction/transaction.component.html - 479,481 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2196,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 38,39 + 41,43 Transaction fee rate transaction.fee-rate @@ -2214,19 +2233,19 @@ src/app/components/block/block.component.html - 125,128 + 124,127 src/app/components/block/block.component.html - 129 + 128,130 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 12,14 + 19,22 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 15,17 + 30,33 src/app/components/fees-box/fees-box.component.html @@ -2266,27 +2285,27 @@ src/app/components/transaction/transaction.component.html - 173,174 + 167,168 src/app/components/transaction/transaction.component.html - 184,185 + 178,179 src/app/components/transaction/transaction.component.html - 195,196 + 189,190 src/app/components/transaction/transaction.component.html - 481,484 + 478,481 src/app/components/transaction/transaction.component.html - 492,494 + 489,491 src/app/components/transactions-list/transactions-list.component.html - 286 + 286,287 src/app/dashboard/dashboard.component.html @@ -2294,7 +2313,7 @@ src/app/dashboard/dashboard.component.html - 204,208 + 213,217 sat/vB shared.sat-vbyte @@ -2308,17 +2327,18 @@ src/app/components/transaction/transaction.component.html - 160,162 + 154,156 src/app/components/transaction/transaction.component.html - 274,277 + 269,272 Transaction Virtual Size transaction.vsize Audit status + สถานะการตรวจสอบ src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 36 @@ -2327,6 +2347,7 @@ Match + ตรงกัน src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 38 @@ -2335,6 +2356,7 @@ Removed + ถูกลบ src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 39 @@ -2343,6 +2365,7 @@ Marginal fee rate + อัตราค่าธรรมเนียมเพิ่มเติม src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 40 @@ -2355,6 +2378,7 @@ Recently broadcasted + ที่ประกาศไปล่าสุด src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 41 @@ -2363,6 +2387,7 @@ Added + ถูกเพิ่ม src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 42 @@ -2371,6 +2396,7 @@ Block Prediction Accuracy + ความแม่นยำในการทำนายบล็อก src/app/components/block-prediction-graph/block-prediction-graph.component.html 6,8 @@ -2381,12 +2407,13 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy No data to display yet. Try again later. + ไม่มีข้อมูลที่จะแสดง โปรดลองอีกครั้งในภายหลัง src/app/components/block-prediction-graph/block-prediction-graph.component.ts 108,103 @@ -2402,6 +2429,7 @@ Match rate + เรทตรงกัน src/app/components/block-prediction-graph/block-prediction-graph.component.ts 189,187 @@ -2416,11 +2444,11 @@ src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 60 + 65 src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2437,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2446,15 +2474,15 @@ ขนาด src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 180,179 + 184,183 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 226,224 + 239,237 src/app/components/block/block.component.html - 50,52 + 48,50 src/app/components/blocks-list/blocks-list.component.html @@ -2478,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 270,272 + 265,267 src/app/dashboard/dashboard.component.html @@ -2490,11 +2518,11 @@ น้ำหนัก src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 188,187 + 192,191 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 257,254 + 270,267 src/app/components/block/block-preview.component.html @@ -2502,15 +2530,28 @@ src/app/components/block/block.component.html - 54,56 + 52,54 src/app/components/transaction/transaction.component.html - 278,280 + 273,275 + + + + Size per weight + ขนาดต่อน้ำหนัก + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 200,199 + + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 282,279 Block + บล็อก src/app/components/block/block-preview.component.html 3,7 @@ -2521,14 +2562,6 @@ shared.block-title - - - - src/app/components/block/block-preview.component.html - 11,12 - - shared.block-title - Median fee ค่าธรรมเนียมกลาง @@ -2538,7 +2571,7 @@ src/app/components/block/block.component.html - 128,129 + 127,128 src/app/components/mempool-block/mempool-block.component.html @@ -2555,11 +2588,11 @@ src/app/components/block/block.component.html - 133,135 + 138,140 src/app/components/block/block.component.html - 159,162 + 164,167 src/app/components/mempool-block/mempool-block.component.html @@ -2577,7 +2610,7 @@ src/app/components/block/block.component.html - 168,170 + 173,175 block.miner @@ -2590,7 +2623,7 @@ src/app/components/block/block.component.ts - 227 + 242 @@ -2600,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2615,31 +2652,49 @@ Previous Block - - Block health + + Health + สถานะ src/app/components/block/block.component.html - 58,61 + 56 - block.health + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + latest-blocks.health Unknown + ไม่ทราบ src/app/components/block/block.component.html - 69,72 + 67,70 src/app/components/blocks-list/blocks-list.component.html 60,63 - src/app/lightning/node/node.component.html - 52,55 + src/app/components/pool-ranking/pool-ranking.component.html + 121,124 + + + src/app/lightning/channel/closing-type/closing-type.component.ts + 32 src/app/lightning/node/node.component.html - 96,100 + 55,58 + + + src/app/lightning/node/node.component.html + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2656,7 +2711,7 @@ ช่วงของค่าธรรมเนียม src/app/components/block/block.component.html - 124,125 + 123,124 src/app/components/mempool-block/mempool-block.component.html @@ -2669,7 +2724,7 @@ อิงตามธุรกรรม Segwit ดั้งเดิมที่มีค่าเฉลี่ย 140 vBytes src/app/components/block/block.component.html - 129,131 + 131,136 src/app/components/fees-box/fees-box.component.html @@ -2693,49 +2748,66 @@ Transaction fee tooltip - - Subsidy + fees: - ธุรกรรม + ค่าธรรมเนียม: + + Subsidy + fees + เงินอุดหนุน + ค่าธรรมเนียม src/app/components/block/block.component.html - 148,151 + 153,156 src/app/components/block/block.component.html - 163,167 + 168,172 Total subsidy and fees in a block block.subsidy-and-fees - - Projected + + Expected + ที่คาดหวัง src/app/components/block/block.component.html - 210,212 + 216 - block.projected + block.expected + + + beta + เบต้า + + src/app/components/block/block.component.html + 216,217 + + + src/app/components/block/block.component.html + 222,224 + + beta Actual + ความจริง src/app/components/block/block.component.html - 212,216 + 218,222 block.actual - - Projected Block + + Expected Block + บล็อกที่คาดหวัง src/app/components/block/block.component.html - 216,218 + 222 - block.projected-block + block.expected-block Actual Block + บล็อกจริง src/app/components/block/block.component.html - 225,227 + 231 block.actual-block @@ -2744,7 +2816,7 @@ บิต src/app/components/block/block.component.html - 250,252 + 256,258 block.bits @@ -2753,7 +2825,7 @@ Merkle root src/app/components/block/block.component.html - 254,256 + 260,262 block.merkle-root @@ -2762,7 +2834,7 @@ ความยาก src/app/components/block/block.component.html - 265,268 + 271,274 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -2778,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2791,7 +2863,7 @@ Nonce src/app/components/block/block.component.html - 269,271 + 275,277 block.nonce @@ -2800,32 +2872,42 @@ Hex ส่วนหัวบล็อก src/app/components/block/block.component.html - 273,274 + 279,280 block.header + + Audit + การตรวจสอบ + + src/app/components/block/block.component.html + 297,301 + + Toggle Audit + block.toggle-audit + Details รายละเอียด src/app/components/block/block.component.html - 284,288 + 304,308 src/app/components/transaction/transaction.component.html - 254,259 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2835,20 +2917,16 @@ เกิดข้อผิดพลาดในการโหลดข้อมูล src/app/components/block/block.component.html - 303,305 + 323,325 src/app/components/block/block.component.html - 339,343 + 362,366 src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -2863,7 +2941,7 @@ Why is this block empty? src/app/components/block/block.component.html - 361,367 + 384,390 block.empty-block-explanation @@ -2909,18 +2987,6 @@ latest-blocks.mined - - Health - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - latest-blocks.health - Reward ค่าตอบแทน @@ -2984,7 +3050,7 @@ src/app/dashboard/dashboard.component.html - 210,214 + 219,223 dashboard.txs @@ -3017,13 +3083,17 @@ Difficulty Adjustment การเปลี่ยนแปลงระดับความยาก + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3031,11 +3101,11 @@ Remaining คงเหลือ - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3044,11 +3114,11 @@ blocks บล็อก - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3069,11 +3139,11 @@ block บล็อก - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3086,11 +3156,11 @@ Estimate ประมาณ - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3099,20 +3169,24 @@ Previous ก่อนหน้า - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period ช่วงเวลาปัจจุบัน - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3121,11 +3195,100 @@ Next Halving การลดผลตอบแทนครั้งถัดไป - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + เวลาบล็อกโดยเฉลี่ย + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) 2 เท่าของค่าต่ำสุดหรือความสำคัญต่ำ (อะไรก็ได้ที่ต่ำกว่า) @@ -3221,7 +3384,7 @@ src/app/dashboard/dashboard.component.html - 237,238 + 246,247 dashboard.incoming-transactions @@ -3234,7 +3397,7 @@ src/app/dashboard/dashboard.component.html - 240,243 + 249,252 dashboard.backend-is-synchronizing @@ -3247,7 +3410,7 @@ src/app/dashboard/dashboard.component.html - 245,250 + 254,259 vB/s shared.vbytes-per-second @@ -3261,7 +3424,7 @@ src/app/dashboard/dashboard.component.html - 208,209 + 217,218 Unconfirmed count dashboard.unconfirmed @@ -3281,7 +3444,7 @@ กำลังขุด src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3290,7 +3453,7 @@ อันดับพูล src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3303,7 +3466,7 @@ การครองระบบพูล src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3315,7 +3478,7 @@ Hashrate & Difficulty src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3323,7 +3486,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3331,7 +3494,7 @@ Lightning Nodes Per Network src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3349,9 +3512,10 @@ Lightning Network Capacity + ความจุเน็ตเวิร์ค Lightning src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3369,9 +3533,10 @@ Lightning Nodes Per ISP + จำนวนโหนด Lightning ต่อ ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3381,9 +3546,10 @@ Lightning Nodes Per Country + จำนวนโหนด Lightning ต่อประเทศ src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3397,9 +3563,10 @@ Lightning Nodes World Map + แผนที่โหนด Ligntning src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3415,7 +3582,7 @@ Lightning Nodes Channels World Map src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3436,11 +3603,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3469,11 +3636,11 @@ Hashrate (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3509,7 +3676,7 @@ src/app/components/master-page/master-page.component.html - 52,54 + 51,53 src/app/components/statistics/statistics.component.ts @@ -3534,7 +3701,7 @@ Lightning Explorer src/app/components/master-page/master-page.component.html - 44,45 + 44,47 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -3542,20 +3709,12 @@ master-page.lightning - - beta - - src/app/components/master-page/master-page.component.html - 45,48 - - beta - Documentation เอกสารคำอภิบาย src/app/components/master-page/master-page.component.html - 55,57 + 54,56 src/app/docs/docs/docs.component.html @@ -3600,7 +3759,7 @@ สถานะค่าตอบแทน src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3609,7 +3768,7 @@ (144 บล็อก) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3618,7 +3777,7 @@ บล็อกล่าสุด src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3631,10 +3790,36 @@ การเปลี่ยนแปลง src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments + + Broadcast Transaction + ประกาศธุรกรรม + + src/app/components/mining-dashboard/mining-dashboard.component.html + 91 + + + src/app/components/push-transaction/push-transaction.component.html + 2 + + + src/app/components/push-transaction/push-transaction.component.html + 8 + + + src/app/dashboard/dashboard.component.html + 161,169 + + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 102 + + Broadcast Transaction + shared.broadcast-transaction + Pools luck (1 week) @@ -3696,7 +3881,7 @@ src/app/components/pool-ranking/pool-ranking.component.html - 136,138 + 152,154 master-page.blocks @@ -3725,12 +3910,24 @@ mining.rank + + Avg Health + + src/app/components/pool-ranking/pool-ranking.component.html + 96,97 + + + src/app/components/pool-ranking/pool-ranking.component.html + 96,98 + + latest-blocks.avg_health + Empty blocks บล็อกว่างเปล่า src/app/components/pool-ranking/pool-ranking.component.html - 95,98 + 97,100 mining.empty-blocks @@ -3739,7 +3936,7 @@ ผู้ขุดทั้งหมด src/app/components/pool-ranking/pool-ranking.component.html - 113,114 + 129,130 mining.all-miners @@ -3748,7 +3945,7 @@ ความโชคดีของพูล (1 สัปดาห์) src/app/components/pool-ranking/pool-ranking.component.html - 130,132 + 146,148 mining.miners-luck @@ -3757,7 +3954,7 @@ จำนวนผู้ขุดในพูล (1 สัปดาห์) src/app/components/pool-ranking/pool-ranking.component.html - 142,144 + 158,160 mining.miners-count @@ -3766,12 +3963,11 @@ พูลขุด src/app/components/pool-ranking/pool-ranking.component.ts - 57 + 58 - - blocks - บล็อก + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3780,6 +3976,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -3992,24 +4223,6 @@ latest-blocks.coinbasetag - - Broadcast Transaction - ประกาศธุรกรรม - - src/app/components/push-transaction/push-transaction.component.html - 2 - - - src/app/components/push-transaction/push-transaction.component.html - 8 - - - src/app/dashboard/dashboard.component.html - 154,161 - - Broadcast Transaction - shared.broadcast-transaction - Transaction hex hex ของธุรกรรม @@ -4019,7 +4232,7 @@ src/app/components/transaction/transaction.component.html - 296,297 + 291,292 transaction.hex @@ -4139,6 +4352,70 @@ search-form.search-title + + Bitcoin Block Height + + src/app/components/search-form/search-results/search-results.component.html + 3 + + search.bitcoin-block-height + + + Bitcoin Transaction + + src/app/components/search-form/search-results/search-results.component.html + 9 + + search.bitcoin-transaction + + + Bitcoin Address + + src/app/components/search-form/search-results/search-results.component.html + 15 + + search.bitcoin-address + + + Bitcoin Block + + src/app/components/search-form/search-results/search-results.component.html + 21 + + search.bitcoin-block + + + Bitcoin Addresses + + src/app/components/search-form/search-results/search-results.component.html + 27 + + search.bitcoin-addresses + + + Lightning Nodes + + src/app/components/search-form/search-results/search-results.component.html + 35 + + search.lightning-nodes + + + Lightning Channels + + src/app/components/search-form/search-results/search-results.component.html + 43 + + search.lightning-channels + + + Go to "" + + src/app/components/search-form/search-results/search-results.component.html + 52 + + search.go-to + Mempool by vBytes (sat/vByte) ขนาดหน่วยความจำ vBytes (sat/vByte) @@ -4166,7 +4443,7 @@ ตัวกรอง src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4175,7 +4452,7 @@ กลับ src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4184,7 +4461,7 @@ ธุรกรรมต่อวินาที (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4192,196 +4469,187 @@ Just now ตอนนี้ - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago ที่ผ่านมา - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After หลังจาก - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - ภายใน ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4421,7 +4689,7 @@ src/app/components/transactions-list/transactions-list.component.html - 298,301 + 300,303 Transaction unconfirmed state transaction.unconfirmed @@ -4431,11 +4699,11 @@ พบเห็นครั้งแรก src/app/components/transaction/transaction.component.html - 108,109 + 102,103 src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4451,11 +4719,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4465,7 +4733,7 @@ ETA src/app/components/transaction/transaction.component.html - 115,116 + 109,110 Transaction ETA transaction.eta @@ -4475,7 +4743,7 @@ ภายในหลายชั่วโมง (หรือมากกว่า) src/app/components/transaction/transaction.component.html - 121,124 + 115,118 Transaction ETA in several hours or more transaction.eta.in-several-hours @@ -4485,11 +4753,11 @@ ผู้สืบทอด src/app/components/transaction/transaction.component.html - 168,170 + 162,164 src/app/components/transaction/transaction.component.html - 179,181 + 173,175 Descendant transaction.descendant @@ -4499,7 +4767,7 @@ บรรพบุรุษ src/app/components/transaction/transaction.component.html - 190,192 + 184,186 Transaction Ancestor transaction.ancestor @@ -4508,11 +4776,11 @@ Flow src/app/components/transaction/transaction.component.html - 208,211 + 202,205 src/app/components/transaction/transaction.component.html - 346,350 + 341,345 Transaction flow transaction.flow @@ -4521,7 +4789,7 @@ Hide diagram src/app/components/transaction/transaction.component.html - 211,216 + 205,210 hide-diagram @@ -4529,7 +4797,7 @@ Show more src/app/components/transaction/transaction.component.html - 231,233 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4545,7 +4813,7 @@ Show less src/app/components/transaction/transaction.component.html - 233,239 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4557,7 +4825,7 @@ Show diagram src/app/components/transaction/transaction.component.html - 253,254 + 248,249 show-diagram @@ -4566,7 +4834,7 @@ เวลาล็อก src/app/components/transaction/transaction.component.html - 292,294 + 287,289 transaction.locktime @@ -4575,7 +4843,7 @@ ไม่พบเจอธุรกรรมนี้ src/app/components/transaction/transaction.component.html - 455,456 + 450,451 transaction.error.transaction-not-found @@ -4584,7 +4852,7 @@ กำลังรอให้ปรากฏใน mempool... src/app/components/transaction/transaction.component.html - 456,461 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4593,7 +4861,7 @@ อัตราค่าธรรมเนียมที่เหมาะสม src/app/components/transaction/transaction.component.html - 489,492 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4741,7 +5009,7 @@ Show more inputs to reveal fee data src/app/components/transactions-list/transactions-list.component.html - 288,291 + 290,293 transactions-list.load-to-reveal-fee-info @@ -4749,7 +5017,7 @@ remaining src/app/components/transactions-list/transactions-list.component.html - 330,331 + 332,333 x-remaining @@ -4987,21 +5255,12 @@ dashboard.latest-transactions - - USD - USD - - src/app/dashboard/dashboard.component.html - 126,127 - - dashboard.latest-transactions.USD - Minimum fee ค่าธรรมเนียมขั้นต่ำ src/app/dashboard/dashboard.component.html - 201,202 + 210,211 Minimum mempool fee dashboard.minimum-fee @@ -5011,7 +5270,7 @@ กำลังล้าง src/app/dashboard/dashboard.component.html - 202,203 + 211,212 Purgin below fee dashboard.purging @@ -5021,7 +5280,7 @@ หน่วยความจำที่ใช้ไป src/app/dashboard/dashboard.component.html - 214,215 + 223,224 Memory usage dashboard.memory-usage @@ -5031,15 +5290,27 @@ อุปทานหมุนเวียน L-BTC src/app/dashboard/dashboard.component.html - 228,230 + 237,239 dashboard.lbtc-pegs-in-circulation + + mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + + src/app/docs/api-docs/api-docs.component.html + 13 + + + src/app/docs/api-docs/api-docs.component.html + 14 + + faq.big-disclaimer + REST API service src/app/docs/api-docs/api-docs.component.html - 39,40 + 42,43 api-docs.title @@ -5048,11 +5319,11 @@ ปลายทาง src/app/docs/api-docs/api-docs.component.html - 48,49 + 51,52 src/app/docs/api-docs/api-docs.component.html - 102,105 + 105,108 Api docs endpoint @@ -5061,11 +5332,11 @@ คำอธิบาย src/app/docs/api-docs/api-docs.component.html - 67,68 + 70,71 src/app/docs/api-docs/api-docs.component.html - 106,107 + 109,110 @@ -5073,7 +5344,7 @@ ค่าตอบกลับพื้นฐาน: การกระทำ: 'ต้องการ', ข้อมูล: ['บล็อก', ...] เพื่ออธิบายค่าที่ต้องการตอบกลับ. ที่ใช้งานได้: บล็อก, บล็อก-mempool, ชาตสด-2h, และ สถิติ.ส่งธุรกรรมไปยังแอดเดรส: 'track-address': '3PbJ...bF9B' เพื่อที่จะได้รับธุรกรรมใหม่ทั้งหมดที่มี input/output ของแอดเดรสนั้น. ตอบกลับเป็นอาเรย์ของธุรกรรม. แอดเดรส-ธุรกรรม สำหรับธุรกรรม mempool ใหม่, และ ธุรกรรม-บล็อก สำหรับธุรกรรมที่ถูกยืนยันในบล็อกใหม่ src/app/docs/api-docs/api-docs.component.html - 107,108 + 110,111 api-docs.websocket.websocket @@ -5168,7 +5439,7 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats @@ -5236,7 +5507,11 @@ src/app/lightning/channels-list/channels-list.component.html - 120,121 + 123,124 + + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 lightning.x-channels @@ -5274,11 +5549,11 @@ src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html - 65,66 + 68,69 status.inactive @@ -5290,11 +5565,11 @@ src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html - 66,68 + 69,71 status.active @@ -5306,7 +5581,7 @@ src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5314,7 +5589,7 @@ src/app/lightning/channels-list/channels-list.component.html - 68,70 + 71,73 status.closed @@ -5326,7 +5601,7 @@ src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created @@ -5338,11 +5613,19 @@ src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html - 40,43 + 43,46 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 src/app/lightning/node-statistics/node-statistics.component.html @@ -5350,7 +5633,7 @@ src/app/lightning/node-statistics/node-statistics.component.html - 47,50 + 46,49 src/app/lightning/nodes-list/nodes-list.component.html @@ -5372,6 +5655,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5406,11 +5693,11 @@ Lightning channel src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel @@ -5418,11 +5705,11 @@ Last update src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5438,11 +5725,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update @@ -5450,11 +5737,11 @@ Closing date src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 39,40 + 42,44 lightning.closing_date @@ -5462,7 +5749,7 @@ Closed by src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by @@ -5470,7 +5757,7 @@ Opening transaction src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction @@ -5478,7 +5765,7 @@ Closing transaction src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction @@ -5489,6 +5776,27 @@ 37 + + Mutually closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 20 + + + + Force closed + + src/app/lightning/channel/closing-type/closing-type.component.ts + 24 + + + + Force closed with penalty + + src/app/lightning/channel/closing-type/closing-type.component.ts + 28 + + Open @@ -5501,7 +5809,7 @@ No channels to display src/app/lightning/channels-list/channels-list.component.html - 29,35 + 29,37 lightning.empty-channels-list @@ -5509,7 +5817,7 @@ Alias src/app/lightning/channels-list/channels-list.component.html - 35,37 + 38,40 src/app/lightning/group/group.component.html @@ -5533,11 +5841,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias @@ -5545,7 +5853,7 @@ Status src/app/lightning/channels-list/channels-list.component.html - 37,38 + 40,41 status @@ -5553,7 +5861,7 @@ Channel ID src/app/lightning/channels-list/channels-list.component.html - 41,45 + 44,48 channels.id @@ -5561,11 +5869,11 @@ sats src/app/lightning/channels-list/channels-list.component.html - 60,64 + 63,68 src/app/lightning/channels-list/channels-list.component.html - 84,88 + 87,91 src/app/lightning/channels-statistics/channels-statistics.component.html @@ -5609,6 +5917,22 @@ shared.sats + + avg + + src/app/lightning/channels-statistics/channels-statistics.component.html + 3,5 + + statistics.average-small + + + med + + src/app/lightning/channels-statistics/channels-statistics.component.html + 6,9 + + statistics.median-small + Avg Capacity @@ -5725,11 +6049,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 17,18 + 16,17 src/app/lightning/node-statistics/node-statistics.component.html - 54,57 + 53,56 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -5777,10 +6101,6 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity @@ -5796,12 +6116,20 @@ 40,44 - src/app/lightning/node-statistics/node-statistics.component.html - 29,30 + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 src/app/lightning/node-statistics/node-statistics.component.html - 61,64 + 28,29 + + + src/app/lightning/node-statistics/node-statistics.component.html + 60,63 src/app/lightning/nodes-list/nodes-list.component.html @@ -5833,16 +6161,20 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -5873,7 +6205,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5889,11 +6221,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location @@ -5927,9 +6259,17 @@ src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -5957,6 +6297,28 @@ lightning.node-fee-distribution + + Outgoing Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 170 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 208 + + + + Incoming Fees + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 178 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 222 + + Percentage change past week @@ -5965,11 +6327,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 18,20 + 17,19 src/app/lightning/node-statistics/node-statistics.component.html - 30,32 + 29,31 mining.percentage-change-last-week @@ -5981,11 +6343,11 @@ src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node @@ -5997,7 +6359,7 @@ src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity @@ -6009,7 +6371,7 @@ src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels @@ -6021,19 +6383,11 @@ country - - No node found for public key "" - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg @@ -6041,7 +6395,7 @@ Avg channel distance src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance @@ -6049,7 +6403,7 @@ Color src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color @@ -6057,7 +6411,7 @@ ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6069,7 +6423,7 @@ Exclusively on Tor src/app/lightning/node/node.component.html - 93,95 + 96,98 tor @@ -6077,7 +6431,7 @@ Liquidity ad src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad @@ -6085,7 +6439,7 @@ Lease fee rate src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate @@ -6094,7 +6448,7 @@ Lease base fee src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee @@ -6102,7 +6456,7 @@ Funding weight src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight @@ -6110,7 +6464,7 @@ Channel fee rate src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate @@ -6119,7 +6473,7 @@ Channel base fee src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee @@ -6127,7 +6481,7 @@ Compact lease src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease @@ -6135,7 +6489,7 @@ TLV extension records src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records @@ -6143,7 +6497,7 @@ Open channels src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels @@ -6151,7 +6505,7 @@ Closed channels src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels @@ -6193,7 +6547,7 @@ No geolocation data available src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 218,213 + 219,214 @@ -6206,6 +6560,7 @@ Indexing in progress + กำลังทำการจัดเรียงข้อมูล src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 121,116 @@ -6215,8 +6570,9 @@ 112,107 - - Reachable on Clearnet Only + + Clearnet and Darknet + Clearnet และ Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6226,8 +6582,9 @@ 303,302 - - Reachable on Clearnet and Darknet + + Clearnet Only (IPv4, IPv6) + Clearnet เท่านั้น (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6237,8 +6594,9 @@ 295,294 - - Reachable on Darknet Only + + Darknet Only (Tor, I2P, cjdns) + Darknet เท่านั้น (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6250,6 +6608,7 @@ Share + แชร์ src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html 29,31 @@ -6261,29 +6620,35 @@ lightning.share - nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity + ความจุ BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 Lightning nodes in + โหนด lightning ใน src/app/lightning/nodes-per-country/nodes-per-country.component.html 3,4 @@ -6292,6 +6657,7 @@ ISP Count + จำนวน ISP src/app/lightning/nodes-per-country/nodes-per-country.component.html 34,38 @@ -6300,6 +6666,7 @@ Top ISP + ISP ชั้นนำ src/app/lightning/nodes-per-country/nodes-per-country.component.html 38,40 @@ -6315,6 +6682,7 @@ Clearnet Capacity + ความจุ clearnet src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 6,8 @@ -6335,6 +6703,7 @@ Unknown Capacity + ไม่ทราบความจุ src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 13,15 @@ -6355,6 +6724,7 @@ Tor Capacity + ความจุของ Tor src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 20,22 @@ -6383,17 +6753,19 @@ BTC + BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 Lightning ISP + Lightning ISP src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.html 3,5 @@ -6441,6 +6813,7 @@ ASN + ASN src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 11,14 @@ -6449,6 +6822,7 @@ Active nodes + โหนดที่ใช้งานอยู่ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 14,18 @@ -6470,24 +6844,9 @@ 27 - - Top 100 nodes liquidity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes + โหนดที่เก่าที่สุด src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html 36 @@ -6503,6 +6862,7 @@ Indexing in progress + กำลังทำการจัดเรียงข้อมูล src/app/lightning/statistics-chart/lightning-statistics-chart.component.html 52,55 diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index b74f46bc4..3ef9c25ba 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -11,6 +11,7 @@ Slide of + Slayt 'nin 'i node_modules/src/carousel/carousel.ts 175,181 @@ -147,6 +148,7 @@ + node_modules/src/progressbar/progressbar.ts 30,33 @@ -357,11 +359,11 @@ src/app/components/block/block.component.html - 290,291 + 310,311 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 26,27 + 46,47 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -382,11 +384,11 @@ src/app/components/block/block.component.html - 291,292 + 311,312 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 27,28 + 47,48 src/app/components/mempool-blocks/mempool-blocks.component.html @@ -424,7 +426,7 @@ src/app/components/block/block.component.html - 40,41 + 38,39 block.hash @@ -449,7 +451,7 @@ src/app/components/block/block.component.html - 44,46 + 42,44 src/app/components/blocks-list/blocks-list.component.html @@ -592,11 +594,11 @@ src/app/components/master-page/master-page.component.html - 49,51 + 48,50 src/app/components/pool-ranking/pool-ranking.component.html - 94,96 + 94,95 @@ -748,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -773,16 +775,24 @@ src/app/components/about/about.component.html - 385,389 + 391,394 + + + src/app/components/mining-dashboard/mining-dashboard.component.html + 87 src/app/dashboard/dashboard.component.html - 150,152 + 157,159 src/app/docs/docs/docs.component.html 51 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 97 + Terms of Service shared.terms-of-service @@ -793,14 +803,22 @@ src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html 113,120 + + src/app/components/mining-dashboard/mining-dashboard.component.html + 89 + src/app/dashboard/dashboard.component.html - 152,154 + 159,161 src/app/docs/docs/docs.component.html 53 + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 99 + Privacy Policy shared.privacy-policy @@ -988,7 +1006,7 @@ src/app/dashboard/dashboard.component.html - 124,125 + 124,126 @@ -1036,7 +1054,7 @@ src/app/components/transaction/transaction.component.html - 158,160 + 152,154 src/app/components/transactions-list/transactions-list.component.html @@ -1052,11 +1070,11 @@ src/app/components/block/block.component.html - 246,247 + 252,253 src/app/components/transaction/transaction.component.html - 288,290 + 283,285 transaction.version @@ -1106,7 +1124,7 @@ src/app/components/transactions-list/transactions-list.component.html - 294,295 + 296,297 Transaction singular confirmation count shared.confirmation-count.singular @@ -1128,7 +1146,7 @@ src/app/components/transactions-list/transactions-list.component.html - 295,296 + 297,298 Transaction plural confirmation count shared.confirmation-count.plural @@ -1140,10 +1158,6 @@ src/app/bisq/bisq-transaction/bisq-transaction.component.html 43,45 - - src/app/components/transaction/transaction.component.html - 65,67 - Transaction included in block transaction.included-in-block @@ -1156,11 +1170,11 @@ src/app/components/transaction/transaction.component.html - 77,80 + 71,74 src/app/components/transaction/transaction.component.html - 135,138 + 129,132 Transaction features transaction.features @@ -1188,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 262,267 + 257,262 src/app/components/transaction/transaction.component.html - 406,412 + 401,407 transaction.details @@ -1209,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 249,253 + 244,248 src/app/components/transaction/transaction.component.html - 377,383 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1231,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 241,240 + 246,245 @@ -1251,7 +1265,7 @@ src/app/components/transaction/transaction.component.html - 159,160 + 153,154 src/app/dashboard/dashboard.component.html @@ -1267,7 +1281,7 @@ src/app/components/transaction/transaction.component.html - 72,73 + 66,67 Transaction Confirmed state transaction.confirmed @@ -1438,7 +1452,7 @@ Mempool, üçüncü partilere güvenmek zorunda kalmadan kendi bilgisayarınızda barındırabileceğiniz, Bitcoin ve ikinci katman çözümleri için işlem ücreti piyasasını önünüze sunan açık kaynak kodlu bir blok kaşifi yazılımıdır. src/app/components/about/about.component.html - 13,17 + 13,16 @@ -1446,7 +1460,7 @@ Kurumsal sponsorlar src/app/components/about/about.component.html - 29,32 + 19,22 about.sponsors.enterprise.withRocket @@ -1455,7 +1469,7 @@ Topluluk sponsorlarımız src/app/components/about/about.component.html - 177,180 + 167,170 about.sponsors.withHeart @@ -1464,7 +1478,7 @@ Topluluk İntegrasyonları src/app/components/about/about.component.html - 191,193 + 181,183 about.community-integrations @@ -1473,7 +1487,7 @@ Topluluk İşbirlikleri src/app/components/about/about.component.html - 285,287 + 291,293 about.alliances @@ -1482,7 +1496,7 @@ Proje Çeviricileri src/app/components/about/about.component.html - 301,303 + 307,309 about.translators @@ -1491,7 +1505,7 @@ Proje Destekçileri src/app/components/about/about.component.html - 315,317 + 321,323 about.contributors @@ -1500,7 +1514,7 @@ Proje Üyeleri src/app/components/about/about.component.html - 327,329 + 333,335 about.project_members @@ -1509,7 +1523,7 @@ Projeyi ayakta tutanlar src/app/components/about/about.component.html - 340,342 + 346,348 about.maintainers @@ -1518,7 +1532,7 @@ Hakkında src/app/components/about/about.component.ts - 39 + 42 src/app/components/bisq-master-page/bisq-master-page.component.html @@ -1530,7 +1544,7 @@ src/app/components/master-page/master-page.component.html - 58,61 + 57,60 @@ -1567,7 +1581,7 @@ src/app/components/amount/amount.component.html - 6,9 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -1583,7 +1597,7 @@ src/app/components/transactions-list/transactions-list.component.html - 302,304 + 304,306 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -1666,7 +1680,7 @@ src/app/components/assets/assets.component.html - 29,31 + 31,33 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -1888,7 +1902,7 @@ src/app/components/assets/assets.component.html - 30,31 + 32,33 Asset ticker header @@ -1901,7 +1915,7 @@ src/app/components/assets/assets.component.html - 31,34 + 33,36 Asset Issuer Domain header @@ -1914,7 +1928,7 @@ src/app/components/assets/assets.component.html - 32,36 + 34,38 Asset ID header @@ -1923,7 +1937,7 @@ Varlık datasını yüklerken hata oldu src/app/components/assets/assets.component.html - 48,53 + 50,55 Asset data load error @@ -2030,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2047,7 +2061,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 161 + 165 @@ -2063,7 +2077,7 @@ src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 163 + 167 @@ -2075,11 +2089,11 @@ src/app/components/block-fees-graph/block-fees-graph.component.ts - 62 + 67 src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2088,19 +2102,19 @@ Bloklar İndeksleniyor src/app/components/block-fees-graph/block-fees-graph.component.ts - 110,105 + 116,111 src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 108,103 + 113,108 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 115,110 + 116,111 src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2121,6 +2135,7 @@ not available + Müsait değil src/app/components/block-overview-graph/block-overview-graph.component.html 5 @@ -2140,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 476 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2166,11 +2181,11 @@ src/app/components/transaction/transaction.component.html - 476,477 + 473 src/app/components/transactions-list/transactions-list.component.html - 286,287 + 288 sat shared.sat @@ -2184,11 +2199,11 @@ src/app/components/transaction/transaction.component.html - 161,165 + 155,159 src/app/components/transaction/transaction.component.html - 479,481 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2200,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 38,39 + 41,43 Transaction fee rate transaction.fee-rate @@ -2218,19 +2233,19 @@ src/app/components/block/block.component.html - 125,128 + 124,127 src/app/components/block/block.component.html - 129 + 128,130 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 12,14 + 19,22 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 15,17 + 30,33 src/app/components/fees-box/fees-box.component.html @@ -2270,27 +2285,27 @@ src/app/components/transaction/transaction.component.html - 173,174 + 167,168 src/app/components/transaction/transaction.component.html - 184,185 + 178,179 src/app/components/transaction/transaction.component.html - 195,196 + 189,190 src/app/components/transaction/transaction.component.html - 481,484 + 478,481 src/app/components/transaction/transaction.component.html - 492,494 + 489,491 src/app/components/transactions-list/transactions-list.component.html - 286 + 286,287 src/app/dashboard/dashboard.component.html @@ -2298,7 +2313,7 @@ src/app/dashboard/dashboard.component.html - 204,208 + 213,217 sat/vB shared.sat-vbyte @@ -2312,17 +2327,18 @@ src/app/components/transaction/transaction.component.html - 160,162 + 154,156 src/app/components/transaction/transaction.component.html - 274,277 + 269,272 Transaction Virtual Size transaction.vsize Audit status + Denetlenme durumu src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 36 @@ -2331,6 +2347,7 @@ Match + Eşleşti src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 38 @@ -2339,6 +2356,7 @@ Removed + Kaldırıldı src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 39 @@ -2347,6 +2365,7 @@ Marginal fee rate + Marjinal Ücret Değeri src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 40 @@ -2359,6 +2378,7 @@ Recently broadcasted + Yakın zamanda yayınlanan src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 41 @@ -2387,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2424,11 +2444,11 @@ src/app/components/block-rewards-graph/block-rewards-graph.component.ts - 60 + 65 src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2445,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2454,15 +2474,15 @@ Boyut src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 180,179 + 184,183 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 226,224 + 239,237 src/app/components/block/block.component.html - 50,52 + 48,50 src/app/components/blocks-list/blocks-list.component.html @@ -2486,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 270,272 + 265,267 src/app/dashboard/dashboard.component.html @@ -2498,11 +2518,11 @@ Ağırlık src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 188,187 + 192,191 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts - 257,254 + 270,267 src/app/components/block/block-preview.component.html @@ -2510,11 +2530,23 @@ src/app/components/block/block.component.html - 54,56 + 52,54 src/app/components/transaction/transaction.component.html - 278,280 + 273,275 + + + + Size per weight + Ağırlık başına düşen boyut + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 200,199 + + + src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts + 282,279 @@ -2530,15 +2562,6 @@ shared.block-title - - - - - src/app/components/block/block-preview.component.html - 11,12 - - shared.block-title - Median fee Medyan ücret @@ -2548,7 +2571,7 @@ src/app/components/block/block.component.html - 128,129 + 127,128 src/app/components/mempool-block/mempool-block.component.html @@ -2565,11 +2588,11 @@ src/app/components/block/block.component.html - 133,135 + 138,140 src/app/components/block/block.component.html - 159,162 + 164,167 src/app/components/mempool-block/mempool-block.component.html @@ -2587,7 +2610,7 @@ src/app/components/block/block.component.html - 168,170 + 173,175 block.miner @@ -2600,7 +2623,7 @@ src/app/components/block/block.component.ts - 227 + 242 @@ -2610,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2625,32 +2652,49 @@ Previous Block - - Block health + + Health + Sağlık src/app/components/block/block.component.html - 58,61 + 56 - block.health + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + + src/app/components/blocks-list/blocks-list.component.html + 18,19 + + latest-blocks.health Unknown Bilinmiyor src/app/components/block/block.component.html - 69,72 + 67,70 src/app/components/blocks-list/blocks-list.component.html 60,63 - src/app/lightning/node/node.component.html - 52,55 + src/app/components/pool-ranking/pool-ranking.component.html + 121,124 + + + src/app/lightning/channel/closing-type/closing-type.component.ts + 32 src/app/lightning/node/node.component.html - 96,100 + 55,58 + + + src/app/lightning/node/node.component.html + 99,103 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts @@ -2667,7 +2711,7 @@ Ücret aralığı src/app/components/block/block.component.html - 124,125 + 123,124 src/app/components/mempool-block/mempool-block.component.html @@ -2680,7 +2724,7 @@ 140 vbytelık ortalama native segwit ücreti baz alınmıştır src/app/components/block/block.component.html - 129,131 + 131,136 src/app/components/fees-box/fees-box.component.html @@ -2704,49 +2748,66 @@ Transaction fee tooltip - - Subsidy + fees: - Ödül + ücretler: + + Subsidy + fees + Ödül + ücretler src/app/components/block/block.component.html - 148,151 + 153,156 src/app/components/block/block.component.html - 163,167 + 168,172 Total subsidy and fees in a block block.subsidy-and-fees - - Projected + + Expected + Beklenen src/app/components/block/block.component.html - 210,212 + 216 - block.projected + block.expected + + + beta + beta + + src/app/components/block/block.component.html + 216,217 + + + src/app/components/block/block.component.html + 222,224 + + beta Actual + Aktüel src/app/components/block/block.component.html - 212,216 + 218,222 block.actual - - Projected Block + + Expected Block + Beklenen blok src/app/components/block/block.component.html - 216,218 + 222 - block.projected-block + block.expected-block Actual Block + Gerçekleşen blok src/app/components/block/block.component.html - 225,227 + 231 block.actual-block @@ -2755,7 +2816,7 @@ Bit src/app/components/block/block.component.html - 250,252 + 256,258 block.bits @@ -2764,7 +2825,7 @@ Merkle kökü src/app/components/block/block.component.html - 254,256 + 260,262 block.merkle-root @@ -2773,7 +2834,7 @@ Zorluk src/app/components/block/block.component.html - 265,268 + 271,274 src/app/components/difficulty-adjustments-table/difficulty-adjustments-table.component.html @@ -2789,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2802,7 +2863,7 @@ Nonce src/app/components/block/block.component.html - 269,271 + 275,277 block.nonce @@ -2811,32 +2872,42 @@ Block Başlığı Hex'i src/app/components/block/block.component.html - 273,274 + 279,280 block.header + + Audit + Denetleme + + src/app/components/block/block.component.html + 297,301 + + Toggle Audit + block.toggle-audit + Details Detaylar src/app/components/block/block.component.html - 284,288 + 304,308 src/app/components/transaction/transaction.component.html - 254,259 + 249,254 src/app/lightning/channel/channel.component.html - 86,88 + 93,95 src/app/lightning/channel/channel.component.html - 96,98 + 103,105 src/app/lightning/node/node.component.html - 218,222 + 221,225 Transaction Details transaction.details @@ -2846,20 +2917,16 @@ Veriyi yüklerken hata oluştu src/app/components/block/block.component.html - 303,305 + 323,325 src/app/components/block/block.component.html - 339,343 + 362,366 src/app/lightning/channel/channel-preview.component.html 70,75 - - src/app/lightning/channel/channel.component.html - 109,115 - src/app/lightning/node/node-preview.component.html 66,69 @@ -2872,9 +2939,10 @@ Why is this block empty? + Blok neden boş? src/app/components/block/block.component.html - 361,367 + 384,390 block.empty-block-explanation @@ -2920,18 +2988,6 @@ latest-blocks.mined - - Health - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - - src/app/components/blocks-list/blocks-list.component.html - 18,19 - - latest-blocks.health - Reward Ödüller @@ -2995,7 +3051,7 @@ src/app/dashboard/dashboard.component.html - 210,214 + 219,223 dashboard.txs @@ -3028,13 +3084,17 @@ Difficulty Adjustment Zorluk Seviyesi + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3042,11 +3102,11 @@ Remaining Kalan - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3055,11 +3115,11 @@ blocks bloklar - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3080,11 +3140,11 @@ block blok - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3097,11 +3157,11 @@ Estimate Tahmini - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3110,20 +3170,24 @@ Previous Önceki - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Şimdiki periyod - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3132,11 +3196,99 @@ Next Halving Bir Sonraki Yarılanma Dönemi - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Minimum önceliğin 2x katı ya da minimum işlem önceliği (hangisi daha düşük ise) @@ -3234,7 +3386,7 @@ src/app/dashboard/dashboard.component.html - 237,238 + 246,247 dashboard.incoming-transactions @@ -3247,7 +3399,7 @@ src/app/dashboard/dashboard.component.html - 240,243 + 249,252 dashboard.backend-is-synchronizing @@ -3260,7 +3412,7 @@ src/app/dashboard/dashboard.component.html - 245,250 + 254,259 vB/s shared.vbytes-per-second @@ -3274,7 +3426,7 @@ src/app/dashboard/dashboard.component.html - 208,209 + 217,218 Unconfirmed count dashboard.unconfirmed @@ -3294,7 +3446,7 @@ Madencilik src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3303,7 +3455,7 @@ Havuz Sıralaması src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3316,7 +3468,7 @@ Havuz Dominansı src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3329,7 +3481,7 @@ Hash gücü & Zorluk src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3338,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3347,7 +3499,7 @@ Ağ başına düşen Lightning Node'u src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3368,7 +3520,7 @@ Lightning ağı kapasitesi src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3389,7 +3541,7 @@ ISP başına düşen Lightning Node'u src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3402,7 +3554,7 @@ Ülkelere göre Lightning Node'ları src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3419,7 +3571,7 @@ Lightning Node'u Dünya Haritası src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3436,7 +3588,7 @@ Lightning Kanalları Dünya Haritası src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3457,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3491,11 +3643,11 @@ Hashrate (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3531,7 +3683,7 @@ src/app/components/master-page/master-page.component.html - 52,54 + 51,53 src/app/components/statistics/statistics.component.ts @@ -3557,7 +3709,7 @@ Lightning tarayıcı src/app/components/master-page/master-page.component.html - 44,45 + 44,47 src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts @@ -3565,21 +3717,12 @@ master-page.lightning - - beta - beta - - src/app/components/master-page/master-page.component.html - 45,48 - - beta - Documentation Dökümentasyon src/app/components/master-page/master-page.component.html - 55,57 + 54,56 src/app/docs/docs/docs.component.html @@ -3624,7 +3767,7 @@ Ödül İstatistikleri src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3633,7 +3776,7 @@ (144 blok) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3642,7 +3785,7 @@ Son bloklar src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3655,10 +3798,36 @@ Düzenlemeler src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments + + Broadcast Transaction + İşlemi Ağa Sal + + src/app/components/mining-dashboard/mining-dashboard.component.html + 91 + + + src/app/components/push-transaction/push-transaction.component.html + 2 + + + src/app/components/push-transaction/push-transaction.component.html + 8 + + + src/app/dashboard/dashboard.component.html + 161,169 + + + src/app/lightning/lightning-dashboard/lightning-dashboard.component.html + 102 + + Broadcast Transaction + shared.broadcast-transaction + Pools luck (1 week) Havuz Şansı (1 hafta) @@ -3726,7 +3895,7 @@ src/app/components/pool-ranking/pool-ranking.component.html - 136,138 + 152,154 master-page.blocks @@ -3756,12 +3925,25 @@ mining.rank + + Avg Health + Ortalama sağlık + + src/app/components/pool-ranking/pool-ranking.component.html + 96,97 + + + src/app/components/pool-ranking/pool-ranking.component.html + 96,98 + + latest-blocks.avg_health + Empty blocks Boş Bloklar src/app/components/pool-ranking/pool-ranking.component.html - 95,98 + 97,100 mining.empty-blocks @@ -3770,7 +3952,7 @@ Tüm madenciler src/app/components/pool-ranking/pool-ranking.component.html - 113,114 + 129,130 mining.all-miners @@ -3779,7 +3961,7 @@ Havuzun Talihi (1h) src/app/components/pool-ranking/pool-ranking.component.html - 130,132 + 146,148 mining.miners-luck @@ -3788,7 +3970,7 @@ Toplam Havuzlar (1h) src/app/components/pool-ranking/pool-ranking.component.html - 142,144 + 158,160 mining.miners-count @@ -3797,12 +3979,11 @@ Madenci Havuzları src/app/components/pool-ranking/pool-ranking.component.ts - 57 + 58 - - blocks - blok + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3811,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4024,24 +4240,6 @@ latest-blocks.coinbasetag - - Broadcast Transaction - İşlemi Ağa Sal - - src/app/components/push-transaction/push-transaction.component.html - 2 - - - src/app/components/push-transaction/push-transaction.component.html - 8 - - - src/app/dashboard/dashboard.component.html - 154,161 - - Broadcast Transaction - shared.broadcast-transaction - Transaction hex Hex İşlem @@ -4051,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 296,297 + 291,292 transaction.hex @@ -4083,6 +4281,7 @@ Avg Block Fees + Ortalama Blok Ücreti src/app/components/reward-stats/reward-stats.component.html 17 @@ -4095,6 +4294,7 @@ Average fees per block in the past 144 blocks + Son 144 blok için ortalama ücret src/app/components/reward-stats/reward-stats.component.html 18,20 @@ -4103,6 +4303,7 @@ BTC/block + BTC/blok src/app/components/reward-stats/reward-stats.component.html 21,24 @@ -4112,6 +4313,7 @@ Avg Tx Fee + Ortalama gönderi ücreti src/app/components/reward-stats/reward-stats.component.html 30 @@ -4172,6 +4374,78 @@ search-form.search-title + + Bitcoin Block Height + Bitcoin Blok Yüksekliği + + src/app/components/search-form/search-results/search-results.component.html + 3 + + search.bitcoin-block-height + + + Bitcoin Transaction + Bitcoin İşlemi + + src/app/components/search-form/search-results/search-results.component.html + 9 + + search.bitcoin-transaction + + + Bitcoin Address + Bitcoin Adresi + + src/app/components/search-form/search-results/search-results.component.html + 15 + + search.bitcoin-address + + + Bitcoin Block + Bitcoin bloğu + + src/app/components/search-form/search-results/search-results.component.html + 21 + + search.bitcoin-block + + + Bitcoin Addresses + Bitcoin adresleri + + src/app/components/search-form/search-results/search-results.component.html + 27 + + search.bitcoin-addresses + + + Lightning Nodes + Lightning düğümleri + + src/app/components/search-form/search-results/search-results.component.html + 35 + + search.lightning-nodes + + + Lightning Channels + Lightning kanalları + + src/app/components/search-form/search-results/search-results.component.html + 43 + + search.lightning-channels + + + Go to "" + "" 'a git; + + src/app/components/search-form/search-results/search-results.component.html + 52 + + search.go-to + Mempool by vBytes (sat/vByte) Mempool vByte (sat/vByte) görünümü @@ -4199,7 +4473,7 @@ Filtre src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4208,7 +4482,7 @@ Ters çevir src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4217,7 +4491,7 @@ Saniye başı vBytes (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4225,196 +4499,188 @@ Just now Az önce - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago önce - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + Yaklaşık + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After sonrası - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - Yaklaşık ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4429,6 +4695,7 @@ This transaction replaced: + Bu işlem değiştirildi: src/app/components/transaction/transaction.component.html 10,12 @@ -4438,6 +4705,7 @@ Replaced + Değiştirildi src/app/components/transaction/transaction.component.html 36,39 @@ -4454,7 +4722,7 @@ src/app/components/transactions-list/transactions-list.component.html - 298,301 + 300,303 Transaction unconfirmed state transaction.unconfirmed @@ -4464,11 +4732,11 @@ İlk görüldüğü an src/app/components/transaction/transaction.component.html - 108,109 + 102,103 src/app/lightning/node/node.component.html - 67,70 + 70,73 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -4484,11 +4752,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 13,15 + 15,16 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 13,15 + 15,16 Transaction first seen transaction.first-seen @@ -4498,7 +4766,7 @@ Tahmini Varış Süresi src/app/components/transaction/transaction.component.html - 115,116 + 109,110 Transaction ETA transaction.eta @@ -4508,7 +4776,7 @@ Bir kaç saat içinde (veya daha sonra) src/app/components/transaction/transaction.component.html - 121,124 + 115,118 Transaction ETA in several hours or more transaction.eta.in-several-hours @@ -4518,11 +4786,11 @@ Azalan src/app/components/transaction/transaction.component.html - 168,170 + 162,164 src/app/components/transaction/transaction.component.html - 179,181 + 173,175 Descendant transaction.descendant @@ -4532,7 +4800,7 @@ Ata src/app/components/transaction/transaction.component.html - 190,192 + 184,186 Transaction Ancestor transaction.ancestor @@ -4542,11 +4810,11 @@ Akış src/app/components/transaction/transaction.component.html - 208,211 + 202,205 src/app/components/transaction/transaction.component.html - 346,350 + 341,345 Transaction flow transaction.flow @@ -4556,7 +4824,7 @@ Diyagramı kapat src/app/components/transaction/transaction.component.html - 211,216 + 205,210 hide-diagram @@ -4565,7 +4833,7 @@ Daha fazla göster src/app/components/transaction/transaction.component.html - 231,233 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4582,7 +4850,7 @@ Daha az göster src/app/components/transaction/transaction.component.html - 233,239 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4595,7 +4863,7 @@ Diyagramı göster src/app/components/transaction/transaction.component.html - 253,254 + 248,249 show-diagram @@ -4604,7 +4872,7 @@ Kilit Süresi src/app/components/transaction/transaction.component.html - 292,294 + 287,289 transaction.locktime @@ -4613,7 +4881,7 @@ İşlem bulunamadı. src/app/components/transaction/transaction.component.html - 455,456 + 450,451 transaction.error.transaction-not-found @@ -4622,7 +4890,7 @@ Mempool'a dahil olmayı bekliyor. src/app/components/transaction/transaction.component.html - 456,461 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4631,7 +4899,7 @@ Efektiv işlem ücreti oranı src/app/components/transaction/transaction.component.html - 489,492 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4777,17 +5045,19 @@ Show more inputs to reveal fee data + Ücret datasının için daha çok girdi göster src/app/components/transactions-list/transactions-list.component.html - 288,291 + 290,293 transactions-list.load-to-reveal-fee-info remaining + Kalan src/app/components/transactions-list/transactions-list.component.html - 330,331 + 332,333 x-remaining @@ -4935,6 +5205,7 @@ This transaction does not use Taproot + Bu işlem Taproot kullanmıyor src/app/components/tx-features/tx-features.component.html 18 @@ -5037,21 +5308,12 @@ dashboard.latest-transactions - - USD - USD - - src/app/dashboard/dashboard.component.html - 126,127 - - dashboard.latest-transactions.USD - Minimum fee Minimum ücret src/app/dashboard/dashboard.component.html - 201,202 + 210,211 Minimum mempool fee dashboard.minimum-fee @@ -5061,7 +5323,7 @@ Temizleme src/app/dashboard/dashboard.component.html - 202,203 + 211,212 Purgin below fee dashboard.purging @@ -5071,7 +5333,7 @@ Hafıza kullanımı src/app/dashboard/dashboard.component.html - 214,215 + 223,224 Memory usage dashboard.memory-usage @@ -5081,16 +5343,29 @@ Dolaşımdaki L-BTC miktarı src/app/dashboard/dashboard.component.html - 228,230 + 237,239 dashboard.lbtc-pegs-in-circulation + + mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + mempool.space sadece Bitcoin ağı ile ilgili bilgi sağlar. Kayıp gönderilerinize ulaşmanız veya işlemleri hızlandırmanız gibi istekleriniz için size çözüm sağlayamaz. + + src/app/docs/api-docs/api-docs.component.html + 13 + + + src/app/docs/api-docs/api-docs.component.html + 14 + + faq.big-disclaimer + REST API service REST API servisi src/app/docs/api-docs/api-docs.component.html - 39,40 + 42,43 api-docs.title @@ -5099,11 +5374,11 @@ Çıkış Noktası src/app/docs/api-docs/api-docs.component.html - 48,49 + 51,52 src/app/docs/api-docs/api-docs.component.html - 102,105 + 105,108 Api docs endpoint @@ -5112,11 +5387,11 @@ Tanım src/app/docs/api-docs/api-docs.component.html - 67,68 + 70,71 src/app/docs/api-docs/api-docs.component.html - 106,107 + 109,110 @@ -5124,7 +5399,7 @@ Varsayılan ileti: action: 'want', data: ['blocks', ...] iletmek istediğini belirt. Kullanılabilir alanlar: blocks, mempool-blocks, live-2h-chart ve stats. Takip eden adresle ilişkili işlemleri ileterek: 'track-address': '3PbJ...bF9B' bu adresi içeren bütün giriş ve çıkış işlemlerini al. İşlemleri sırala. Yeni mempool işlemleri içinaddress-transactions ve yeni onaylı blok işlemleri için block-transcations kullan. src/app/docs/api-docs/api-docs.component.html - 107,108 + 110,111 api-docs.websocket.websocket @@ -5221,7 +5496,7 @@ src/app/lightning/node/node.component.html - 180,182 + 183,185 shared.m-sats @@ -5297,12 +5572,17 @@ src/app/lightning/channels-list/channels-list.component.html - 120,121 + 123,124 + + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 lightning.x-channels Starting balance + Başlangıç balansı src/app/lightning/channel/channel-close-box/channel-close-box.component.html 6 @@ -5312,6 +5592,7 @@ Closing balance + Kapanış balansı src/app/lightning/channel/channel-close-box/channel-close-box.component.html 12 @@ -5337,11 +5618,11 @@ src/app/lightning/channel/channel.component.html - 11,12 + 13,14 src/app/lightning/channels-list/channels-list.component.html - 65,66 + 68,69 status.inactive @@ -5354,11 +5635,11 @@ src/app/lightning/channel/channel.component.html - 12,13 + 14,15 src/app/lightning/channels-list/channels-list.component.html - 66,68 + 69,71 status.active @@ -5371,7 +5652,7 @@ src/app/lightning/channel/channel.component.html - 13,14 + 15,16 src/app/lightning/channels-list/channels-list.component.html @@ -5379,7 +5660,7 @@ src/app/lightning/channels-list/channels-list.component.html - 68,70 + 71,73 status.closed @@ -5392,7 +5673,7 @@ src/app/lightning/channel/channel.component.html - 29,30 + 36,37 lightning.created @@ -5405,11 +5686,19 @@ src/app/lightning/channel/channel.component.html - 48,49 + 55,56 src/app/lightning/channels-list/channels-list.component.html - 40,43 + 43,46 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 src/app/lightning/node-statistics/node-statistics.component.html @@ -5417,7 +5706,7 @@ src/app/lightning/node-statistics/node-statistics.component.html - 47,50 + 46,49 src/app/lightning/nodes-list/nodes-list.component.html @@ -5439,6 +5728,10 @@ src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 60,62 + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 13,14 + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 202,201 @@ -5475,11 +5768,11 @@ Lightning kanalı src/app/lightning/channel/channel.component.html - 2,5 + 4,7 src/app/lightning/channel/channel.component.html - 117,119 + 116,118 lightning.channel @@ -5488,11 +5781,11 @@ Son güncelleme src/app/lightning/channel/channel.component.html - 33,34 + 40,41 src/app/lightning/node/node.component.html - 73,75 + 76,78 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5508,11 +5801,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 14,15 + 16,17 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 14,15 + 16,17 lightning.last-update @@ -5521,19 +5814,20 @@ Kapanış tarihi src/app/lightning/channel/channel.component.html - 37,38 + 44,45 src/app/lightning/channels-list/channels-list.component.html - 39,40 + 42,44 lightning.closing_date Closed by + Kapayan src/app/lightning/channel/channel.component.html - 52,54 + 59,61 lightning.closed_by @@ -5542,7 +5836,7 @@ Açılış işlemi src/app/lightning/channel/channel.component.html - 84,85 + 91,92 lightning.opening-transaction @@ -5551,7 +5845,7 @@ Kapanış işlemi src/app/lightning/channel/channel.component.html - 93,95 + 100,102 lightning.closing-transaction @@ -5563,6 +5857,30 @@ 37 + + Mutually closed + Ortaklaşa kapatıldı + + src/app/lightning/channel/closing-type/closing-type.component.ts + 20 + + + + Force closed + Kapanmaya zorlandı + + src/app/lightning/channel/closing-type/closing-type.component.ts + 24 + + + + Force closed with penalty + Ceza ödeyerek zorla kapatıldı + + src/app/lightning/channel/closing-type/closing-type.component.ts + 28 + + Open Açık @@ -5577,7 +5895,7 @@ Gösterilecek kanal bulunamadı src/app/lightning/channels-list/channels-list.component.html - 29,35 + 29,37 lightning.empty-channels-list @@ -5586,7 +5904,7 @@ Takma ad src/app/lightning/channels-list/channels-list.component.html - 35,37 + 38,40 src/app/lightning/group/group.component.html @@ -5610,11 +5928,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 10,11 + 11,12 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 10,12 + 11,13 lightning.alias @@ -5623,7 +5941,7 @@ Durum src/app/lightning/channels-list/channels-list.component.html - 37,38 + 40,41 status @@ -5632,7 +5950,7 @@ Kanal ID src/app/lightning/channels-list/channels-list.component.html - 41,45 + 44,48 channels.id @@ -5641,11 +5959,11 @@ sats src/app/lightning/channels-list/channels-list.component.html - 60,64 + 63,68 src/app/lightning/channels-list/channels-list.component.html - 84,88 + 87,91 src/app/lightning/channels-statistics/channels-statistics.component.html @@ -5689,6 +6007,24 @@ shared.sats + + avg + ortalama + + src/app/lightning/channels-statistics/channels-statistics.component.html + 3,5 + + statistics.average-small + + + med + orta + + src/app/lightning/channels-statistics/channels-statistics.component.html + 6,9 + + statistics.median-small + Avg Capacity Ortalama Kapasite @@ -5817,11 +6153,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 17,18 + 16,17 src/app/lightning/node-statistics/node-statistics.component.html - 54,57 + 53,56 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -5870,10 +6206,6 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 11,12 - - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html 12,13 lightning.liquidity @@ -5890,12 +6222,20 @@ 40,44 - src/app/lightning/node-statistics/node-statistics.component.html - 29,30 + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 src/app/lightning/node-statistics/node-statistics.component.html - 61,64 + 28,29 + + + src/app/lightning/node-statistics/node-statistics.component.html + 60,63 src/app/lightning/nodes-list/nodes-list.component.html @@ -5927,16 +6267,20 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 12,13 + 14,15 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 11,12 + 12,13 src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -5969,7 +6313,7 @@ src/app/lightning/node/node.component.html - 47,49 + 50,52 src/app/lightning/nodes-per-country/nodes-per-country.component.html @@ -5985,11 +6329,11 @@ src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 15,17 + 17,20 src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 15,17 + 17,20 lightning.location @@ -6027,9 +6371,17 @@ src/app/lightning/lightning-dashboard/lightning-dashboard.component.html 62 + + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html + 4,9 + src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts - 29 + 33 + + + src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html + 4,9 src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html @@ -6052,12 +6404,37 @@ Fee distribution + Ücret dağılımı src/app/lightning/node-fee-chart/node-fee-chart.component.html 2 lightning.node-fee-distribution + + Outgoing Fees + Giden ücretler + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 170 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 208 + + + + Incoming Fees + Gelen ücretler + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 178 + + + src/app/lightning/node-fee-chart/node-fee-chart.component.ts + 222 + + Percentage change past week Geçen haftaya göre yüzdelik değişim @@ -6067,11 +6444,11 @@ src/app/lightning/node-statistics/node-statistics.component.html - 18,20 + 17,19 src/app/lightning/node-statistics/node-statistics.component.html - 30,32 + 29,31 mining.percentage-change-last-week @@ -6084,11 +6461,11 @@ src/app/lightning/node/node.component.html - 2,4 + 4,6 src/app/lightning/node/node.component.html - 260,262 + 263,265 lightning.node @@ -6101,7 +6478,7 @@ src/app/lightning/node/node.component.html - 27,30 + 30,33 lightning.active-capacity @@ -6114,7 +6491,7 @@ src/app/lightning/node/node.component.html - 34,38 + 37,41 lightning.active-channels @@ -6127,29 +6504,21 @@ country - - No node found for public key "" - &quot;&quot; halka açık anahtar için Node bulunamadı - - src/app/lightning/node/node.component.html - 17,19 - - lightning.node-not-found - Average channel size Ortalama kanal büyüklüğü src/app/lightning/node/node.component.html - 40,43 + 43,46 lightning.active-channels-avg Avg channel distance + Ortalama kanal uzaklığı src/app/lightning/node/node.component.html - 56,57 + 59,60 lightning.avg-distance @@ -6158,7 +6527,7 @@ Renk src/app/lightning/node/node.component.html - 79,81 + 82,84 lightning.color @@ -6167,7 +6536,7 @@ ISP src/app/lightning/node/node.component.html - 86,87 + 89,90 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html @@ -6180,73 +6549,81 @@ Sadece Tor üzerinde src/app/lightning/node/node.component.html - 93,95 + 96,98 tor Liquidity ad + Likidite reklamı src/app/lightning/node/node.component.html - 138,141 + 141,144 node.liquidity-ad Lease fee rate + Kiralama ücreti src/app/lightning/node/node.component.html - 144,147 + 147,150 Liquidity ad lease fee rate liquidity-ad.lease-fee-rate Lease base fee + Kiralama için baz ücret src/app/lightning/node/node.component.html - 152,154 + 155,157 liquidity-ad.lease-base-fee Funding weight + Fonlama ağırlığı src/app/lightning/node/node.component.html - 158,159 + 161,162 liquidity-ad.funding-weight Channel fee rate + Kanal ücreti src/app/lightning/node/node.component.html - 168,171 + 171,174 Liquidity ad channel fee rate liquidity-ad.channel-fee-rate Channel base fee + Kanal baz ücreti src/app/lightning/node/node.component.html - 176,178 + 179,181 liquidity-ad.channel-base-fee Compact lease + Kompakt kiralama src/app/lightning/node/node.component.html - 188,190 + 191,193 liquidity-ad.compact-lease TLV extension records + TLV uzatma kayıtları src/app/lightning/node/node.component.html - 199,202 + 202,205 node.tlv.records @@ -6255,7 +6632,7 @@ Açık kanallar src/app/lightning/node/node.component.html - 240,243 + 243,246 lightning.open-channels @@ -6264,7 +6641,7 @@ Kapanan kanallar src/app/lightning/node/node.component.html - 244,247 + 247,250 lightning.open-channels @@ -6310,7 +6687,7 @@ Geolokasyon datasına ulaşılamıyor src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts - 218,213 + 219,214 @@ -6324,6 +6701,7 @@ Indexing in progress + İndeksleniyor src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 121,116 @@ -6333,9 +6711,9 @@ 112,107 - - Reachable on Clearnet Only - Sadece clearnet üzerinden ulaşılanlar + + Clearnet and Darknet + Şeffaf İnternet ve Darknet src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6345,9 +6723,9 @@ 303,302 - - Reachable on Clearnet and Darknet - Clearnet ve Tor üzerinden ulaşılanlar + + Clearnet Only (IPv4, IPv6) + Sadece Şeffaf İnternet (IPV4, IPV6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6357,9 +6735,9 @@ 295,294 - - Reachable on Darknet Only - Sadece Tor üzerinden ulaşılanlar + + Darknet Only (Tor, I2P, cjdns) + Sadece Darknet (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6383,19 +6761,22 @@ lightning.share - nodes - Node'lar + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6403,7 +6784,7 @@ BTC kapasite src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6521,11 +6902,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6591,6 +6972,7 @@ Active nodes + Aktif düğümler src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 14,18 @@ -6614,24 +6996,6 @@ 27 - - Top 100 nodes liquidity ranking - Likidite sıralamasına göre en iyi 100 Node - - src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html - 3,7 - - lightning.top-100-liquidity - - - Top 100 nodes connectivity ranking - Bağlantı sıralamasına göre en iyi 100 Node - - src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html - 3,7 - - lightning.top-100-connectivity - Oldest nodes En eski Node'lar diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index 0404aee6e..e24676d08 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ Союзи спільноти src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Перекладачі проекту src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Учасники проекту src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Члени проекту src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Розробники проекту src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment Регулювання складності + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Лишається - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks блоків - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block блок - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Приблизно - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,33 +3170,136 @@ Previous Попередня - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Поточний період - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period Next Halving - Наступне зменшення винагороди + Наступний халвінг - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + блоків очікується + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + блок очікується + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + блоків знайдено + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + блок знайдено + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + блоків лишається + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + блок лишається + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + блоків попереду + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + блок попереду + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + блоків позаду + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + блок позаду + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + Середній час блоків + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Або 2x мініуму, або повільна ставка (що менше) @@ -3346,7 +3457,7 @@ Майнінг src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3466,7 @@ Рейтинг пулів src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3479,7 @@ Домінування пулу src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3492,7 @@ Хешрейт та складність src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3501,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3510,7 @@ Lightning нод на мережу src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3417,10 +3528,10 @@ Lightning Network Capacity - Пропускна спроможність Lightning + Місткість Lightning src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3552,7 @@ Lightning нод на ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3565,7 @@ Lightning нод на країну src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3582,7 @@ Мапа Lightning нод src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3599,7 @@ Мапа Lightning каналів src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3620,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3654,11 @@ Хешрейт (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3778,7 @@ Статистика нагороди src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3787,7 @@ (144 блоки) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3796,7 @@ Останні блоки src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3809,7 @@ Регулювання src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3818,7 @@ Надіслати транзакцію src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3993,9 @@ 58 - - blocks - блоків + + blocks + блоків src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + Інші () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4262,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4486,7 @@ Фільтрувати src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4495,7 @@ Інвертувати src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4504,7 @@ vBytes за секунду транзакції (vB/s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4512,188 @@ Just now Щойно - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago тому - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + Через ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After Після - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - Через ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4827,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4846,7 @@ Показати більше src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4863,7 @@ Показати менше src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4876,7 @@ Показати діаграму src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4885,7 @@ Час блокування src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4894,7 @@ Транзакція не знайдена. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4903,7 @@ Чекаємо її появи в мемпулі... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4912,7 @@ Поточна ставка комісії src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5367,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5378,7 @@ Сервіс REST API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5387,11 @@ Ендпоїнт src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5400,11 @@ Опис src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5412,7 @@ Надсилання за замовчуванням за замовчуванням: action: 'want', data: ['blocks', ...] щоб вказати, що має бути надіслано. Доступно: blocks, mempool-blocks, live-2h-chart та stats.Надіслати транзакції пов'язані з адресою: 'track-address': '3PbJ...bF9B' щоб отримати всі нові транзакції які містять дану адресу у входах чи виходах. Повертає масив транзакцій. address-transactions для нових мемпул транзакцій та block-transactions для нових підтверджених транзакцій. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5587,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5545,7 +5692,7 @@ Capacity - Пропускна спроможність + Місткість src/app/lightning/channel/channel-preview.component.html 27,28 @@ -5558,6 +5705,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5831,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5972,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -5885,7 +6040,7 @@ Avg Capacity - Середня пропускна спроможність + Середня місткість src/app/lightning/channels-statistics/channels-statistics.component.html 13,15 @@ -5898,7 +6053,7 @@ Avg Fee Rate - Середня ставка комісії + Середній тариф src/app/lightning/channels-statistics/channels-statistics.component.html 26,28 @@ -5911,7 +6066,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,30 @@ -5920,7 +6075,7 @@ Avg Base Fee - Середня базова комісія + Середня комісія src/app/lightning/channels-statistics/channels-statistics.component.html 41,43 @@ -5933,7 +6088,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,45 @@ -6079,6 +6234,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6317,7 +6484,7 @@ Active capacity - Активна пропускна спроможність + Активна місткість src/app/lightning/node/node-preview.component.html 20,22 @@ -6559,6 +6726,7 @@ Clearnet and Darknet + Клірнет та Даркнет src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6570,6 +6738,7 @@ Clearnet Only (IPv4, IPv6) + Тільки Клірнет (IPv4, IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6581,6 +6750,7 @@ Darknet Only (Tor, I2P, cjdns) + Тільки Даркнет (Tor, I2P, cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6604,19 +6774,23 @@ lightning.share - nodes - нод + nodes + нод src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6624,7 +6798,7 @@ BTC пропускної спроможності src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6664,7 +6838,7 @@ Clearnet Capacity - Пропускна спроможність Клірнету + Місткість Клірнету src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 6,8 @@ -6686,7 +6860,7 @@ Unknown Capacity - Пропускна спроможність невідома + Місткість невідома src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 13,15 @@ -6708,7 +6882,7 @@ Tor Capacity - Пропускна спроможність Tor + Місткість Tor src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html 20,22 @@ -6742,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf index 3fea854cf..5c4ebe759 100644 --- a/frontend/src/locale/messages.vi.xlf +++ b/frontend/src/locale/messages.vi.xlf @@ -750,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -775,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -805,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1074,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1202,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1223,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1245,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1487,7 +1487,7 @@ Liên minh cộng đồng src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1496,7 +1496,7 @@ Dịch giả của Dự án src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1505,7 +1505,7 @@ Người đóng góp dự án src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1514,7 +1514,7 @@ Thành viên Dự án src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1523,7 +1523,7 @@ Người bảo trì dự án src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1581,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2044,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2093,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2114,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2155,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2181,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2203,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2215,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2297,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2331,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2407,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2448,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2465,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2506,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2534,7 +2534,7 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 @@ -2633,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2846,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2891,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -3080,13 +3084,17 @@ Difficulty Adjustment Điều chỉnh Độ khó + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3094,11 +3102,11 @@ Remaining Còn lại - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3107,11 +3115,11 @@ blocks khối - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3132,11 +3140,11 @@ block khối - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3149,11 +3157,11 @@ Estimate Ước tính - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3162,20 +3170,24 @@ Previous Trước - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period Giai đoạn hiện tại - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3184,11 +3196,99 @@ Next Halving Halving Tiếp theo - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) Hai lần số lượng tối thiểu hoặc Tỷ lệ ưu tiên thấp (tùy theo tỷ lệ nào thấp hơn) @@ -3346,7 +3446,7 @@ Đào src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3355,7 +3455,7 @@ Xếp hạng pool src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3368,7 +3468,7 @@ Dominance của các Pool src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3381,7 +3481,7 @@ Hashrate & độ khó src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3390,7 +3490,7 @@ Lightning src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3399,7 +3499,7 @@ Các nút Lightning trên mỗi mạng src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3420,7 +3520,7 @@ Năng lực mạng Lightning src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3441,7 +3541,7 @@ Nút Lightning trên mỗi ISP src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3454,7 +3554,7 @@ Nút Lightning trên mỗi quốc gia src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3471,7 +3571,7 @@ Bản đồ thế giới nút Lightning src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3488,7 +3588,7 @@ Bản đồ thế giới các kênh nút Lightning src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3509,11 +3609,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3543,11 +3643,11 @@ Tỷ lệ băm (MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3667,7 +3767,7 @@ Các chỉ số phần thưởng src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3676,7 +3776,7 @@ (144 khối) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3685,7 +3785,7 @@ Khối mới nhất src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3698,7 +3798,7 @@ Sự điều chỉnh src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3707,7 +3807,7 @@ Truyền tải Giao dịch src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3882,9 +3982,8 @@ 58 - - blocks - khối + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3893,6 +3992,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4115,7 +4249,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4339,7 +4473,7 @@ Lọc src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4348,7 +4482,7 @@ Đảo ngược src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4357,7 +4491,7 @@ Giao dịch vBytes mỗi giây (vB / s) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4365,196 +4499,187 @@ Just now Vừa mới đây - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago trước - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After Sau - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - Trong ~ - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4688,7 +4813,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4707,7 +4832,7 @@ Hiển thị nhiều hơn src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4724,7 +4849,7 @@ Hiển thị ít hơn src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4737,7 +4862,7 @@ Hiển thị sơ đồ src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4746,7 +4871,7 @@ Thời gian khóa src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4755,7 +4880,7 @@ Không tìm thấy giao dịch. src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4764,7 +4889,7 @@ Đang đợi nó xuất hiện trong mempool ... src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4773,7 +4898,7 @@ Tỷ lệ phí hiệu quả src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -5228,6 +5353,10 @@ src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5235,7 +5364,7 @@ Dịch vụ REST API src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5244,11 +5373,11 @@ Điểm cuối src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5257,11 +5386,11 @@ Sự miêu tả src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5269,7 +5398,7 @@ Push mặc định: hành động: 'want', dữ liệu: ['blocks', ...] để thể hiện những gì bạn muốn đẩy. Có sẵn: khối , mempool-khối , live-2h-chart c195a641ez0c195ez0. Đẩy các giao dịch liên quan đến địa chỉ: 'track-address': '3PbJ ... bF9B' a0c95ez0 đầu vào để nhận các giao dịch đầu vào a0c95ez0 a0c95ez0 đó để nhận địa chỉ đầu vào là all95ez0. Trả về một mảng các giao dịch. địa chỉ-giao dịch cho các giao dịch mempool mới và giao dịch khối cho các giao dịch được xác nhận khối mới. src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5444,6 +5573,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5558,6 +5691,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5676,7 +5817,7 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date @@ -5817,7 +5958,7 @@ satoshi src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -6079,6 +6220,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6127,6 +6276,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6604,19 +6757,22 @@ lightning.share - nodes - nút + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6624,7 +6780,7 @@ công suất BTC src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6742,11 +6898,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index 3e1521b92..be88e0b2e 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -3709,8 +3709,8 @@ 58 - - blocks + + blocks src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3719,6 +3719,41 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -5144,6 +5179,10 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels @@ -5802,6 +5841,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6242,25 +6285,29 @@ lightning.share - nodes + nodes src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 BTC capacity src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6366,11 +6413,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index d2cda98c6..ceb38745f 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -11,6 +11,7 @@ Slide of + Slide of node_modules/src/carousel/carousel.ts 175,181 @@ -749,11 +750,11 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 33 + 32 src/app/components/mining-dashboard/mining-dashboard.component.html - 43 + 42 src/app/lightning/lightning-dashboard/lightning-dashboard.component.html @@ -774,11 +775,11 @@ src/app/components/about/about.component.html - 375,378 + 391,394 src/app/components/mining-dashboard/mining-dashboard.component.html - 88 + 87 src/app/dashboard/dashboard.component.html @@ -804,7 +805,7 @@ src/app/components/mining-dashboard/mining-dashboard.component.html - 90 + 89 src/app/dashboard/dashboard.component.html @@ -1073,7 +1074,7 @@ src/app/components/transaction/transaction.component.html - 282,284 + 283,285 transaction.version @@ -1201,11 +1202,11 @@ src/app/components/transaction/transaction.component.html - 256,261 + 257,262 src/app/components/transaction/transaction.component.html - 400,406 + 401,407 transaction.details @@ -1222,11 +1223,11 @@ src/app/components/transaction/transaction.component.html - 243,247 + 244,248 src/app/components/transaction/transaction.component.html - 371,377 + 372,378 Transaction inputs and outputs transaction.inputs-and-outputs @@ -1244,7 +1245,7 @@ src/app/components/transaction/transaction.component.ts - 244,243 + 246,245 @@ -1486,7 +1487,7 @@ 社区联盟 src/app/components/about/about.component.html - 275,277 + 291,293 about.alliances @@ -1495,7 +1496,7 @@ 项目翻译者 src/app/components/about/about.component.html - 291,293 + 307,309 about.translators @@ -1504,7 +1505,7 @@ 项目贡献者 src/app/components/about/about.component.html - 305,307 + 321,323 about.contributors @@ -1513,7 +1514,7 @@ 项目成员 src/app/components/about/about.component.html - 317,319 + 333,335 about.project_members @@ -1522,7 +1523,7 @@ 项目维护者 src/app/components/about/about.component.html - 330,332 + 346,348 about.maintainers @@ -1580,7 +1581,7 @@ src/app/components/amount/amount.component.html - 20,23 + 18,21 src/app/components/asset-circulation/asset-circulation.component.html @@ -2043,7 +2044,7 @@ src/app/components/graphs/graphs.component.html - 18 + 17 mining.block-fee-rates @@ -2092,7 +2093,7 @@ src/app/components/graphs/graphs.component.html - 20 + 19 mining.block-fees @@ -2113,7 +2114,7 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 171,166 + 178,173 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.ts @@ -2154,7 +2155,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html @@ -2180,7 +2181,7 @@ src/app/components/transaction/transaction.component.html - 472 + 473 src/app/components/transactions-list/transactions-list.component.html @@ -2202,7 +2203,7 @@ src/app/components/transaction/transaction.component.html - 475,477 + 476,478 src/app/lightning/channel/channel-box/channel-box.component.html @@ -2214,7 +2215,7 @@ src/app/lightning/channels-list/channels-list.component.html - 41,42 + 41,43 Transaction fee rate transaction.fee-rate @@ -2296,11 +2297,11 @@ src/app/components/transaction/transaction.component.html - 477,480 + 478,481 src/app/components/transaction/transaction.component.html - 488,490 + 489,491 src/app/components/transactions-list/transactions-list.component.html @@ -2330,7 +2331,7 @@ src/app/components/transaction/transaction.component.html - 268,271 + 269,272 Transaction Virtual Size transaction.vsize @@ -2364,6 +2365,7 @@ Marginal fee rate + 边际费率 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 40 @@ -2376,6 +2378,7 @@ Recently broadcasted + 最近播出 src/app/components/block-overview-tooltip/block-overview-tooltip.component.html 41 @@ -2404,7 +2407,7 @@ src/app/components/graphs/graphs.component.html - 26 + 25 mining.block-prediction-accuracy @@ -2445,7 +2448,7 @@ src/app/components/graphs/graphs.component.html - 22 + 21 mining.block-rewards @@ -2462,7 +2465,7 @@ src/app/components/graphs/graphs.component.html - 24 + 23 mining.block-sizes-weights @@ -2503,7 +2506,7 @@ src/app/components/transaction/transaction.component.html - 264,266 + 265,267 src/app/dashboard/dashboard.component.html @@ -2531,11 +2534,12 @@ src/app/components/transaction/transaction.component.html - 272,274 + 273,275 Size per weight + 尺寸/权重 src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts 200,199 @@ -2629,6 +2633,10 @@ src/app/components/block/block.component.html 8,9 + + src/app/components/difficulty/difficulty-tooltip.component.html + 38 + src/app/components/mempool-block/mempool-block.component.ts 75 @@ -2742,6 +2750,7 @@ Subsidy + fees + 补贴+费用 src/app/components/block/block.component.html 153,156 @@ -2755,6 +2764,7 @@ Expected + 预计区块 src/app/components/block/block.component.html 216 @@ -2776,6 +2786,7 @@ Actual + 实际区块 src/app/components/block/block.component.html 218,222 @@ -2784,6 +2795,7 @@ Expected Block + 预计区块 src/app/components/block/block.component.html 222 @@ -2792,6 +2804,7 @@ Actual Block + 实际区块 src/app/components/block/block.component.html 231 @@ -2837,11 +2850,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 284,283 + 291,290 src/app/components/hashrate-chart/hashrate-chart.component.ts - 371,368 + 378,375 block.difficulty @@ -2865,6 +2878,7 @@ Audit + 审计 src/app/components/block/block.component.html 297,301 @@ -2881,7 +2895,7 @@ src/app/components/transaction/transaction.component.html - 248,253 + 249,254 src/app/lightning/channel/channel.component.html @@ -2925,6 +2939,7 @@ Why is this block empty? + 为什么这个区块是空的? src/app/components/block/block.component.html 384,390 @@ -3069,13 +3084,17 @@ Difficulty Adjustment 难度调整 + + src/app/components/difficulty-mining/difficulty-mining.component.html + 1,5 + src/app/components/difficulty/difficulty.component.html 1,5 src/app/components/mining-dashboard/mining-dashboard.component.html - 24 + 23 dashboard.difficulty-adjustment @@ -3083,11 +3102,11 @@ Remaining 距离下次调整 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 7,9 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 66,69 difficulty-box.remaining @@ -3096,11 +3115,11 @@ blocks 区块 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 10,11 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 53,54 @@ -3121,11 +3140,11 @@ block 区块 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 11,12 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 54,55 @@ -3138,11 +3157,11 @@ Estimate 预估调整量 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 16,17 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 73,76 difficulty-box.estimate @@ -3151,20 +3170,24 @@ Previous 之前 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 31,33 + + src/app/components/difficulty/difficulty.component.html + 59,61 + difficulty-box.previous Current Period 当前阶段 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 43,44 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 80,83 difficulty-box.current-period @@ -3173,11 +3196,110 @@ Next Halving 距离下次奖励减半 - src/app/components/difficulty/difficulty.component.html + src/app/components/difficulty-mining/difficulty-mining.component.html 50,52 difficulty-box.next-halving + + blocks expected + 预计个区块 + + src/app/components/difficulty/difficulty-tooltip.component.html + 13 + + difficulty-box.expected-blocks + + + block expected + 预计个区块 + + src/app/components/difficulty/difficulty-tooltip.component.html + 14 + + difficulty-box.expected-block + + + blocks mined + 已挖个区块 + + src/app/components/difficulty/difficulty-tooltip.component.html + 18 + + difficulty-box.mined-blocks + + + block mined + 已挖个区块 + + src/app/components/difficulty/difficulty-tooltip.component.html + 19 + + difficulty-box.mined-block + + + blocks remaining + 剩余个区块 + + src/app/components/difficulty/difficulty-tooltip.component.html + 24 + + difficulty-box.remaining-blocks + + + block remaining + 剩余个区块 + + src/app/components/difficulty/difficulty-tooltip.component.html + 25 + + difficulty-box.remaining-block + + + blocks ahead + 领先个区块 + + src/app/components/difficulty/difficulty-tooltip.component.html + 29 + + difficulty-box.blocks-ahead + + + block ahead + 领先个区块 + + src/app/components/difficulty/difficulty-tooltip.component.html + 30 + + difficulty-box.block-ahead + + + blocks behind + 落后个区块 + + src/app/components/difficulty/difficulty-tooltip.component.html + 34 + + difficulty-box.blocks-behind + + + block behind + 落后个区块 + + src/app/components/difficulty/difficulty-tooltip.component.html + 35 + + difficulty-box.block-behind + + + Average block time + 平均出块时间 + + src/app/components/difficulty/difficulty.component.html + 42,45 + + difficulty-box.average-block-time + Either 2x the minimum, or the Low Priority rate (whichever is lower) 最低 2 倍最小值或低优先率(以较低者为准) @@ -3335,7 +3457,7 @@ 挖矿 src/app/components/graphs/graphs.component.html - 8 + 7 mining @@ -3344,7 +3466,7 @@ 矿池排名 src/app/components/graphs/graphs.component.html - 11 + 10 src/app/components/pool-ranking/pool-ranking.component.html @@ -3357,7 +3479,7 @@ 矿池优势 src/app/components/graphs/graphs.component.html - 13 + 12 src/app/components/hashrates-chart-pools/hashrate-chart-pools.component.html @@ -3370,7 +3492,7 @@ 哈希率与难度 src/app/components/graphs/graphs.component.html - 15,16 + 14,15 mining.hashrate-difficulty @@ -3379,7 +3501,7 @@ 闪电网络 src/app/components/graphs/graphs.component.html - 31 + 30 lightning @@ -3388,7 +3510,7 @@ 闪电网络节点网络分布 src/app/components/graphs/graphs.component.html - 34 + 33 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.html @@ -3409,7 +3531,7 @@ 闪电网络容量 src/app/components/graphs/graphs.component.html - 36 + 35 src/app/lightning/statistics-chart/lightning-statistics-chart.component.html @@ -3430,7 +3552,7 @@ 闪电网络节点按 ISP 排序 src/app/components/graphs/graphs.component.html - 38 + 37 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts @@ -3443,7 +3565,7 @@ 闪电网络节点按国家或地区排序 src/app/components/graphs/graphs.component.html - 40 + 39 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html @@ -3460,7 +3582,7 @@ 闪电网络节点全球地图 src/app/components/graphs/graphs.component.html - 42 + 41 src/app/lightning/nodes-map/nodes-map.component.html @@ -3477,7 +3599,7 @@ 闪电网络频率世界地图 src/app/components/graphs/graphs.component.html - 44 + 43 src/app/lightning/nodes-channels-map/nodes-channels-map.component.html @@ -3498,11 +3620,11 @@ src/app/components/hashrate-chart/hashrate-chart.component.ts - 273,272 + 280,279 src/app/components/hashrate-chart/hashrate-chart.component.ts - 359,356 + 366,363 src/app/components/pool-ranking/pool-ranking.component.html @@ -3532,11 +3654,11 @@ 哈希率(MA) src/app/components/hashrate-chart/hashrate-chart.component.ts - 292,291 + 299,298 src/app/components/hashrate-chart/hashrate-chart.component.ts - 382,380 + 389,387 @@ -3656,7 +3778,7 @@ 奖励统计 src/app/components/mining-dashboard/mining-dashboard.component.html - 10 + 9 mining.reward-stats @@ -3665,7 +3787,7 @@ (近 144 个区块) src/app/components/mining-dashboard/mining-dashboard.component.html - 11 + 10 mining.144-blocks @@ -3674,7 +3796,7 @@ 最新区块 src/app/components/mining-dashboard/mining-dashboard.component.html - 53 + 52 src/app/dashboard/dashboard.component.html @@ -3687,7 +3809,7 @@ 难度调整 src/app/components/mining-dashboard/mining-dashboard.component.html - 67 + 66 dashboard.adjustments @@ -3696,7 +3818,7 @@ 广播交易 src/app/components/mining-dashboard/mining-dashboard.component.html - 92 + 91 src/app/components/push-transaction/push-transaction.component.html @@ -3816,6 +3938,7 @@ Avg Health + 平均健康 src/app/components/pool-ranking/pool-ranking.component.html 96,97 @@ -3870,9 +3993,9 @@ 58 - - blocks - 区块 + + blocks + 个区块 src/app/components/pool-ranking/pool-ranking.component.ts 165,163 @@ -3881,6 +4004,42 @@ src/app/components/pool-ranking/pool-ranking.component.ts 168,167 + + src/app/components/pool-ranking/pool-ranking.component.ts + 203,201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 206,205 + + + + Other () + 其他 () + + src/app/components/pool-ranking/pool-ranking.component.ts + 201 + + + src/app/components/pool-ranking/pool-ranking.component.ts + 205 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 119,114 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 136 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 173,168 + + + src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts + 190 + mining pool @@ -4103,7 +4262,7 @@ src/app/components/transaction/transaction.component.html - 290,291 + 291,292 transaction.hex @@ -4135,6 +4294,7 @@ Avg Block Fees + 平均区块费用 src/app/components/reward-stats/reward-stats.component.html 17 @@ -4147,6 +4307,7 @@ Average fees per block in the past 144 blocks + 过去144个区块中每个区块的平均费用 src/app/components/reward-stats/reward-stats.component.html 18,20 @@ -4228,6 +4389,7 @@ Bitcoin Block Height + 比特币区块高度 src/app/components/search-form/search-results/search-results.component.html 3 @@ -4236,6 +4398,7 @@ Bitcoin Transaction + 比特币交易 src/app/components/search-form/search-results/search-results.component.html 9 @@ -4244,6 +4407,7 @@ Bitcoin Address + 比特币地址 src/app/components/search-form/search-results/search-results.component.html 15 @@ -4252,6 +4416,7 @@ Bitcoin Block + 比特币区块 src/app/components/search-form/search-results/search-results.component.html 21 @@ -4260,6 +4425,7 @@ Bitcoin Addresses + 比特币地址 src/app/components/search-form/search-results/search-results.component.html 27 @@ -4268,6 +4434,7 @@ Lightning Nodes + 闪电网络节点 src/app/components/search-form/search-results/search-results.component.html 35 @@ -4276,6 +4443,7 @@ Lightning Channels + 闪电网络通道 src/app/components/search-form/search-results/search-results.component.html 43 @@ -4318,7 +4486,7 @@ 过滤 src/app/components/statistics/statistics.component.html - 57 + 60 statistics.component-filter.title @@ -4327,7 +4495,7 @@ 倒置 src/app/components/statistics/statistics.component.html - 76 + 79 statistics.component-invert.title @@ -4336,7 +4504,7 @@ 交易字节/秒 (虚拟字节) src/app/components/statistics/statistics.component.html - 96 + 99 statistics.transaction-vbytes-per-second @@ -4344,196 +4512,188 @@ Just now 现在 - src/app/components/time-since/time-since.component.ts - 64 - - - src/app/components/time-span/time-span.component.ts - 57 + src/app/components/time/time.component.ts + 79 ago 之前 - src/app/components/time-since/time-since.component.ts - 74 + src/app/components/time/time.component.ts + 103 - src/app/components/time-since/time-since.component.ts - 75 + src/app/components/time/time.component.ts + 104 - src/app/components/time-since/time-since.component.ts - 76 + src/app/components/time/time.component.ts + 105 - src/app/components/time-since/time-since.component.ts - 77 + src/app/components/time/time.component.ts + 106 - src/app/components/time-since/time-since.component.ts - 78 + src/app/components/time/time.component.ts + 107 - src/app/components/time-since/time-since.component.ts - 79 + src/app/components/time/time.component.ts + 108 - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/time/time.component.ts + 109 - src/app/components/time-since/time-since.component.ts - 84 + src/app/components/time/time.component.ts + 113 - src/app/components/time-since/time-since.component.ts - 85 + src/app/components/time/time.component.ts + 114 - src/app/components/time-since/time-since.component.ts - 86 + src/app/components/time/time.component.ts + 115 - src/app/components/time-since/time-since.component.ts - 87 + src/app/components/time/time.component.ts + 116 - src/app/components/time-since/time-since.component.ts - 88 + src/app/components/time/time.component.ts + 117 - src/app/components/time-since/time-since.component.ts - 89 + src/app/components/time/time.component.ts + 118 - src/app/components/time-since/time-since.component.ts - 90 + src/app/components/time/time.component.ts + 119 + + + + In ~ + 之内 + + src/app/components/time/time.component.ts + 126 + + + src/app/components/time/time.component.ts + 127 + + + src/app/components/time/time.component.ts + 128 + + + src/app/components/time/time.component.ts + 129 + + + src/app/components/time/time.component.ts + 130 + + + src/app/components/time/time.component.ts + 131 + + + src/app/components/time/time.component.ts + 132 + + + src/app/components/time/time.component.ts + 136 + + + src/app/components/time/time.component.ts + 137 + + + src/app/components/time/time.component.ts + 138 + + + src/app/components/time/time.component.ts + 139 + + + src/app/components/time/time.component.ts + 140 + + + src/app/components/time/time.component.ts + 141 + + + src/app/components/time/time.component.ts + 142 After 之后 - src/app/components/time-span/time-span.component.ts - 67 + src/app/components/time/time.component.ts + 149 - src/app/components/time-span/time-span.component.ts - 68 + src/app/components/time/time.component.ts + 150 - src/app/components/time-span/time-span.component.ts - 69 + src/app/components/time/time.component.ts + 151 - src/app/components/time-span/time-span.component.ts - 70 + src/app/components/time/time.component.ts + 152 - src/app/components/time-span/time-span.component.ts - 71 + src/app/components/time/time.component.ts + 153 - src/app/components/time-span/time-span.component.ts - 72 + src/app/components/time/time.component.ts + 154 - src/app/components/time-span/time-span.component.ts - 73 + src/app/components/time/time.component.ts + 155 - src/app/components/time-span/time-span.component.ts - 77 + src/app/components/time/time.component.ts + 159 - src/app/components/time-span/time-span.component.ts - 78 + src/app/components/time/time.component.ts + 160 - src/app/components/time-span/time-span.component.ts - 79 + src/app/components/time/time.component.ts + 161 - src/app/components/time-span/time-span.component.ts - 80 + src/app/components/time/time.component.ts + 162 - src/app/components/time-span/time-span.component.ts - 81 + src/app/components/time/time.component.ts + 163 - src/app/components/time-span/time-span.component.ts - 82 + src/app/components/time/time.component.ts + 164 - src/app/components/time-span/time-span.component.ts - 83 - - - - In ~ - 之内 - - src/app/components/time-until/time-until.component.ts - 66 - - - src/app/components/time-until/time-until.component.ts - 80 - - - src/app/components/time-until/time-until.component.ts - 81 - - - src/app/components/time-until/time-until.component.ts - 82 - - - src/app/components/time-until/time-until.component.ts - 83 - - - src/app/components/time-until/time-until.component.ts - 84 - - - src/app/components/time-until/time-until.component.ts - 85 - - - src/app/components/time-until/time-until.component.ts - 86 - - - src/app/components/time-until/time-until.component.ts - 90 - - - src/app/components/time-until/time-until.component.ts - 91 - - - src/app/components/time-until/time-until.component.ts - 92 - - - src/app/components/time-until/time-until.component.ts - 93 - - - src/app/components/time-until/time-until.component.ts - 94 - - - src/app/components/time-until/time-until.component.ts - 95 - - - src/app/components/time-until/time-until.component.ts - 96 + src/app/components/time/time.component.ts + 165 @@ -4548,6 +4708,7 @@ This transaction replaced: + 此交易取代: src/app/components/transaction/transaction.component.html 10,12 @@ -4557,6 +4718,7 @@ Replaced + 已更换 src/app/components/transaction/transaction.component.html 36,39 @@ -4665,7 +4827,7 @@ src/app/components/transaction/transaction.component.html - 340,344 + 341,345 Transaction flow transaction.flow @@ -4684,7 +4846,7 @@ 展示更多 src/app/components/transaction/transaction.component.html - 225,227 + 226,228 src/app/components/transactions-list/transactions-list.component.html @@ -4701,7 +4863,7 @@ 展示更少 src/app/components/transaction/transaction.component.html - 227,233 + 228,234 src/app/components/transactions-list/transactions-list.component.html @@ -4714,7 +4876,7 @@ 显示图表 src/app/components/transaction/transaction.component.html - 247,248 + 248,249 show-diagram @@ -4723,7 +4885,7 @@ 锁定时间 src/app/components/transaction/transaction.component.html - 286,288 + 287,289 transaction.locktime @@ -4732,7 +4894,7 @@ 交易未找到 src/app/components/transaction/transaction.component.html - 449,450 + 450,451 transaction.error.transaction-not-found @@ -4741,7 +4903,7 @@ 等待交易出现在内存池 src/app/components/transaction/transaction.component.html - 450,455 + 451,456 transaction.error.waiting-for-it-to-appear @@ -4750,7 +4912,7 @@ 有效收费率 src/app/components/transaction/transaction.component.html - 485,488 + 486,489 Effective transaction fee rate transaction.effective-fee-rate @@ -4896,6 +5058,7 @@ Show more inputs to reveal fee data + 显示更多输入以显示费用数据 src/app/components/transactions-list/transactions-list.component.html 290,293 @@ -4904,6 +5067,7 @@ remaining + 剩余 src/app/components/transactions-list/transactions-list.component.html 332,333 @@ -5054,6 +5218,7 @@ This transaction does not use Taproot + 此交易不使用Taproot src/app/components/tx-features/tx-features.component.html 18 @@ -5197,10 +5362,15 @@ mempool.space merely provides data about the Bitcoin network. It cannot help you with retrieving funds, confirming your transaction quicker, etc. + mempool.space 仅提供有关比特币网络的数据。 它无法帮助您取回资金、更快地确认您的交易等。 src/app/docs/api-docs/api-docs.component.html 13 + + src/app/docs/api-docs/api-docs.component.html + 14 + faq.big-disclaimer @@ -5208,7 +5378,7 @@ REST API 服务 src/app/docs/api-docs/api-docs.component.html - 41,42 + 42,43 api-docs.title @@ -5217,11 +5387,11 @@ Endpoint src/app/docs/api-docs/api-docs.component.html - 50,51 + 51,52 src/app/docs/api-docs/api-docs.component.html - 104,107 + 105,108 Api docs endpoint @@ -5230,11 +5400,11 @@ 描述 src/app/docs/api-docs/api-docs.component.html - 69,70 + 70,71 src/app/docs/api-docs/api-docs.component.html - 108,109 + 109,110 @@ -5242,7 +5412,7 @@ 默认推送:操作: 'want', 数据: ['blocks', ...] 来表达你想要推送的内容。可用字段:blocksmempool-blockslive-2h-chart,和stats推送与地址有关的事务。'track-address': '3PbJ...bF9B' 接收所有包含该地址的新事务作为输入或输出。返回一个交易数组。address-transactions用于新的mempool交易,block-transactions用于新的块确认交易。 src/app/docs/api-docs/api-docs.component.html - 109,110 + 110,111 api-docs.websocket.websocket @@ -5417,10 +5587,15 @@ src/app/lightning/channels-list/channels-list.component.html 123,124 + + src/app/lightning/nodes-map/nodes-map.component.ts + 211,208 + lightning.x-channels Starting balance + 期初余额 src/app/lightning/channel/channel-close-box/channel-close-box.component.html 6 @@ -5430,6 +5605,7 @@ Closing balance + 期末余额 src/app/lightning/channel/channel-close-box/channel-close-box.component.html 12 @@ -5529,6 +5705,14 @@ src/app/lightning/channels-list/channels-list.component.html 43,46 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 157 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 227 + src/app/lightning/node-statistics/node-statistics.component.html 4,5 @@ -5647,12 +5831,13 @@ src/app/lightning/channels-list/channels-list.component.html - 42,43 + 42,44 lightning.closing_date Closed by + 关闭者 src/app/lightning/channel/channel.component.html 59,61 @@ -5687,6 +5872,7 @@ Mutually closed + 相互封闭 src/app/lightning/channel/closing-type/closing-type.component.ts 20 @@ -5694,6 +5880,7 @@ Force closed + 强制关闭 src/app/lightning/channel/closing-type/closing-type.component.ts 24 @@ -5701,6 +5888,7 @@ Force closed with penalty + 强制关闭并受到惩罚 src/app/lightning/channel/closing-type/closing-type.component.ts 28 @@ -5784,7 +5972,7 @@ sats src/app/lightning/channels-list/channels-list.component.html - 63,67 + 63,68 src/app/lightning/channels-list/channels-list.component.html @@ -5834,6 +6022,7 @@ avg + 平均 src/app/lightning/channels-statistics/channels-statistics.component.html 3,5 @@ -5842,6 +6031,7 @@ med + 中位 src/app/lightning/channels-statistics/channels-statistics.component.html 6,9 @@ -6044,6 +6234,14 @@ src/app/lightning/group/group.component.html 40,44 + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 149 + + + src/app/lightning/node-statistics-chart/node-statistics-chart.component.ts + 204 + src/app/lightning/node-statistics/node-statistics.component.html 28,29 @@ -6092,6 +6290,10 @@ src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts 194,193 + + src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts + 259,257 + lightning.channels @@ -6215,6 +6417,7 @@ Fee distribution + 费用分配 src/app/lightning/node-fee-chart/node-fee-chart.component.html 2 @@ -6223,6 +6426,7 @@ Outgoing Fees + 支出费用 src/app/lightning/node-fee-chart/node-fee-chart.component.ts 170 @@ -6234,6 +6438,7 @@ Incoming Fees + 进场费 src/app/lightning/node-fee-chart/node-fee-chart.component.ts 178 @@ -6323,6 +6528,7 @@ Avg channel distance + 平均频道距离 src/app/lightning/node/node.component.html 59,60 @@ -6362,6 +6568,7 @@ Liquidity ad + 流动性广告 src/app/lightning/node/node.component.html 141,144 @@ -6370,6 +6577,7 @@ Lease fee rate + 租赁费率 src/app/lightning/node/node.component.html 147,150 @@ -6379,6 +6587,7 @@ Lease base fee + 租赁基本费 src/app/lightning/node/node.component.html 155,157 @@ -6387,6 +6596,7 @@ Funding weight + 资金权重 src/app/lightning/node/node.component.html 161,162 @@ -6414,6 +6624,7 @@ Compact lease + 协议合约 src/app/lightning/node/node.component.html 191,193 @@ -6422,6 +6633,7 @@ TLV extension records + TLV 扩展记录 src/app/lightning/node/node.component.html 202,205 @@ -6502,6 +6714,7 @@ Indexing in progress + 正在编制索引 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 121,116 @@ -6513,6 +6726,7 @@ Clearnet and Darknet + 明网和暗网 src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 164,161 @@ -6524,6 +6738,7 @@ Clearnet Only (IPv4, IPv6) + 仅限明网(IPv4、IPv6) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 185,182 @@ -6535,6 +6750,7 @@ Darknet Only (Tor, I2P, cjdns) + 仅限暗网(Tor、I2P、cjdns) src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts 206,203 @@ -6558,19 +6774,23 @@ lightning.share - nodes - 节点 + nodes + 个节点 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 103,102 + 104,103 + + + src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts + 137,136 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 157,156 + 158,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 189,188 + 191,190 @@ -6578,7 +6798,7 @@ BTC 容量 src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts - 104,102 + 105,103 @@ -6696,11 +6916,11 @@ BTC src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 158,156 + 159,157 src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts - 190,188 + 192,190 @@ -6766,6 +6986,7 @@ Active nodes + 活跃节点 src/app/lightning/nodes-per-isp/nodes-per-isp.component.html 14,18 diff --git a/frontend/src/resources/profile/mutiny.svg b/frontend/src/resources/profile/mutiny.svg new file mode 100644 index 000000000..676c4d72c --- /dev/null +++ b/frontend/src/resources/profile/mutiny.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend/src/resources/mempool-promo.jpg b/frontend/src/resources/promo-video/mempool-promo.jpg similarity index 100% rename from frontend/src/resources/mempool-promo.jpg rename to frontend/src/resources/promo-video/mempool-promo.jpg diff --git a/frontend/sync-assets.js b/frontend/sync-assets.js index a39d913c8..953811fae 100644 --- a/frontend/sync-assets.js +++ b/frontend/sync-assets.js @@ -81,8 +81,10 @@ if (configContent.BASE_MODULE && configContent.BASE_MODULE === 'liquid') { const testnetAssetsJsonUrl = 'https://raw.githubusercontent.com/Blockstream/asset_registry_testnet_db/master/index.json'; const testnetAssetsMinimalJsonUrl = 'https://raw.githubusercontent.com/Blockstream/asset_registry_testnet_db/master/index.minimal.json'; -const promoVideo = PATH + 'mempool-promo.mp4'; +const promoPrefix = PATH + 'promo-video/'; +const promoVideoFile = promoPrefix + 'mempool-promo.mp4'; const promoVideoUrl = 'https://raw.githubusercontent.com/mempool/mempool-promo/master/promo.mp4'; +const promoVideoLanguages = ['en','sv','ja','zh','cs','fi','fr','de','it','lt','nb','fa','pl','ro','pt']; console.log('Downloading assets'); download(PATH + 'assets.json', assetsJsonUrl); @@ -92,9 +94,13 @@ console.log('Downloading testnet assets'); download(PATH + 'assets-testnet.json', testnetAssetsJsonUrl); console.log('Downloading testnet assets minimal'); download(PATH + 'assets-testnet.minimal.json', testnetAssetsMinimalJsonUrl); -if (!fs.existsSync(promoVideo)) { +if (!fs.existsSync(promoVideoFile)) { console.log('Downloading promo video'); - download(promoVideo, promoVideoUrl); + download(promoVideoFile, promoVideoUrl); +} +console.log('Downloading promo video subtitles'); +for( const l of promoVideoLanguages ) { + download(promoPrefix + l + ".vtt", "https://raw.githubusercontent.com/mempool/mempool-promo/master/subtitles/" + l + ".vtt"); } console.log('Downloading mining pool logos'); downloadMiningPoolLogos(); diff --git a/production/elements.conf b/production/elements.conf index b0eeadf4d..251cf23d2 100644 --- a/production/elements.conf +++ b/production/elements.conf @@ -13,6 +13,7 @@ validatepegin=1 mainchainrpcport=8332 [liquidtestnet] +rpcport=7040 validatepegin=0 anyonecanspendaremine=0 initialfreecoins=2100000000000000 diff --git a/production/install b/production/install index d4f72c03c..27c4dbd14 100755 --- a/production/install +++ b/production/install @@ -353,7 +353,7 @@ ELEMENTS_REPO_URL=https://github.com/ElementsProject/elements ELEMENTS_REPO_NAME=elements ELEMENTS_REPO_BRANCH=master #ELEMENTS_LATEST_RELEASE=$(curl -s https://api.github.com/repos/ElementsProject/elements/releases/latest|grep tag_name|head -1|cut -d '"' -f4) -ELEMENTS_LATEST_RELEASE=elements-0.21.0.2 +ELEMENTS_LATEST_RELEASE=elements-22.1 echo -n '.' BITCOIN_ELECTRS_REPO_URL=https://github.com/blockstream/electrs diff --git a/production/mempool-config.liquid.json b/production/mempool-config.liquid.json index 30c010835..3f02ca8dc 100644 --- a/production/mempool-config.liquid.json +++ b/production/mempool-config.liquid.json @@ -6,7 +6,8 @@ "MINED_BLOCKS_CACHE": 144, "SPAWN_CLUSTER_PROCS": 0, "API_URL_PREFIX": "/api/v1/", - "POLL_RATE_MS": 1000 + "POLL_RATE_MS": 1000, + "DISK_CACHE_BLOCK_INTERVAL": 1 }, "SYSLOG" : { "MIN_PRIORITY": "debug" diff --git a/production/mempool-config.liquidtestnet.json b/production/mempool-config.liquidtestnet.json index 6ea6c9071..e7dc1b557 100644 --- a/production/mempool-config.liquidtestnet.json +++ b/production/mempool-config.liquidtestnet.json @@ -6,7 +6,8 @@ "MINED_BLOCKS_CACHE": 144, "SPAWN_CLUSTER_PROCS": 0, "API_URL_PREFIX": "/api/v1/", - "POLL_RATE_MS": 1000 + "POLL_RATE_MS": 1000, + "DISK_CACHE_BLOCK_INTERVAL": 1 }, "SYSLOG" : { "MIN_PRIORITY": "debug" diff --git a/production/mempool-config.mainnet.json b/production/mempool-config.mainnet.json index a75102c7f..57056e0d7 100644 --- a/production/mempool-config.mainnet.json +++ b/production/mempool-config.mainnet.json @@ -14,7 +14,8 @@ "CPFP_INDEXING": true, "ADVANCED_GBT_AUDIT": true, "ADVANCED_GBT_MEMPOOL": true, - "USE_SECOND_NODE_FOR_MINFEE": true + "USE_SECOND_NODE_FOR_MINFEE": true, + "DISK_CACHE_BLOCK_INTERVAL": 1 }, "SYSLOG" : { "MIN_PRIORITY": "debug" diff --git a/production/mempool-config.signet.json b/production/mempool-config.signet.json index 1f5522e6d..b627476cd 100644 --- a/production/mempool-config.signet.json +++ b/production/mempool-config.signet.json @@ -10,7 +10,8 @@ "AUDIT": true, "ADVANCED_GBT_AUDIT": true, "ADVANCED_GBT_MEMPOOL": true, - "POLL_RATE_MS": 1000 + "POLL_RATE_MS": 1000, + "DISK_CACHE_BLOCK_INTERVAL": 1 }, "SYSLOG" : { "MIN_PRIORITY": "debug" diff --git a/production/mempool-config.testnet.json b/production/mempool-config.testnet.json index 0c21f785b..bf5381a22 100644 --- a/production/mempool-config.testnet.json +++ b/production/mempool-config.testnet.json @@ -10,7 +10,8 @@ "AUDIT": true, "ADVANCED_GBT_AUDIT": true, "ADVANCED_GBT_MEMPOOL": true, - "POLL_RATE_MS": 1000 + "POLL_RATE_MS": 1000, + "DISK_CACHE_BLOCK_INTERVAL": 1 }, "SYSLOG" : { "MIN_PRIORITY": "debug"